diff --git a/components/dashboard/sections/accounts/queries.ts b/components/dashboard/sections/accounts/queries.ts index f2ae5b99e31..5698c798133 100644 --- a/components/dashboard/sections/accounts/queries.ts +++ b/components/dashboard/sections/accounts/queries.ts @@ -48,6 +48,7 @@ const dashboardAccountsQueryFields = gql` slug policies { id + publicId REQUIRE_2FA_FOR_ADMINS } } diff --git a/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx b/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx index 087f50c0672..f3f374ebbfe 100644 --- a/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx +++ b/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx @@ -110,6 +110,7 @@ const createPendingContributionModalQuery = gql` } policies { id + publicId REQUIRE_2FA_FOR_ADMINS } isTrustedHost diff --git a/components/dashboard/sections/transactions-imports/OffPlatformTransactions.tsx b/components/dashboard/sections/transactions-imports/OffPlatformTransactions.tsx index 6521913b522..38fbeb21290 100644 --- a/components/dashboard/sections/transactions-imports/OffPlatformTransactions.tsx +++ b/components/dashboard/sections/transactions-imports/OffPlatformTransactions.tsx @@ -82,12 +82,14 @@ const offPlatformTransactionsQuery = gql` type policies { id + publicId REQUIRE_2FA_FOR_ADMINS } accountingCategories @skip(if: $fetchOnlyRowIds) { totalCount nodes { id + publicId ...AccountingCategorySelectFields } } @@ -95,6 +97,7 @@ const offPlatformTransactionsQuery = gql` totalCount nodes { id + publicId source name } @@ -117,9 +120,11 @@ const offPlatformTransactionsQuery = gql` limit nodes { id + publicId ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds) transactionsImport @skip(if: $fetchOnlyRowIds) { id + publicId source name } @@ -132,9 +137,11 @@ const offPlatformTransactionsQuery = gql` } transactionsImport(id: $importId) @include(if: $hasImportFilter) { id + publicId lastSyncAt connectedAccount { id + publicId } institutionAccounts { id diff --git a/components/edit-collective/EditVirtualCardModal.tsx b/components/edit-collective/EditVirtualCardModal.tsx index 47b441dc8e8..ccd1c20531c 100644 --- a/components/edit-collective/EditVirtualCardModal.tsx +++ b/components/edit-collective/EditVirtualCardModal.tsx @@ -168,7 +168,7 @@ const throttledCall = debounce((searchFunc, variables) => { type EditVirtualCardModalProps = { host: Account; collective?: Account; - virtualCard?: VirtualCard; + virtualCard?: Omit; virtualCardRequest?: VirtualCardRequest; onSuccess: (el: React.ReactNode) => void; onClose: () => void; diff --git a/components/manual-payment-provider/CustomPaymentMethodsList.test.tsx b/components/manual-payment-provider/CustomPaymentMethodsList.test.tsx index ee720620488..1abf553e4dd 100644 --- a/components/manual-payment-provider/CustomPaymentMethodsList.test.tsx +++ b/components/manual-payment-provider/CustomPaymentMethodsList.test.tsx @@ -23,6 +23,7 @@ const mockAccount = { const mockProvider: ManualPaymentProvider = { id: '1', + publicId: '1234567890', type: ManualPaymentProviderType.OTHER, name: 'Test Payment Method', instructions: 'Send {amount} to {account}', diff --git a/components/manual-payment-provider/EditCustomBankPaymentMethodDialog.test.tsx b/components/manual-payment-provider/EditCustomBankPaymentMethodDialog.test.tsx index 6300982de34..8d5c0a8831a 100644 --- a/components/manual-payment-provider/EditCustomBankPaymentMethodDialog.test.tsx +++ b/components/manual-payment-provider/EditCustomBankPaymentMethodDialog.test.tsx @@ -73,6 +73,7 @@ const mockHost = { const mockProvider: ManualPaymentProvider = { id: 'provider-1', + publicId: '1234567890', type: ManualPaymentProviderType.BANK_TRANSFER, name: 'Test Bank', instructions: '

Test bank instructions

', diff --git a/components/manual-payment-provider/EditCustomPaymentMethodDialog.test.tsx b/components/manual-payment-provider/EditCustomPaymentMethodDialog.test.tsx index 18f8c8b8d88..6049eed0204 100644 --- a/components/manual-payment-provider/EditCustomPaymentMethodDialog.test.tsx +++ b/components/manual-payment-provider/EditCustomPaymentMethodDialog.test.tsx @@ -36,6 +36,7 @@ jest.mock('../RichTextEditor', () => ({ const mockProvider: ManualPaymentProvider = { id: 'provider-1', + publicId: '1234567890', type: ManualPaymentProviderType.OTHER, name: 'Test Provider', instructions: '

Test instructions

', diff --git a/lib/graphql/schema.graphql b/lib/graphql/schema.graphql index 99f59791752..f82096d48fd 100644 --- a/lib/graphql/schema.graphql +++ b/lib/graphql/schema.graphql @@ -1163,7 +1163,12 @@ type PlanType { } type Policies { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String! EXPENSE_POLICIES: EXPENSE_POLICIES EXPENSE_AUTHOR_CANNOT_APPROVE: EXPENSE_AUTHOR_CANNOT_APPROVE REQUIRE_2FA_FOR_ADMINS: Boolean diff --git a/lib/graphql/schemaV2.graphql b/lib/graphql/schemaV2.graphql index e88d3d8ebba..0141804b1a1 100644 --- a/lib/graphql/schemaV2.graphql +++ b/lib/graphql/schemaV2.graphql @@ -2,8 +2,13 @@ An OAuth application. """ type Application { - id: String! - legacyId: Int! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: app_xxxxxxxx) + """ + publicId: String! + legacyId: Int! @deprecated(reason: "2026-02-25: use publicId") type: ApplicationType @deprecated( reason: "2022-06-16: This Application object will only be used for OAuth tokens. Use PersonalToken for user tokens" @@ -43,7 +48,12 @@ scalar URL An OAuth authorization """ type OAuthAuthorization { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: utok_xxxxxxxx) + """ + publicId: String! account: Individual! application: Application! @@ -1911,15 +1921,20 @@ enum ImageFormat { } input AccountReferenceInput { + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String + """ The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the account (ie: 580) """ - legacyId: Int @deprecated(reason: "2020-01-01: should only be used during the transition to GraphQL API v2.") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The slug identifying the account (ie: babel for https://opencollective.com/babel) @@ -2017,15 +2032,20 @@ enum OrderDirection { } input TierReferenceInput { + """ + The resource public id (ie: tier_xxxxxxxx) + """ + publicId: String + """ The id assigned to the Tier """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The DB id assigned to the Tier """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ Pass this flag to reference the custom tier (/donate) @@ -2037,7 +2057,12 @@ input TierReferenceInput { An invitation to join the members of a collective """ type MemberInvitation { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: minvite_xxxxxxxx) + """ + publicId: String! """ The person who invited the member, if any @@ -2056,8 +2081,13 @@ type MemberInvitation { Tier model """ type Tier { - id: String! - legacyId: Int! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: tier_xxxxxxxx) + """ + publicId: String! + legacyId: Int! @deprecated(reason: "2026-02-25: use publicId") slug: String name: String description: String @@ -2150,8 +2180,13 @@ type OrderCollection implements Collection { Order model """ type Order { - id: String! - legacyId: Int! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: ord_xxxxxxxx) + """ + publicId: String! + legacyId: Int! @deprecated(reason: "2026-02-25: use publicId") description: String """ @@ -2560,12 +2595,17 @@ enum TaxType { This represents an Expense """ type Expense { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: expense_xxxxxxxx) + """ + publicId: String! """ Legacy ID as returned by API V1. Avoid relying on this field as it may be removed in the future. """ - legacyId: Int! + legacyId: Int! @deprecated(reason: "2026-02-25: use publicId") """ Title/main description for this expense @@ -2870,7 +2910,12 @@ enum ExpenseCurrencySource { Fields for an accounting category """ type AccountingCategory { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acat_xxxxxxxx) + """ + publicId: String! """ The code of the accounting category @@ -4983,7 +5028,12 @@ type HostPlan { """ The public id identifying the account (ie: 5v08jk63-w4g9nbpz-j7qmyder-p7ozax5g) """ - id: String + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String! """ The name of the plan @@ -5063,7 +5113,12 @@ type LegalDocument { """ Unique identifier for this legal document """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: ldoc_xxxxxxxx) + """ + publicId: String! """ The year this legal document is for @@ -5400,15 +5455,20 @@ enum CurrencyExchangeRateSourceType { } input ExpenseReferenceInput { + """ + The resource public id (ie: expense_xxxxxxxx) + """ + publicId: String + """ The public id identifying the expense (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the expense (ie: 580) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } """ @@ -5457,40 +5517,64 @@ enum ExpenseType { } input OrderReferenceInput { + """ + The resource public id (ie: ord_xxxxxxxx) + """ + publicId: String + """ The public id identifying the order (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the order (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } input ManualPaymentProviderReferenceInput { + """ + The resource public id (ie: mpprov_xxxxxxxx) + """ + publicId: String + """ The unique identifier of the manual payment provider """ - id: String! + id: String @deprecated(reason: "2026-02-25: use publicId") } input VirtualCardReferenceInput { - id: String + """ + The resource public id (ie: vcard_xxxxxxxx) + """ + publicId: String + id: String @deprecated(reason: "2026-02-25: use publicId") } input PaymentMethodReferenceInput { + """ + The resource public id (ie: pymt_xxxxxxxx) + """ + publicId: String + """ The id assigned to the payment method """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") } input PayoutMethodReferenceInput { + """ + The resource public id (ie: payout_xxxxxxxx) + """ + publicId: String + """ The id assigned to the payout method """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") } enum HostContext { @@ -5854,7 +5938,12 @@ type ConversationCollection implements Collection { A conversation thread """ type Conversation { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: conv_xxxxxxxx) + """ + publicId: String! slug: String! title: String! createdAt: DateTime! @@ -5881,7 +5970,12 @@ type Conversation { This represents an Comment """ type Comment { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: cmt_xxxxxxxx) + """ + publicId: String! createdAt: DateTime html: String fromAccount: Account @@ -5924,7 +6018,12 @@ enum CommentType { } type HostApplication { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: happ_xxxxxxxx) + """ + publicId: String! """ The account who applied to this host @@ -5987,8 +6086,13 @@ type CommentCollection implements Collection { This represents an Update """ type Update { - id: String! - legacyId: Int + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: upd_xxxxxxxx) + """ + publicId: String! + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") slug: String! """ @@ -6123,7 +6227,12 @@ type PayoutMethod { """ Unique identifier for this payout method """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: payout_xxxxxxxx) + """ + publicId: String! """ The type of this payout method (usually the payment provider) @@ -6175,7 +6284,12 @@ type PayoutMethod { PaymentMethod model """ type PaymentMethod { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: pymt_xxxxxxxx) + """ + publicId: String! legacyId: Int """ @@ -6403,12 +6517,17 @@ type ConnectedAccount { """ Unique identifier for this connected account """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: conn_xxxxxxxx) + """ + publicId: String! """ The internal database identifier of the Connected Account (ie: 580) """ - legacyId: Int @deprecated(reason: "2020-05-01: should only be used during the transition to GraphQL API v2.") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The date on which the ConnectedAccount was created @@ -6505,7 +6624,12 @@ type Location { Stats for the Account """ type AccountStats { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String! """ Amount of money in cents in the currency of the collective currently available to spend @@ -7232,7 +7356,12 @@ enum VirtualCardStatus { } type Policies { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String! EXPENSE_POLICIES: EXPENSE_POLICIES EXPENSE_AUTHOR_CANNOT_APPROVE: EXPENSE_AUTHOR_CANNOT_APPROVE REQUIRE_2FA_FOR_ADMINS: Boolean @@ -7300,7 +7429,12 @@ type ActivitySubscription { """ Unique identifier for this notification setting """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: notif_xxxxxxxx) + """ + publicId: String! """ The channel this setting is notifying through @@ -7348,7 +7482,12 @@ enum ActivityChannel { Fields for the user permissions on an account """ type AccountPermissions { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String! """ Whether the current user can add funds to this account @@ -7389,7 +7528,12 @@ type Activity { """ Unique identifier for this activity """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: activity_xxxxxxxx) + """ + publicId: String! """ The type of the activity @@ -7627,7 +7771,12 @@ type KYCVerification { """ Unique identifier for this KYC verification """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: kyc_xxxxxxxx) + """ + publicId: String! """ Provider used to make this KYC verification @@ -7728,8 +7877,13 @@ type WebhookCollection implements Collection { An webhook attached to an account """ type Webhook { - id: String! - legacyId: Int! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: notif_xxxxxxxx) + """ + publicId: String! + legacyId: Int! @deprecated(reason: "2026-02-25: use publicId") activityType: ActivityType webhookUrl: URL account: Account! @@ -8037,7 +8191,12 @@ type ManualPaymentProvider { """ Unique identifier for this provider """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: mpprov_xxxxxxxx) + """ + publicId: String! """ The type of manual payment provider @@ -8170,7 +8329,12 @@ type AgreementCollection implements Collection { An agreement """ type Agreement { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: agreement_xxxxxxxx) + """ + publicId: String! title: String! """ @@ -8234,7 +8398,12 @@ type TransactionsImport { """ The public id of the import """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: timp_xxxxxxxx) + """ + publicId: String! """ Account that holds the import @@ -8451,7 +8620,12 @@ type TransactionsImportRow { """ The public id of the imported row """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: txnimportrow_xxxxxxxx) + """ + publicId: String! """ The source id of the row @@ -8641,7 +8815,12 @@ enum AccountingCategoryAppliesTo { } type ExpenseValuesByRole { - id: NonEmptyString! + id: NonEmptyString! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: expense_xxxxxxxx) + """ + publicId: String! """ The values provided by the expense submitter(s) @@ -8691,7 +8870,12 @@ type ExpenseAttachedFile { """ Unique identifier for this file """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: eafile_xxxxxxxx) + """ + publicId: String! url: URL """ @@ -8712,7 +8896,12 @@ type ExpenseItem { """ Unique identifier for this expense item """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: expi_xxxxxxxx) + """ + publicId: String! """ Amount of this item @@ -8802,7 +8991,12 @@ enum FeesPayer { Fields for the user permissions on an expense """ type ExpensePermissions { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: expense_xxxxxxxx) + """ + publicId: String! """ Whether the current user can edit the expense @@ -9048,7 +9242,12 @@ type RecurringExpense { """ Unique identifier for this recurring expense """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: reccexp_xxxxxxxx) + """ + publicId: String! """ The interval in which this recurring expense is created @@ -9188,7 +9387,12 @@ type OrderTax { Fields for the user permissions on an order """ type OrderPermissions { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: ord_xxxxxxxx) + """ + publicId: String! """ Whether the current user can mark this order as expired @@ -9275,7 +9479,12 @@ enum TierAmountType { Stats about a tier """ type TierStats { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: tier_xxxxxxxx) + """ + publicId: String! """ Total amount donated for this tier, in cents. @@ -14384,7 +14593,12 @@ type PersonalToken { """ Unique identifier for this personal token """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: ptok_xxxxxxxx) + """ + publicId: String! """ A friendly name for users to easily find their personal tokens @@ -14431,7 +14645,12 @@ type PersonalToken { User two factor authentication method """ type UserTwoFactorMethod { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: u2f_xxxxxxxx) + """ + publicId: String! method: TwoFactorMethod! name: String! createdAt: DateTime! @@ -14489,7 +14708,12 @@ type KYCStatus { This represents a Member relationship (ie: Organization backing a Collective) """ type Member { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: memb_xxxxxxxx) + """ + publicId: String! role: MemberRole! tier: Tier createdAt: DateTime! @@ -14527,7 +14751,12 @@ type Member { This represents a MemberOf relationship (ie: Collective backed by an Organization) """ type MemberOf { - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: memb_xxxxxxxx) + """ + publicId: String! role: MemberRole! tier: Tier createdAt: DateTime! @@ -15705,7 +15934,12 @@ type TransferWise { """ Unique identifier for this Wise object """ - id: String! + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: payout_xxxxxxxx) + """ + publicId: String! requiredFields( """ The 3 letter code identifying the currency you want to receive (ie: USD, EUR, BRL, GBP) @@ -16877,7 +17111,12 @@ type VendorContact { A Virtual Card used to pay expenses """ type VirtualCard { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: vcard_xxxxxxxx) + """ + publicId: String! account: Account host: Host assignee: Individual @@ -16910,8 +17149,13 @@ enum VirtualCardLimitInterval { A Virtual Card request """ type VirtualCardRequest { - id: String! - legacyId: Int + id: String! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: vcardreq_xxxxxxxx) + """ + publicId: String! + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") purpose: String notes: String status: VirtualCardRequestStatus @@ -17192,15 +17436,20 @@ type Query { orderBy: ChronologicalOrderInput! = { field: CREATED_AT, direction: DESC } ): ActivityCollection! application( + """ + The resource public id (ie: app_xxxxxxxx) + """ + publicId: String + """ The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the application (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The clientId for the application. @@ -18291,15 +18540,20 @@ type Query { Get a personal token by reference """ personalToken( + """ + The resource public id (ie: ptok_xxxxxxxx) + """ + publicId: String + """ The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the personal-token (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") ): PersonalToken virtualCard( """ @@ -19821,12 +20075,17 @@ type ExportRequest { """ Unique identifier for this export request """ - id: NonEmptyString! + id: NonEmptyString! @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: exprt_xxxxxxxx) + """ + publicId: String! """ Legacy numeric ID of this export request """ - legacyId: Int! + legacyId: Int! @deprecated(reason: "2026-02-25: use publicId") """ The name of the export request @@ -19924,15 +20183,20 @@ enum ExportRequestStatus { Input type for referencing an ExportRequest """ input ExportRequestReferenceInput { + """ + The resource public id (ie: exprt_xxxxxxxx) + """ + publicId: String + """ The public id identifying the export request """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the export request """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } """ @@ -22522,15 +22786,20 @@ type SearchResultsUpdates { } input TransactionReferenceInput { + """ + The resource public id (ie: txn_xxxxxxxx) + """ + publicId: String + """ The public id identifying the transaction (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the transaction (ie: 580) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } """ @@ -22541,8 +22810,12 @@ type PaypalPlan { } input VirtualCardRequestReferenceInput { - id: String - legacyId: Int + """ + The resource public id (ie: vcardreq_xxxxxxxx) + """ + publicId: String + id: String @deprecated(reason: "2026-02-25: use publicId") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } """ @@ -22556,10 +22829,15 @@ type VirtualCardRequestCollection implements Collection { } input HostApplicationReferenceInput { + """ + The resource public id (ie: happ_xxxxxxxx) + """ + publicId: String + """ The public id identifying the host application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") } """ @@ -25201,15 +25479,24 @@ type AddTwoFactorAuthTokenToIndividualResponse { } input UserTwoFactorMethodReferenceInput { - id: String - legacyId: Int + """ + The resource public id (ie: u2f_xxxxxxxx) + """ + publicId: String + id: String @deprecated(reason: "2026-02-25: use publicId") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } input AccountUpdateInput { """ The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String! + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String name: String legalName: String slug: String @@ -25325,7 +25612,12 @@ input AccountingCategoryInput { """ The ID of the accounting category to edit """ - id: NonEmptyString + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: acat_xxxxxxxx) + """ + publicId: String kind: AccountingCategoryKind! = EXPENSE """ @@ -25394,17 +25686,27 @@ input TaxInput { Reference to an accounting category """ input AccountingCategoryReferenceInput { + """ + The resource public id (ie: acat_xxxxxxxx) + """ + publicId: String + """ The ID of the accounting category """ - id: NonEmptyString! + id: String @deprecated(reason: "2026-02-25: use publicId") } input TransactionsImportRowReferenceInput { + """ + The resource public id (ie: txnimportrow_xxxxxxxx) + """ + publicId: String + """ The id of the row """ - id: NonEmptyString! + id: NonEmptyString @deprecated(reason: "2026-02-25: use publicId") } """ @@ -25426,15 +25728,20 @@ input ApplicationCreateInput { Input type for Application """ input ApplicationUpdateInput { + """ + The resource public id (ie: app_xxxxxxxx) + """ + publicId: String + """ The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the application (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The clientId for the application. @@ -25446,15 +25753,20 @@ input ApplicationUpdateInput { } input ApplicationReferenceInput { + """ + The resource public id (ie: app_xxxxxxxx) + """ + publicId: String + """ The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the application (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The clientId for the application. @@ -25463,7 +25775,12 @@ input ApplicationReferenceInput { } input CommentUpdateInput { - id: String! + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: cmt_xxxxxxxx) + """ + publicId: String html: String } @@ -25498,18 +25815,28 @@ input CommentCreateInput { } input ConversationReferenceInput { + """ + The resource public id (ie: conv_xxxxxxxx) + """ + publicId: String + """ The public id identifying the conversation """ - id: String - legacyId: Int + id: String @deprecated(reason: "2026-02-25: use publicId") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } input UpdateReferenceInput { + """ + The resource public id (ie: upd_xxxxxxxx) + """ + publicId: String + """ The public id identifying the update """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") } input ConnectedAccountCreateInput { @@ -25550,15 +25877,20 @@ input ConnectedAccountCreateInput { } input ConnectedAccountReferenceInput { + """ + The resource public id (ie: conn_xxxxxxxx) + """ + publicId: String + """ The public id identifying the connected account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the account (ie: 580) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } type EmojiReactionResponse { @@ -25574,10 +25906,15 @@ type EmojiReactionResponse { } input CommentReferenceInput { + """ + The resource public id (ie: cmt_xxxxxxxx) + """ + publicId: String + """ The public id identifying the comment """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") } input ExpenseCreateInput { @@ -25671,12 +26008,17 @@ input PayoutMethodInput { """ The unique identifier of the payout method """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: payout_xxxxxxxx) + """ + publicId: String """ The legacy identifier used in older systems """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ Additional data specific to the payout method type. For custom payout methods (type=OTHER), must contain only `content` (string) and `currency` fields. For other types, may contain type-specific details (e.g., bank account details, PayPal email) @@ -25730,7 +26072,12 @@ input ExpenseAttachedFileInput { """ ID of the file """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: eafile_xxxxxxxx) + """ + publicId: String """ Original filename @@ -25779,7 +26126,12 @@ input ExpenseUpdateInput { """ ID of the expense that you are trying to edit """ - id: String! + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: expense_xxxxxxxx) + """ + publicId: String """ Main title of the expense @@ -25876,7 +26228,12 @@ input ExpenseItemInput { """ ID of the item """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: expi_xxxxxxxx) + """ + publicId: String """ Amount in cents @@ -25905,15 +26262,20 @@ input ExpenseItemInput { } input NewAccountOrReferenceInput { + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String + """ The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the account (ie: 580) """ - legacyId: Int @deprecated(reason: "2020-01-01: should only be used during the transition to GraphQL API v2.") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The slug identifying the account (ie: babel for https://opencollective.com/babel) @@ -26294,15 +26656,20 @@ type IndividualConfirmEmailResponse { } input MemberInvitationReferenceInput { + """ + The resource public id (ie: minvite_xxxxxxxx) + """ + publicId: String + """ The public id identifying the member invitation (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the invitation (ie: 580) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } input ManualPaymentProviderCreateInput { @@ -26365,10 +26732,15 @@ type UnfollowAccountResult { } input OAuthAuthorizationReferenceInput { + """ + The resource public id (ie: utok_xxxxxxxx) + """ + publicId: String + """ The id identifying the OAuth Authorization (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") } type OrderWithPayment { @@ -26551,7 +26923,12 @@ input PaymentMethodInput { """ The id assigned to the payment method """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: pymt_xxxxxxxx) + """ + publicId: String """ Service of this payment method @@ -26800,12 +27177,17 @@ input PendingOrderEditInput { """ The public id identifying the order (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: ord_xxxxxxxx) + """ + publicId: String """ The legacy public id identifying the order (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The contribution amount, without platform contribution and taxes @@ -26966,10 +27348,15 @@ type PlaidLinkTokenCreateResponse { } input TransactionsImportReferenceInput { + """ + The resource public id (ie: timp_xxxxxxxx) + """ + publicId: String + """ The id of the row """ - id: NonEmptyString! + id: String @deprecated(reason: "2026-02-25: use publicId") } """ @@ -27166,7 +27553,12 @@ input TransactionsImportRowUpdateInput { """ The id of the row """ - id: NonEmptyString! + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: txnimportrow_xxxxxxxx) + """ + publicId: String """ The source id of the row @@ -27243,7 +27635,12 @@ input UpdateCreateInput { Input type for UpdateType """ input UpdateUpdateInput { - id: String! + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: upd_xxxxxxxx) + """ + publicId: String slug: String title: String isPrivate: Boolean @@ -27355,7 +27752,12 @@ input OCRParsingOptionsInput { } input VirtualCardInput { - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: vcard_xxxxxxxx) + """ + publicId: String name: String last4: String data: JSONObject @@ -27384,36 +27786,51 @@ input WebhookCreateInput { Input type to update a Webhook """ input WebhookUpdateInput { + """ + The resource public id (ie: notif_xxxxxxxx) + """ + publicId: String + """ The public id identifying the webhook (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the webhook (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") activityType: ActivityType! = ACTIVITY_ALL webhookUrl: URL! } input WebhookReferenceInput { + """ + The resource public id (ie: notif_xxxxxxxx) + """ + publicId: String + """ The public id identifying the webhook (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the webhook (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } input TierUpdateInput { """ The public id identifying the tier (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String! + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: tier_xxxxxxxx) + """ + publicId: String amount: AmountInput name: NonEmptyString description: String @@ -27472,15 +27889,20 @@ input PersonalTokenCreateInput { Input type for PersonalToken """ input PersonalTokenUpdateInput { + """ + The resource public id (ie: ptok_xxxxxxxx) + """ + publicId: String + """ The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the personal-token (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") name: String scope: [OAuthScope] expiresAt: String @@ -27492,15 +27914,20 @@ input PersonalTokenUpdateInput { } input PersonalTokenReferenceInput { + """ + The resource public id (ie: ptok_xxxxxxxx) + """ + publicId: String + """ The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The legacy public id identifying the personal-token (ie: 4242) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } type TagResponse { @@ -27509,15 +27936,20 @@ type TagResponse { } input AgreementReferenceInput { + """ + The resource public id (ie: agreement_xxxxxxxx) + """ + publicId: String + """ The public id identifying the agreement (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the agreement (ie: 580) """ - legacyId: Int + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") } input VendorCreateInput { @@ -27562,15 +27994,20 @@ input VendorContactInput { } input VendorEditInput { + """ + The resource public id (ie: acc_xxxxxxxx) + """ + publicId: String + """ The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") """ The internal id of the account (ie: 580) """ - legacyId: Int @deprecated(reason: "2020-01-01: should only be used during the transition to GraphQL API v2.") + legacyId: Int @deprecated(reason: "2026-02-25: use publicId") """ The slug identifying the account (ie: babel for https://opencollective.com/babel) @@ -27600,7 +28037,12 @@ input PlatformSubscriptionInput { """ The ID of the platform subscription to update """ - id: String + id: String @deprecated(reason: "2026-02-25: use publicId") + + """ + The resource public id (ie: psub_xxxxxxxx) + """ + publicId: String """ The new platform subscription plan to apply to the account diff --git a/lib/graphql/types/v2/gql.ts b/lib/graphql/types/v2/gql.ts index 6c722f065a6..7aaccaa0feb 100644 --- a/lib/graphql/types/v2/gql.ts +++ b/lib/graphql/types/v2/gql.ts @@ -90,7 +90,7 @@ type Documents = { "\n query AdminAccountingCategories($hostSlug: String!) {\n host(slug: $hostSlug) {\n id\n type\n slug\n accountingCategories {\n totalCount\n nodes {\n ...AccountingCategorySelectFields\n }\n }\n }\n }\n \n": typeof types.AdminAccountingCategoriesDocument, "\n mutation EditAccountingCategories($hostSlug: String!, $categories: [AccountingCategoryInput!]!) {\n editAccountingCategories(account: { slug: $hostSlug }, categories: $categories) {\n id\n ... on Organization {\n host {\n id\n slug\n accountingCategories {\n totalCount\n nodes {\n ...AccountingCategorySelectFields\n }\n }\n }\n }\n }\n }\n \n": typeof types.EditAccountingCategoriesDocument, "\n mutation InternalTransfer($order: OrderCreateInput!) {\n createOrder(order: $order) {\n order {\n id\n fromAccount {\n id\n stats {\n id\n balance {\n valueInCents\n }\n }\n }\n }\n }\n }\n": typeof types.InternalTransferDocument, - "\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n": typeof types.DashboardAccountsQueryFieldsFragmentDoc, + "\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n": typeof types.DashboardAccountsQueryFieldsFragmentDoc, "\n query AccountsDashboardMetadata($accountSlug: String!) {\n account(slug: $accountSlug) {\n id\n isActive\n isArchived\n all: childrenAccounts(limit: 1) {\n totalCount\n }\n active: childrenAccounts(limit: 1, isActive: true) {\n totalCount\n }\n archived: childrenAccounts(limit: 1, isActive: false) {\n totalCount\n }\n }\n }\n": typeof types.AccountsDashboardMetadataDocument, "\n query AccountsDashboard($accountSlug: String!, $limit: Int, $offset: Int, $isActive: Boolean) {\n account(slug: $accountSlug) {\n id\n legacyId\n slug\n name\n currency\n isHost\n type\n settings\n ...DashboardAccountsQueryFields\n stats {\n id\n consolidatedBalance {\n valueInCents\n currency\n }\n }\n childrenAccounts(limit: $limit, offset: $offset, isActive: $isActive) {\n totalCount\n nodes {\n id\n ...DashboardAccountsQueryFields\n }\n }\n }\n }\n\n \n": typeof types.AccountsDashboardDocument, "\n query HostedAccountDetail($id: String!) {\n account(id: $id) {\n ...DashboardAccountsQueryFields\n id\n legacyId\n slug\n name\n currency\n isHost\n type\n settings\n ... on AccountWithParent {\n parent {\n id\n }\n }\n stats {\n id\n consolidatedBalance {\n valueInCents\n currency\n }\n }\n members(role: [ADMIN]) {\n nodes {\n id\n account {\n id\n ...AccountHoverCardFields\n emails\n }\n }\n }\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 \n": typeof types.HostedAccountDetailDocument, @@ -125,7 +125,7 @@ type Documents = { "\n query CommunityAccountActivities($accountId: String!, $host: AccountReferenceInput!, $limit: Int!, $offset: Int!) {\n account(id: $accountId) {\n communityStats(host: $host) {\n activities(offset: $offset, limit: $limit) {\n totalCount\n limit\n offset\n nodes {\n ...CommunityAccountDetailActivityFields\n }\n }\n }\n }\n }\n \n \n": typeof types.CommunityAccountActivitiesDocument, "\n query CommunityAccountExpensesDetail(\n $accountId: String!\n $host: AccountReferenceInput!\n $statsCurrency: Currency!\n $skipSubmittedExpenses: Boolean!\n $skipPaidExpenses: Boolean!\n $skipApprovedExpenses: Boolean!\n $submittedExpensesOffset: Int!\n $paidExpensesOffset: Int!\n $approvedExpensesOffset: Int!\n $defaultLimit: Int!\n ) {\n account(id: $accountId) {\n id\n legacyId\n communityStats(host: $host) {\n transactionSummary {\n year\n expenseTotal {\n valueInCents\n currency\n }\n expenseCount\n expenseTotalAcc {\n valueInCents\n currency\n }\n expenseCountAcc\n }\n }\n submittedExpenses: expenses(\n direction: SUBMITTED\n host: $host\n limit: $defaultLimit\n offset: $submittedExpensesOffset\n ) @skip(if: $skipSubmittedExpenses) {\n totalCount\n limit\n offset\n nodes {\n id\n legacyId\n description\n status\n type\n tags\n accountingCategory {\n id\n name\n code\n }\n amount: amountV2(currencySource: HOST) {\n valueInCents\n currency\n }\n createdAt\n account {\n id\n ...AccountHoverCardFields\n }\n }\n }\n }\n paidExpenses: expenses(\n activity: { type: [COLLECTIVE_EXPENSE_PAID], individual: { id: $accountId } }\n host: $host\n limit: $defaultLimit\n offset: $paidExpensesOffset\n includeChildrenExpenses: true\n ) @skip(if: $skipPaidExpenses) {\n totalCount\n limit\n offset\n totalAmount {\n amount(currency: $statsCurrency) {\n valueInCents\n currency\n }\n amountsByCurrency {\n valueInCents\n currency\n }\n }\n nodes {\n id\n legacyId\n description\n status\n type\n tags\n accountingCategory {\n id\n name\n code\n }\n amount: amountV2(currencySource: HOST) {\n valueInCents\n currency\n }\n createdAt\n account {\n id\n ...AccountHoverCardFields\n }\n }\n }\n approvedExpenses: expenses(\n activity: { type: [COLLECTIVE_EXPENSE_APPROVED], individual: { id: $accountId } }\n host: $host\n limit: $defaultLimit\n offset: $approvedExpensesOffset\n includeChildrenExpenses: true\n ) @skip(if: $skipApprovedExpenses) {\n totalCount\n limit\n offset\n nodes {\n id\n legacyId\n description\n status\n type\n tags\n accountingCategory {\n id\n name\n code\n }\n amount: amountV2(currencySource: HOST) {\n valueInCents\n currency\n }\n createdAt\n account {\n id\n ...AccountHoverCardFields\n }\n }\n }\n }\n \n": typeof types.CommunityAccountExpensesDetailDocument, "\n query CommunityAccountContributionsDetail(\n $accountId: String!\n $host: AccountReferenceInput!\n $limit: Int!\n $offset: Int!\n ) {\n account(id: $accountId) {\n id\n legacyId\n communityStats(host: $host) {\n transactionSummary {\n year\n contributionTotal {\n valueInCents\n currency\n }\n contributionCount\n contributionTotalAcc {\n valueInCents\n currency\n }\n contributionCountAcc\n }\n }\n orders(host: $host, limit: $limit, offset: $offset) {\n totalCount\n nodes {\n id\n legacyId\n description\n status\n tags\n accountingCategory {\n id\n name\n code\n }\n totalContributed {\n valueInCents\n currency\n }\n createdAt\n toAccount {\n id\n ...AccountHoverCardFields\n }\n }\n }\n }\n }\n \n": typeof types.CommunityAccountContributionsDetailDocument, - "\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n": typeof types.CreatePendingContributionModalDocument, + "\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n": typeof types.CreatePendingContributionModalDocument, "\n query CreatePendingContributionCollective($slug: String!) {\n account(slug: $slug) {\n id\n type\n currency\n childrenAccounts {\n nodes {\n id\n type\n legacyId\n isHost\n name\n slug\n currency\n settings\n imageUrl\n ... on AccountWithContributions {\n tiers {\n nodes {\n id\n slug\n legacyId\n name\n }\n }\n }\n }\n }\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n legacyId\n vendors(forAccount: { slug: $slug }, limit: 5) {\n nodes {\n id\n slug\n name\n type\n description\n imageUrl(height: 64)\n }\n }\n }\n }\n ... on AccountWithContributions {\n tiers {\n nodes {\n id\n slug\n legacyId\n name\n }\n }\n }\n\n ... on AccountWithParent {\n parent {\n id\n }\n }\n }\n }\n": typeof types.CreatePendingContributionCollectiveDocument, "\n mutation CreatePendingContribution($order: PendingOrderCreateInput!) {\n createPendingOrder(order: $order) {\n legacyId\n id\n status\n }\n }\n": typeof types.CreatePendingContributionDocument, "\n mutation EditPendingContribution($order: PendingOrderEditInput!) {\n editPendingOrder(order: $order) {\n legacyId\n id\n status\n ...ConfirmContributionFields\n }\n }\n \n": typeof types.EditPendingContributionDocument, @@ -211,7 +211,7 @@ type Documents = { "\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(type: CSV)\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources(type: CSV)\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n ": typeof types.CreateTransactionsImportDocument, "\n query OffPlatformTransactionsInstitutions($country: String!, $provider: OffPlatformTransactionsProvider!) {\n offPlatformTransactionsInstitutions(country: $country, provider: $provider) {\n id\n name\n bic\n logoUrl\n supportedCountries\n maxAccessValidForDays\n transactionTotalDays\n }\n }\n": typeof types.OffPlatformTransactionsInstitutionsDocument, "\n query OffPlatformConnections($accountSlug: String!, $limit: Int, $offset: Int) {\n host(slug: $accountSlug) {\n id\n slug\n location {\n country\n }\n transactionsImports(limit: $limit, offset: $offset, type: [PLAID, GOCARDLESS]) {\n totalCount\n limit\n offset\n nodes {\n id\n ...TransactionImportListFields\n }\n }\n }\n }\n \n": typeof types.OffPlatformConnectionsDocument, - "\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n lastSyncAt\n connectedAccount {\n id\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n": typeof types.OffPlatformTransactionsDocument, + "\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n publicId\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n publicId\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n publicId\n lastSyncAt\n connectedAccount {\n id\n publicId\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n": typeof types.OffPlatformTransactionsDocument, "\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 csvConfig\n lastSyncAt\n file {\n id\n url\n name\n type\n size\n }\n }\n }\n": typeof types.UploadTransactionsImportDocument, "\n mutation EditTransactionsImportAssignments(\n $id: NonEmptyString!\n $assignments: [TransactionsImportAssignmentInput!]!\n ) {\n editTransactionsImport(id: $id, assignments: $assignments) {\n id\n assignments {\n ...TransactionsImportAssignmentFields\n }\n }\n }\n \n": typeof types.EditTransactionsImportAssignmentsDocument, "\n mutation SyncTransactionsImport($transactionImport: TransactionsImportReferenceInput!) {\n syncTransactionsImport(transactionImport: $transactionImport) {\n id\n }\n }\n": typeof types.SyncTransactionsImportDocument, @@ -469,7 +469,7 @@ const documents: Documents = { "\n query AdminAccountingCategories($hostSlug: String!) {\n host(slug: $hostSlug) {\n id\n type\n slug\n accountingCategories {\n totalCount\n nodes {\n ...AccountingCategorySelectFields\n }\n }\n }\n }\n \n": types.AdminAccountingCategoriesDocument, "\n mutation EditAccountingCategories($hostSlug: String!, $categories: [AccountingCategoryInput!]!) {\n editAccountingCategories(account: { slug: $hostSlug }, categories: $categories) {\n id\n ... on Organization {\n host {\n id\n slug\n accountingCategories {\n totalCount\n nodes {\n ...AccountingCategorySelectFields\n }\n }\n }\n }\n }\n }\n \n": types.EditAccountingCategoriesDocument, "\n mutation InternalTransfer($order: OrderCreateInput!) {\n createOrder(order: $order) {\n order {\n id\n fromAccount {\n id\n stats {\n id\n balance {\n valueInCents\n }\n }\n }\n }\n }\n }\n": types.InternalTransferDocument, - "\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n": types.DashboardAccountsQueryFieldsFragmentDoc, + "\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n": types.DashboardAccountsQueryFieldsFragmentDoc, "\n query AccountsDashboardMetadata($accountSlug: String!) {\n account(slug: $accountSlug) {\n id\n isActive\n isArchived\n all: childrenAccounts(limit: 1) {\n totalCount\n }\n active: childrenAccounts(limit: 1, isActive: true) {\n totalCount\n }\n archived: childrenAccounts(limit: 1, isActive: false) {\n totalCount\n }\n }\n }\n": types.AccountsDashboardMetadataDocument, "\n query AccountsDashboard($accountSlug: String!, $limit: Int, $offset: Int, $isActive: Boolean) {\n account(slug: $accountSlug) {\n id\n legacyId\n slug\n name\n currency\n isHost\n type\n settings\n ...DashboardAccountsQueryFields\n stats {\n id\n consolidatedBalance {\n valueInCents\n currency\n }\n }\n childrenAccounts(limit: $limit, offset: $offset, isActive: $isActive) {\n totalCount\n nodes {\n id\n ...DashboardAccountsQueryFields\n }\n }\n }\n }\n\n \n": types.AccountsDashboardDocument, "\n query HostedAccountDetail($id: String!) {\n account(id: $id) {\n ...DashboardAccountsQueryFields\n id\n legacyId\n slug\n name\n currency\n isHost\n type\n settings\n ... on AccountWithParent {\n parent {\n id\n }\n }\n stats {\n id\n consolidatedBalance {\n valueInCents\n currency\n }\n }\n members(role: [ADMIN]) {\n nodes {\n id\n account {\n id\n ...AccountHoverCardFields\n emails\n }\n }\n }\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 \n": types.HostedAccountDetailDocument, @@ -504,7 +504,7 @@ const documents: Documents = { "\n query CommunityAccountActivities($accountId: String!, $host: AccountReferenceInput!, $limit: Int!, $offset: Int!) {\n account(id: $accountId) {\n communityStats(host: $host) {\n activities(offset: $offset, limit: $limit) {\n totalCount\n limit\n offset\n nodes {\n ...CommunityAccountDetailActivityFields\n }\n }\n }\n }\n }\n \n \n": types.CommunityAccountActivitiesDocument, "\n query CommunityAccountExpensesDetail(\n $accountId: String!\n $host: AccountReferenceInput!\n $statsCurrency: Currency!\n $skipSubmittedExpenses: Boolean!\n $skipPaidExpenses: Boolean!\n $skipApprovedExpenses: Boolean!\n $submittedExpensesOffset: Int!\n $paidExpensesOffset: Int!\n $approvedExpensesOffset: Int!\n $defaultLimit: Int!\n ) {\n account(id: $accountId) {\n id\n legacyId\n communityStats(host: $host) {\n transactionSummary {\n year\n expenseTotal {\n valueInCents\n currency\n }\n expenseCount\n expenseTotalAcc {\n valueInCents\n currency\n }\n expenseCountAcc\n }\n }\n submittedExpenses: expenses(\n direction: SUBMITTED\n host: $host\n limit: $defaultLimit\n offset: $submittedExpensesOffset\n ) @skip(if: $skipSubmittedExpenses) {\n totalCount\n limit\n offset\n nodes {\n id\n legacyId\n description\n status\n type\n tags\n accountingCategory {\n id\n name\n code\n }\n amount: amountV2(currencySource: HOST) {\n valueInCents\n currency\n }\n createdAt\n account {\n id\n ...AccountHoverCardFields\n }\n }\n }\n }\n paidExpenses: expenses(\n activity: { type: [COLLECTIVE_EXPENSE_PAID], individual: { id: $accountId } }\n host: $host\n limit: $defaultLimit\n offset: $paidExpensesOffset\n includeChildrenExpenses: true\n ) @skip(if: $skipPaidExpenses) {\n totalCount\n limit\n offset\n totalAmount {\n amount(currency: $statsCurrency) {\n valueInCents\n currency\n }\n amountsByCurrency {\n valueInCents\n currency\n }\n }\n nodes {\n id\n legacyId\n description\n status\n type\n tags\n accountingCategory {\n id\n name\n code\n }\n amount: amountV2(currencySource: HOST) {\n valueInCents\n currency\n }\n createdAt\n account {\n id\n ...AccountHoverCardFields\n }\n }\n }\n approvedExpenses: expenses(\n activity: { type: [COLLECTIVE_EXPENSE_APPROVED], individual: { id: $accountId } }\n host: $host\n limit: $defaultLimit\n offset: $approvedExpensesOffset\n includeChildrenExpenses: true\n ) @skip(if: $skipApprovedExpenses) {\n totalCount\n limit\n offset\n nodes {\n id\n legacyId\n description\n status\n type\n tags\n accountingCategory {\n id\n name\n code\n }\n amount: amountV2(currencySource: HOST) {\n valueInCents\n currency\n }\n createdAt\n account {\n id\n ...AccountHoverCardFields\n }\n }\n }\n }\n \n": types.CommunityAccountExpensesDetailDocument, "\n query CommunityAccountContributionsDetail(\n $accountId: String!\n $host: AccountReferenceInput!\n $limit: Int!\n $offset: Int!\n ) {\n account(id: $accountId) {\n id\n legacyId\n communityStats(host: $host) {\n transactionSummary {\n year\n contributionTotal {\n valueInCents\n currency\n }\n contributionCount\n contributionTotalAcc {\n valueInCents\n currency\n }\n contributionCountAcc\n }\n }\n orders(host: $host, limit: $limit, offset: $offset) {\n totalCount\n nodes {\n id\n legacyId\n description\n status\n tags\n accountingCategory {\n id\n name\n code\n }\n totalContributed {\n valueInCents\n currency\n }\n createdAt\n toAccount {\n id\n ...AccountHoverCardFields\n }\n }\n }\n }\n }\n \n": types.CommunityAccountContributionsDetailDocument, - "\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n": types.CreatePendingContributionModalDocument, + "\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n": types.CreatePendingContributionModalDocument, "\n query CreatePendingContributionCollective($slug: String!) {\n account(slug: $slug) {\n id\n type\n currency\n childrenAccounts {\n nodes {\n id\n type\n legacyId\n isHost\n name\n slug\n currency\n settings\n imageUrl\n ... on AccountWithContributions {\n tiers {\n nodes {\n id\n slug\n legacyId\n name\n }\n }\n }\n }\n }\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n legacyId\n vendors(forAccount: { slug: $slug }, limit: 5) {\n nodes {\n id\n slug\n name\n type\n description\n imageUrl(height: 64)\n }\n }\n }\n }\n ... on AccountWithContributions {\n tiers {\n nodes {\n id\n slug\n legacyId\n name\n }\n }\n }\n\n ... on AccountWithParent {\n parent {\n id\n }\n }\n }\n }\n": types.CreatePendingContributionCollectiveDocument, "\n mutation CreatePendingContribution($order: PendingOrderCreateInput!) {\n createPendingOrder(order: $order) {\n legacyId\n id\n status\n }\n }\n": types.CreatePendingContributionDocument, "\n mutation EditPendingContribution($order: PendingOrderEditInput!) {\n editPendingOrder(order: $order) {\n legacyId\n id\n status\n ...ConfirmContributionFields\n }\n }\n \n": types.EditPendingContributionDocument, @@ -590,7 +590,7 @@ const documents: Documents = { "\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(type: CSV)\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources(type: CSV)\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n ": types.CreateTransactionsImportDocument, "\n query OffPlatformTransactionsInstitutions($country: String!, $provider: OffPlatformTransactionsProvider!) {\n offPlatformTransactionsInstitutions(country: $country, provider: $provider) {\n id\n name\n bic\n logoUrl\n supportedCountries\n maxAccessValidForDays\n transactionTotalDays\n }\n }\n": types.OffPlatformTransactionsInstitutionsDocument, "\n query OffPlatformConnections($accountSlug: String!, $limit: Int, $offset: Int) {\n host(slug: $accountSlug) {\n id\n slug\n location {\n country\n }\n transactionsImports(limit: $limit, offset: $offset, type: [PLAID, GOCARDLESS]) {\n totalCount\n limit\n offset\n nodes {\n id\n ...TransactionImportListFields\n }\n }\n }\n }\n \n": types.OffPlatformConnectionsDocument, - "\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n lastSyncAt\n connectedAccount {\n id\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n": types.OffPlatformTransactionsDocument, + "\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n publicId\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n publicId\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n publicId\n lastSyncAt\n connectedAccount {\n id\n publicId\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n": types.OffPlatformTransactionsDocument, "\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 csvConfig\n lastSyncAt\n file {\n id\n url\n name\n type\n size\n }\n }\n }\n": types.UploadTransactionsImportDocument, "\n mutation EditTransactionsImportAssignments(\n $id: NonEmptyString!\n $assignments: [TransactionsImportAssignmentInput!]!\n ) {\n editTransactionsImport(id: $id, assignments: $assignments) {\n id\n assignments {\n ...TransactionsImportAssignmentFields\n }\n }\n }\n \n": types.EditTransactionsImportAssignmentsDocument, "\n mutation SyncTransactionsImport($transactionImport: TransactionsImportReferenceInput!) {\n syncTransactionsImport(transactionImport: $transactionImport) {\n id\n }\n }\n": types.SyncTransactionsImportDocument, @@ -1093,7 +1093,7 @@ export function graphql(source: "\n mutation InternalTransfer($order: OrderCrea /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n"): (typeof documents)["\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n"]; +export function graphql(source: "\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n"): (typeof documents)["\n fragment DashboardAccountsQueryFields on Account {\n id\n legacyId\n name\n slug\n type\n currency\n imageUrl(height: 96)\n isFrozen\n isActive\n isArchived\n isHost\n tags\n settings\n createdAt\n stats {\n id\n balance {\n valueInCents\n currency\n }\n }\n paymentMethods(service: OPENCOLLECTIVE, type: COLLECTIVE) {\n id\n service\n name\n }\n ... on AccountWithParent {\n parent {\n id\n legacyId\n imageUrl(height: 96)\n name\n slug\n settings\n isHost\n }\n }\n ... on AccountWithHost {\n host {\n id\n legacyId\n slug\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n }\n }\n permissions {\n addFunds {\n allowed\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -1233,7 +1233,7 @@ export function graphql(source: "\n query CommunityAccountContributionsDetail(\ /** * 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 CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n"): (typeof documents)["\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n"]; +export function graphql(source: "\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\n }\n }\n }\n }\n\n \n"): (typeof documents)["\n query CreatePendingContributionModal($slug: String!) {\n host(slug: $slug) {\n id\n legacyId\n type\n isHost\n name\n slug\n currency\n settings\n hostFeePercent\n orderAccountingCategories: accountingCategories(kind: [CONTRIBUTION, ADDED_FUNDS]) {\n nodes {\n id\n name\n friendlyName\n code\n kind\n appliesTo\n }\n }\n plan {\n id\n hostFees\n }\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n isTrustedHost\n vendors {\n totalCount\n nodes {\n id\n ...VendorFields\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. */ @@ -1577,7 +1577,7 @@ export function graphql(source: "\n query OffPlatformConnections($accountSlug: /** * 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 OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n lastSyncAt\n connectedAccount {\n id\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n"): (typeof documents)["\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n lastSyncAt\n connectedAccount {\n id\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n"]; +export function graphql(source: "\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n publicId\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n publicId\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n publicId\n lastSyncAt\n connectedAccount {\n id\n publicId\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\n }\n }\n }\n \n \n \n"): (typeof documents)["\n query OffPlatformTransactions(\n $hostSlug: String\n $limit: Int = 50\n $offset: Int = 0\n $status: TransactionsImportRowStatus\n $searchTerm: String\n $subAccountId: [NonEmptyString]\n $importIds: [NonEmptyString!]\n $importId: NonEmptyString!\n $hasImportFilter: Boolean!\n $fetchOnlyRowIds: Boolean!\n $orderBy: TransactionsImportRowOrderInput\n ) {\n host(slug: $hostSlug) {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n policies {\n id\n publicId\n REQUIRE_2FA_FOR_ADMINS\n }\n accountingCategories @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n ...AccountingCategorySelectFields\n }\n }\n transactionsImports(status: ACTIVE, type: [PLAID, GOCARDLESS], limit: 100) @skip(if: $fetchOnlyRowIds) {\n totalCount\n nodes {\n id\n publicId\n source\n name\n }\n }\n offPlatformTransactionsStats @skip(if: $fetchOnlyRowIds) {\n ...TransactionsImportStats\n }\n offPlatformTransactions(\n limit: $limit\n offset: $offset\n status: $status\n searchTerm: $searchTerm\n accountId: $subAccountId\n importType: [PLAID, GOCARDLESS]\n importId: $importIds\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n publicId\n ...TransactionsImportRowFields @skip(if: $fetchOnlyRowIds)\n transactionsImport @skip(if: $fetchOnlyRowIds) {\n id\n publicId\n source\n name\n }\n institutionAccount @skip(if: $fetchOnlyRowIds) {\n id\n name\n }\n }\n }\n }\n transactionsImport(id: $importId) @include(if: $hasImportFilter) {\n id\n publicId\n lastSyncAt\n connectedAccount {\n id\n publicId\n }\n institutionAccounts {\n id\n name\n type\n subtype\n mask\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. */ diff --git a/lib/graphql/types/v2/graphql.ts b/lib/graphql/types/v2/graphql.ts index 730c6f21b14..b7b58e2a26b 100644 --- a/lib/graphql/types/v2/graphql.ts +++ b/lib/graphql/types/v2/graphql.ts @@ -541,17 +541,25 @@ export type AccountPermissions = { canDownloadPaymentReceipts: Permission; /** Whether the current user can contact this account */ contact: Permission; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId: Scalars['String']['output']; }; export type AccountReferenceInput = { - /** The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** * The internal id of the account (ie: 580) - * @deprecated 2020-01-01: should only be used during the transition to GraphQL API v2. + * @deprecated 2026-02-25: use publicId */ legacyId?: InputMaybe; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId?: InputMaybe; /** The slug identifying the account (ie: babel for https://opencollective.com/babel) */ slug?: InputMaybe; }; @@ -591,11 +599,14 @@ export type AccountStats = { expensesTags?: Maybe>>; /** History of the expense tags used by this collective. */ expensesTagsTimeSeries: TimeSeriesAmount; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; /** The total amount managed by the account, including all its children accounts (events and projects), calculated using existing balance checkpoint. This is not a real-time value and may not reflect the current state of the account. */ managedAmount?: Maybe; /** Average amount spent per month based on the last 90 days */ monthlySpending: Amount; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** Total amount received */ totalAmountReceived: Amount; /** Total amount received time series */ @@ -807,8 +818,11 @@ export type AccountUpdateInput = { endsAt?: InputMaybe; /** The host fee percentage for this account. Must be between 0 and 100. */ hostFeePercent?: InputMaybe; - /** The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ - id: Scalars['String']['input']; + /** + * The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; image?: InputMaybe; legalName?: InputMaybe; location?: InputMaybe; @@ -816,6 +830,8 @@ export type AccountUpdateInput = { name?: InputMaybe; /** Private instructions for the host to be sent to participating users. */ privateInstructions?: InputMaybe; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId?: InputMaybe; /** Settings for the account. */ settings?: InputMaybe; slug?: InputMaybe; @@ -972,6 +988,7 @@ export type AccountingCategory = { friendlyName?: Maybe; /** Whether this category is only meant for the host admins */ hostOnly: Scalars['Boolean']['output']; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; /** Instructions for the expense submitters */ instructions?: Maybe; @@ -979,6 +996,8 @@ export type AccountingCategory = { kind?: Maybe; /** The technical name of the accounting category */ name: Scalars['String']['output']; + /** The resource public id (ie: acat_xxxxxxxx) */ + publicId: Scalars['String']['output']; }; export enum AccountingCategoryAppliesTo { @@ -1008,12 +1027,17 @@ export type AccountingCategoryInput = { friendlyName?: InputMaybe; /** Whether this category is only meant for the host admins */ hostOnly?: Scalars['Boolean']['input']; - /** The ID of the accounting category to edit */ - id?: InputMaybe; + /** + * The ID of the accounting category to edit + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; instructions?: InputMaybe; kind?: AccountingCategoryKind; /** The technical name of the accounting category */ name?: InputMaybe; + /** The resource public id (ie: acat_xxxxxxxx) */ + publicId?: InputMaybe; }; export enum AccountingCategoryKind { @@ -1024,8 +1048,13 @@ export enum AccountingCategoryKind { /** Reference to an accounting category */ export type AccountingCategoryReferenceInput = { - /** The ID of the accounting category */ - id: Scalars['NonEmptyString']['input']; + /** + * The ID of the accounting category + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; + /** The resource public id (ie: acat_xxxxxxxx) */ + publicId?: InputMaybe; }; /** An activity describing something that happened on the platform */ @@ -1045,7 +1074,10 @@ export type Activity = { fromAccount?: Maybe; /** The host under which this activity happened, if any */ host?: Maybe; - /** Unique identifier for this activity */ + /** + * Unique identifier for this activity + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** The person who triggered the action, if any */ individual?: Maybe; @@ -1053,6 +1085,8 @@ export type Activity = { isSystem: Scalars['Boolean']['output']; /** The order related to this activity, if any */ order?: Maybe; + /** The resource public id (ie: activity_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The transaction related to this activity, if any */ transaction?: Maybe; /** The type of the activity */ @@ -1261,10 +1295,15 @@ export type ActivitySubscription = { /** The channel this setting is notifying through */ channel: ActivityChannel; createdAt: Scalars['DateTime']['output']; - /** Unique identifier for this notification setting */ + /** + * Unique identifier for this notification setting + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** The user who defined the setting */ individual: Individual; + /** The resource public id (ie: notif_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The type of Activity this setting is notifying about */ type: Scalars['String']['output']; /** If channel supports, this is the webhook URL we submit the notification to */ @@ -1447,9 +1486,12 @@ export type Agreement = { createdBy?: Maybe; expiresAt?: Maybe; host: Host; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; /** Additional notes about the agreement for the host admins */ notes?: Maybe; + /** The resource public id (ie: agreement_xxxxxxxx) */ + publicId: Scalars['String']['output']; title: Scalars['String']['output']; }; @@ -1463,10 +1505,18 @@ export type AgreementCollection = Collection & { }; export type AgreementReferenceInput = { - /** The public id identifying the agreement (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the agreement (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The internal id of the agreement (ie: 580) */ + /** + * The internal id of the agreement (ie: 580) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: agreement_xxxxxxxx) */ + publicId?: InputMaybe; }; /** A financial amount. */ @@ -1519,12 +1569,16 @@ export type Application = { clientId?: Maybe; clientSecret?: Maybe; description?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** @deprecated 2026-02-25: use publicId */ legacyId: Scalars['Int']['output']; name?: Maybe; oAuthAuthorization?: Maybe; /** Whether this application is allowed to directly use operations that would normally require 2FA */ preAuthorize2FA: Scalars['Boolean']['output']; + /** The resource public id (ie: app_xxxxxxxx) */ + publicId: Scalars['String']['output']; redirectUri?: Maybe; /** @deprecated 2022-06-16: This Application object will only be used for OAuth tokens. Use PersonalToken for user tokens */ type?: Maybe; @@ -1543,10 +1597,18 @@ export type ApplicationCreateInput = { export type ApplicationReferenceInput = { /** The clientId for the application. */ clientId?: InputMaybe; - /** The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the application (ie: 4242) */ + /** + * The legacy public id identifying the application (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: app_xxxxxxxx) */ + publicId?: InputMaybe; }; /** All application types */ @@ -1560,11 +1622,19 @@ export type ApplicationUpdateInput = { /** The clientId for the application. */ clientId?: InputMaybe; description?: InputMaybe; - /** The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the application (ie: 4242) */ + /** + * The legacy public id identifying the application (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; name?: InputMaybe; + /** The resource public id (ie: app_xxxxxxxx) */ + publicId?: InputMaybe; redirectUri?: InputMaybe; }; @@ -2771,8 +2841,11 @@ export type Comment = { fromAccount?: Maybe; hostApplication?: Maybe; html?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; order?: Maybe; + /** The resource public id (ie: cmt_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** Returns a map of reactions counts for this comment */ reactions?: Maybe; /** The type of this comment */ @@ -2809,8 +2882,13 @@ export type CommentCreateInput = { }; export type CommentReferenceInput = { - /** The public id identifying the comment */ + /** + * The public id identifying the comment + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** The resource public id (ie: cmt_xxxxxxxx) */ + publicId?: InputMaybe; }; /** All supported comment contexts */ @@ -2823,7 +2901,10 @@ export enum CommentType { export type CommentUpdateInput = { html?: InputMaybe; - id: Scalars['String']['input']; + /** @deprecated 2026-02-25: use publicId */ + id?: InputMaybe; + /** The resource public id (ie: cmt_xxxxxxxx) */ + publicId?: InputMaybe; }; export type CommunityAssociatedAccount = { @@ -2896,13 +2977,18 @@ export type ConnectedAccount = { /** The account who connected this account */ createdByAccount?: Maybe; hash?: Maybe; - /** Unique identifier for this connected account */ + /** + * Unique identifier for this connected account + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** * The internal database identifier of the Connected Account (ie: 580) - * @deprecated 2020-05-01: should only be used during the transition to GraphQL API v2. + * @deprecated 2026-02-25: use publicId */ legacyId?: Maybe; + /** The resource public id (ie: conn_xxxxxxxx) */ + publicId: Scalars['String']['output']; service: ConnectedAccountService; settings?: Maybe; /** The date on which the ConnectedAccount was last updated */ @@ -2927,10 +3013,18 @@ export type ConnectedAccountCreateInput = { }; export type ConnectedAccountReferenceInput = { - /** The public id identifying the connected account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the connected account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The internal id of the account (ie: 580) */ + /** + * The internal id of the account (ie: 580) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: conn_xxxxxxxx) */ + publicId?: InputMaybe; }; /** All supported services a user can connect with */ @@ -3082,7 +3176,10 @@ export type Conversation = { createdAt: Scalars['DateTime']['output']; followers: AccountCollection; fromAccount?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** The resource public id (ie: conv_xxxxxxxx) */ + publicId: Scalars['String']['output']; slug: Scalars['String']['output']; stats?: Maybe; summary: Scalars['String']['output']; @@ -3115,9 +3212,15 @@ export type ConversationCollection = Collection & { }; export type ConversationReferenceInput = { - /** The public id identifying the conversation */ + /** + * The public id identifying the conversation + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** @deprecated 2026-02-25: use publicId */ legacyId?: InputMaybe; + /** The resource public id (ie: conv_xxxxxxxx) */ + publicId?: InputMaybe; }; export type ConversationStats = { @@ -4882,6 +4985,7 @@ export type Expense = { feesPayer: FeesPayer; /** The account from where the expense was paid */ host?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; /** Date of the expense */ incurredAt: Scalars['DateTime']['output']; @@ -4890,7 +4994,10 @@ export type Expense = { /** Information to display on the invoice. Only visible to user and admins. */ invoiceInfo?: Maybe; items: Array; - /** Legacy ID as returned by API V1. Avoid relying on this field as it may be removed in the future. */ + /** + * Legacy ID as returned by API V1. Avoid relying on this field as it may be removed in the future. + * @deprecated 2026-02-25: use publicId + */ legacyId: Scalars['Int']['output']; /** Returns the list of legal documents attached to this expense. Must be logged in as a host admin. */ legalDocuments?: Maybe; @@ -4918,6 +5025,8 @@ export type Expense = { platformBillingData?: Maybe; /** Additional information about the payment as HTML. Only visible to user and admins. */ privateMessage?: Maybe; + /** The resource public id (ie: expense_xxxxxxxx) */ + publicId: Scalars['String']['output']; quote?: Maybe; recurringExpense?: Maybe; /** User-provided reference number or any other identifier that references the invoice */ @@ -4986,7 +5095,10 @@ export type ExpenseActivityFilter = { /** Fields for an expense's attached file */ export type ExpenseAttachedFile = { __typename?: 'ExpenseAttachedFile'; - /** Unique identifier for this file */ + /** + * Unique identifier for this file + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** The file info associated with this item (if any) */ info?: Maybe; @@ -4995,17 +5107,24 @@ export type ExpenseAttachedFile = { * @deprecated 2023-01-23: We're moving this field to "file.name" */ name?: Maybe; + /** The resource public id (ie: eafile_xxxxxxxx) */ + publicId: Scalars['String']['output']; url?: Maybe; }; export type ExpenseAttachedFileInput = { - /** ID of the file */ + /** + * ID of the file + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** * Original filename * @deprecated 2023-02-02: This must now be provided when uploading the file. This parameter will be ignored. */ name?: InputMaybe; + /** The resource public id (ie: eafile_xxxxxxxx) */ + publicId?: InputMaybe; /** URL of the file */ url: Scalars['URL']['input']; }; @@ -5171,10 +5290,15 @@ export type ExpenseItem = { description?: Maybe; /** The file associated with this item (if any) */ file?: Maybe; - /** Unique identifier for this expense item */ + /** + * Unique identifier for this expense item + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** The date on which the expense took place */ incurredAt: Scalars['DateTime']['output']; + /** The resource public id (ie: expi_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** If the item currency is different than the expense currency, this field will expose the average exchange rate for this date as recorded by Open Collective. Used to decide whether the value in `amountV2.exchangeRate` looks correct. */ referenceExchangeRate?: Maybe; /** The date on which the item was last updated */ @@ -5208,10 +5332,15 @@ export type ExpenseItemInput = { amountV2?: InputMaybe; /** What is this item about? */ description?: InputMaybe; - /** ID of the item */ + /** + * ID of the item + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** When was the money spent? */ incurredAt?: InputMaybe; + /** The resource public id (ie: expi_xxxxxxxx) */ + publicId?: InputMaybe; /** URL of the file linked to this item. Must be provided if the expense type is RECEIPT. */ url?: InputMaybe; }; @@ -5321,11 +5450,14 @@ export type ExpensePermissions = { editTitle: Permission; editType: Permission; hold: Permission; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; markAsPaid: Permission; markAsSpam: Permission; markAsUnpaid: Permission; pay: Permission; + /** The resource public id (ie: expense_xxxxxxxx) */ + publicId: Scalars['String']['output']; reject: Permission; release: Permission; seeInvoiceInfo: Permission; @@ -5396,10 +5528,18 @@ export type ExpenseQuoteNotice = { }; export type ExpenseReferenceInput = { - /** The public id identifying the expense (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the expense (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The internal id of the expense (ie: 580) */ + /** + * The internal id of the expense (ie: 580) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: expense_xxxxxxxx) */ + publicId?: InputMaybe; }; /** Expense statistics related to the given accounts */ @@ -5496,8 +5636,11 @@ export type ExpenseUpdateInput = { customData?: InputMaybe; /** Main title of the expense */ description?: InputMaybe; - /** ID of the expense that you are trying to edit */ - id: Scalars['String']['input']; + /** + * ID of the expense that you are trying to edit + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; /** (Optional - applicable to invoice expense only) The invoice file for this expense */ invoiceFile?: InputMaybe; /** Tax ID, VAT number...etc This information will be printed on your invoice. */ @@ -5514,6 +5657,8 @@ export type ExpenseUpdateInput = { payoutMethod?: InputMaybe; /** A private note that will be attached to your invoice, as HTML */ privateMessage?: InputMaybe; + /** The resource public id (ie: expense_xxxxxxxx) */ + publicId?: InputMaybe; /** User-provided reference number or any other identifier that references the invoice */ reference?: InputMaybe; /** Tags associated to the expense (ie. Food, Engineering...) */ @@ -5530,9 +5675,12 @@ export type ExpenseValuesByRole = { accountAdmin?: Maybe; /** The values provided by the host admin(s) */ hostAdmin?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['NonEmptyString']['output']; /** The values provided by the prediction service */ prediction?: Maybe; + /** The resource public id (ie: expense_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The values provided by the expense submitter(s) */ submitter?: Maybe; }; @@ -5557,9 +5705,15 @@ export type ExportRequest = { expiresAt?: Maybe; /** The exported file (if completed) */ file?: Maybe; - /** Unique identifier for this export request */ + /** + * Unique identifier for this export request + * @deprecated 2026-02-25: use publicId + */ id: Scalars['NonEmptyString']['output']; - /** Legacy numeric ID of this export request */ + /** + * Legacy numeric ID of this export request + * @deprecated 2026-02-25: use publicId + */ legacyId: Scalars['Int']['output']; /** The name of the export request */ name: Scalars['NonEmptyString']['output']; @@ -5567,6 +5721,8 @@ export type ExportRequest = { parameters?: Maybe; /** The progress of the export request (0-100) */ progress?: Maybe; + /** The resource public id (ie: exprt_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The status of the export request */ status: ExportRequestStatus; /** The type of export request */ @@ -5600,10 +5756,18 @@ export type ExportRequestCreateInput = { /** Input type for referencing an ExportRequest */ export type ExportRequestReferenceInput = { - /** The public id identifying the export request */ + /** + * The public id identifying the export request + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The internal id of the export request */ + /** + * The internal id of the export request + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: exprt_xxxxxxxx) */ + publicId?: InputMaybe; }; /** The status of an export request */ @@ -7129,8 +7293,11 @@ export type HostApplication = { customData?: Maybe; /** The host the collective applied to */ host: Host; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; message?: Maybe; + /** The resource public id (ie: happ_xxxxxxxx) */ + publicId: Scalars['String']['output']; status?: Maybe; /** The date on which the item was updated */ updatedAt: Scalars['DateTime']['output']; @@ -7153,8 +7320,13 @@ export type HostApplicationCollection = Collection & { }; export type HostApplicationReferenceInput = { - /** The public id identifying the host application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the host application (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** The resource public id (ie: happ_xxxxxxxx) */ + publicId?: InputMaybe; }; export enum HostApplicationStatus { @@ -7282,14 +7454,19 @@ export type HostPlan = { hostedCollectives?: Maybe; /** Max number of collectives than can be hosted */ hostedCollectivesLimit?: Maybe; - /** The public id identifying the account (ie: 5v08jk63-w4g9nbpz-j7qmyder-p7ozax5g) */ - id?: Maybe; + /** + * The public id identifying the account (ie: 5v08jk63-w4g9nbpz-j7qmyder-p7ozax5g) + * @deprecated 2026-02-25: use publicId + */ + id: Scalars['String']['output']; /** Whether this plan allows to use the manual payments feature */ manualPayments?: Maybe; /** The name of the plan */ name?: Maybe; /** Ability to collect Platform Tips. */ platformTips?: Maybe; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** Whether this plan allows to use the transferwise payouts feature */ transferwisePayouts?: Maybe; /** Amount limit for the transferwise payouts feature under this plan */ @@ -8038,13 +8215,18 @@ export type KycVerification = { account: Account; /** The user who added this account to the KYC verification list */ createdByUser?: Maybe; - /** Unique identifier for this KYC verification */ + /** + * Unique identifier for this KYC verification + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; permissions: KycVerificationPermissions; /** Provider used to make this KYC verification */ provider: KycProvider; /** Provider specific data */ providerData: KycProviderData; + /** The resource public id (ie: kyc_xxxxxxxx) */ + publicId: Scalars['String']['output']; requestedAt: Scalars['DateTime']['output']; /** The account that requested the KYC verification */ requestedByAccount: Account; @@ -8106,13 +8288,18 @@ export type LegalDocument = { account: Account; /** URL to download the file. Must be logged in as a host with access to the document. The returned URL will be protected by authentication + 2FA. */ documentLink?: Maybe; - /** Unique identifier for this legal document */ + /** + * Unique identifier for this legal document + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** * Whether this legal document is expired * @deprecated 2025-05-27: Use "status" = "EXPIRED" instead */ isExpired: Scalars['Boolean']['output']; + /** The resource public id (ie: ldoc_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The date and time the request for this legal document was created */ requestedAt: Scalars['DateTime']['output']; /** The service that provided this legal document */ @@ -8219,7 +8406,10 @@ export type ManualPaymentProvider = { createdAt: Scalars['DateTime']['output']; /** Icon name for this payment provider */ icon?: Maybe; - /** Unique identifier for this provider */ + /** + * Unique identifier for this provider + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** Payment instructions to show contributors (HTML) */ instructions?: Maybe; @@ -8227,6 +8417,8 @@ export type ManualPaymentProvider = { isArchived: Scalars['Boolean']['output']; /** Display name for this payment provider */ name: Scalars['NonEmptyString']['output']; + /** The resource public id (ie: mpprov_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The type of manual payment provider */ type: ManualPaymentProviderType; /** When this provider was last updated */ @@ -8247,8 +8439,13 @@ export type ManualPaymentProviderCreateInput = { }; export type ManualPaymentProviderReferenceInput = { - /** The unique identifier of the manual payment provider */ - id: Scalars['String']['input']; + /** + * The unique identifier of the manual payment provider + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; + /** The resource public id (ie: mpprov_xxxxxxxx) */ + publicId?: InputMaybe; }; /** The type of manual payment provider */ @@ -8281,11 +8478,14 @@ export type Member = { createdAt: Scalars['DateTime']['output']; /** Custom user description */ description?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; /** If membership is inherited from parent collective */ inherited: Scalars['Boolean']['output']; /** Whether the membership is active. Warning: this definition is subject to change. */ isActive: Scalars['Boolean']['output']; + /** The resource public id (ie: memb_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** Custom user message from member to the collective */ publicMessage?: Maybe; role: MemberRole; @@ -8311,20 +8511,31 @@ export type MemberInvitation = { account: Account; createdAt: Scalars['DateTime']['output']; description?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; /** The person who invited the member, if any */ inviter?: Maybe; memberAccount: Account; + /** The resource public id (ie: minvite_xxxxxxxx) */ + publicId: Scalars['String']['output']; role: MemberRole; since?: Maybe; tier?: Maybe; }; export type MemberInvitationReferenceInput = { - /** The public id identifying the member invitation (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the member invitation (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The internal id of the invitation (ie: 580) */ + /** + * The internal id of the invitation (ie: 580) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: minvite_xxxxxxxx) */ + publicId?: InputMaybe; }; /** This represents a MemberOf relationship (ie: Collective backed by an Organization) */ @@ -8334,11 +8545,14 @@ export type MemberOf = { createdAt: Scalars['DateTime']['output']; /** Custom user description */ description?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; /** If membership is inherited from parent collective */ inherited: Scalars['Boolean']['output']; /** Whether the membership is active. Warning: this definition is subject to change. */ isActive: Scalars['Boolean']['output']; + /** The resource public id (ie: memb_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** Custom user message from member to the collective */ publicMessage?: Maybe; role: MemberRole; @@ -9849,17 +10063,22 @@ export type MutationUploadFileArgs = { export type NewAccountOrReferenceInput = { email?: InputMaybe; - /** The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** * The internal id of the account (ie: 580) - * @deprecated 2020-01-01: should only be used during the transition to GraphQL API v2. + * @deprecated 2026-02-25: use publicId */ legacyId?: InputMaybe; legalName?: InputMaybe; name?: InputMaybe; newsletterOptIn?: InputMaybe; organization?: InputMaybe; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId?: InputMaybe; /** The slug identifying the account (ie: babel for https://opencollective.com/babel) */ slug?: InputMaybe; }; @@ -9890,11 +10109,14 @@ export type OAuthAuthorization = { createdAt: Scalars['DateTime']['output']; /** The time of expiration */ expiresAt: Scalars['DateTime']['output']; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; /** The last time of token was used */ lastUsedAt?: Maybe; /** Whether this OAuth token is allowed to directly use operations that would normally require 2FA */ preAuthorize2FA: Scalars['Boolean']['output']; + /** The resource public id (ie: utok_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The attached scopes. */ scope?: Maybe>>; /** The time of last update */ @@ -9911,8 +10133,13 @@ export type OAuthAuthorizationCollection = Collection & { }; export type OAuthAuthorizationReferenceInput = { - /** The id identifying the OAuth Authorization (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The id identifying the OAuth Authorization (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** The resource public id (ie: utok_xxxxxxxx) */ + publicId?: InputMaybe; }; /** All supported OAuth scopes */ @@ -10005,8 +10232,10 @@ export type Order = { fromAccount?: Maybe; /** Host fee percent attached to the Order. */ hostFeePercent?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; lastChargedAt?: Maybe; + /** @deprecated 2026-02-25: use publicId */ legacyId: Scalars['Int']['output']; manualPaymentProvider?: Maybe; /** This represents a MemberOf relationship (ie: Collective backed by an Individual) attached to the Order. */ @@ -10029,6 +10258,8 @@ export type Order = { platformTipEligible?: Maybe; /** Date the funds were received. */ processedAt?: Maybe; + /** The resource public id (ie: ord_xxxxxxxx) */ + publicId: Scalars['String']['output']; quantity?: Maybe; status?: Maybe; tags: Array>; @@ -10206,14 +10437,25 @@ export type OrderPermissions = { canSetTags: Scalars['Boolean']['output']; /** Whether the current user can update the accounting category of this order */ canUpdateAccountingCategory: Scalars['Boolean']['output']; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** The resource public id (ie: ord_xxxxxxxx) */ + publicId: Scalars['String']['output']; }; export type OrderReferenceInput = { - /** The public id identifying the order (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the order (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the order (ie: 4242) */ + /** + * The legacy public id identifying the order (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: ord_xxxxxxxx) */ + publicId?: InputMaybe; }; /** All order statuses */ @@ -10893,6 +11135,7 @@ export type PaymentMethod = { createdAt: Scalars['DateTime']['output']; data?: Maybe; expiryDate?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; legacyId?: Maybe; limitedToHosts?: Maybe>>; @@ -10906,6 +11149,8 @@ export type PaymentMethod = { * @deprecated 2021-03-02: Please use service + type */ providerType?: Maybe; + /** The resource public id (ie: pymt_xxxxxxxx) */ + publicId: Scalars['String']['output']; service?: Maybe; /** For gift cards, this field will return to the source payment method */ sourcePaymentMethod?: Maybe; @@ -10957,7 +11202,10 @@ export type PaymentMethodOrdersArgs = { export type PaymentMethodInput = { /** When creating a credit card, use this field to set its info */ creditCardInfo?: InputMaybe; - /** The id assigned to the payment method */ + /** + * The id assigned to the payment method + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** Whether this payment method should be saved for future payments */ isSavedForLater?: InputMaybe; @@ -10976,6 +11224,8 @@ export type PaymentMethodInput = { paymentIntentId?: InputMaybe; /** To pass when type is PAYPAL */ paypalInfo?: InputMaybe; + /** The resource public id (ie: pymt_xxxxxxxx) */ + publicId?: InputMaybe; /** Service of this payment method */ service?: InputMaybe; /** Type of this payment method */ @@ -11000,8 +11250,13 @@ export enum PaymentMethodLegacyType { } export type PaymentMethodReferenceInput = { - /** The id assigned to the payment method */ + /** + * The id assigned to the payment method + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** The resource public id (ie: pymt_xxxxxxxx) */ + publicId?: InputMaybe; }; export enum PaymentMethodService { @@ -11094,12 +11349,17 @@ export type PayoutMethod = { createdAt: Scalars['DateTime']['output']; /** The actual data for this payout method. Content depends on the type. */ data?: Maybe; - /** Unique identifier for this payout method */ + /** + * Unique identifier for this payout method + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** Whether this payout method has been saved to be used for future payouts */ isSaved?: Maybe; /** A friendly name for users to easily find their payout methods */ name?: Maybe; + /** The resource public id (ie: payout_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The type of this payout method (usually the payment provider) */ type?: Maybe; /** The date and time this payout method was updated */ @@ -11109,21 +11369,34 @@ export type PayoutMethod = { export type PayoutMethodInput = { /** Additional data specific to the payout method type. For custom payout methods (type=OTHER), must contain only `content` (string) and `currency` fields. For other types, may contain type-specific details (e.g., bank account details, PayPal email) */ data?: InputMaybe; - /** The unique identifier of the payout method */ + /** + * The unique identifier of the payout method + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** Whether this payout method should be saved for future use */ isSaved?: InputMaybe; - /** The legacy identifier used in older systems */ + /** + * The legacy identifier used in older systems + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; /** A human-readable name for the payout method */ name?: InputMaybe; + /** The resource public id (ie: payout_xxxxxxxx) */ + publicId?: InputMaybe; /** The type of payout method (e.g., PayPal, bank transfer) */ type?: InputMaybe; }; export type PayoutMethodReferenceInput = { - /** The id assigned to the payout method */ + /** + * The id assigned to the payout method + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** The resource public id (ie: payout_xxxxxxxx) */ + publicId?: InputMaybe; }; export enum PayoutMethodType { @@ -11203,9 +11476,15 @@ export type PendingOrderEditInput = { fromAccountInfo?: InputMaybe; /** Custom Host fee percent for this order */ hostFeePercent?: InputMaybe; - /** The public id identifying the order (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the order (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the order (ie: 4242) */ + /** + * The legacy public id identifying the order (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; /** Private memo for the host */ memo?: InputMaybe; @@ -11215,6 +11494,8 @@ export type PendingOrderEditInput = { platformTipAmount?: InputMaybe; /** External identifier for the order */ ponumber?: InputMaybe; + /** The resource public id (ie: ord_xxxxxxxx) */ + publicId?: InputMaybe; /** The tax to apply to the order */ tax?: InputMaybe; /** The tier you are contributing to */ @@ -11243,12 +11524,17 @@ export type PersonalToken = { createdAt?: Maybe; /** The date on which the personal token expires */ expiresAt?: Maybe; - /** Unique identifier for this personal token */ + /** + * Unique identifier for this personal token + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** A friendly name for users to easily find their personal tokens */ name?: Maybe; /** Whether this token is allowed to directly use operations that would normally require 2FA */ preAuthorize2FA: Scalars['Boolean']['output']; + /** The resource public id (ie: ptok_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The scopes of the personal token */ scope?: Maybe>>; /** The personal token */ @@ -11278,22 +11564,38 @@ export type PersonalTokenCreateInput = { }; export type PersonalTokenReferenceInput = { - /** The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the personal-token (ie: 4242) */ + /** + * The legacy public id identifying the personal-token (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: ptok_xxxxxxxx) */ + publicId?: InputMaybe; }; /** Input type for PersonalToken */ export type PersonalTokenUpdateInput = { expiresAt?: InputMaybe; - /** The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the personal-token (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the personal-token (ie: 4242) */ + /** + * The legacy public id identifying the personal-token (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; name?: InputMaybe; /** Whether this token is allowed to directly use operations that would normally require 2FA */ preAuthorize2FA?: InputMaybe; + /** The resource public id (ie: ptok_xxxxxxxx) */ + publicId?: InputMaybe; scope?: InputMaybe>>; }; @@ -11466,10 +11768,15 @@ export type PlatformSubscriptionFeaturesFeatures = { }; export type PlatformSubscriptionInput = { - /** The ID of the platform subscription to update */ + /** + * The ID of the platform subscription to update + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** The new platform subscription plan to apply to the account */ plan: PlatformSubscriptionPlanInput; + /** The resource public id (ie: psub_xxxxxxxx) */ + publicId?: InputMaybe; }; export type PlatformSubscriptionPlanInput = { @@ -11546,7 +11853,10 @@ export type Policies = { EXPENSE_PUBLIC_VENDORS?: Maybe; MAXIMUM_VIRTUAL_CARD_LIMIT_AMOUNT_FOR_INTERVAL?: Maybe; REQUIRE_2FA_FOR_ADMINS?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId: Scalars['String']['output']; }; export type PoliciesCollectiveExpenseAuthorCannotApprove = { @@ -12352,6 +12662,7 @@ export type QueryApplicationArgs = { clientId?: InputMaybe; id?: InputMaybe; legacyId?: InputMaybe; + publicId?: InputMaybe; }; @@ -12605,6 +12916,7 @@ export type QueryPaypalPlanArgs = { export type QueryPersonalTokenArgs = { id?: InputMaybe; legacyId?: InputMaybe; + publicId?: InputMaybe; }; @@ -12772,7 +13084,10 @@ export type RecurringExpense = { /** The time this expense will cease to be recurring */ endsAt?: Maybe; fromAccount: Account; - /** Unique identifier for this recurring expense */ + /** + * Unique identifier for this recurring expense + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** The interval in which this recurring expense is created */ interval: RecurringExpenseInterval; @@ -12780,6 +13095,8 @@ export type RecurringExpense = { lastDraftedAt: Scalars['DateTime']['output']; /** The last expense created by this recurring expense record paid for */ lastExpenseCreated?: Maybe; + /** The resource public id (ie: reccexp_xxxxxxxx) */ + publicId: Scalars['String']['output']; }; export type RecurringExpenseInput = { @@ -13171,10 +13488,12 @@ export type Tier = { endsAt?: Maybe; frequency: TierFrequency; goal: Amount; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; /** @deprecated 2020-08-24: Please use "frequency" */ interval?: Maybe; invoiceTemplate?: Maybe; + /** @deprecated 2026-02-25: use publicId */ legacyId: Scalars['Int']['output']; /** A long, html-formatted description. */ longDescription?: Maybe; @@ -13184,6 +13503,8 @@ export type Tier = { /** Get all orders */ orders: OrderCollection; presets?: Maybe>>; + /** The resource public id (ie: tier_xxxxxxxx) */ + publicId: Scalars['String']['output']; requireAddress: Scalars['Boolean']['output']; singleTicket?: Maybe; slug?: Maybe; @@ -13254,18 +13575,29 @@ export enum TierInterval { } export type TierReferenceInput = { - /** The id assigned to the Tier */ + /** + * The id assigned to the Tier + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** Pass this flag to reference the custom tier (/donate) */ isCustom?: InputMaybe; - /** The DB id assigned to the Tier */ + /** + * The DB id assigned to the Tier + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: tier_xxxxxxxx) */ + publicId?: InputMaybe; }; /** Stats about a tier */ export type TierStats = { __typename?: 'TierStats'; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** The resource public id (ie: tier_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** How much money is given for this tier for each tier.interval (monthly/yearly). For flexible tiers, this amount is a monthly average of contributions amount, taking into account both yearly and monthly subscriptions. */ recurringAmount: Amount; /** Total amount donated for this tier, in cents. */ @@ -13288,14 +13620,19 @@ export type TierUpdateInput = { description?: InputMaybe; frequency?: InputMaybe; goal?: InputMaybe; - /** The public id identifying the tier (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ - id: Scalars['String']['input']; + /** + * The public id identifying the tier (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; invoiceTemplate?: InputMaybe; longDescription?: InputMaybe; maxQuantity?: InputMaybe; minimumAmount?: InputMaybe; name?: InputMaybe; presets?: InputMaybe>; + /** The resource public id (ie: tier_xxxxxxxx) */ + publicId?: InputMaybe; singleTicket?: InputMaybe; type?: InputMaybe; useStandalonePage?: InputMaybe; @@ -13554,10 +13891,18 @@ export type TransactionPermissions = { }; export type TransactionReferenceInput = { - /** The public id identifying the transaction (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the transaction (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The internal id of the transaction (ie: 580) */ + /** + * The internal id of the transaction (ie: 580) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: txn_xxxxxxxx) */ + publicId?: InputMaybe; }; /** EXPERIMENTAL (this may change or be deleted) */ @@ -13624,7 +13969,10 @@ export type TransactionsImport = { csvConfig?: Maybe; /** URL of the import (e.g. link to the CSV file) */ file?: Maybe; - /** The public id of the import */ + /** + * The public id of the import + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** List of available accounts for the import */ institutionAccounts?: Maybe>>; @@ -13643,6 +13991,8 @@ export type TransactionsImport = { * @deprecated 2025-07-02: Please use the generic accounts field instead. */ plaidAccounts?: Maybe>>; + /** The resource public id (ie: timp_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** List of rows in the import */ rows: TransactionsImportRowCollection; /** Source of the import (e.g. "Bank of America", "Eventbrite", etc...) */ @@ -13700,8 +14050,13 @@ export type TransactionsImportEditResponse = { }; export type TransactionsImportReferenceInput = { - /** The id of the row */ - id: Scalars['NonEmptyString']['input']; + /** + * The id of the row + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; + /** The resource public id (ie: timp_xxxxxxxx) */ + publicId?: InputMaybe; }; /** A row in a transactions import */ @@ -13719,7 +14074,10 @@ export type TransactionsImportRow = { description: Scalars['String']['output']; /** The expense associated with the row */ expense?: Maybe; - /** The public id of the imported row */ + /** + * The public id of the imported row + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; /** Corresponding account for the row, based on its account ID */ institutionAccount?: Maybe; @@ -13732,6 +14090,8 @@ export type TransactionsImportRow = { * @deprecated 2025-07-02: Please use the generic institutionAccount field instead. */ plaidAccount?: Maybe; + /** The resource public id (ie: txnimportrow_xxxxxxxx) */ + publicId: Scalars['String']['output']; /** The raw data of the row */ rawValue?: Maybe; /** The source id of the row */ @@ -13788,8 +14148,13 @@ export enum TransactionsImportRowOrderInputField { } export type TransactionsImportRowReferenceInput = { - /** The id of the row */ - id: Scalars['NonEmptyString']['input']; + /** + * The id of the row + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; + /** The resource public id (ie: txnimportrow_xxxxxxxx) */ + publicId?: InputMaybe; }; /** The status of a row in a transactions import */ @@ -13815,12 +14180,17 @@ export type TransactionsImportRowUpdateInput = { description?: InputMaybe; /** The expense associated with the row */ expense?: InputMaybe; - /** The id of the row */ - id: Scalars['NonEmptyString']['input']; + /** + * The id of the row + * @deprecated 2026-02-25: use publicId + */ + id?: InputMaybe; /** Optional note for the row */ note?: InputMaybe; /** The order associated with the row */ order?: InputMaybe; + /** The resource public id (ie: txnimportrow_xxxxxxxx) */ + publicId?: InputMaybe; /** The source id of the row */ sourceId?: InputMaybe; /** To update the status of the row. Will be ignored if the status is not applicable (e.g. trying to ignore a row that is already linked) */ @@ -13881,8 +14251,13 @@ export type TransferWise = { availableCurrencies?: Maybe>>; /** Transferwise balances. Returns null if Transferwise account is not connected. */ balances?: Maybe>>; - /** Unique identifier for this Wise object */ + /** + * Unique identifier for this Wise object + * @deprecated 2026-02-25: use publicId + */ id: Scalars['String']['output']; + /** The resource public id (ie: payout_xxxxxxxx) */ + publicId: Scalars['String']['output']; requiredFields?: Maybe>>; }; @@ -13958,12 +14333,16 @@ export type Update = { createdAt: Scalars['DateTime']['output']; fromAccount?: Maybe; html?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; isChangelog: Scalars['Boolean']['output']; isPrivate: Scalars['Boolean']['output']; + /** @deprecated 2026-02-25: use publicId */ legacyId?: Maybe; makePublicOn?: Maybe; notificationAudience?: Maybe; + /** The resource public id (ie: upd_xxxxxxxx) */ + publicId: Scalars['String']['output']; publishedAt?: Maybe; /** Returns a map of reactions counts for this update */ reactions?: Maybe; @@ -14056,19 +14435,27 @@ export enum UpdateDateTimeField { } export type UpdateReferenceInput = { - /** The public id identifying the update */ + /** + * The public id identifying the update + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; + /** The resource public id (ie: upd_xxxxxxxx) */ + publicId?: InputMaybe; }; /** Input type for UpdateType */ export type UpdateUpdateInput = { fromAccount?: InputMaybe; html?: InputMaybe; - id: Scalars['String']['input']; + /** @deprecated 2026-02-25: use publicId */ + id?: InputMaybe; isChangelog?: InputMaybe; isPrivate?: InputMaybe; makePublicOn?: InputMaybe; notificationAudience?: InputMaybe; + /** The resource public id (ie: upd_xxxxxxxx) */ + publicId?: InputMaybe; slug?: InputMaybe; title?: InputMaybe; }; @@ -14115,14 +14502,21 @@ export type UserTwoFactorMethod = { createdAt: Scalars['DateTime']['output']; description?: Maybe; icon?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; method: TwoFactorMethod; name: Scalars['String']['output']; + /** The resource public id (ie: u2f_xxxxxxxx) */ + publicId: Scalars['String']['output']; }; export type UserTwoFactorMethodReferenceInput = { + /** @deprecated 2026-02-25: use publicId */ id?: InputMaybe; + /** @deprecated 2026-02-25: use publicId */ legacyId?: InputMaybe; + /** The resource public id (ie: u2f_xxxxxxxx) */ + publicId?: InputMaybe; }; /** This represents a Vendor account */ @@ -14696,7 +15090,10 @@ export type VendorCreateInput = { export type VendorEditInput = { /** The profile background image, for the banner and social media sharing */ backgroundImage?: InputMaybe; - /** The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the account (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; /** The profile avatar image */ image?: InputMaybe; @@ -14704,13 +15101,15 @@ export type VendorEditInput = { imageUrl?: InputMaybe; /** * The internal id of the account (ie: 580) - * @deprecated 2020-01-01: should only be used during the transition to GraphQL API v2. + * @deprecated 2026-02-25: use publicId */ legacyId?: InputMaybe; legalName?: InputMaybe; location?: InputMaybe; name?: InputMaybe; payoutMethod?: InputMaybe; + /** The resource public id (ie: acc_xxxxxxxx) */ + publicId?: InputMaybe; /** The slug identifying the account (ie: babel for https://opencollective.com/babel) */ slug?: InputMaybe; tags?: InputMaybe>>; @@ -14748,11 +15147,14 @@ export type VirtualCard = { currency?: Maybe; data?: Maybe; host?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id?: Maybe; last4?: Maybe; name?: Maybe; privateData?: Maybe; provider?: Maybe; + /** The resource public id (ie: vcard_xxxxxxxx) */ + publicId: Scalars['String']['output']; remainingLimit?: Maybe; spendingLimitAmount?: Maybe; spendingLimitInterval?: Maybe; @@ -14773,11 +15175,14 @@ export type VirtualCardCollection = Collection & { export type VirtualCardInput = { data?: InputMaybe; + /** @deprecated 2026-02-25: use publicId */ id?: InputMaybe; last4?: InputMaybe; name?: InputMaybe; privateData?: InputMaybe; provider?: InputMaybe; + /** The resource public id (ie: vcard_xxxxxxxx) */ + publicId?: InputMaybe; }; export enum VirtualCardLimitInterval { @@ -14795,7 +15200,10 @@ export enum VirtualCardProvider { } export type VirtualCardReferenceInput = { + /** @deprecated 2026-02-25: use publicId */ id?: InputMaybe; + /** The resource public id (ie: vcard_xxxxxxxx) */ + publicId?: InputMaybe; }; /** A Virtual Card request */ @@ -14806,9 +15214,13 @@ export type VirtualCardRequest = { createdAt?: Maybe; currency?: Maybe; host?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** @deprecated 2026-02-25: use publicId */ legacyId?: Maybe; notes?: Maybe; + /** The resource public id (ie: vcardreq_xxxxxxxx) */ + publicId: Scalars['String']['output']; purpose?: Maybe; spendingLimitAmount?: Maybe; spendingLimitInterval?: Maybe; @@ -14826,8 +15238,12 @@ export type VirtualCardRequestCollection = Collection & { }; export type VirtualCardRequestReferenceInput = { + /** @deprecated 2026-02-25: use publicId */ id?: InputMaybe; + /** @deprecated 2026-02-25: use publicId */ legacyId?: InputMaybe; + /** The resource public id (ie: vcardreq_xxxxxxxx) */ + publicId?: InputMaybe; }; /** The status of a virtual card request */ @@ -14849,8 +15265,12 @@ export type Webhook = { __typename?: 'Webhook'; account: Account; activityType?: Maybe; + /** @deprecated 2026-02-25: use publicId */ id: Scalars['String']['output']; + /** @deprecated 2026-02-25: use publicId */ legacyId: Scalars['Int']['output']; + /** The resource public id (ie: notif_xxxxxxxx) */ + publicId: Scalars['String']['output']; webhookUrl?: Maybe; }; @@ -14872,19 +15292,35 @@ export type WebhookCreateInput = { }; export type WebhookReferenceInput = { - /** The public id identifying the webhook (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the webhook (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the webhook (ie: 4242) */ + /** + * The legacy public id identifying the webhook (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: notif_xxxxxxxx) */ + publicId?: InputMaybe; }; /** Input type to update a Webhook */ export type WebhookUpdateInput = { activityType?: ActivityType; - /** The public id identifying the webhook (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) */ + /** + * The public id identifying the webhook (ie: dgm9bnk8-0437xqry-ejpvzeol-jdayw5re) + * @deprecated 2026-02-25: use publicId + */ id?: InputMaybe; - /** The legacy public id identifying the webhook (ie: 4242) */ + /** + * The legacy public id identifying the webhook (ie: 4242) + * @deprecated 2026-02-25: use publicId + */ legacyId?: InputMaybe; + /** The resource public id (ie: notif_xxxxxxxx) */ + publicId?: InputMaybe; webhookUrl: Scalars['URL']['input']; }; @@ -20243,7 +20679,7 @@ export type InternalTransferMutation = { __typename?: 'Mutation', createOrder: { type DashboardAccountsQueryFields_Bot_Fragment = { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; -type DashboardAccountsQueryFields_Collective_Fragment = { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; +type DashboardAccountsQueryFields_Collective_Fragment = { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; type DashboardAccountsQueryFields_Event_Fragment = { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20255,9 +20691,9 @@ type DashboardAccountsQueryFields_Event_Fragment = { __typename?: 'Event', id: s | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; -type DashboardAccountsQueryFields_Fund_Fragment = { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; +type DashboardAccountsQueryFields_Fund_Fragment = { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; type DashboardAccountsQueryFields_Host_Fragment = { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; @@ -20275,7 +20711,7 @@ type DashboardAccountsQueryFields_Project_Fragment = { __typename?: 'Project', i | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; type DashboardAccountsQueryFields_Vendor_Fragment = { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } }; @@ -20319,7 +20755,7 @@ export type AccountsDashboardQueryVariables = Exact<{ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20330,8 +20766,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20345,12 +20781,12 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Collective', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20361,8 +20797,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20376,12 +20812,12 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20392,8 +20828,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20407,7 +20843,7 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20419,10 +20855,10 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Fund', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20433,8 +20869,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20448,12 +20884,12 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20464,8 +20900,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20479,12 +20915,12 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20495,8 +20931,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20510,12 +20946,12 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20526,8 +20962,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20541,12 +20977,12 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Project', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20557,8 +20993,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20572,7 +21008,7 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20584,10 +21020,10 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20598,8 +21034,8 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } - | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } @@ -20613,7 +21049,7 @@ export type AccountsDashboardQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Project', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Vendor', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null> | null }, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | null }; @@ -20731,7 +21167,7 @@ export type HostedAccountDetailQuery = { __typename?: 'Query', account?: | { __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 } - | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Event', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, tags?: Array | null, createdAt?: any | null, parent?: | { __typename?: 'Bot', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } | { __typename?: 'Collective', id: string, legacyId: number, imageUrl?: string | null, name?: string | null, slug: string, settings: any, isHost: boolean } @@ -20795,7 +21231,7 @@ export type HostedAccountDetailQuery = { __typename?: 'Query', account?: | { __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 } - | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Fund', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive: boolean, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, members: { __typename?: 'MemberCollection', nodes?: Array<{ __typename?: 'Member', id: string, account?: | { __typename?: 'Bot', id: string, emails?: Array | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, emails?: Array | null, approvedAt?: any | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } @@ -20849,7 +21285,7 @@ export type HostedAccountDetailQuery = { __typename?: 'Query', account?: | { __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 } - | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, members: { __typename?: 'MemberCollection', nodes?: Array<{ __typename?: 'Member', id: string, account?: | { __typename?: 'Bot', id: string, emails?: Array | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, emails?: Array | null, approvedAt?: any | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } @@ -21075,7 +21511,7 @@ export type HostedAccountDetailQuery = { __typename?: 'Query', account?: | { __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 } - | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } + | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null } } | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, name?: string | null } | null> | null, permissions: { __typename?: 'AccountPermissions', addFunds: { __typename?: 'Permission', allowed: boolean } } } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, imageUrl?: string | null, isFrozen: boolean, isActive?: boolean | null, isArchived: boolean, tags?: Array | null, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, members: { __typename?: 'MemberCollection', nodes?: Array<{ __typename?: 'Member', id: string, account?: | { __typename?: 'Bot', id: string, emails?: Array | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, emails?: Array | null, approvedAt?: any | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } @@ -21263,7 +21699,7 @@ export type EditAddedFundsMutation = { __typename?: 'Mutation', editAddedFunds: export type AddFundsTierFieldsFragment = { __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null }; -export type AddFundsAccountQueryHostFieldsFragment = { __typename?: 'Host', id: string, type: AccountType, legacyId: number, slug: string, name?: string | null, settings: any, isTrustedHost: boolean, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } }; +export type AddFundsAccountQueryHostFieldsFragment = { __typename?: 'Host', id: string, type: AccountType, legacyId: number, slug: string, name?: string | null, settings: any, isTrustedHost: boolean, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } }; export type AddFundsAccountQueryVariables = Exact<{ slug: Scalars['String']['input']; @@ -21282,7 +21718,7 @@ export type AddFundsAccountQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | null> | null } } - | { __typename?: 'Collective', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, approvedAt?: any | null, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, addedFundsHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< + | { __typename?: 'Collective', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, approvedAt?: any | null, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, addedFundsHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } @@ -21413,7 +21849,7 @@ export type AddFundsAccountQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | null> | null } } - | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< + | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } @@ -21424,7 +21860,7 @@ export type AddFundsAccountQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | null> | null } } - | { __typename?: 'Fund', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, approvedAt?: any | null, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, addedFundsHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< + | { __typename?: 'Fund', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, approvedAt?: any | null, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, addedFundsHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } @@ -21445,7 +21881,7 @@ export type AddFundsAccountQuery = { __typename?: 'Query', account?: | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } - | null> | null }, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } + | null> | null }, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | { __typename?: 'Individual', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, isGuest: boolean, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } @@ -21457,7 +21893,7 @@ export type AddFundsAccountQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | null> | null } } - | { __typename?: 'Organization', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< + | { __typename?: 'Organization', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, legalName?: string | null, description?: string | null, imageUrl?: string | null, isArchived: boolean, isVerified: boolean, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } @@ -21588,7 +22024,7 @@ export type AddFundsAccountQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | null> | null } } - | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< + | null, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, legacyId: number, name?: string | null, settings: any, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, imageUrl?: string | null }> | null }, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, code: string, name: string, friendlyName?: string | null, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> } } | null, tiers: { __typename?: 'TierCollection', nodes?: Array<{ __typename?: 'Tier', id: string, slug?: string | null, legacyId: number, name?: string | null } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType } @@ -28987,7 +29423,7 @@ export type HostedCollectivesQueryVariables = Exact<{ }>; -export type HostedCollectivesQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, hostFeePercent?: number | null, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null, hostFeeSharePercent?: number | null }, hostedAccounts: { __typename?: 'HostedAccountCollection', offset?: number | null, limit?: number | null, totalCount?: number | null, nodes?: Array< +export type HostedCollectivesQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, currency: Currency, isHost: boolean, type: AccountType, settings: any, hostFeePercent?: number | null, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null, hostFeeSharePercent?: number | null }, hostedAccounts: { __typename?: 'HostedAccountCollection', offset?: number | null, limit?: number | null, totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, unhostedAt?: any | null, legacyId: number, name?: string | null, slug: string, website?: string | null, type: AccountType, currency: Currency, imageUrl?: string | null, isFrozen: boolean, isHost: boolean, tags?: Array | null, settings: any, createdAt?: any | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, consolidatedBalance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, totalAmountRaised: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, consolidatedTotalAmountRaised: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, consolidatedTotalNetAmountRaised: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, totalAmountSpent: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, consolidatedTotalAmountSpent: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, policies: { __typename?: 'Policies', id?: string | null, COLLECTIVE_ADMINS_CAN_SEE_PAYOUT_METHODS?: boolean | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array< | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null, members: { __typename?: 'MemberCollection', nodes?: Array<{ __typename?: 'Member', id: string, account?: | { __typename?: 'Bot', id: string, emails?: Array | null, name?: string | null, legalName?: string | null, slug: string, type: AccountType, description?: string | null, imageUrl?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } @@ -41639,7 +42075,7 @@ export type CreatePendingContributionModalQueryVariables = Exact<{ }>; -export type CreatePendingContributionModalQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, hostFeePercent?: number | null, isTrustedHost: boolean, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, name: string, friendlyName?: string | null, code: string, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> }, plan: { __typename?: 'HostPlan', id?: string | null, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, description?: string | null, tags?: Array | null, imageUrl?: string | null, isArchived: boolean, createdAt?: any | null, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null, name?: string | null, structured?: any | null } | null, createdByAccount?: +export type CreatePendingContributionModalQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, legacyId: number, type: AccountType, isHost: boolean, name?: string | null, slug: string, currency: Currency, settings: any, hostFeePercent?: number | null, isTrustedHost: boolean, orderAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, name: string, friendlyName?: string | null, code: string, kind?: AccountingCategoryKind | null, appliesTo?: AccountingCategoryAppliesTo | null }> }, plan: { __typename?: 'HostPlan', id: string, hostFees?: boolean | null }, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, vendors: { __typename?: 'VendorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, description?: string | null, tags?: Array | null, imageUrl?: string | null, isArchived: boolean, createdAt?: any | null, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null, name?: string | null, structured?: any | null } | null, createdByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, type: AccountType, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, type: AccountType, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, type: AccountType, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -43078,7 +43514,7 @@ export type ProcessExpenseActionMutation = { __typename?: 'Mutation', processExp | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legacyId: number, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: + | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -43140,7 +43576,7 @@ export type ProcessExpenseActionMutation = { __typename?: 'Mutation', processExp | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | null>, account: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -43151,11 +43587,11 @@ export type ProcessExpenseActionMutation = { __typename?: 'Mutation', processExp | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, isGuest: boolean, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -43166,7 +43602,7 @@ export type ProcessExpenseActionMutation = { __typename?: 'Mutation', processExp | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } , payoutMethod?: { __typename?: 'PayoutMethod', id: string, type?: PayoutMethodType | null, name?: string | null, data?: any | null, isSaved?: boolean | null, canBeEdited?: boolean | null, canBeDeleted?: boolean | null } | null, virtualCard?: { __typename?: 'VirtualCard', id?: string | null, name?: string | null, last4?: string | null } | null, permissions: { __typename?: 'ExpensePermissions', id: string, canEdit: boolean, canEditTags: boolean, canEditAccountingCategory: boolean, canEditType: boolean, canEditTitle: boolean, canEditItems: boolean, canEditPaidBy: boolean, canEditPayee: boolean, canEditPayoutMethod: boolean, canAttachReceipts: boolean, canDelete: boolean, canSeeInvoiceInfo: boolean, canApprove: boolean, canUnapprove: boolean, canReject: boolean, canMarkAsSpam: boolean, canPay: boolean, canMarkAsPaid: boolean, canMarkAsUnpaid: boolean, canMarkAsIncomplete: boolean, canComment: boolean, canUnschedulePayment: boolean, canVerifyDraftExpense: boolean, canUsePrivateNote: boolean, canHold: boolean, canRelease: boolean, canDownloadTaxForm: boolean, canSeePayoutMethodPrivateDetails: boolean, editAccountingCategory: { __typename?: 'Permission', allowed: boolean, reason?: string | null }, approve: { __typename?: 'Permission', allowed: boolean, reason?: string | null, reasonDetails?: any | null } }, activities: Array<{ __typename?: 'Activity', id: string, type: ActivityType, createdAt: any, data: any, account?: | { __typename?: 'Bot', id: string, slug: string } @@ -43303,7 +43739,7 @@ export type ExpenseActionsExpenseStatusQuery = { __typename?: 'Query', expense?: | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legacyId: number, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: + | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -43365,7 +43801,7 @@ export type ExpenseActionsExpenseStatusQuery = { __typename?: 'Query', expense?: | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | null>, account: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -43376,11 +43812,11 @@ export type ExpenseActionsExpenseStatusQuery = { __typename?: 'Query', expense?: | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, isGuest: boolean, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -43391,7 +43827,7 @@ export type ExpenseActionsExpenseStatusQuery = { __typename?: 'Query', expense?: | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } , payoutMethod?: { __typename?: 'PayoutMethod', id: string, type?: PayoutMethodType | null, name?: string | null, data?: any | null, isSaved?: boolean | null, canBeEdited?: boolean | null, canBeDeleted?: boolean | null } | null, virtualCard?: { __typename?: 'VirtualCard', id?: string | null, name?: string | null, last4?: string | null } | null, permissions: { __typename?: 'ExpensePermissions', id: string, canEdit: boolean, canEditTags: boolean, canEditAccountingCategory: boolean, canEditType: boolean, canEditTitle: boolean, canEditItems: boolean, canEditPaidBy: boolean, canEditPayee: boolean, canEditPayoutMethod: boolean, canAttachReceipts: boolean, canDelete: boolean, canSeeInvoiceInfo: boolean, canApprove: boolean, canUnapprove: boolean, canReject: boolean, canMarkAsSpam: boolean, canPay: boolean, canMarkAsPaid: boolean, canMarkAsUnpaid: boolean, canMarkAsIncomplete: boolean, canComment: boolean, canUnschedulePayment: boolean, canVerifyDraftExpense: boolean, canUsePrivateNote: boolean, canHold: boolean, canRelease: boolean, canDownloadTaxForm: boolean, canSeePayoutMethodPrivateDetails: boolean, editAccountingCategory: { __typename?: 'Permission', allowed: boolean, reason?: string | null }, approve: { __typename?: 'Permission', allowed: boolean, reason?: string | null, reasonDetails?: any | null } }, activities: Array<{ __typename?: 'Activity', id: string, type: ActivityType, createdAt: any, data: any, account?: | { __typename?: 'Bot', id: string, slug: string } @@ -43482,7 +43918,7 @@ export type AccountExpensesQueryVariables = Exact<{ }>; -export type AccountExpensesQuery = { __typename?: 'Query', expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, legacyId: number, description: string, reference?: string | null, status: ExpenseStatus, createdAt: any, tags: Array, amount: number, currency: Currency, type: ExpenseType, requiredLegalDocuments?: Array | null, feesPayer: FeesPayer, amountInCreatedByAccountCurrency?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null, exchangeRate?: { __typename?: 'CurrencyExchangeRate', date: any, value: number, source: CurrencyExchangeRateSourceType, isApproximate: boolean, fromCurrency: Currency, toCurrency: Currency } | null } | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, payee: +export type AccountExpensesQuery = { __typename?: 'Query', expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, legacyId: number, description: string, reference?: string | null, status: ExpenseStatus, createdAt: any, tags: Array, amount: number, currency: Currency, type: ExpenseType, requiredLegalDocuments?: Array | null, feesPayer: FeesPayer, amountInCreatedByAccountCurrency?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null, exchangeRate?: { __typename?: 'CurrencyExchangeRate', date: any, value: number, source: CurrencyExchangeRateSourceType, isApproximate: boolean, fromCurrency: Currency, toCurrency: Currency } | null } | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, payee: | { __typename?: 'Bot', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, isAdmin: boolean, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, grantHistory?: { __typename?: 'ExpenseCollection', totalCount?: number | null, totalAmount?: { __typename?: 'ExpenseCollectionTotalAmount', amount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null } | null } } | { __typename?: 'Collective', isApproved: boolean, id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, isAdmin: boolean, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, grantHistory?: { __typename?: 'ExpenseCollection', totalCount?: number | null, totalAmount?: { __typename?: 'ExpenseCollectionTotalAmount', amount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null } | null } } | { __typename?: 'Event', isApproved: boolean, id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, isAdmin: boolean, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, grantHistory?: { __typename?: 'ExpenseCollection', totalCount?: number | null, totalAmount?: { __typename?: 'ExpenseCollectionTotalAmount', amount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null } | null }, parent?: @@ -43591,7 +44027,7 @@ export type AccountExpensesMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Collective', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Collective', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43602,7 +44038,7 @@ export type AccountExpensesMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Event', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Event', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43613,7 +44049,7 @@ export type AccountExpensesMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Fund', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Fund', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43646,7 +44082,7 @@ export type AccountExpensesMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43657,7 +44093,7 @@ export type AccountExpensesMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Project', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Project', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43846,7 +44282,7 @@ export type HostDashboardExpensesQuery = { __typename?: 'Query', expenses: { __t | { __typename?: 'Organization', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null } - | null } | null> | null } | null } | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null }; + | null } | null> | null } | null } | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null }; export type HostInfoCardFieldsFragment = { __typename?: 'Host', id: string, legacyId: number, slug: string, currency: Currency, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, balances?: Array<{ __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null> | null } | null, stripe?: { __typename?: 'StripeConnectedAccount', issuingBalance?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null } } | null }; @@ -43875,7 +44311,7 @@ export type PaymentRequestsMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Collective', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Collective', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43886,7 +44322,7 @@ export type PaymentRequestsMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Event', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Event', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43897,7 +44333,7 @@ export type PaymentRequestsMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Fund', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Fund', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43930,7 +44366,7 @@ export type PaymentRequestsMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -43941,7 +44377,7 @@ export type PaymentRequestsMetadataQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | null> | null } } - | { __typename?: 'Project', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< + | { __typename?: 'Project', isApproved: boolean, id: string, slug: string, name?: string | null, imageUrl?: string | null, type: AccountType, currency: Currency, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, childrenAccounts: { __typename?: 'AccountCollection', totalCount?: number | null, nodes?: Array< | { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive?: boolean | null, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, currency: Currency, type: AccountType, isActive: boolean, isArchived: boolean } @@ -44170,7 +44606,7 @@ export type PaidDisbursementsQuery = { __typename?: 'Query', expenses: { __typen | { __typename?: 'Organization', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null } - | null } | null> | null } | null } | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null }; + | null } | null> | null } | null } | null> | null }, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null }; export type HostExpensesReportListQueryVariables = Exact<{ accountSlug: Scalars['String']['input']; @@ -62401,7 +62837,7 @@ export type OffPlatformTransactionsQueryVariables = Exact<{ }>; -export type OffPlatformTransactionsQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency: Currency, type: AccountType, policies: { __typename?: 'Policies', id?: string | null, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, accountingCategories?: { __typename?: 'AccountingCategoryCollection', totalCount?: number | null, nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, transactionsImports?: { __typename?: 'TransactionsImportsCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'TransactionsImport', id: string, source: any, name: any }> | null }, offPlatformTransactionsStats?: { __typename?: 'TransactionsImportStats', total: number, ignored: number, onHold: number, expenses: number, orders: number, processed: number, pending: number, imported: number }, offPlatformTransactions: { __typename?: 'TransactionsImportRowCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, status: TransactionsImportRowStatus, description: string, date: any, rawValue?: any | null, note?: string | null, accountId?: string | null, transactionsImport?: { __typename?: 'TransactionsImport', id: string, source: any, name: any }, institutionAccount?: { __typename?: 'TransactionsImportAccount', id: any, name: any } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, assignedAccounts: Array< +export type OffPlatformTransactionsQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency: Currency, type: AccountType, policies: { __typename?: 'Policies', id?: string | null, publicId: string, REQUIRE_2FA_FOR_ADMINS?: boolean | null }, accountingCategories?: { __typename?: 'AccountingCategoryCollection', totalCount?: number | null, nodes: Array<{ __typename?: 'AccountingCategory', id: string, publicId: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, transactionsImports?: { __typename?: 'TransactionsImportsCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'TransactionsImport', id: string, publicId: string, source: any, name: any }> | null }, offPlatformTransactionsStats?: { __typename?: 'TransactionsImportStats', total: number, ignored: number, onHold: number, expenses: number, orders: number, processed: number, pending: number, imported: number }, offPlatformTransactions: { __typename?: 'TransactionsImportRowCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, publicId: string, sourceId: any, status: TransactionsImportRowStatus, description: string, date: any, rawValue?: any | null, note?: string | null, accountId?: string | null, transactionsImport?: { __typename?: 'TransactionsImport', id: string, publicId: string, source: any, name: any }, institutionAccount?: { __typename?: 'TransactionsImportAccount', id: any, name: any } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, assignedAccounts: Array< | { __typename?: 'Bot', id: string, legacyId: number, slug: string, type: AccountType, name?: string | null, legalName?: string | null, currency: Currency, imageUrl?: string | null } | { __typename?: 'Collective', id: string, legacyId: number, slug: string, type: AccountType, name?: string | null, legalName?: string | null, currency: Currency, imageUrl?: string | null } | { __typename?: 'Event', id: string, legacyId: number, slug: string, type: AccountType, name?: string | null, legalName?: string | null, currency: Currency, imageUrl?: string | null } @@ -62431,7 +62867,7 @@ export type OffPlatformTransactionsQuery = { __typename?: 'Query', host?: { __ty | { __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 } } | null, transactionsImport?: { __typename?: 'TransactionsImport', id: string, lastSyncAt?: any | null, connectedAccount?: { __typename?: 'ConnectedAccount', id: string } | null, institutionAccounts?: Array<{ __typename?: 'TransactionsImportAccount', id: any, name: any, type?: string | null, subtype?: string | null, mask?: string | null } | null> | null } | null }; + | null } | null }> | null } } | null, transactionsImport?: { __typename?: 'TransactionsImport', id: string, publicId: string, lastSyncAt?: any | null, connectedAccount?: { __typename?: 'ConnectedAccount', id: string, publicId: string } | null, institutionAccounts?: Array<{ __typename?: 'TransactionsImportAccount', id: any, name: any, type?: string | null, subtype?: string | null, mask?: string | null } | null> | null } | null }; export type UploadTransactionsImportMutationVariables = Exact<{ importId: Scalars['NonEmptyString']['input']; @@ -65049,7 +65485,7 @@ export type EditCollectiveBankTransferHostQueryVariables = Exact<{ }>; -export type EditCollectiveBankTransferHostQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, legacyId: number, currency: Currency, settings: any, connectedAccounts?: Array<{ __typename?: 'ConnectedAccount', id: string, service: ConnectedAccountService } | null> | null, plan: { __typename?: 'HostPlan', id?: string | null, hostedCollectives?: number | null, manualPayments?: boolean | null, name?: string | null }, payoutMethods?: Array<{ __typename?: 'PayoutMethod', id: string, name?: string | null, data?: any | null, type?: PayoutMethodType | null } | null> | null, manualPaymentProviders: Array<{ __typename?: 'ManualPaymentProvider', id: string, type: ManualPaymentProviderType, name: any, instructions?: string | null, icon?: string | null, accountDetails?: any | null, isArchived: boolean, createdAt: any, updatedAt: any }> } | null }; +export type EditCollectiveBankTransferHostQuery = { __typename?: 'Query', host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, legacyId: number, currency: Currency, settings: any, connectedAccounts?: Array<{ __typename?: 'ConnectedAccount', id: string, service: ConnectedAccountService } | null> | null, plan: { __typename?: 'HostPlan', id: string, hostedCollectives?: number | null, manualPayments?: boolean | null, name?: string | null }, payoutMethods?: Array<{ __typename?: 'PayoutMethod', id: string, name?: string | null, data?: any | null, type?: PayoutMethodType | null } | null> | null, manualPaymentProviders: Array<{ __typename?: 'ManualPaymentProvider', id: string, type: ManualPaymentProviderType, name: any, instructions?: string | null, icon?: string | null, accountDetails?: any | null, isArchived: boolean, createdAt: any, updatedAt: any }> } | null }; export type CreateManualPaymentProviderMutationVariables = Exact<{ host: AccountReferenceInput; @@ -66204,8 +66640,8 @@ export type ExpensesPageQueryVariables = Exact<{ export type ExpensesPageQuery = { __typename?: 'Query', account?: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive?: boolean | null, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, parent?: + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -66216,11 +66652,11 @@ export type ExpensesPageQuery = { __typename?: 'Query', account?: | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive?: boolean | null, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive?: boolean | null, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, parent?: + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, expensesTags?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null, 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, RECEIVE_GRANTS?: 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 }, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, currency: Currency, isArchived: boolean, isActive: boolean, settings: any, createdAt?: any | null, supportedExpenseTypes: Array, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Event', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -66485,7 +66921,7 @@ export type LoggedInAccountExpensePayoutFieldsFragment = { __typename?: 'Individ | null> | null } } | null } | null> | null } }; -export type ExpenseHostFieldsFragment = { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } }; +export type ExpenseHostFieldsFragment = { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } }; export type ExpenseValuesByRoleFragmentFragment = { __typename?: 'ExpenseValuesByRole', id: any, submitter?: { __typename?: 'ExpenseValuesRoleDetails', accountingCategory?: { __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null } | null } | null, accountAdmin?: { __typename?: 'ExpenseValuesRoleDetails', accountingCategory?: { __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null } | null } | null, hostAdmin?: { __typename?: 'ExpenseValuesRoleDetails', accountingCategory?: { __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null } | null } | null }; @@ -66608,7 +67044,7 @@ export type ExpensePageExpenseFieldsFragment = { __typename?: 'Expense', id: str | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legacyId: number, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: + | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -66670,7 +67106,7 @@ export type ExpensePageExpenseFieldsFragment = { __typename?: 'Expense', id: str | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | null>, account: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -66681,11 +67117,11 @@ export type ExpensePageExpenseFieldsFragment = { __typename?: 'Expense', id: str | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, isGuest: boolean, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -66696,7 +67132,7 @@ export type ExpensePageExpenseFieldsFragment = { __typename?: 'Expense', id: str | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } , payoutMethod?: { __typename?: 'PayoutMethod', id: string, type?: PayoutMethodType | null, name?: string | null, data?: any | null, isSaved?: boolean | null, canBeEdited?: boolean | null, canBeDeleted?: boolean | null } | null, virtualCard?: { __typename?: 'VirtualCard', id?: string | null, name?: string | null, last4?: string | null } | null, permissions: { __typename?: 'ExpensePermissions', id: string, canEdit: boolean, canEditTags: boolean, canEditAccountingCategory: boolean, canEditType: boolean, canEditTitle: boolean, canEditItems: boolean, canEditPaidBy: boolean, canEditPayee: boolean, canEditPayoutMethod: boolean, canAttachReceipts: boolean, canDelete: boolean, canSeeInvoiceInfo: boolean, canApprove: boolean, canUnapprove: boolean, canReject: boolean, canMarkAsSpam: boolean, canPay: boolean, canMarkAsPaid: boolean, canMarkAsUnpaid: boolean, canMarkAsIncomplete: boolean, canComment: boolean, canUnschedulePayment: boolean, canVerifyDraftExpense: boolean, canUsePrivateNote: boolean, canHold: boolean, canRelease: boolean, canDownloadTaxForm: boolean, canSeePayoutMethodPrivateDetails: boolean, editAccountingCategory: { __typename?: 'Permission', allowed: boolean, reason?: string | null }, approve: { __typename?: 'Permission', allowed: boolean, reason?: string | null, reasonDetails?: any | null } }, activities: Array<{ __typename?: 'Activity', id: string, type: ActivityType, createdAt: any, data: any, account?: | { __typename?: 'Bot', id: string, slug: string } @@ -67008,7 +67444,7 @@ export type EditExpenseMutation = { __typename?: 'Mutation', editExpense: { __ty | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legacyId: number, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: + | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -67070,7 +67506,7 @@ export type EditExpenseMutation = { __typename?: 'Mutation', editExpense: { __ty | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | null>, account: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -67081,11 +67517,11 @@ export type EditExpenseMutation = { __typename?: 'Mutation', editExpense: { __ty | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, isGuest: boolean, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -67096,7 +67532,7 @@ export type EditExpenseMutation = { __typename?: 'Mutation', editExpense: { __ty | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } , payoutMethod?: { __typename?: 'PayoutMethod', id: string, type?: PayoutMethodType | null, name?: string | null, data?: any | null, isSaved?: boolean | null, canBeEdited?: boolean | null, canBeDeleted?: boolean | null } | null, virtualCard?: { __typename?: 'VirtualCard', id?: string | null, name?: string | null, last4?: string | null } | null, permissions: { __typename?: 'ExpensePermissions', id: string, canEdit: boolean, canEditTags: boolean, canEditAccountingCategory: boolean, canEditType: boolean, canEditTitle: boolean, canEditItems: boolean, canEditPaidBy: boolean, canEditPayee: boolean, canEditPayoutMethod: boolean, canAttachReceipts: boolean, canDelete: boolean, canSeeInvoiceInfo: boolean, canApprove: boolean, canUnapprove: boolean, canReject: boolean, canMarkAsSpam: boolean, canPay: boolean, canMarkAsPaid: boolean, canMarkAsUnpaid: boolean, canMarkAsIncomplete: boolean, canComment: boolean, canUnschedulePayment: boolean, canVerifyDraftExpense: boolean, canUsePrivateNote: boolean, canHold: boolean, canRelease: boolean, canDownloadTaxForm: boolean, canSeePayoutMethodPrivateDetails: boolean, editAccountingCategory: { __typename?: 'Permission', allowed: boolean, reason?: string | null }, approve: { __typename?: 'Permission', allowed: boolean, reason?: string | null, reasonDetails?: any | null } }, activities: Array<{ __typename?: 'Activity', id: string, type: ActivityType, createdAt: any, data: any, account?: | { __typename?: 'Bot', id: string, slug: string } @@ -67242,7 +67678,7 @@ export type MoveExpenseMutation = { __typename?: 'Mutation', moveExpense: { __ty | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legacyId: number, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: + | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -67304,7 +67740,7 @@ export type MoveExpenseMutation = { __typename?: 'Mutation', moveExpense: { __ty | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | null>, account: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -67315,11 +67751,11 @@ export type MoveExpenseMutation = { __typename?: 'Mutation', moveExpense: { __ty | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, isGuest: boolean, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -67330,7 +67766,7 @@ export type MoveExpenseMutation = { __typename?: 'Mutation', moveExpense: { __ty | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } , payoutMethod?: { __typename?: 'PayoutMethod', id: string, type?: PayoutMethodType | null, name?: string | null, data?: any | null, isSaved?: boolean | null, canBeEdited?: boolean | null, canBeDeleted?: boolean | null } | null, virtualCard?: { __typename?: 'VirtualCard', id?: string | null, name?: string | null, last4?: string | null } | null, permissions: { __typename?: 'ExpensePermissions', id: string, canEdit: boolean, canEditTags: boolean, canEditAccountingCategory: boolean, canEditType: boolean, canEditTitle: boolean, canEditItems: boolean, canEditPaidBy: boolean, canEditPayee: boolean, canEditPayoutMethod: boolean, canAttachReceipts: boolean, canDelete: boolean, canSeeInvoiceInfo: boolean, canApprove: boolean, canUnapprove: boolean, canReject: boolean, canMarkAsSpam: boolean, canPay: boolean, canMarkAsPaid: boolean, canMarkAsUnpaid: boolean, canMarkAsIncomplete: boolean, canComment: boolean, canUnschedulePayment: boolean, canVerifyDraftExpense: boolean, canUsePrivateNote: boolean, canHold: boolean, canRelease: boolean, canDownloadTaxForm: boolean, canSeePayoutMethodPrivateDetails: boolean, editAccountingCategory: { __typename?: 'Permission', allowed: boolean, reason?: string | null }, approve: { __typename?: 'Permission', allowed: boolean, reason?: string | null, reasonDetails?: any | null } }, activities: Array<{ __typename?: 'Activity', id: string, type: ActivityType, createdAt: any, data: any, account?: | { __typename?: 'Bot', id: string, slug: string } @@ -67510,7 +67946,7 @@ export type ExpensePageQuery = { __typename?: 'Query', expense?: { __typename?: | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legacyId: number, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } - | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: + | null, host?: { __typename?: 'Host', id: string, legacyId: number, name?: string | null, legalName?: string | null, slug: string, type: AccountType, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, isTrustedHost: boolean, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, requestedByAccount?: | { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean } | null, parent?: @@ -67572,7 +68008,7 @@ export type ExpensePageQuery = { __typename?: 'Query', expense?: { __typename?: | { __typename?: 'Vendor', id: string, type: AccountType, slug: string, name?: string | null, imageUrl?: string | null, legalName?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean } | null>, account: | { __typename?: 'Bot', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Collective', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -67583,11 +68019,11 @@ export type ExpensePageQuery = { __typename?: 'Query', expense?: { __typename?: | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Fund', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, isGuest: boolean, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } - | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | { __typename?: 'Organization', isHost: boolean, isActive?: boolean | null, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isArchived: boolean, isVerified: boolean, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', isApproved: boolean, id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive: boolean, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, approvedAt?: any | null, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, parent?: | { __typename?: 'Bot', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } @@ -67598,7 +68034,7 @@ export type ExpensePageQuery = { __typename?: 'Query', expense?: { __typename?: | { __typename?: 'Organization', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Project', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, slug: string, imageUrl?: string | null, backgroundImageUrl?: string | null, twitterHandle?: string | null, name?: string | null, type: AccountType } - | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id?: string | null }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } + | null, hostAgreements?: { __typename?: 'AgreementCollection', totalCount?: number | null } | null, host?: { __typename?: 'Host', id: string, slug: string, legacyId: number, type: AccountType, isTrustedHost: boolean, isFirstPartyHost: boolean, isVerified: boolean, name?: string | null, legalName?: string | null, currency: Currency, isHost: boolean, expensePolicy?: string | null, website?: string | null, settings: any, supportedPayoutMethods?: Array | null, transferwise?: { __typename?: 'TransferWise', id: string, availableCurrencies?: Array | null } | null, platformSubscription?: { __typename?: 'PlatformSubscription', plan: { __typename?: 'PlatformSubscriptionTier', title: string } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, PAYPAL_PAYOUTS?: CollectiveFeatureStatus | null, CHART_OF_ACCOUNTS?: CollectiveFeatureStatus | null, TRANSFERWISE?: CollectiveFeatureStatus | null }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, plan: { __typename?: 'HostPlan', id: string }, expenseAccountingCategories: { __typename?: 'AccountingCategoryCollection', nodes: Array<{ __typename?: 'AccountingCategory', id: string, kind?: AccountingCategoryKind | null, code: string, hostOnly: boolean, instructions?: string | null, name: string, friendlyName?: string | null, expensesTypes?: Array | null, createdAt: any, appliesTo?: AccountingCategoryAppliesTo | null }> }, policies: { __typename?: 'Policies', id?: string | null, EXPENSE_CATEGORIZATION?: { __typename?: 'EXPENSE_CATEGORIZATION', requiredForExpenseSubmitters?: boolean | null, requiredForCollectiveAdmins?: boolean | null } | null } } | null, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, backgroundImageUrl?: string | null, isActive?: boolean | null, description?: string | null, settings: any, twitterHandle?: string | null, currency: Currency, expensePolicy?: string | null, supportedExpenseTypes: Array, legalName?: string | null, isHost: boolean, isArchived: boolean, isVerified: boolean, features: { __typename?: 'CollectiveFeatures', id: string, MULTI_CURRENCY_EXPENSES?: CollectiveFeatureStatus | null, TAX_FORMS?: CollectiveFeatureStatus | null, 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, RECEIVE_GRANTS?: 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 }, location?: { __typename?: 'Location', id?: string | null, address?: string | null, country?: string | null } | null, stats?: { __typename?: 'AccountStats', id?: string | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, balanceWithBlockedFunds: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } , payoutMethod?: { __typename?: 'PayoutMethod', id: string, type?: PayoutMethodType | null, name?: string | null, data?: any | null, isSaved?: boolean | null, canBeEdited?: boolean | null, canBeDeleted?: boolean | null } | null, virtualCard?: { __typename?: 'VirtualCard', id?: string | null, name?: string | null, last4?: string | null } | null, activities: Array<{ __typename?: 'Activity', id: string, type: ActivityType, createdAt: any, data: any, account?: | { __typename?: 'Bot', id: string, slug: string } @@ -76533,7 +76969,7 @@ export const ProfileMetricsFragmentDoc = {"kind":"Document","definitions":[{"kin export const TierNameFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TierName"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tier"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]} as unknown as DocumentNode; export const VendorFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VendorFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Vendor"}},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"structured"}}]}},{"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":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"vendorInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contact"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxFormUrl"}},{"kind":"Field","name":{"kind":"Name","value":"taxFormRequired"}},{"kind":"Field","name":{"kind":"Name","value":"taxType"}},{"kind":"Field","name":{"kind":"Name","value":"taxId"}},{"kind":"Field","name":{"kind":"Name","value":"notes"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payoutMethods"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}}]}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"OUTGOING"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"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":"status"},"value":{"kind":"EnumValue","value":"PAID"}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"EnumValue","value":"SUBMITTED"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"visibleToAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"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":"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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 HostFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HostFields"},"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":"legacyId"}},{"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":"expensePolicy"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"requiredLegalDocuments"}},{"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":"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":"vendors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"isArchived"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isArchived"}}},{"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":"totalContributed"},"value":{"kind":"Variable","name":{"kind":"Name","value":"totalContributed"}}},{"kind":"Argument","name":{"kind":"Name","value":"totalExpended"},"value":{"kind":"Variable","name":{"kind":"Name","value":"totalExpended"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyVendors"}}}]}],"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":"VendorFields"}},{"kind":"Field","name":{"kind":"Name","value":"communityStats"},"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":"slug"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"relations"}},{"kind":"Field","name":{"kind":"Name","value":"transactionSummary"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"year"}},{"kind":"Field","name":{"kind":"Name","value":"expenseTotalAcc"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expenseCountAcc"}},{"kind":"Field","name":{"kind":"Name","value":"contributionTotalAcc"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributionCountAcc"}}]}}]}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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":"VendorFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Vendor"}},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"structured"}}]}},{"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":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"vendorInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contact"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxFormUrl"}},{"kind":"Field","name":{"kind":"Name","value":"taxFormRequired"}},{"kind":"Field","name":{"kind":"Name","value":"taxType"}},{"kind":"Field","name":{"kind":"Name","value":"taxId"}},{"kind":"Field","name":{"kind":"Name","value":"notes"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payoutMethods"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}}]}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"OUTGOING"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"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":"status"},"value":{"kind":"EnumValue","value":"PAID"}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"EnumValue","value":"SUBMITTED"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"visibleToAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"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":"imageUrl"}}]}}]}}]} as unknown as DocumentNode; -export const DashboardAccountsQueryFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"DashboardAccountsQueryFields"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"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","name":{"kind":"Name","value":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"service"},"value":{"kind":"EnumValue","value":"OPENCOLLECTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"COLLECTIVE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"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":"legacyId"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}}]}}]} as unknown as DocumentNode; +export const DashboardAccountsQueryFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"DashboardAccountsQueryFields"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"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","name":{"kind":"Name","value":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"service"},"value":{"kind":"EnumValue","value":"OPENCOLLECTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"COLLECTIVE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"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":"legacyId"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}}]}}]} as unknown as DocumentNode; export const AddFundsOrderFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddFundsOrderFields"},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}},{"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":"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":"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":"accountingCategory"},"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"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"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"}}]}}]}}]} as unknown as DocumentNode; export const AddFundsTierFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddFundsTierFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tier"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]} as unknown as DocumentNode; export const AddFundsAccountQueryHostFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddFundsAccountQueryHostFields"},"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":"type"}},{"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":"settings"}},{"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":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"vendors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"forAccount"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}]}}],"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"64"}}]}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"orderAccountingCategories"},"name":{"kind":"Name","value":"accountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CONTRIBUTION"},{"kind":"EnumValue","value":"ADDED_FUNDS"}]}}],"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":"appliesTo"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -76661,8 +77097,8 @@ export const AdminAccountingCategoriesDocument = {"kind":"Document","definitions export const EditAccountingCategoriesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditAccountingCategories"},"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":"categories"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountingCategoryInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editAccountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"categories"},"value":{"kind":"Variable","name":{"kind":"Name","value":"categories"}}}],"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":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategorySelectFields"}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountingCategorySelectFields"},"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":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"hostOnly"}},{"kind":"Field","name":{"kind":"Name","value":"instructions"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"expensesTypes"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"appliesTo"}}]}}]} as unknown as DocumentNode; export const InternalTransferDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"InternalTransfer"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"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":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const AccountsDashboardMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountsDashboardMetadata"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","alias":{"kind":"Name","value":"all"},"name":{"kind":"Name","value":"childrenAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"active"},"name":{"kind":"Name","value":"childrenAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"isActive"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"archived"},"name":{"kind":"Name","value":"childrenAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"isActive"},"value":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}}]}}]}}]} as unknown as DocumentNode; -export const AccountsDashboardDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountsDashboard"},"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"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}},"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":"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":"FragmentSpread","name":{"kind":"Name","value":"DashboardAccountsQueryFields"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"consolidatedBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"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":"isActive"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}}}],"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":"DashboardAccountsQueryFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"DashboardAccountsQueryFields"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"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","name":{"kind":"Name","value":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"service"},"value":{"kind":"EnumValue","value":"OPENCOLLECTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"COLLECTIVE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"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":"legacyId"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}}]}}]} as unknown as DocumentNode; -export const HostedAccountDetailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostedAccountDetail"},"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":"FragmentSpread","name":{"kind":"Name","value":"DashboardAccountsQueryFields"}},{"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":"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":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"consolidatedBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"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":"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":"DashboardAccountsQueryFields"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"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","name":{"kind":"Name","value":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"service"},"value":{"kind":"EnumValue","value":"OPENCOLLECTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"COLLECTIVE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"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":"legacyId"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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 AccountsDashboardDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountsDashboard"},"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"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}},"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":"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":"FragmentSpread","name":{"kind":"Name","value":"DashboardAccountsQueryFields"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"consolidatedBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"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":"isActive"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}}}],"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":"DashboardAccountsQueryFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"DashboardAccountsQueryFields"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"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","name":{"kind":"Name","value":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"service"},"value":{"kind":"EnumValue","value":"OPENCOLLECTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"COLLECTIVE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"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":"legacyId"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}}]}}]} as unknown as DocumentNode; +export const HostedAccountDetailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostedAccountDetail"},"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":"FragmentSpread","name":{"kind":"Name","value":"DashboardAccountsQueryFields"}},{"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":"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":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"consolidatedBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"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":"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":"DashboardAccountsQueryFields"},"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":"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":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"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","name":{"kind":"Name","value":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"service"},"value":{"kind":"EnumValue","value":"OPENCOLLECTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"COLLECTIVE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"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":"legacyId"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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 AddFundsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"AddFunds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"fromAccount"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"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":"tier"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TierReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"amount"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paymentProcessorFee"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"description"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"memo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"processedAt"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostFeePercent"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"invoiceTemplate"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tax"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TaxInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountingCategory"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountingCategoryReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"transactionsImportRow"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowReferenceInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addFunds"},"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":"amount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"amount"}}},{"kind":"Argument","name":{"kind":"Name","value":"paymentProcessorFee"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paymentProcessorFee"}}},{"kind":"Argument","name":{"kind":"Name","value":"description"},"value":{"kind":"Variable","name":{"kind":"Name","value":"description"}}},{"kind":"Argument","name":{"kind":"Name","value":"memo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"memo"}}},{"kind":"Argument","name":{"kind":"Name","value":"processedAt"},"value":{"kind":"Variable","name":{"kind":"Name","value":"processedAt"}}},{"kind":"Argument","name":{"kind":"Name","value":"hostFeePercent"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostFeePercent"}}},{"kind":"Argument","name":{"kind":"Name","value":"tier"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tier"}}},{"kind":"Argument","name":{"kind":"Name","value":"invoiceTemplate"},"value":{"kind":"Variable","name":{"kind":"Name","value":"invoiceTemplate"}}},{"kind":"Argument","name":{"kind":"Name","value":"tax"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tax"}}},{"kind":"Argument","name":{"kind":"Name","value":"accountingCategory"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountingCategory"}}},{"kind":"Argument","name":{"kind":"Name","value":"transactionsImportRow"},"value":{"kind":"Variable","name":{"kind":"Name","value":"transactionsImportRow"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddFundsOrderFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddFundsOrderFields"},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}},{"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":"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":"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":"accountingCategory"},"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"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"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"}}]}}]}}]} as unknown as DocumentNode; export const EditAddedFundsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditAddedFunds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"fromAccount"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"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":"tier"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TierReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"amount"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paymentProcessorFee"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"description"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"memo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"processedAt"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostFeePercent"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"invoiceTemplate"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tax"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TaxInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountingCategory"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountingCategoryReferenceInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editAddedFunds"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}},{"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":"amount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"amount"}}},{"kind":"Argument","name":{"kind":"Name","value":"paymentProcessorFee"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paymentProcessorFee"}}},{"kind":"Argument","name":{"kind":"Name","value":"description"},"value":{"kind":"Variable","name":{"kind":"Name","value":"description"}}},{"kind":"Argument","name":{"kind":"Name","value":"memo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"memo"}}},{"kind":"Argument","name":{"kind":"Name","value":"processedAt"},"value":{"kind":"Variable","name":{"kind":"Name","value":"processedAt"}}},{"kind":"Argument","name":{"kind":"Name","value":"hostFeePercent"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostFeePercent"}}},{"kind":"Argument","name":{"kind":"Name","value":"tier"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tier"}}},{"kind":"Argument","name":{"kind":"Name","value":"invoiceTemplate"},"value":{"kind":"Variable","name":{"kind":"Name","value":"invoiceTemplate"}}},{"kind":"Argument","name":{"kind":"Name","value":"tax"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tax"}}},{"kind":"Argument","name":{"kind":"Name","value":"accountingCategory"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountingCategory"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddFundsOrderFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddFundsOrderFields"},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}},{"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":"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":"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":"accountingCategory"},"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"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"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"}}]}}]}}]} as unknown as DocumentNode; export const AddFundsAccountDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AddFundsAccount"},"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tiers"},"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":"AddFundsTierFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddFundsAccountQueryHostFields"}}]}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"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":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]}}]}},{"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":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddFundsAccountQueryHostFields"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"addedFundsHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"HOST"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddFundsAccountQueryHostFields"}}]}}]}},{"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":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AddFundsTierFields"}}]}}]}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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":"AddFundsTierFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tier"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AddFundsAccountQueryHostFields"},"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":"type"}},{"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":"settings"}},{"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":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"vendors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"forAccount"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}]}}],"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"64"}}]}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"orderAccountingCategories"},"name":{"kind":"Name","value":"accountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CONTRIBUTION"},{"kind":"EnumValue","value":"ADDED_FUNDS"}]}}],"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":"appliesTo"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -76687,7 +77123,7 @@ export const CommunityAccountDetailDocument = {"kind":"Document","definitions":[ export const CommunityAccountActivitiesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CommunityAccountActivities"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"host"}},"type":{"kind":"NonNullType","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"}}}}],"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":"accountId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"communityStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"activities"},"arguments":[{"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"}}}],"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":"FragmentSpread","name":{"kind":"Name","value":"CommunityAccountDetailActivityFields"}}]}}]}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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":"CommunityAccountDetailActivityFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Activity"}},"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":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"individual"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"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":"description"}},{"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","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":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"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":"slug"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"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":"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":"description"}},{"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":"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":"Field","name":{"kind":"Name","value":"update"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"summary"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"conversation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"summary"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]} as unknown as DocumentNode; export const CommunityAccountExpensesDetailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CommunityAccountExpensesDetail"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"host"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsCurrency"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Currency"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"skipSubmittedExpenses"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"skipPaidExpenses"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"skipApprovedExpenses"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"submittedExpensesOffset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paidExpensesOffset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"approvedExpensesOffset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"defaultLimit"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"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":"accountId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"communityStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transactionSummary"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"year"}},{"kind":"Field","name":{"kind":"Name","value":"expenseTotal"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expenseCount"}},{"kind":"Field","name":{"kind":"Name","value":"expenseTotalAcc"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expenseCountAcc"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"submittedExpenses"},"name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"EnumValue","value":"SUBMITTED"}},{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"defaultLimit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"submittedExpensesOffset"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"skipSubmittedExpenses"}}}]}],"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":"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"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":"code"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"amount"},"name":{"kind":"Name","value":"amountV2"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencySource"},"value":{"kind":"EnumValue","value":"HOST"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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","alias":{"kind":"Name","value":"paidExpenses"},"name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"activity"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"COLLECTIVE_EXPENSE_PAID"}]}},{"kind":"ObjectField","name":{"kind":"Name","value":"individual"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountId"}}}]}}]}},{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"defaultLimit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paidExpensesOffset"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeChildrenExpenses"},"value":{"kind":"BooleanValue","value":true}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"skipPaidExpenses"}}}]}],"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":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currency"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsCurrency"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amountsByCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"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":"code"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"amount"},"name":{"kind":"Name","value":"amountV2"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencySource"},"value":{"kind":"EnumValue","value":"HOST"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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","alias":{"kind":"Name","value":"approvedExpenses"},"name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"activity"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"COLLECTIVE_EXPENSE_APPROVED"}]}},{"kind":"ObjectField","name":{"kind":"Name","value":"individual"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountId"}}}]}}]}},{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"defaultLimit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"approvedExpensesOffset"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeChildrenExpenses"},"value":{"kind":"BooleanValue","value":true}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"skipApprovedExpenses"}}}]}],"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":"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"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":"code"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"amount"},"name":{"kind":"Name","value":"amountV2"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencySource"},"value":{"kind":"EnumValue","value":"HOST"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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":"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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 CommunityAccountContributionsDetailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CommunityAccountContributionsDetail"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"host"}},"type":{"kind":"NonNullType","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"}}}}],"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":"accountId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"communityStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transactionSummary"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"year"}},{"kind":"Field","name":{"kind":"Name","value":"contributionTotal"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributionCount"}},{"kind":"Field","name":{"kind":"Name","value":"contributionTotalAcc"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributionCountAcc"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}},{"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":"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"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":"code"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalContributed"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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 CreatePendingContributionModalDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CreatePendingContributionModal"},"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":"host"},"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","alias":{"kind":"Name","value":"orderAccountingCategories"},"name":{"kind":"Name","value":"accountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CONTRIBUTION"},{"kind":"EnumValue","value":"ADDED_FUNDS"}]}}],"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":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"appliesTo"}}]}}]}},{"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":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"vendors"},"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":"VendorFields"}}]}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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":"VendorFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Vendor"}},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"structured"}}]}},{"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":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"vendorInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contact"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxFormUrl"}},{"kind":"Field","name":{"kind":"Name","value":"taxFormRequired"}},{"kind":"Field","name":{"kind":"Name","value":"taxType"}},{"kind":"Field","name":{"kind":"Name","value":"taxId"}},{"kind":"Field","name":{"kind":"Name","value":"notes"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payoutMethods"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}}]}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"OUTGOING"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"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":"status"},"value":{"kind":"EnumValue","value":"PAID"}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"EnumValue","value":"SUBMITTED"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"visibleToAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"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":"imageUrl"}}]}}]}}]} as unknown as DocumentNode; +export const CreatePendingContributionModalDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CreatePendingContributionModal"},"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":"host"},"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","alias":{"kind":"Name","value":"orderAccountingCategories"},"name":{"kind":"Name","value":"accountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CONTRIBUTION"},{"kind":"EnumValue","value":"ADDED_FUNDS"}]}}],"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":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"appliesTo"}}]}}]}},{"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":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"vendors"},"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":"VendorFields"}}]}}]}}]}}]}},{"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":"legalName"}},{"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":"Field","name":{"kind":"Name","value":"isVerified"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"isFirstPartyHost"}},{"kind":"Field","name":{"kind":"Name","value":"isVerified"}}]}}]}},{"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":"VendorFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Vendor"}},"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"structured"}}]}},{"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":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"vendorInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contact"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxFormUrl"}},{"kind":"Field","name":{"kind":"Name","value":"taxFormRequired"}},{"kind":"Field","name":{"kind":"Name","value":"taxType"}},{"kind":"Field","name":{"kind":"Name","value":"taxId"}},{"kind":"Field","name":{"kind":"Name","value":"notes"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payoutMethods"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}}]}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"OUTGOING"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"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":"status"},"value":{"kind":"EnumValue","value":"PAID"}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"EnumValue","value":"SUBMITTED"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"visibleToAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"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":"imageUrl"}}]}}]}}]} as unknown as DocumentNode; export const CreatePendingContributionCollectiveDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CreatePendingContributionCollective"},"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"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":"type"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"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":"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}}]}},{"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"vendors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"forAccount"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5"}}],"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":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"64"}}]}]}}]}}]}}]}},{"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":"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":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}},{"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"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const CreatePendingContributionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreatePendingContribution"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PendingOrderCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createPendingOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]} as unknown as DocumentNode; export const EditPendingContributionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditPendingContribution"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PendingOrderEditInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editPendingOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ConfirmContributionFields"}}]}}]}},{"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; @@ -76763,7 +77199,7 @@ export const HostTransactionsImportsSourcesDocument = {"kind":"Document","defini 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"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"CSV"}}]}]}},{"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"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"CSV"}}]}]}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionImportListFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportAssignmentFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportAssignment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importedAccountId"}},{"kind":"Field","name":{"kind":"Name","value":"accounts"},"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"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":"32"}}]}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportStats"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportStats"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"onHold"}},{"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":"pending"}},{"kind":"Field","name":{"kind":"Name","value":"imported"}}]}},{"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":"lastSyncAt"}},{"kind":"Field","name":{"kind":"Name","value":"isSyncing"}},{"kind":"Field","name":{"kind":"Name","value":"institutionId"}},{"kind":"Field","name":{"kind":"Name","value":"institutionAccounts"},"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":"subtype"}},{"kind":"Field","name":{"kind":"Name","value":"mask"}}]}},{"kind":"Field","name":{"kind":"Name","value":"assignments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportAssignmentFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportStats"}}]}},{"kind":"Field","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":"connectedAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; export const OffPlatformTransactionsInstitutionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"OffPlatformTransactionsInstitutions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"country"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"provider"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OffPlatformTransactionsProvider"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"offPlatformTransactionsInstitutions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"country"},"value":{"kind":"Variable","name":{"kind":"Name","value":"country"}}},{"kind":"Argument","name":{"kind":"Name","value":"provider"},"value":{"kind":"Variable","name":{"kind":"Name","value":"provider"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"bic"}},{"kind":"Field","name":{"kind":"Name","value":"logoUrl"}},{"kind":"Field","name":{"kind":"Name","value":"supportedCountries"}},{"kind":"Field","name":{"kind":"Name","value":"maxAccessValidForDays"}},{"kind":"Field","name":{"kind":"Name","value":"transactionTotalDays"}}]}}]}}]} as unknown as DocumentNode; export const OffPlatformConnectionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"OffPlatformConnections"},"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":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"location"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"country"}}]}},{"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"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PLAID"},{"kind":"EnumValue","value":"GOCARDLESS"}]}}],"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":"TransactionsImportAssignmentFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportAssignment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importedAccountId"}},{"kind":"Field","name":{"kind":"Name","value":"accounts"},"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"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":"32"}}]}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportStats"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportStats"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"onHold"}},{"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":"pending"}},{"kind":"Field","name":{"kind":"Name","value":"imported"}}]}},{"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":"lastSyncAt"}},{"kind":"Field","name":{"kind":"Name","value":"isSyncing"}},{"kind":"Field","name":{"kind":"Name","value":"institutionId"}},{"kind":"Field","name":{"kind":"Name","value":"institutionAccounts"},"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":"subtype"}},{"kind":"Field","name":{"kind":"Name","value":"mask"}}]}},{"kind":"Field","name":{"kind":"Name","value":"assignments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportAssignmentFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportStats"}}]}},{"kind":"Field","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":"connectedAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; -export const OffPlatformTransactionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"OffPlatformTransactions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}},"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"}},"defaultValue":{"kind":"IntValue","value":"50"}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}},"defaultValue":{"kind":"IntValue","value":"0"}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowStatus"}}},{"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":"subAccountId"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}}},{"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":"hasImportFilter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowOrderInput"}}}],"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":"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":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"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":"AccountingCategorySelectFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"EnumValue","value":"ACTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PLAID"},{"kind":"EnumValue","value":"GOCARDLESS"}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"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":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"offPlatformTransactionsStats"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportStats"}}]}},{"kind":"Field","name":{"kind":"Name","value":"offPlatformTransactions"},"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":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"accountId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"subAccountId"}}},{"kind":"Argument","name":{"kind":"Name","value":"importType"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PLAID"},{"kind":"EnumValue","value":"GOCARDLESS"}]}},{"kind":"Argument","name":{"kind":"Name","value":"importId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importIds"}}},{"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":"TransactionsImportRowFields"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}]},{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"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":"institutionAccount"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hasImportFilter"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"lastSyncAt"}},{"kind":"Field","name":{"kind":"Name","value":"connectedAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"institutionAccounts"},"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":"subtype"}},{"kind":"Field","name":{"kind":"Name","value":"mask"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountingCategorySelectFields"},"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":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"hostOnly"}},{"kind":"Field","name":{"kind":"Name","value":"instructions"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"expensesTypes"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"appliesTo"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportStats"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportStats"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"onHold"}},{"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":"pending"}},{"kind":"Field","name":{"kind":"Name","value":"imported"}}]}},{"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":"status"}},{"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":"note"}},{"kind":"Field","name":{"kind":"Name","value":"accountId"}},{"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":"assignedAccounts"},"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"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":"32"}}]}]}},{"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 OffPlatformTransactionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"OffPlatformTransactions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}},"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"}},"defaultValue":{"kind":"IntValue","value":"50"}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}},"defaultValue":{"kind":"IntValue","value":"0"}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowStatus"}}},{"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":"subAccountId"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}}},{"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":"hasImportFilter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowOrderInput"}}}],"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":"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":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"REQUIRE_2FA_FOR_ADMINS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"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":"publicId"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategorySelectFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"EnumValue","value":"ACTIVE"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PLAID"},{"kind":"EnumValue","value":"GOCARDLESS"}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"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":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"offPlatformTransactionsStats"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportStats"}}]}},{"kind":"Field","name":{"kind":"Name","value":"offPlatformTransactions"},"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":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"accountId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"subAccountId"}}},{"kind":"Argument","name":{"kind":"Name","value":"importType"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PLAID"},{"kind":"EnumValue","value":"GOCARDLESS"}]}},{"kind":"Argument","name":{"kind":"Name","value":"importId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importIds"}}},{"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":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}]},{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"institutionAccount"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchOnlyRowIds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hasImportFilter"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}},{"kind":"Field","name":{"kind":"Name","value":"lastSyncAt"}},{"kind":"Field","name":{"kind":"Name","value":"connectedAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"institutionAccounts"},"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":"subtype"}},{"kind":"Field","name":{"kind":"Name","value":"mask"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountingCategorySelectFields"},"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":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"hostOnly"}},{"kind":"Field","name":{"kind":"Name","value":"instructions"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"expensesTypes"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"appliesTo"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportStats"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportStats"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"onHold"}},{"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":"pending"}},{"kind":"Field","name":{"kind":"Name","value":"imported"}}]}},{"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":"status"}},{"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":"note"}},{"kind":"Field","name":{"kind":"Name","value":"accountId"}},{"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":"assignedAccounts"},"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"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":"32"}}]}]}},{"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":"csvConfig"}},{"kind":"Field","name":{"kind":"Name","value":"lastSyncAt"}},{"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"}}]}}]}}]}}]} as unknown as DocumentNode; export const EditTransactionsImportAssignmentsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditTransactionsImportAssignments"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"assignments"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportAssignmentInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editTransactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"assignments"},"value":{"kind":"Variable","name":{"kind":"Name","value":"assignments"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"assignments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportAssignmentFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportAssignmentFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportAssignment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importedAccountId"}},{"kind":"Field","name":{"kind":"Name","value":"accounts"},"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":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"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":"32"}}]}]}}]}}]} as unknown as DocumentNode; export const SyncTransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SyncTransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"transactionImport"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportReferenceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"syncTransactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"transactionImport"},"value":{"kind":"Variable","name":{"kind":"Name","value":"transactionImport"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode;