From 079322bc358bd5b6876ca1a5485998fd89dd030e Mon Sep 17 00:00:00 2001 From: Benjamin Piouffle Date: Wed, 19 Jun 2024 12:52:43 +0200 Subject: [PATCH] feat(TransactionsImport): match contribution --- components/ContributionConfirmationModal.tsx | 511 ++--------------- .../contributions/ConfirmContributionForm.tsx | 466 ++++++++++++++++ .../contributions/CreatePendingOrderModal.tsx | 12 +- .../FilterWithRawValueButton.tsx | 36 ++ .../MatchContributionDialog.tsx | 515 ++++++++++++++++++ .../SuggestedContributionsTable.tsx | 116 ++++ .../TransactionsImport.tsx | 132 ++--- .../transactions-imports/lib/graphql.ts | 22 + components/orders/OrdersWithData.js | 2 +- components/table/DataTable.tsx | 4 +- lang/ca.json | 10 + lang/cs.json | 10 + lang/de.json | 10 + lang/en.json | 10 + lang/es.json | 10 + lang/fr.json | 10 + lang/he.json | 10 + lang/it.json | 10 + lang/ja.json | 10 + lang/ko.json | 10 + lang/nl.json | 10 + lang/pl.json | 10 + lang/pt-BR.json | 10 + lang/pt.json | 10 + lang/ru.json | 10 + lang/sk-SK.json | 10 + lang/sv-SE.json | 10 + lang/uk.json | 10 + lang/zh.json | 10 + lib/graphql/schemaV2.graphql | 22 +- lib/graphql/types/v2/gql.ts | 39 +- lib/graphql/types/v2/graphql.ts | 72 ++- lib/i18n/pending-order-payment-method-type.ts | 7 + pages/order.tsx | 2 +- 34 files changed, 1561 insertions(+), 587 deletions(-) create mode 100644 components/contributions/ConfirmContributionForm.tsx create mode 100644 components/dashboard/sections/transactions-imports/FilterWithRawValueButton.tsx create mode 100644 components/dashboard/sections/transactions-imports/MatchContributionDialog.tsx create mode 100644 components/dashboard/sections/transactions-imports/SuggestedContributionsTable.tsx create mode 100644 lib/i18n/pending-order-payment-method-type.ts diff --git a/components/ContributionConfirmationModal.tsx b/components/ContributionConfirmationModal.tsx index 5ed1e772769..5ae41ebf546 100644 --- a/components/ContributionConfirmationModal.tsx +++ b/components/ContributionConfirmationModal.tsx @@ -1,154 +1,14 @@ -import React, { Fragment, useState } from 'react'; +import React, { useState } from 'react'; import PropTypes from 'prop-types'; -import { useMutation } from '@apollo/client'; -import { accountHasGST, accountHasVAT, TaxType } from '@opencollective/taxes'; -import { InfoCircle } from '@styled-icons/boxicons-regular/InfoCircle'; -import { omit } from 'lodash'; -import { FormattedMessage, useIntl } from 'react-intl'; +import { FormattedMessage } from 'react-intl'; -import { getCurrentLocalDateStr } from '../lib/date-utils'; -import { i18nGraphqlException } from '../lib/errors'; -import { API_V2_CONTEXT, gql } from '../lib/graphql/helpers'; -import type { TaxInput } from '../lib/graphql/types/v2/graphql'; -import { i18nTaxType } from '../lib/i18n/taxes'; - -import { useToast } from './ui/useToast'; +import { ConfirmContributionForm } from './contributions/ConfirmContributionForm'; import Container from './Container'; -import FormattedMoneyAmount from './FormattedMoneyAmount'; -import { Box, Flex } from './Grid'; import StyledButton from './StyledButton'; -import StyledHr from './StyledHr'; -import StyledInput from './StyledInput'; -import StyledInputAmount from './StyledInputAmount'; -import StyledInputPercentage from './StyledInputPercentage'; import StyledModal, { CollectiveModalHeader, ModalBody, ModalFooter } from './StyledModal'; -import StyledTooltip from './StyledTooltip'; -import { Label, P, Span } from './Text'; - -export const confirmContributionFieldsFragment = gql` - fragment ConfirmContributionFields on Order { - id - hostFeePercent - pendingContributionData { - expectedAt - paymentMethod - ponumber - memo - fromAccountInfo { - name - email - } - } - memo - fromAccount { - id - slug - name - type - imageUrl - isIncognito - ... on Individual { - isGuest - } - } - toAccount { - id - slug - name - type - imageUrl - ... on AccountWithHost { - bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL) - host { - id - settings - } - } - ... on Organization { - host { - id - settings - } - } - } - createdByAccount { - id - slug - name - imageUrl - } - totalAmount { - valueInCents - currency - } - amount { - currency - valueInCents - } - taxAmount { - currency - valueInCents - } - tax { - id - type - rate - } - platformTipAmount { - currency - valueInCents - } - platformTipEligible - } -`; - -const confirmContributionMutation = gql` - mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) { - processPendingOrder(order: $order, action: $action) { - id - legacyId - status - permissions { - id - canMarkAsPaid - canMarkAsExpired - } - ...ConfirmContributionFields - } - } - ${confirmContributionFieldsFragment} -`; - -const getApplicableTaxType = (collective, host) => { - if (accountHasVAT(collective, host)) { - return TaxType.VAT; - } else if (accountHasGST(host || collective)) { - return TaxType.GST; - } -}; const ContributionConfirmationModal = ({ order, onClose, onSuccess }) => { - const defaultHostFeePercent = order.hostFeePercent || order.toAccount.bankTransfersHostFeePercent || 0; - const defaultTaxPercent = order.tax?.rate * 100 || 0; - const defaultPlatformTip = order.platformTipAmount?.valueInCents || 0; - const amountInitiated = order.amount.valueInCents + defaultPlatformTip; - const currency = order.amount.currency; - const [amountReceived, setAmountReceived] = useState(amountInitiated); - const [platformTip, setPlatformTip] = useState(defaultPlatformTip); - const [paymentProcessorFee, setPaymentProcessorFee] = useState(0); - const [hostFeePercent, setHostFeePercent] = useState(defaultHostFeePercent); - const [taxPercent, setTaxPercent] = useState(defaultTaxPercent); - const [processedAt, setProcessedAt] = useState(getCurrentLocalDateStr()); - const intl = useIntl(); - const { toast } = useToast(); - const [confirmOrder, { loading: submitting }] = useMutation(confirmContributionMutation, { context: API_V2_CONTEXT }); - const contributionAmount = amountReceived - platformTip; - const grossContributionAmount = Math.round(contributionAmount / (1 + taxPercent / 100)); - const taxAmount = taxPercent ? Math.round(contributionAmount - grossContributionAmount) : null; - const hostFee = Math.round((contributionAmount - taxAmount) * hostFeePercent) / 100; - const netAmount = contributionAmount - paymentProcessorFee - hostFee - taxAmount; - const canAddHostFee = !order.toAccount.isHost; - const applicableTax = getApplicableTaxType(order.toAccount, order.toAccount.host); + const [submitting, setSubmitting] = useState(false); return ( @@ -162,337 +22,42 @@ const ContributionConfirmationModal = ({ order, onClose, onSuccess }) => { /> } /> -
{ - e.preventDefault(); - - // Prevent submitting the action if another one is being submitted at the same time - if (submitting) { - return; - } - - try { - await confirmOrder({ - variables: { - action: 'MARK_AS_PAID', - order: { - id: order.id, - amount: { valueInCents: grossContributionAmount, currency }, - paymentProcessorFee: { valueInCents: paymentProcessorFee || 0, currency }, - platformTip: { valueInCents: platformTip || 0, currency }, - hostFeePercent: hostFeePercent || 0, - processedAt: processedAt ? new Date(processedAt) : new Date(), - tax: !taxPercent - ? null - : ({ - type: applicableTax, - ...omit(order.tax, ['id', '__typename']), - rate: taxPercent / 100, - amount: { valueInCents: taxAmount, currency }, - } as TaxInput), - }, - }, - }); - toast({ - variant: 'success', - message: intl.formatMessage({ defaultMessage: 'Contribution confirmed successfully', id: 'Khmjkh' }), - }); - onSuccess?.(); - onClose(); - } catch (e) { - toast({ variant: 'error', message: i18nGraphqlException(intl, e) }); - } + setSubmitting(true)} + onFailure={() => setSubmitting(false)} + onSuccess={() => { + onClose(); + onSuccess(); }} - > - -

- -

- - - - - - - - - - - - - - - setAmountReceived(value)} - value={amountReceived} - required - /> - - - - - - - setPaymentProcessorFee(value)} - value={paymentProcessorFee} - /> - - - - - - - setPlatformTip(value)} - value={platformTip} - min={platformTip ? 0 : undefined} - max={amountReceived ? amountReceived : undefined} - /> - - - {Boolean(order.taxAmount || applicableTax) && ( - - - - - - setTaxPercent(value)} - /> - - - - )} - {canAddHostFee && ( - - - - - - setHostFeePercent(value)} - /> - - - - )} - - - - - setProcessedAt(e.target.value)} - /> - - - - - - - - ), - }} - /> - - - - - - - {Boolean(platformTip) && ( - - - - - ), - }} - /> - - - - - + FormBodyContainer={ModalBody} + footer={ + + + + + + + + - )} - - - {Boolean(paymentProcessorFee) && ( - - - }} - /> - - - - - - )} - {Boolean(taxAmount) && ( - - - {i18nTaxType(intl, order.tax?.type || applicableTax, 'full')} - - - - - - )} - {Boolean(hostFee) && ( - - - }} - /> - - - - - - )} - - - - ), - }} - /> - - - - - - -
- - - - - - - - - - - + + } + />
); }; diff --git a/components/contributions/ConfirmContributionForm.tsx b/components/contributions/ConfirmContributionForm.tsx new file mode 100644 index 00000000000..e9b544cc91b --- /dev/null +++ b/components/contributions/ConfirmContributionForm.tsx @@ -0,0 +1,466 @@ +import React, { Fragment, useState } from 'react'; +import { gql, useMutation } from '@apollo/client'; +import { accountHasGST, accountHasVAT, TaxType } from '@opencollective/taxes'; +import { InfoCircle } from '@styled-icons/boxicons-regular/InfoCircle'; +import { omit, pick } from 'lodash'; +import { FormattedMessage, useIntl } from 'react-intl'; + +import { getCurrentLocalDateStr } from '../../lib/date-utils'; +import { i18nGraphqlException } from '../../lib/errors'; +import { API_V2_CONTEXT } from '../../lib/graphql/helpers'; +import type { TaxInput } from '../../lib/graphql/types/v2/graphql'; +import { i18nTaxType } from '../../lib/i18n/taxes'; + +import Container from '../Container'; +import FormattedMoneyAmount from '../FormattedMoneyAmount'; +import { Box, Flex } from '../Grid'; +import StyledHr from '../StyledHr'; +import StyledInput from '../StyledInput'; +import StyledInputAmount from '../StyledInputAmount'; +import StyledInputPercentage from '../StyledInputPercentage'; +import StyledTooltip from '../StyledTooltip'; +import { Label, P, Span } from '../Text'; +import { useToast } from '../ui/useToast'; + +export const confirmContributionFieldsFragment = gql` + fragment ConfirmContributionFields on Order { + id + hostFeePercent + pendingContributionData { + expectedAt + paymentMethod + ponumber + memo + fromAccountInfo { + name + email + } + } + memo + fromAccount { + id + slug + name + type + imageUrl + isIncognito + ... on Individual { + isGuest + } + } + toAccount { + id + slug + name + type + imageUrl + ... on AccountWithHost { + bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL) + host { + id + settings + } + } + ... on Organization { + host { + id + settings + } + } + } + createdByAccount { + id + slug + name + imageUrl + } + totalAmount { + valueInCents + currency + } + amount { + currency + valueInCents + } + taxAmount { + currency + valueInCents + } + tax { + id + type + rate + } + platformTipAmount { + currency + valueInCents + } + platformTipEligible + } +`; + +const confirmContributionMutation = gql` + mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) { + processPendingOrder(order: $order, action: $action) { + id + legacyId + status + permissions { + id + canMarkAsPaid + canMarkAsExpired + } + ...ConfirmContributionFields + } + } + ${confirmContributionFieldsFragment} +`; + +const getApplicableTaxType = (collective, host) => { + if (accountHasVAT(collective, host)) { + return TaxType.VAT; + } else if (accountHasGST(host || collective)) { + return TaxType.GST; + } +}; + +export const ConfirmContributionForm = ({ + order, + onSubmit, + onSuccess, + onFailure, + footer = null, + FormBodyContainer = Fragment, + initialValues = {}, +}) => { + const defaultHostFeePercent = order.hostFeePercent || order.toAccount.bankTransfersHostFeePercent || 0; + const defaultTaxPercent = order.tax?.rate * 100 || 0; + const defaultPlatformTip = order.platformTipAmount?.valueInCents || 0; + const amountInitiated = order.amount.valueInCents + defaultPlatformTip; + const currency = order.amount.currency; + const [amountReceived, setAmountReceived] = useState(initialValues['amountReceived'] ?? amountInitiated); + const [platformTip, setPlatformTip] = useState(defaultPlatformTip); + const [paymentProcessorFee, setPaymentProcessorFee] = useState(0); + const [hostFeePercent, setHostFeePercent] = useState(defaultHostFeePercent); + const [taxPercent, setTaxPercent] = useState(defaultTaxPercent); + const [processedAt, setProcessedAt] = useState(initialValues['processedAt'] ?? getCurrentLocalDateStr()); + const intl = useIntl(); + const { toast } = useToast(); + const [confirmOrder, { loading: submitting }] = useMutation(confirmContributionMutation, { context: API_V2_CONTEXT }); + const contributionAmount = amountReceived - platformTip; + const grossContributionAmount = Math.round(contributionAmount / (1 + taxPercent / 100)); + const taxAmount = taxPercent ? Math.round(contributionAmount - grossContributionAmount) : null; + const hostFee = Math.round((contributionAmount - taxAmount) * hostFeePercent) / 100; + const netAmount = contributionAmount - paymentProcessorFee - hostFee - taxAmount; + const canAddHostFee = !order.toAccount.isHost; + const applicableTax = getApplicableTaxType(order.toAccount, order.toAccount.host); + + return ( +
{ + e.preventDefault(); + + // Prevent submitting the action if another one is being submitted at the same time + if (submitting) { + return; + } + + onSubmit?.(); + try { + await confirmOrder({ + variables: { + action: 'MARK_AS_PAID', + order: { + id: order.id, + amount: { valueInCents: grossContributionAmount, currency }, + paymentProcessorFee: { valueInCents: paymentProcessorFee || 0, currency }, + platformTip: { valueInCents: platformTip || 0, currency }, + hostFeePercent: hostFeePercent || 0, + processedAt: processedAt ? new Date(processedAt) : new Date(), + transactionsImportRow: pick(initialValues['transactionsImportRow'], 'id'), + tax: !taxPercent + ? null + : ({ + type: applicableTax, + ...omit(order.tax, ['id', '__typename']), + rate: taxPercent / 100, + amount: { valueInCents: taxAmount, currency }, + } as TaxInput), + }, + }, + }); + toast({ + variant: 'success', + message: intl.formatMessage({ defaultMessage: 'Contribution confirmed successfully', id: 'Khmjkh' }), + }); + onSuccess?.(); + } catch (e) { + onFailure?.(); + toast({ variant: 'error', message: i18nGraphqlException(intl, e) }); + } + }} + > + +

+ +

+ + + + + + + + + + + + + + + setAmountReceived(value)} + value={amountReceived} + required + /> + + + + + + + setPaymentProcessorFee(value)} + value={paymentProcessorFee} + /> + + + + + + + setPlatformTip(value)} + value={platformTip} + min={platformTip ? 0 : undefined} + max={amountReceived ? amountReceived : undefined} + /> + + + {Boolean(order.taxAmount || applicableTax) && ( + + + + + + setTaxPercent(value)} + /> + + + + )} + {canAddHostFee && ( + + + + + + setHostFeePercent(value)} + /> + + + + )} + + + + + setProcessedAt(e.target.value)} + /> + + + + + + + + ), + }} + /> + + + + + + + {Boolean(platformTip) && ( + + + + + ), + }} + /> + + + + + + + )} + + + {Boolean(paymentProcessorFee) && ( + + + }} + /> + + + + + + )} + {Boolean(taxAmount) && ( + + + {i18nTaxType(intl, order.tax?.type || applicableTax, 'full')} + + + + + + )} + {Boolean(hostFee) && ( + + + }} + /> + + + + + + )} + + + + ), + }} + /> + + + + + + +
+ {footer} +
+ ); +}; diff --git a/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx b/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx index 1027d6aacb9..a7b85790f35 100644 --- a/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx +++ b/components/dashboard/sections/contributions/CreatePendingOrderModal.tsx @@ -15,6 +15,7 @@ import { API_V2_CONTEXT, gql } from '../../../../lib/graphql/helpers'; import type { CreatePendingContributionModalQuery, OrderPageQuery } from '../../../../lib/graphql/types/v2/graphql'; import useLoggedInUser from '../../../../lib/hooks/useLoggedInUser'; import formatCollectiveType from '../../../../lib/i18n/collective-type'; +import { i18nPendingOrderPaymentMethodTypes } from '../../../../lib/i18n/pending-order-payment-method-type'; import { i18nTaxType } from '../../../../lib/i18n/taxes'; import { require2FAForAdmins } from '../../../../lib/policies'; import { omitDeep } from '../../../../lib/utils'; @@ -22,7 +23,7 @@ import { omitDeep } from '../../../../lib/utils'; import AccountingCategorySelect from '../../../AccountingCategorySelect'; import CollectivePicker, { DefaultCollectiveLabel } from '../../../CollectivePicker'; import CollectivePickerAsync from '../../../CollectivePickerAsync'; -import { confirmContributionFieldsFragment } from '../../../ContributionConfirmationModal'; +import { confirmContributionFieldsFragment } from '../../../contributions/ConfirmContributionForm'; import FormattedMoneyAmount from '../../../FormattedMoneyAmount'; import { Box, Flex } from '../../../Grid'; import LoadingPlaceholder from '../../../LoadingPlaceholder'; @@ -387,11 +388,10 @@ const CreatePendingContributionForm = ({ host, onClose, error, edit }: CreatePen ), }); } - const paymentMethodOptions = [ - { value: 'UNKNOWN', label: intl.formatMessage({ id: 'Unknown', defaultMessage: 'Unknown' }) }, - { value: 'BANK_TRANSFER', label: intl.formatMessage({ defaultMessage: 'Bank Transfer', id: 'Aj4Xx4' }) }, - { value: 'CHECK', label: intl.formatMessage({ id: 'PaymentMethod.Check', defaultMessage: 'Check' }) }, - ]; + const paymentMethodOptions = Object.keys(i18nPendingOrderPaymentMethodTypes).map(key => ({ + label: intl.formatMessage(i18nPendingOrderPaymentMethodTypes[key]), + value: key, + })); const amounts = getAmountsFromValues(values); return ( diff --git a/components/dashboard/sections/transactions-imports/FilterWithRawValueButton.tsx b/components/dashboard/sections/transactions-imports/FilterWithRawValueButton.tsx new file mode 100644 index 00000000000..8a969622bed --- /dev/null +++ b/components/dashboard/sections/transactions-imports/FilterWithRawValueButton.tsx @@ -0,0 +1,36 @@ +import React from 'react'; +import type { LucideIcon } from 'lucide-react'; +import { ALargeSmall, Filter } from 'lucide-react'; +import { FormattedMessage } from 'react-intl'; + +import { Button } from '../../../ui/Button'; +import { Tooltip, TooltipContent, TooltipTrigger } from '../../../ui/Tooltip'; + +export function FilterWithRawValueButton({ + SecondaryIcon = ALargeSmall, + message, + onClick, +}: { + SecondaryIcon?: LucideIcon; + message?: React.ReactNode | string; + onClick: () => void; +}) { + return ( + + + + + {message || } + + ); +} diff --git a/components/dashboard/sections/transactions-imports/MatchContributionDialog.tsx b/components/dashboard/sections/transactions-imports/MatchContributionDialog.tsx new file mode 100644 index 00000000000..6ff2b1ffb60 --- /dev/null +++ b/components/dashboard/sections/transactions-imports/MatchContributionDialog.tsx @@ -0,0 +1,515 @@ +import React from 'react'; +import { gql, useApolloClient, useMutation, useQuery } from '@apollo/client'; +import { ceil, floor, isEmpty, startCase } from 'lodash'; +import { ArrowLeft, ArrowRight, Ban, Calendar, Coins, ExternalLink, Save } from 'lucide-react'; +import { FormattedMessage, useIntl } from 'react-intl'; + +import { i18nGraphqlException } from '../../../../lib/errors'; +import { integer } from '../../../../lib/filters/schemas'; +import { API_V2_CONTEXT } from '../../../../lib/graphql/helpers'; +import type { + Account, + TransactionsImport, + TransactionsImportRow, + TransactionsImportStats, +} from '../../../../lib/graphql/types/v2/graphql'; +import { OrderStatus } from '../../../../lib/graphql/types/v2/graphql'; +import useQueryFilter from '../../../../lib/hooks/useQueryFilter'; +import i18nOrderStatus from '../../../../lib/i18n/order-status'; +import { i18nPendingOrderPaymentMethodTypes } from '../../../../lib/i18n/pending-order-payment-method-type'; +import { updateTransactionsImportRows } from './lib/graphql'; +import type { CSVConfig } from './lib/types'; + +import { accountHoverCardFields } from '../../../AccountHoverCard'; +import { + confirmContributionFieldsFragment, + ConfirmContributionForm, +} from '../../../contributions/ConfirmContributionForm'; +import DateTime from '../../../DateTime'; +import FormattedMoneyAmount from '../../../FormattedMoneyAmount'; +import Link from '../../../Link'; +import LinkCollective from '../../../LinkCollective'; +import MessageBoxGraphqlError from '../../../MessageBoxGraphqlError'; +import { Button } from '../../../ui/Button'; +import { Dialog, DialogContent, DialogHeader } from '../../../ui/Dialog'; +import { useToast } from '../../../ui/useToast'; +import { AmountFilterType } from '../../filters/AmountFilter/schema'; +import { DateFilterType } from '../../filters/DateFilter/schema'; +import { Filterbar } from '../../filters/Filterbar'; +import * as ContributionFilters from '../contributions/filters'; + +import { FilterWithRawValueButton } from './FilterWithRawValueButton'; +import { SuggestedContributionsTable } from './SuggestedContributionsTable'; + +const filterRawValueEntries = ([key, value]: [string, string], csvConfig: CSVConfig): boolean => { + // Ignore empty values + if (isEmpty(value)) { + return false; + } + + // Ignore amount and date, since they're already parsed and displayed above + if (csvConfig) { + const { columns } = csvConfig; + if ([columns.credit.target, columns.debit.target, columns.date.target].includes(key)) { + return false; + } + } + + return true; +}; + +const NB_CONTRIBUTIONS_DISPLAYED = 5; + +const filtersSchema = ContributionFilters.schema.extend({ + limit: integer.default(NB_CONTRIBUTIONS_DISPLAYED), +}); + +const suggestExpectedFundsQuery = gql` + query SuggestExpectedFunds( + $hostId: String! + $searchTerm: String + $offset: Int + $limit: Int + $frequency: ContributionFrequency + $status: [OrderStatus!] + $onlySubscriptions: Boolean + $minAmount: Int + $maxAmount: Int + $paymentMethod: PaymentMethodReferenceInput + $dateFrom: DateTime + $dateTo: DateTime + $expectedDateFrom: DateTime + $expectedDateTo: DateTime + $expectedFundsFilter: ExpectedFundsFilter + ) { + account(id: $hostId) { + orders( + filter: INCOMING + includeIncognito: true + includeHostedAccounts: true + status: $status + frequency: $frequency + onlySubscriptions: $onlySubscriptions + dateFrom: $dateFrom + dateTo: $dateTo + expectedDateFrom: $expectedDateFrom + expectedDateTo: $expectedDateTo + minAmount: $minAmount + maxAmount: $maxAmount + searchTerm: $searchTerm + offset: $offset + limit: $limit + paymentMethod: $paymentMethod + expectedFundsFilter: $expectedFundsFilter + ) { + totalCount + offset + limit + nodes { + id + legacyId + totalAmount { + value + valueInCents + currency + } + platformTipAmount { + value + valueInCents + } + pendingContributionData { + expectedAt + paymentMethod + ponumber + memo + fromAccountInfo { + name + email + } + } + status + description + createdAt + processedAt + tier { + id + name + } + paymentMethod { + id + service + type + } + fromAccount { + id + name + legalName + slug + isIncognito + type + ...AccountHoverCardFields + ... on Individual { + isGuest + } + } + toAccount { + id + slug + name + legalName + type + imageUrl + ...AccountHoverCardFields + } + ...ConfirmContributionFields + } + } + } + } + ${accountHoverCardFields} + ${confirmContributionFieldsFragment} +`; + +/** + * Returns a value with -20%/+20% of the given value + */ +const getAmountRangeFilter = (valueInCents: number) => { + return { + type: AmountFilterType.IS_BETWEEN, + gte: floor(valueInCents * 0.8, -2), + lte: ceil(valueInCents * 1.2, -2), + }; +}; + +export const MatchContributionDialog = ({ + host, + row, + onClose, + transactionsImport, + ...props +}: { + host: Account; + row: TransactionsImportRow; + transactionsImport: TransactionsImport; + onClose: () => void; +} & React.ComponentProps) => { + const client = useApolloClient(); + const { toast } = useToast(); + const [selectedContribution, setSelectedContribution] = React.useState(null); + const [isConfirming, setIsConfirming] = React.useState(false); + const [isSubmitting, setIsSubmitting] = React.useState(false); + const intl = useIntl(); + const queryFilter = useQueryFilter({ + schema: filtersSchema, + skipRouter: true, + toVariables: ContributionFilters.toVariables, + filters: ContributionFilters.filters, + meta: { currency: row.amount.currency }, + defaultFilterValues: { amount: getAmountRangeFilter(row.amount.valueInCents), status: [OrderStatus.PENDING] }, + }); + const [updateRows] = useMutation(updateTransactionsImportRows, { context: API_V2_CONTEXT }); + const { data, loading, error } = useQuery(suggestExpectedFundsQuery, { + context: API_V2_CONTEXT, + variables: { ...queryFilter.variables, hostId: host.id }, + }); + + return ( + + + +

+ +

+
+ {isConfirming ? ( + setIsSubmitting(true)} + onFailure={() => setIsSubmitting(false)} + onSuccess={() => { + // Update row + client.cache.modify({ + id: client.cache.identify(row), + fields: { order: () => selectedContribution }, + }); + + // Update transactions import stats + client.cache.modify({ + id: client.cache.identify(transactionsImport), + fields: { + stats: (stats: TransactionsImportStats): TransactionsImportStats => { + return { ...stats, processed: stats.processed + 1, orders: stats.orders + 1 }; + }, + }, + }); + + // Close modal + onClose(); + }} + initialValues={{ + amountReceived: row.amount.valueInCents, + processedAt: row.date.split('T')[0], + transactionsImportRow: row, + }} + footer={ +
+ + +
+ } + /> + ) : ( + +
+ + {error ? ( + + ) : ( + + )} +
+
+
+ + + + +
    +
  • + + + + : {transactionsImport.source}{' '} + queryFilter.setFilter('searchTerm', transactionsImport.source)} + /> +
  • +
  • + + + + :{' '} + {' '} + } + SecondaryIcon={Coins} + onClick={() => getAmountRangeFilter(row.amount.valueInCents)} + /> +
  • +
  • + + + + : + } + SecondaryIcon={Calendar} + onClick={() => + queryFilter.setFilter('date', { + type: DateFilterType.BEFORE_OR_ON, + lte: row.date.split('T')[0], + }) + } + /> +
  • + {Object.entries(row.rawValue as Record) + .filter(entry => filterRawValueEntries(entry, transactionsImport.csvConfig)) + .map(([key, value]) => ( +
  • + {startCase(key)}: {value.toString()}{' '} + queryFilter.setFilter('searchTerm', value.toString())} + /> +
  • + ))} +
+
+ {selectedContribution && ( +
+
+ :{' '} + + +   + + +
+ +
    +
  • + + + + : {selectedContribution.description} +
  • +
  • + + + + : {i18nOrderStatus(intl, selectedContribution.status)} +
  • +
  • + + + + : +
  • +
  • + + + + :{' '} + + {selectedContribution.platformTipAmount?.valueInCents > 0 && ( + + + ), + }} + /> + + )} +
  • +
  • + + + + : +
  • +
  • + + + + : +
  • + {selectedContribution.tier && ( +
  • + + + + : {selectedContribution.tier.name} +
  • + )} + {selectedContribution.pendingContributionData && ( + + {selectedContribution.pendingContributionData.paymentMethod && ( +
  • + + + + :{' '} + {intl.formatMessage( + i18nPendingOrderPaymentMethodTypes[ + selectedContribution.pendingContributionData.paymentMethod + ] ?? 'UNKNOWN', + )} +
  • + )} + {selectedContribution.pendingContributionData.expectedAt && ( +
  • + + + + : +
  • + )} + {selectedContribution.pendingContributionData.ponumber && ( +
  • + + + + : {selectedContribution.pendingContributionData.ponumber} +
  • + )} + {selectedContribution.pendingContributionData.memo && ( +
  • + + + + : {selectedContribution.pendingContributionData.memo} +
  • + )} +
    + )} +
+
+ )} +
+
+ + {!selectedContribution?.status || selectedContribution.status === OrderStatus.PENDING ? ( + + ) : ( + + )} +
+
+ )} +
+
+ ); +}; diff --git a/components/dashboard/sections/transactions-imports/SuggestedContributionsTable.tsx b/components/dashboard/sections/transactions-imports/SuggestedContributionsTable.tsx new file mode 100644 index 00000000000..02a3c8992ce --- /dev/null +++ b/components/dashboard/sections/transactions-imports/SuggestedContributionsTable.tsx @@ -0,0 +1,116 @@ +import React from 'react'; +import { FormattedMessage } from 'react-intl'; + +import type { Account, Amount, Order, OrderStatus } from '../../../../lib/graphql/types/v2/graphql'; + +import Avatar from '../../../Avatar'; +import DateTime from '../../../DateTime'; +import FormattedMoneyAmount from '../../../FormattedMoneyAmount'; +import OrderStatusTag from '../../../orders/OrderStatusTag'; +import { DataTable } from '../../../table/DataTable'; +import { RadioGroup, RadioGroupItem } from '../../../ui/RadioGroup'; + +export const SuggestedContributionsTable = ({ + loading, + selectedContribution, + setSelectedContribution, + contributions, + totalContributions, +}) => { + return ( + + + loading={loading} + nbPlaceholders={3} + onClickRow={({ original }) => setSelectedContribution(original)} + data={contributions} + getRowClassName={({ original }) => + selectedContribution?.id === original.id + ? 'bg-blue-50 font-semibold shadow-inner shadow-blue-100 !border-l-2 border-l-blue-500' + : '' + } + emptyMessage={() => ( + + )} + columns={[ + { + id: 'select', + cell: ({ row }) => , + meta: { className: 'w-[20px]' }, + }, + { + id: 'date', + header: () => , + accessorKey: 'createdAt', + cell: ({ cell }) => { + const date = cell.getValue() as string; + return ; + }, + }, + { + id: 'amount', + header: () => , + accessorKey: 'totalAmount', + cell: ({ cell }) => { + const value = cell.getValue() as Amount; + return ( + + ); + }, + }, + { + id: 'from', + header: () => , + accessorKey: 'fromAccount', + cell: ({ cell }) => { + const account = cell.getValue() as Account; + return ( +
+ + {account.name} +
+ ); + }, + }, + { + id: 'to', + header: () => , + accessorKey: 'toAccount', + cell: ({ cell }) => { + const account = cell.getValue() as Account; + return ( +
+ + {account.name} +
+ ); + }, + }, + { + id: 'status', + accessorKey: 'status', + header: () => , + cell: ({ cell }) => , + }, + { + id: 'description', + header: () => , + accessorKey: 'description', + cell: ({ cell }) =>
{cell.getValue() as string}
, + }, + ]} + footer={ + totalContributions > contributions.length && ( +
+ +
+ ) + } + /> +
+ ); +}; diff --git a/components/dashboard/sections/transactions-imports/TransactionsImport.tsx b/components/dashboard/sections/transactions-imports/TransactionsImport.tsx index c02c6e396db..83a9b69b5d9 100644 --- a/components/dashboard/sections/transactions-imports/TransactionsImport.tsx +++ b/components/dashboard/sections/transactions-imports/TransactionsImport.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { gql, useMutation, useQuery } from '@apollo/client'; -import { fromPairs, omit, omitBy } from 'lodash'; +import { fromPairs, omit, partition } from 'lodash'; import { ArchiveRestore, Banknote, @@ -10,7 +10,6 @@ import { FilePenLine, FileSliders, Merge, - Plus, Receipt, SquareSlashIcon, Upload, @@ -22,7 +21,7 @@ import { i18nGraphqlException } from '../../../../lib/errors'; import { formatFileSize } from '../../../../lib/file-utils'; import { API_V2_CONTEXT } from '../../../../lib/graphql/helpers'; import type { Amount, TransactionsImportRow } from '../../../../lib/graphql/types/v2/graphql'; -import { TransactionsImportRowFieldsFragment } from './lib/graphql'; +import { TransactionsImportRowFieldsFragment, updateTransactionsImportRows } from './lib/graphql'; import Avatar from '../../../Avatar'; import DateTime from '../../../DateTime'; @@ -41,6 +40,7 @@ import { useToast } from '../../../ui/useToast'; import DashboardHeader from '../../DashboardHeader'; import { AddFundsModalFromImportRow } from './AddFundsModalFromTransactionsImportRow'; +import { MatchContributionDialog } from './MatchContributionDialog'; import { StepMapCSVColumns } from './StepMapCSVColumns'; import { StepSelectCSV } from './StepSelectCSV'; @@ -104,30 +104,27 @@ const transactionsImportQuery = gql` ${TransactionsImportRowFieldsFragment} `; -const updateTransactionsImportRows = gql` - mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) { - updateTransactionsImportRows(id: $importId, rows: $rows) { - id - stats { - total - ignored - expenses - orders - processed - } - rows { - nodes { - id - ...TransactionsImportRowFields - } - } - } +type OperationType = 'ignore' | 'add-funds' | 'match'; +type RowsOperationsState = Record; + +const isOperationWithModal = (operation: OperationType): operation is 'add-funds' | 'match' => { + return ['add-funds', 'match'].includes(operation); +}; + +const getModalToDisplay = (operations: RowsOperationsState, importRows: TransactionsImportRow[] | undefined) => { + const entry = Object.entries(operations).find(([, op]) => isOperationWithModal(op)); + if (!entry) { + return null; } - ${TransactionsImportRowFieldsFragment} -`; -type OperationType = 'ignore' | 'add-funds'; -type RowsOperationsState = Record; + const [rowId, operation] = entry; + const row = importRows?.find(r => r.id === rowId); + if (!row) { + return null; + } + + return { row, operation }; +}; export const TransactionsImport = ({ accountSlug, importId }) => { const intl = useIntl(); @@ -144,7 +141,7 @@ export const TransactionsImport = ({ accountSlug, importId }) => { const importType = importData?.type; const hasStepper = importType === 'CSV' && !importData?.rows?.totalCount; const importRows = importData?.rows?.nodes; - + const modalInfo = getModalToDisplay(currentOperations, importRows); const setRowsDismissed = async (rowIds: string[], isDismissed: boolean) => { const newOperations: RowsOperationsState = fromPairs(rowIds.map(id => [id, 'ignore'])); setCurrentOperations(operations => ({ ...operations, ...newOperations })); @@ -240,16 +237,6 @@ export const TransactionsImport = ({ accountSlug, importId }) => { getRowClassName={row => row.original.isDismissed ? '[&>td:nth-child(n+2):nth-last-child(n+3)]:opacity-30' : '' } - footer={ - importType === 'MANUAL' && ( -
- -
- ) - } data={importRows} columns={[ { @@ -316,7 +303,7 @@ export const TransactionsImport = ({ accountSlug, importId }) => { return ( { id: 'actions', header: ({ table }) => { if (table.getIsSomePageRowsSelected() || table.getIsAllPageRowsSelected()) { - const selectedCount = table.getSelectedRowModel().rows.length; - const areAllDismissed = table.getSelectedRowModel().rows.every(row => row.original.isDismissed); - if (areAllDismissed) { + const selectedRows = table.getSelectedRowModel().rows; + const unprocessedRows = selectedRows.filter( + ({ original }) => !original.expense && !original.order, + ); + const [ignoredRows, nonIgnoredRows] = partition( + unprocessedRows, + row => row.original.isDismissed, + ); + + if (ignoredRows.length && !nonIgnoredRows.length) { + // If all non-processed rows are dismissed, show restore button return ( ); - } else { + } else if (nonIgnoredRows.length) { + // Otherwise, show ignore button return ( ); @@ -417,17 +413,12 @@ export const TransactionsImport = ({ accountSlug, importId }) => { return (
{/** Create/Match */} - {isImported ? ( - - ) : item.isDismissed ? ( + {isImported ? null : item.isDismissed ? ( // We don't support reverting imported rows yet @@ -447,6 +444,7 @@ export const TransactionsImport = ({ accountSlug, importId }) => { variant="outline" size="xs" className="whitespace-nowrap text-xs" + disabled={Boolean(modalInfo)} onClick={() => setCurrentOperations({ ...currentOperations, [item.id]: 'add-funds' }) } @@ -474,7 +472,7 @@ export const TransactionsImport = ({ accountSlug, importId }) => { variant="outline" size="xs" className="min-w-20 text-xs" - disabled={currentOperations[item.id] && currentOperations[item.id] !== 'ignore'} + disabled={Boolean(currentOperations[item.id] || modalInfo)} loading={currentOperations[item.id] === 'ignore'} onClick={() => setRowsDismissed([item.id], !item.isDismissed)} > @@ -493,13 +491,21 @@ export const TransactionsImport = ({ accountSlug, importId }) => { )} )} - {Object.values(currentOperations).some(op => op === 'add-funds') && ( - currentOperations[t.id] === 'add-funds')} - onClose={() => setCurrentOperations(omitBy(currentOperations, op => op === 'add-funds'))} - /> - )} + {modalInfo && + (modalInfo.operation === 'add-funds' ? ( + setCurrentOperations(omit(currentOperations, modalInfo.row.id))} + /> + ) : modalInfo.operation === 'match' ? ( + setCurrentOperations(omit(currentOperations, modalInfo.row.id))} + /> + ) : null)}
); }; diff --git a/components/dashboard/sections/transactions-imports/lib/graphql.ts b/components/dashboard/sections/transactions-imports/lib/graphql.ts index 79e80a9d7e2..b0a0ebfb7b1 100644 --- a/components/dashboard/sections/transactions-imports/lib/graphql.ts +++ b/components/dashboard/sections/transactions-imports/lib/graphql.ts @@ -52,3 +52,25 @@ export const TransactionsImportRowFieldsFragment = gql` } } `; + +export const updateTransactionsImportRows = gql` + mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) { + updateTransactionsImportRows(id: $importId, rows: $rows) { + id + stats { + total + ignored + expenses + orders + processed + } + rows { + nodes { + id + ...TransactionsImportRowFields + } + } + } + } + ${TransactionsImportRowFieldsFragment} +`; diff --git a/components/orders/OrdersWithData.js b/components/orders/OrdersWithData.js index 1f44fbe8a6d..ed69b0c9815 100644 --- a/components/orders/OrdersWithData.js +++ b/components/orders/OrdersWithData.js @@ -13,7 +13,7 @@ import { usePrevious } from '../../lib/hooks/usePrevious'; import { accountHoverCardFields } from '../AccountHoverCard'; import { parseAmountRange } from '../budget/filters/AmountFilter'; -import { confirmContributionFieldsFragment } from '../ContributionConfirmationModal'; +import { confirmContributionFieldsFragment } from '../contributions/ConfirmContributionForm'; import { DisputedContributionsWarning } from '../dashboard/sections/collectives/DisputedContributionsWarning'; import CreatePendingOrderModal from '../dashboard/sections/contributions/CreatePendingOrderModal'; import { Box, Flex } from '../Grid'; diff --git a/components/table/DataTable.tsx b/components/table/DataTable.tsx index ff38bcfc54f..bcb8d70232c 100644 --- a/components/table/DataTable.tsx +++ b/components/table/DataTable.tsx @@ -15,6 +15,7 @@ import { FormattedMessage, useIntl } from 'react-intl'; import type { GetActions } from '../../lib/actions/types'; import type { useQueryFilterReturnType } from '../../lib/hooks/useQueryFilter'; +import { cn } from '../../lib/utils'; import { Skeleton } from '../ui/Skeleton'; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../ui/Table'; @@ -216,10 +217,9 @@ function DataTableRow({ onClickRow(row, actionsMenuTriggerRef), - className: 'cursor-pointer', })} {...(onHoverRow && { onMouseEnter: () => onHoverRow(row), diff --git a/lang/ca.json b/lang/ca.json index a72fe55f39d..433fb2cecbd 100644 --- a/lang/ca.json +++ b/lang/ca.json @@ -51,6 +51,7 @@ "/XDuMs": "Crear {type, select, TICKET {Tiquet} other {Nivell}}", "/Y9m/t": "Escriviu {slash} per cercar col·lectius...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Açò pot ser editat després", "05doZ2": "Torna a totes les teves aplicacions", "068S+6": "Aquest col·lectiu té esdeveniments i projectes que inclouen membres amb rols d'accés privilegiats fora del vostre equip d'administració.", @@ -553,6 +554,7 @@ "boQlk1": "and connect with {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "New virtual card added to ", + "bQndkF": "Selected match", "BrdgZE": "Error de xarxa", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Crear token", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Connect {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/cs.json b/lang/cs.json index 773cedf018c..629613d1272 100644 --- a/lang/cs.json +++ b/lang/cs.json @@ -51,6 +51,7 @@ "/XDuMs": "Upravte {type, select, TICKET {Tiket} other {Úroveň}}", "/Y9m/t": "Napiš {slash} pro hledání kolektivů...", "/Zj5Ed": "Jednorázově", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Toto lze upravit později", "05doZ2": "Přejít zpět ke všem aplikacím", "068S+6": "Tato kolektivní akce obsahuje události a projekty, které drží členy s privilegovanými přístupovými rolemi mimo váš admin tým.", @@ -553,6 +554,7 @@ "boQlk1": "a spojte se s {oAuthAppName}", "bOSDd3": "Aktivováno jako hostitel", "BqfMx5": "Nová virtuální karta přidána do ", + "bQndkF": "Selected match", "BrdgZE": "Chyba sítě", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Vytvořit token", "C2rcD0": "Heslo je příliš slabé. Zkuste použít více znaků nebo použijte správce hesel pro vygenerování silného hesla.", "C7dxIO": "Schválený výdaj {expenseDescription} od do ", + "c7INEq": "Match contribution", "C8NetX": "Děkujeme za váš příspěvek! ", "C9DEAp": "Obsluha účtu", "C9HmCs": "Připojit {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/de.json b/lang/de.json index 6c913a0c0e2..f16c6f8a789 100644 --- a/lang/de.json +++ b/lang/de.json @@ -51,6 +51,7 @@ "/XDuMs": "Erstelle {type, select, TICKET {Ticket} other {Stufe}}", "/Y9m/t": "Gebe {slash} ein, um nach Kollektiven zu suchen...", "/Zj5Ed": "Einmalig", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Dies kann später bearbeitet werden", "05doZ2": "Zurück zu all Ihren Apps", "068S+6": "Dieses Kollektiv hat Veranstaltungen und Projekte, die Mitglieder mit privilegiertem Zugriff außerhalb ihres Administrator-Teams halten.", @@ -553,6 +554,7 @@ "boQlk1": "und verbinden Sie sich mit {oAuthAppName}", "bOSDd3": "Als Träger aktiviert", "BqfMx5": "Neue virtuelle Karte zu hinzugefügt", + "bQndkF": "Selected match", "BrdgZE": "Netzwerkfehler", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Token erstellen", "C2rcD0": "Passwort ist zu schwach. Versuchen Sie mehr Zeichen zu verwenden oder verwenden Sie einen Passwort-Manager, um ein starkes zu generieren.", "C7dxIO": "Bewilligte Ausgaben {expenseDescription} von bis ", + "c7INEq": "Match contribution", "C8NetX": "Vielen Dank für deinen Beitrag! ", "C9DEAp": "Account-Identifikator", "C9HmCs": "Verbinden mit {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Alle abwählen", "externalRedirect.message": "Deine Anfrage wird derzeit zu {redirect} weitergeleitet. Um die Sicherheit und Privatsphäre deines Open Collective Accounts zu gewährleisten, solltest du deine Anmeldeinformationen nicht eingeben, außer du bist auf der echten Open Collective Website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Das Ändern des Identifikators von @{previousHandle} auf @{newHandle} wird alle Links ungültig machen, die du zuvor für dieses Profil geteilt hast (i. B. {exampleUrl}). Möchtest du wirklich fortfahren?", "f1MZ8o": "Verfügbares Guthaben", @@ -2542,6 +2546,7 @@ "NW8fj9": "Erstelle eine virtuelle Karte für ein Kollektiv mit den nachstehenden Informationen.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Beitrag von abgelehnt von ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Erstelle und verwalte Beiträge, Zahlungsmethoden.", "nYrU4E": "Bitte rate deinen Kollektiven, die richtige Quittungseinstellung für alle Ebenen zu wählen, in denen die alternative Quittung verwendet werden soll, oder verwalte die entsprechenden Beiträge über den Prozess \"Fonds hinzufügen\", bei dem du als Gastgeber-Administrator die richtige Quittung auswählen kannst.", "NZ1C9t": "Anwendung \"{name}\" aktualisiert", @@ -2550,6 +2555,7 @@ "o42xrK": "Support", "o60jEo": "Freigegebene Ausgaben {expenseDescription}", "O8duLC": "Kernbeitragende werden auf Ihrer Seite als Teil des Teams angezeigt, haben aber keinen Admin-Zugang und erhalten keine Benachrichtigungen. Sie spielen keine aktive Rolle auf der Plattform.", + "o9K20a": "Search amount", "o9RoEi": "Bestätige den Betrag, den du in deinem Konto erhalten hast.", "O9VCf1": "Abgelehnte Ausgaben {expenseDescription} von bis ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Ausgehende Beiträge", "OutgoingContributions.description": "Verwalte deine Beiträge zu anderen Kollektiven.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "Sie erstellen zuerst Ihr persönliches Konto, anschließend können Sie ein Profil für Ihr Unternehmen erstellen.", "OW15R5": "Kurze Rückerstattungs-ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Titel", "TJo5E6": "Vorschau", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "USt-IdNr.", + "yoQCPC": "PO number", "yOzWJD": "Erfahre mehr über Finanzträger", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Steueridentifikation", diff --git a/lang/en.json b/lang/en.json index f995b0b644b..247063da86b 100644 --- a/lang/en.json +++ b/lang/en.json @@ -51,6 +51,7 @@ "/XDuMs": "Create {type, select, TICKET {Ticket} other {Tier}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "This can be edited later", "05doZ2": "Go back to all your apps", "068S+6": "This collective has Events and Projects that hold members with privileged access roles outside your admin team.", @@ -553,6 +554,7 @@ "boQlk1": "and connect with {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "New virtual card added to ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Create token", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Connect {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/es.json b/lang/es.json index 45d3ebcc94d..90f8ec3c534 100644 --- a/lang/es.json +++ b/lang/es.json @@ -51,6 +51,7 @@ "/XDuMs": "Crear {type, select, TICKET {Ticket} other {Categoría}}", "/Y9m/t": "Escribe {slash} para buscar Colectivos...", "/Zj5Ed": "Único", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Esto se puede editar más tarde", "05doZ2": "Volver a todas tus aplicaciones", "068S+6": "Este Colectivo tiene Eventos y Proyectos que cuentan con miembros con roles de acceso privilegiados fuera de su equipo de administración.", @@ -553,6 +554,7 @@ "boQlk1": "y conectar con {oAuthAppName}", "bOSDd3": "Activado como Host", "BqfMx5": "Nueva tarjeta virtual añadida a ", + "bQndkF": "Selected match", "BrdgZE": "Error de red", "bRgWXW": "Perfiles que administro", "BT5QRL": "Elegir un perfil", @@ -583,6 +585,7 @@ "c+swVk": "Crear token", "C2rcD0": "La contraseña es muy débil. Intenta usar más caracteres o utiliza un gestor de contraseñas para generar una más segura.", "C7dxIO": "Aprobado el gasto {expenseDescription} de a ", + "c7INEq": "Match contribution", "C8NetX": "¡Gracias por tu colaboración! ", "C9DEAp": "Usuario de Cuenta", "C9HmCs": "Conectar {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Deseleccionar todo", "externalRedirect.message": "Su solicitud está siendo redirigida a {redirect}. Por la seguridad y la privacidad de su cuenta de Open Collective, recuerde que nunca debe introducir sus credenciales a menos que esté en el verdadero sitio web de Open Collective.", "Ey7Kn+": "Total por lotes ({count})", + "f+3xdP": "Search date", "f01/33": "Pide a tus colaboradores que reanuden sus contribuciones", "F0ZA/r": "Cambiar el nombre de usuario de @{previousHandle} a @{newHandle} romperá todos los enlaces que hayas compartido previamente para este perfil (ej. {exampleUrl}). ¿Realmente quieres continuar?", "f1MZ8o": "Saldo disponible", @@ -2542,6 +2546,7 @@ "NW8fj9": "Crea una tarjeta virtual para un Colectivo con la información que aparece a continuación.", "nWf9h8": " actualizó el gasto {expenseDescription}", "nxBQAa": "Contribución de rechazada por ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Crear y gestionar contribuciones, métodos de pago.", "nYrU4E": "Por favor, indica a tus Colectivos que seleccionen la configuración correcta de los recibos para cualquier categoría en el que se deba utilizar el recibo alternativo o que gestionen estas contribuciones a través del proceso de Añadir Fondos, en el que tú, como Administrador Host, puedes seleccionar el recibo correcto.", "NZ1C9t": "Aplicación \"{name}\" actualizada", @@ -2550,6 +2555,7 @@ "o42xrK": "soporte", "o60jEo": "Liberada la suspensión del Gasto {expenseDescription}", "O8duLC": "Los Colaboradores Principales se muestran como parte del equipo en tu página, pero no tienen acceso de administrador ni reciben notificaciones. No desempeñan un papel activo en la plataforma.", + "o9K20a": "Search amount", "o9RoEi": "Confirma el monto de fondos que has recibido en tu cuenta de Anfitrión.", "O9VCf1": "Rechazado el Gasto {expenseDescription} de a ", "oaI4cl": "Gasto Presentado por Usuario", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Colaboraciones salientes", "OutgoingContributions.description": "Gestiona tus colaboraciones a otros Colectivos.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Datos personalizados de Colaboración", "OvoOan": "Primero creas tu cuenta personal. Tras entrar, podrás crear un perfil para tu empresa.", "OW15R5": "ID del Reembolso de la venta corta", @@ -3362,6 +3369,7 @@ "TiNmc5": "Ir a Configuración > Avanzada", "Title": "Título", "TJo5E6": "Vista previa", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Promedio diario: {amount}", "TNecsq": "Identificación de la fuente para {taxName}", @@ -3480,6 +3488,7 @@ "UAwtXh": "¿Dónde residen tus colaboradores financieros?", "ub/vNK": " aprobó {expenseDescription}", "ucWzrM": "Si ya tienes una cuenta o quieres contribuir como organización, inicia sesión.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Crear y gestionar conversaciones.", "uEcPHj": "Etiquetar tu gasto", @@ -3852,6 +3861,7 @@ "ym6cRo": "En Open Collective, trabajamos cada día para garantizar que nuestra plataforma sea segura y sencilla para que los Colectivos puedan crecer.

Esto incluye la introducción de nuevas y atractivas funciones, la corrección de errores y la seguridad de que funciona tal y como esperan nuestros usuarios.

Tu propina a la plataforma nos ayudará a continuar este trabajo y a garantizar que los Colectivos de todo el mundo tengan acceso a las herramientas necesarias para mejorar sus comunidades y promover el cambio.", "yMFA0e": "Configura esto como \"Colectivo\" para utilizar la información del Colectivo en la sección \"Facturar a\" de las facturas generadas. Asegúrate de que este modelo es legal en tu jurisdicción.", "YnfjEo": "Número de identificación fiscal", + "yoQCPC": "PO number", "yOzWJD": "Más información sobre el hosting fiscal", "Yp8Cek": "Tarifa del Procesador de Pago (pagada por {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Identificación fiscal", diff --git a/lang/fr.json b/lang/fr.json index 1a080341291..5f124b17f45 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -51,6 +51,7 @@ "/XDuMs": "Créer un {type, select, TICKET {Ticket} other {Palier}}", "/Y9m/t": "Tapez {slash} pour rechercher des Collectifs...", "/Zj5Ed": "Ponctuel", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Ceci peut être modifié plus tard", "05doZ2": "Revenir à la liste des applications", "068S+6": "Ce collectif a des événements et des projets dont les membres ont un accès privilégié en dehors de votre équipe d'administration.", @@ -553,6 +554,7 @@ "boQlk1": "et se connecter avec {oAuthAppName}", "bOSDd3": "Activé en tant qu'hôte", "BqfMx5": "Nouvelle carte virtuelle ajoutée à ", + "bQndkF": "Selected match", "BrdgZE": "Erreur réseau", "bRgWXW": "Profils que j'administre", "BT5QRL": "Choisir un profil", @@ -583,6 +585,7 @@ "c+swVk": "Créer un jeton", "C2rcD0": "Le mot de passe est trop faible. Essayez d'utiliser plus de caractères ou utilisez un gestionnaire de mots de passe pour en générer un.", "C7dxIO": "Dépense approuvée {expenseDescription} de à ", + "c7INEq": "Match contribution", "C8NetX": "Merci pour votre contribution ! ", "C9DEAp": "Identifiant du compte", "C9HmCs": "Connecter {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Tout désélectionner", "externalRedirect.message": "Votre demande est actuellement en cours de redirection vers {redirect}. Pour la sécurité et la confidentialité de votre compte Open Collective, ne rentrez jamais vos informations d'identification en dehors d'Open Collective.", "Ey7Kn+": "Total par lots ({count})", + "f+3xdP": "Search date", "f01/33": "Demandez à vos contributeurs de réactiver leurs contributions", "F0ZA/r": "Le changement de dénomination de @{previousHandle} à @{newHandle} rompra tous les liens que vous avez précédemment partagés pour ce profil (i. ., {exampleUrl}). Voulez-vous vraiment continuer ?", "f1MZ8o": "Solde disponible", @@ -2542,6 +2546,7 @@ "NW8fj9": "Créez une carte virtuelle pour un Collectif avec les informations ci-dessous.", "nWf9h8": " a mis à jour {expenseDescription}", "nxBQAa": "Contribution de rejetée par ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Créer et gérer des contributions, des modes de paiement.", "nYrU4E": "Veuillez conseiller à vos Collectifs de sélectionner le bon réglage de reçus pour chaque formule pour laquelle un reçu alternatif doit être utilisé, ou de gérer ces contributions avec l'option Add Funds, pour que vous puissiez, en tant qu'administrateur de l'Hôte, sélectionner le bon reçu.", "NZ1C9t": "Application \"{name}\" mise à jour", @@ -2550,6 +2555,7 @@ "o42xrK": "assistance", "o60jEo": "Retenue réalisée sur la dépense {expenseDescription}", "O8duLC": "Des Contributeurs principaux sont affichés sur votre page comme membres de l'équipe mais n'ont pas d'accès administrateur et ne reçoivent pas les notifications. Ils ne jouent pas un rôle actif sur la plateforme.", + "o9K20a": "Search amount", "o9RoEi": "Confirmez le montant des fonds que vous avez reçus sur votre compte hôte.", "O9VCf1": "Dépense rejetée {expenseDescription} de à ", "oaI4cl": "Dépense soumise par Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Contributions sortantes", "OutgoingContributions.description": "Gérez vos contributions à d'autres Collectifs.", "oUWADl": "Non", + "OUzCHW": "Expected date", "OV4x2C": "Données personnalisées de la contribution", "OvoOan": "Créez d'abord votre compte personnel, puis vous serez en mesure de créer un profil pour votre entreprise.", "OW15R5": "ID simplifiée du remboursement", @@ -3362,6 +3369,7 @@ "TiNmc5": "Allez dans : Paramètres > Avancés", "Title": "Titre", "TJo5E6": "Aperçu", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Moyenne journalière : {amount}", "TNecsq": "N° de {taxName} de la source", @@ -3480,6 +3488,7 @@ "UAwtXh": "Où sont basés vos contributeurs financiers ?", "ub/vNK": " a approuvé {expenseDescription}", "ucWzrM": "Si vous avez déjà un compte ou que vous souhaitez contribuer en tant qu'organisation, connectez-vous.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Créer et gérer des conversations.", "uEcPHj": "Étiqueter votre dépense", @@ -3852,6 +3861,7 @@ "ym6cRo": "Chez Open Collective, nous travaillons tous les jours pour être sûrs que notre plateforme est un espace sécurisé et simple pour les collectifs qui se développent.

Cela implique de créer de nouvelles fonctionnalités, de réparer les bugs, et de s'assurer que tout fonctionne comme le souhaitent nos utilisateurs.

Vos pourboires nous aident à réaliser ce travail, et d'assurer aux collectifs à travers le monde un accès aux outils dont ils ont besoin pour améliorer leur communauté et amener le changement.", "yMFA0e": "Définissez ce paramètre à \"Collectif\" pour utiliser les informations du Collectif pour la section \"Facturer à\". Vous devez vous assurer que ce modèle est légal dans votre juridiction.", "YnfjEo": "Numéro de TVA ", + "yoQCPC": "PO number", "yOzWJD": "En savoir plus sur l'Hôte fiscal", "Yp8Cek": "Frais de traitement de paiement (payés par {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Identification fiscale", diff --git a/lang/he.json b/lang/he.json index 5e5d8a1c75e..817fbe22eba 100644 --- a/lang/he.json +++ b/lang/he.json @@ -51,6 +51,7 @@ "/XDuMs": "Create {type, select, TICKET {Ticket} other {Tier}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "חד פעמי", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "אפשר לערוך את זה אח״כ", "05doZ2": "חזרה לכל היישומים", "068S+6": "This collective has Events and Projects that hold members with privileged access roles outside your admin team.", @@ -553,6 +554,7 @@ "boQlk1": "ולהתחבר עם {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "כרטיס וירטואלי חדש נוצא עבור ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Create token", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "חיבור השירות {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "המידע שלך מועבר ל{redirect}. למעל הבטיחות והפרטיות של חשבונך, כדאי לזכור לא להזין פרטי כניסה אלא באתר מקורי ומהימן.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "יצירת כרטיס וירטואלי לקבוצה עם המידע מטה.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "תרומות מחשבון סורבו על-ידי ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "אפליקציה \"{name}\" עודכנה", @@ -2550,6 +2555,7 @@ "o42xrK": "תמיכה", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "אישור הסכומים שהתקבלו בחשבון ארגון הגג.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "את/ה ביצירת חשבון אישי. לאחר יצירת החשבון, ניתן יהיה לפתוח פרופיל עבור החברה שלך.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "צפיה מקדימה", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "ממוצע יומי: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "אם כבר יש לך חשבון או ברצונך לתמוך כארגון, יש להכנס למערכת.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "יצירה וניהול שיחות.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "בחירה ב\"קבוצה\" כדי להציג את המידע של הקבוצה על דרישות התשלום באיזור \"תשלום עבור\". כדאי לוודא שהאפשרות הזו חוקית איפה שאתם גרים בעולם.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "למידע נוסף על ארגוני גג", "Yp8Cek": "עמלות סליקה או צד ג' (ישולם על-ידי {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/it.json b/lang/it.json index 9094b8e92bf..bb59c02f935 100644 --- a/lang/it.json +++ b/lang/it.json @@ -51,6 +51,7 @@ "/XDuMs": "Crea {type, select, TICKET {Ticket} other {Rango}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "Una volta", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Questo può essere modificato dopo", "05doZ2": "Torna a tutte le app", "068S+6": "Questo collettivo presenta Eventi e Progetti, contenenti membri con ruoli di accesso privilegiato all'esterno del tuo team d'amministrazione.", @@ -553,6 +554,7 @@ "boQlk1": "e connettiti con {oAuthAppName}", "bOSDd3": "Attivato come host", "BqfMx5": "Nuova carta virtuale aggiunta a ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Crea token", "C2rcD0": "Password troppo debole. Prova a utilizzare altri caratteri o utilizza un gestore di password per generarne una appropriata.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Connetti {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Deseleziona tutto", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Bilancio disponibile", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Titolo", "TJo5E6": "Anteprima", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Media giornaliera: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/ja.json b/lang/ja.json index 3fccea8d8fc..5e01cefa902 100644 --- a/lang/ja.json +++ b/lang/ja.json @@ -51,6 +51,7 @@ "/XDuMs": "Create {type, select, TICKET {Ticket} other {Tier}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "この設定は後で編集することができます", "05doZ2": "すべてのアプリに戻る", "068S+6": "This collective has Events and Projects that hold members with privileged access roles outside your admin team.", @@ -553,6 +554,7 @@ "boQlk1": "and connect with {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "New virtual card added to ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "トークンを作成", "C2rcD0": "パスワードが弱すぎます。より多くの文字を使用するか、パスワードマネージャーを使用して、強力なパスワードを作成してください。", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "{service} に接続", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Open Collective のページを離れて {redirect} にリダイレクト(遷移)しようとしています。あなたの Open Collective アカウントの安全とプライバシー保護のために、Open Collective のページ以外では、Open Collective の認証情報(アカウント名やパスワードなど)を決して入力しないようご注意ください。", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "財務ホスティングについての詳細はこちら", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/ko.json b/lang/ko.json index 5db2b3b8504..0e0f37153d3 100644 --- a/lang/ko.json +++ b/lang/ko.json @@ -51,6 +51,7 @@ "/XDuMs": "{type, select, TICKET {티켓} other {티어}} 편집", "/Y9m/t": "콜렉티브를 검색하려면 {slash}를 치세요", "/Zj5Ed": "일회성", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "나중에 편집할 수 있습니다", "05doZ2": "모든 앱으로 돌아가기", "068S+6": "이 집단에는 여러분의 관리자 팀 외부에서 권한 있는 액세스 역할을 가진 멤버가 있는 이벤트 및 프로젝트가 있습니다.", @@ -553,6 +554,7 @@ "boQlk1": "and connect with {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "New virtual card added to ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Create token", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Connect {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "개인 계정에 먼저 가입하세요. 가입이 완료되면 회사를 위한 조직 계정을 만들 수 있어요.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/nl.json b/lang/nl.json index fa949118774..44482f77d68 100644 --- a/lang/nl.json +++ b/lang/nl.json @@ -51,6 +51,7 @@ "/XDuMs": "{type, select, TICKET {Ticket} other {Rang}} aanmaken", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "Eenmalig", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Dit kan later worden bewerkt", "05doZ2": "Ga terug naar al uw apps", "068S+6": "This collective has Events and Projects that hold members with privileged access roles outside your admin team.", @@ -553,6 +554,7 @@ "boQlk1": "en verbinding maken met {oAuthAppName}", "bOSDd3": "Geactiveerd als gastorganisatie", "BqfMx5": "Nieuwe virtuele kaart toegevoegd aan ", + "bQndkF": "Selected match", "BrdgZE": "Netwerkfout", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Token aanmaken", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Verbind {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/pl.json b/lang/pl.json index 0a6de17bf7b..2187c974c16 100644 --- a/lang/pl.json +++ b/lang/pl.json @@ -51,6 +51,7 @@ "/XDuMs": "Stwórz {type, select, TICKET {Bilet} other {Poziom}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "To można edytować później", "05doZ2": "Wróć do wszystkich aplikacji", "068S+6": "Ta zbiórka posiada Wydarzenia i Projekty, które posiadają członków z uprzywilejowanymi rolami dostępu poza twoim zespołem administratorów.", @@ -553,6 +554,7 @@ "boQlk1": "i połącz się z {oAuthAppName}", "bOSDd3": "Aktywowany jako gospodarz", "BqfMx5": "Nowa wirtualna karta dodana do konta ", + "bQndkF": "Selected match", "BrdgZE": "Błąd sieciowy", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Utwórz token", "C2rcD0": "Hasło jest zbyt słabe. Spróbuj użyć więcej znaków lub użyj menedżera haseł, aby wygenerować silne hasło.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Połącz {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Odznacz wszystko", "externalRedirect.message": "Twoje żądanie jest obecnie przekierowywane na adres {redirect}. Ze względu na bezpieczeństwo i prywatność twojego konta w Open Collective pamiętaj, aby nigdy nie wprowadzać swoich danych uwierzytelniających, chyba że znajdujesz się na prawdziwej stronie Open Collective.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Stwórz wirtualną kartę dla zbioru z poniższymi informacjami.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Składka od odrzucona przez ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Tworzenie i zarządzanie składkami, metodami płatności.", "nYrU4E": "Prosimy o poinformowanie członków zbiorki, aby wybrali odpowiednie ustawienie rachunku dla poziomów, w których należy użyć alternatywnego rachunku, lub o zarządzanie powiązanymi wpłatami poprzez proces dodawania środków, w którym Ty jako administrator gospodarza możesz wybierać odpowiedni rachunek.", "NZ1C9t": "Aplikacja \"{name}\" została zaktualizowana", @@ -2550,6 +2555,7 @@ "o42xrK": "wsparcie", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Główni współpracownicy są widoczni jako część zespołu na stronie, ale nie mają dostępu do administratora ani nie otrzymują powiadomień. Nie odgrywają aktywnej roli na platformie.", + "o9K20a": "Search amount", "o9RoEi": "Potwierdź kwotę środków, które otrzymałeś na swoje konto gospodarza.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "Nie", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "Najpierw tworzysz swoje konto osobiste, po wejściu do środka będziesz mógł stworzyć profil dla swojej firmy.", "OW15R5": "Krótkie ID zwrotu", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Podgląd", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Średnia dzienna: {amount}", "TNecsq": "Identyfikator źródła {taxName}", @@ -3480,6 +3488,7 @@ "UAwtXh": "Gdzie są Twoi współpracownicy finansowi?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "Jeśli masz już konto lub chcesz wnieść swój wkład jako organizacja, Zaloguj się.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Tworzenie i zarządzanie rozmowami.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Ustaw to na \"Zbiorcze\", aby użyć zbiorczej informacji dla sekcji \"Rachunek dla\" generowanych faktur. Musisz upewnić się, że ten wzór jest legalny w Twojej jurysdykcji.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Dowiedz się więcej o gospodarzu podatkowym", "Yp8Cek": "Opłata za obsługę płatności (opłacona przez {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/pt-BR.json b/lang/pt-BR.json index 3322abea3ff..26ee98cd24f 100644 --- a/lang/pt-BR.json +++ b/lang/pt-BR.json @@ -51,6 +51,7 @@ "/XDuMs": "Crie {type, select, TICKET {Ticket} other {Nível}}", "/Y9m/t": "Digite {slash} para pesquisar Coletivos...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Pode ser modificado depois", "05doZ2": "Voltar para todos os seus aplicativos", "068S+6": "Este coletivo tem Eventos e Projetos que detêm membros com cargos de acesso privilegiados fora da sua equipe de administrador.", @@ -553,6 +554,7 @@ "boQlk1": "e conectar com {oAuthAppName}", "bOSDd3": "Ativado como host", "BqfMx5": "Novo cartão virtual adicionado a ", + "bQndkF": "Selected match", "BrdgZE": "Erro de rede", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Criar token", "C2rcD0": "A senha é muito fraca. Tente usar mais caracteres ou use um gerenciador de senhas para gerar um forte.", "C7dxIO": "Despesa aprovada {expenseDescription} de para ", + "c7INEq": "Match contribution", "C8NetX": "Obrigado pela sua contribuição! ", "C9DEAp": "Tratar conta", "C9HmCs": "Conectar {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Desmarcar tudo", "externalRedirect.message": "Sua solicitação está sendo redirecionada para {redirect}. Para a segurança e a privacidade de sua conta Open Collective, lembre-se de nunca inserir suas credenciais a menos que você esteja no site real da Open Collective.", "Ey7Kn+": "Total em lote ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Mudar o identificador de @{previousHandle} para @{newHandle} quebrará todos os links que você já compartilhou para este perfil (i.., {exampleUrl}). Você quer mesmo continuar?", "f1MZ8o": "Saldo disponível", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "suporte", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Título", "TJo5E6": "Pré-visualizar", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "Na Open Collective, trabalhamos todos os dias para garantir que nossa plataforma seja um lugar simples e seguro para que coletivos cresçam.

Isso inclui a introdução de novos e empolgantes recursos, a correção de bugs e a garantia de que ela funcione como os nossos usuários esperam.

Sua contribuição na plataforma irá nos ajudar a manter esse trabalho - e garantir que coletivos de todo o mundo tenham acesso às ferramentas necessárias para melhorar as comunidades. e fazer a mudança acontecer.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Número de identificação fiscal", + "yoQCPC": "PO number", "yOzWJD": "Saiba mais sobre administração fiscal", "Yp8Cek": "Taxa do processador de pagamento (pago por {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/pt.json b/lang/pt.json index 6b879a81ec2..c8190633d41 100644 --- a/lang/pt.json +++ b/lang/pt.json @@ -51,6 +51,7 @@ "/XDuMs": "Create {type, select, TICKET {Ticket} other {Tier}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Isto pode ser editado mais tarde", "05doZ2": "Voltar a todas as suas aplicações", "068S+6": "This collective has Events and Projects that hold members with privileged access roles outside your admin team.", @@ -553,6 +554,7 @@ "boQlk1": "and connect with {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "New virtual card added to ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Create token", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Connect {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/ru.json b/lang/ru.json index 1525c9cb42a..fa72bb5dea7 100644 --- a/lang/ru.json +++ b/lang/ru.json @@ -51,6 +51,7 @@ "/XDuMs": "Создать {type, select, TICKET {Билет} other {Уровень}}", "/Y9m/t": "Введите {slash} для поиска Коллективов...", "/Zj5Ed": "Одноразовый", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Это может быть изменено позже", "05doZ2": "Вернуться ко всем вашим приложениям", "068S+6": "Этот коллектив имеет События и Проекты, которые содержат участников с привилегированным доступом вне вашей группы администраторов.", @@ -553,6 +554,7 @@ "boQlk1": "and connect with {oAuthAppName}", "bOSDd3": "Activated as host", "BqfMx5": "Новая виртуальная карта добавлена на ", + "bQndkF": "Selected match", "BrdgZE": "Ошибка сети", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Создать токен", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Подключить {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Application \"{name}\" updated", @@ -2550,6 +2555,7 @@ "o42xrK": "поддержка", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Preview", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Daily average: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Learn more about fiscal hosting", "Yp8Cek": "Payment Processor Fee (paid by {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/sk-SK.json b/lang/sk-SK.json index bf21e87ad27..41e3da2c978 100644 --- a/lang/sk-SK.json +++ b/lang/sk-SK.json @@ -51,6 +51,7 @@ "/XDuMs": "Vytvoriť {type, select, TICKET {tiket} other {úroveň}}", "/Y9m/t": "Zadajte {slash} pre vyhľadanie kolektívov...", "/Zj5Ed": "Jednorazovo", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Toto je možné upraviť neskôr", "05doZ2": "Späť ku všetkým vašim aplikáciám", "068S+6": "Tento kolektív má Podujatia a Projekty, ktoré majú členov s privilegovanými prístupovými rolami mimo tímu administrátorov.", @@ -553,6 +554,7 @@ "boQlk1": "a spojiť sa s {oAuthAppName}", "bOSDd3": "Aktivovaný(á) ako hostiteľ", "BqfMx5": "Nová virtuálna karta pridaná k účtu ", + "bQndkF": "Selected match", "BrdgZE": "Network error", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Vytvoriť token", "C2rcD0": "Heslo je príliš slabé. Skúste použiť viac znakov alebo použite správcu hesiel na vytvorenie silného hesla.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Pripojiť k službe {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Vaša požiadavka je momentálne presmerovaná na {redirect}. Pre bezpečnosť a súkromie vášho účtu Open Collective pamätajte, že nikdy nezadávajte svoje prihlasovacie údaje, pokiaľ nie ste na skutočnej webovej stránke Open Collective.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Vytvorte virtuálnu kartu pre kolektív s nižšie uvedenými informáciami.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Vytvárajte a spravujte príspevky, spôsoby platby.", "nYrU4E": "Prosím, odporučte vašim Kolektívom, aby zvolili správne nastavenie príjmových dokladov pre všetky úrovne, kde by sa mal použiť alternatívny príjmový doklad, alebo spravujte súvisiace príspevky prostredníctvom procesu Pridávanie prostriedkov, kde môžete ako správca hostiteľa vybrať správny príjmový doklad.", "NZ1C9t": "Aplikácia \"{name}\" aktualizovaná", @@ -2550,6 +2555,7 @@ "o42xrK": "podpora", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Potvrďte výšku finančných prostriedkov, ktoré ste dostali na hostiteľský účet.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "Najprv si vytvoríte osobný účet a po jeho dokončení si budete môcť vytvoriť profil pre vašu spoločnosť.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Náhľad", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Denný priemer: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "Ak už máte účet alebo si želáte prispieť ako organizácia, Prihláste sa.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Vytvárajte a spravujte konverzácie.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Vyberte možnosť na \"Kolektív\", ak si želáte použiť informácie o kolektíve pre vygenerované faktúry v časti \"Fakturačná adresa\". Mali by ste sa uistiť, že tento postup je legálny v rámci vašej jurisdikcie.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Ďalšie informácie o fiškálnom hostingu", "Yp8Cek": "Poplatok za spracovanie platby (platí {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/sv-SE.json b/lang/sv-SE.json index 5b6f75e964e..bb015db38bc 100644 --- a/lang/sv-SE.json +++ b/lang/sv-SE.json @@ -51,6 +51,7 @@ "/XDuMs": "Create {type, select, TICKET {Ticket} other {Tier}}", "/Y9m/t": "Type {slash} to search for Collectives...", "/Zj5Ed": "One-time", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Detta kan redigeras senare", "05doZ2": "Gå tillbaka till alla dina appar", "068S+6": "This collective has Events and Projects that hold members with privileged access roles outside your admin team.", @@ -553,6 +554,7 @@ "boQlk1": "och anslut med {oAuthAppName}", "bOSDd3": "Aktiverad som värd", "BqfMx5": "Nytt virtuellt kort tillagt i ", + "bQndkF": "Selected match", "BrdgZE": "Nätverksfel", "bRgWXW": "Profiles I administer", "BT5QRL": "Välj en profil", @@ -583,6 +585,7 @@ "c+swVk": "Create token", "C2rcD0": "Password is too weak. Try to use more characters or use a password manager to generate a strong one.", "C7dxIO": "Approved expense {expenseDescription} from to ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Account Handle", "C9HmCs": "Anslut {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Unselect all", "externalRedirect.message": "Din begäran omdirigeras till {redirect}. Tänk på säkerheten för ditt konto och ange aldrig dessa uppgifter om du inte är på Open Collective's hemsida.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Skapa ett virtuellt kort för ett kollektiv med informationen nedan.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Bidrag från nekades av ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Skapa och hantera bidrag, betalningsmetoder.", "nYrU4E": "Ge dina kollektiv råd att välja rätt kvitto för alla nivåer där det alternativa kvittot ska användas, eller hantera relaterade bidrag genom processen \"Lägg till medel\" där du som värdadministratör kan välja rätt kvitto.", "NZ1C9t": "Applikationen \"{name}\" uppdaterad", @@ -2550,6 +2555,7 @@ "o42xrK": "support", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Bekräfta hur mycket pengar du har fått på ditt värdkonto.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "Nej", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "Du skapar ditt personliga konto först. Väl inne är det möjligt att kunna skapa en profil för ditt företag.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Förhandsgranska", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "Dagligt genomsnitt: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "Om du redan har ett konto eller vill bidra som en organisation, Logga in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Skapa och hantera forumtrådar.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Ställ in detta till \"Collective\" för att använda kollektivets information på fakturorna. Du behöver se till att detta är lagligt i Sverige.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Läs mer om värdskap", "Yp8Cek": "Betalningshanteringsavgift (betald av {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/uk.json b/lang/uk.json index 0d8ee6a50f3..e8189c83218 100644 --- a/lang/uk.json +++ b/lang/uk.json @@ -51,6 +51,7 @@ "/XDuMs": "Створити {type, select, TICKET {Квиток} other {Рівень}}", "/Y9m/t": "Введіть {slash} для пошуку колективів...", "/Zj5Ed": "Разово", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "Це можна змінити пізніше", "05doZ2": "Повернутися до всіх ваших застосунків", "068S+6": "Цей колектив має Заходи та Проєкти, які містять привілейовані ролі доступу поза межами вашої команди адміністраторів.", @@ -553,6 +554,7 @@ "boQlk1": "і підключіться до {oAuthAppName}", "bOSDd3": "Активований як хост", "BqfMx5": "Нова віртуальна картка додана до ", + "bQndkF": "Selected match", "BrdgZE": "Помилка мережі", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "Створити токен", "C2rcD0": "Надто простий пароль. Спробуйте використати більше символів або скористайтесь менеджером паролів, щоб створити надійний.", "C7dxIO": "Витрату {expenseDescription} від до підтверджено", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "Назва облікового запису", "C9HmCs": "Під'єднати {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "Скасувати вибір", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "Available balance", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "Застосунок «{name}» оновлено", @@ -2550,6 +2555,7 @@ "o42xrK": "підтримка", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "No", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "You are creating your personal account first, once inside, you will be able to create a profile for your company.", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "Go to Settings > Advanced", "Title": "Title", "TJo5E6": "Попередній перегляд", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "У середньому за день: {amount}", "TNecsq": "Source's {taxName} identifier", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " approved {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "Create and manage conversations.", "uEcPHj": "Tag you expense", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "Set this to \"Collective\" to use the collective info for generated invoices' \"Bill To\" section. You need to make sure that this pattern is legal under your jurisdiction.", "YnfjEo": "Tax ID Number", + "yoQCPC": "PO number", "yOzWJD": "Детальніше про фіскальне обслуговування", "Yp8Cek": "Комісія обробника платежу (сплачено {collective}): {expensePaymentProcessorFee}", "YQKRUh": "Tax identification", diff --git a/lang/zh.json b/lang/zh.json index d5027d439ed..1bfbf71db57 100644 --- a/lang/zh.json +++ b/lang/zh.json @@ -51,6 +51,7 @@ "/XDuMs": "编辑{type, select, TICKET {门票} other {等级}}", "/Y9m/t": "输入 {slash} 来搜索 Collectives...", "/Zj5Ed": "单次", + "/zSZjG": "{totalContributions, plural, one {# contribution} other {# contributions}} also match your filters. Narrow down your search to see them.", "03Q893": "此项目可以稍后编辑", "05doZ2": "返回你的所有应用", "068S+6": "这个集体有活动和项目,其中的成员拥有超出你的管理团队的特权访问角色。", @@ -553,6 +554,7 @@ "boQlk1": "并与 {oAuthAppName} 连接", "bOSDd3": "激活成为 Host", "BqfMx5": "已成功添加虚拟卡至账户:", + "bQndkF": "Selected match", "BrdgZE": "网络错误", "bRgWXW": "Profiles I administer", "BT5QRL": "Choose a profile", @@ -583,6 +585,7 @@ "c+swVk": "创建令牌", "C2rcD0": "密码过于简单。请尝试使用更多字符或使用密码管理器生成一个复杂的密码。", "C7dxIO": "批准的支出 {expenseDescription} 已从 转给 ", + "c7INEq": "Match contribution", "C8NetX": "Thank you for your contribution! ", "C9DEAp": "帐户名称", "C9HmCs": "连接 {service}", @@ -1521,6 +1524,7 @@ "ExportTransactionsCSVModal.UnselectAll": "取消全选", "externalRedirect.message": "Your request is currently being redirected to {redirect}. For the safety and privacy of your Open Collective account, remember to never enter your credentials unless you're on the real Open Collective website.", "Ey7Kn+": "Total Batched ({count})", + "f+3xdP": "Search date", "f01/33": "Ask your Contributors to resume their contributions", "F0ZA/r": "Changing the handle from @{previousHandle} to @{newHandle} will break all the links that you previously shared for this profile (i.e., {exampleUrl}). Do you really want to continue?", "f1MZ8o": "可用余额", @@ -2542,6 +2546,7 @@ "NW8fj9": "Create virtual card for a collective with the information below.", "nWf9h8": " updated expense {expenseDescription}", "nxBQAa": "Contribution from rejected by ", + "nxUjeq": "No contributions found. Try changing the filters.", "Ny7kBI": "Create and manage contributions, payment methods.", "nYrU4E": "Please advise your Collectives to select the correct receipt setting for any tiers where the alternative receipt should be used, or manage related contributions through the Add Funds process, where you as the Host Admin can select the correct receipt.", "NZ1C9t": "应用“{name}”已更新", @@ -2550,6 +2555,7 @@ "o42xrK": "支持", "o60jEo": "Released hold on expense {expenseDescription}", "O8duLC": "Core Contributors are shown as part of the team on your page but do not have admin access or get notifications. They do not play an active role on the platform.", + "o9K20a": "Search amount", "o9RoEi": "Confirm the amount of funds you have received in your host account.", "O9VCf1": "Rejected expense {expenseDescription} from to ", "oaI4cl": "Expense Submitted By Handle", @@ -2669,6 +2675,7 @@ "OutgoingContributions": "Outgoing Contributions", "OutgoingContributions.description": "Manage your contributions to other Collectives.", "oUWADl": "不", + "OUzCHW": "Expected date", "OV4x2C": "Contribution Custom Data", "OvoOan": "你正在创建个人资料,在创建完成后就可以为公司创建资料。", "OW15R5": "Short Refund ID", @@ -3362,6 +3369,7 @@ "TiNmc5": "前往设置 > 高级设置", "Title": "标题", "TJo5E6": "预览", + "tmfin0": "Imported data", "tMqgaI": "New import", "tmShv9": "每日平均:{amount}", "TNecsq": "来源的 {taxName} 身份", @@ -3480,6 +3488,7 @@ "UAwtXh": "Where are your financial contributors based?", "ub/vNK": " 批注了 {expenseDescription}", "ucWzrM": "If you already have an account or want to contribute as an organization, Sign in.", + "UD/BhG": "Search term", "ud3Qe6": "Next charge attempt", "udDupO": "创建并管理对话", "uEcPHj": "给你的支出打上标签", @@ -3852,6 +3861,7 @@ "ym6cRo": "At Open Collective, we work every day to make sure that our platform is a safe and simple place for collectives to grow.

This includes introducing new and exciting features, fixing bugs, and making sure that it works the way our users expect.

Your platform tip will go towards helping us maintain that work - and ensuring that collectives all over the world have access to the tools they need to make communities better, and make change happen.", "yMFA0e": "将此设置为“集体”,以便将集体信息用于生成发票的 Bill To”部分。你需要确保这种模式在你的监管范围内是合法的。", "YnfjEo": "税号", + "yoQCPC": "PO number", "yOzWJD": "了解更多关于财务托管的信息", "Yp8Cek": "支付处理费(由 {collective} 支付):{expensePaymentProcessorFee}", "YQKRUh": "税务识别码", diff --git a/lib/graphql/schemaV2.graphql b/lib/graphql/schemaV2.graphql index ca3c99707a0..5d3e9976fef 100644 --- a/lib/graphql/schemaV2.graphql +++ b/lib/graphql/schemaV2.graphql @@ -18213,7 +18213,17 @@ type Mutation { """ A mutation for the host to approve or reject an order. Scope: "orders". """ - processPendingOrder(order: OrderUpdateInput!, action: ProcessOrderAction!): Order! + processPendingOrder( + """ + The order to process + """ + order: OrderUpdateInput! + + """ + The action to take on the order + """ + action: ProcessOrderAction! + ): Order! """ [Root only] A mutation to move orders from one account to another @@ -20343,6 +20353,11 @@ input OrderUpdateInput { Date the funds were received """ processedAt: DateTime + + """ + Reference to the transaction import row to link the order to + """ + transactionsImportRow: TransactionsImportRowReferenceInput } """ @@ -20656,6 +20671,11 @@ input TransactionsImportRowUpdateInput { Whether the row is dismissed """ isDismissed: Boolean = false + + """ + The order associated with the row + """ + order: OrderReferenceInput } """ diff --git a/lib/graphql/types/v2/gql.ts b/lib/graphql/types/v2/gql.ts index bb6b568893d..b821aa6c49b 100644 --- a/lib/graphql/types/v2/gql.ts +++ b/lib/graphql/types/v2/gql.ts @@ -16,8 +16,6 @@ const documents = { "\n fragment AccountHoverCardFields on Account {\n id\n name\n slug\n type\n description\n imageUrl\n isHost\n isArchived\n ... on Individual {\n isGuest\n }\n ... on AccountWithHost {\n host {\n id\n slug\n }\n approvedAt\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n }\n }\n }\n": types.AccountHoverCardFieldsFragmentDoc, "\n query UserContextualMemberships(\n $userSlug: String!\n $accountSlug: String\n $hostSlug: String\n $getHostAdmin: Boolean!\n $getAccountAdmin: Boolean!\n ) {\n account(slug: $userSlug) {\n id\n accountAdminMemberships: memberOf(role: [ADMIN], account: { slug: $accountSlug }, isApproved: true)\n @include(if: $getAccountAdmin) {\n nodes {\n id\n role\n since\n account {\n id\n slug\n }\n }\n }\n hostAdminMemberships: memberOf(role: [ADMIN], account: { slug: $hostSlug }, isApproved: true)\n @include(if: $getHostAdmin) {\n nodes {\n id\n role\n since\n account {\n id\n slug\n }\n }\n }\n }\n }\n": types.UserContextualMembershipsDocument, "\n query SearchTags($term: String) {\n tagStats(tagSearchTerm: $term) {\n nodes {\n id\n tag\n }\n }\n }\n": types.SearchTagsDocument, - "\n fragment ConfirmContributionFields on Order {\n id\n hostFeePercent\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n memo\n fromAccount {\n id\n slug\n name\n type\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n type\n imageUrl\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n settings\n }\n }\n ... on Organization {\n host {\n id\n settings\n }\n }\n }\n createdByAccount {\n id\n slug\n name\n imageUrl\n }\n totalAmount {\n valueInCents\n currency\n }\n amount {\n currency\n valueInCents\n }\n taxAmount {\n currency\n valueInCents\n }\n tax {\n id\n type\n rate\n }\n platformTipAmount {\n currency\n valueInCents\n }\n platformTipEligible\n }\n": types.ConfirmContributionFieldsFragmentDoc, - "\n mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) {\n processPendingOrder(order: $order, action: $action) {\n id\n legacyId\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n ...ConfirmContributionFields\n }\n }\n \n": types.ConfirmContributionDocument, "\n mutation CancelRecurringContribution($order: OrderReferenceInput!, $reason: String!, $reasonCode: String!) {\n cancelOrder(order: $order, reason: $reason, reasonCode: $reasonCode) {\n id\n status\n }\n }\n": types.CancelRecurringContributionDocument, "\n query EditPaymentMethodModal($order: OrderReferenceInput!) {\n order(order: $order) {\n id\n totalAmount {\n currency\n valueInCents\n }\n fromAccount {\n id\n slug\n }\n toAccount {\n id\n slug\n ... on AccountWithHost {\n host {\n id\n slug\n paypalClientId\n supportedPaymentMethods\n }\n }\n ... on Organization {\n host {\n id\n slug\n paypalClientId\n supportedPaymentMethods\n }\n }\n }\n }\n }\n ": types.EditPaymentMethodModalDocument, "\n mutation AddStripePaymentMethodFromSetupIntent(\n $setupIntent: SetupIntentInput!\n $account: AccountReferenceInput!\n ) {\n addStripePaymentMethodFromSetupIntent(setupIntent: $setupIntent, account: $account) {\n id\n type\n name\n }\n }\n ": types.AddStripePaymentMethodFromSetupIntentDocument, @@ -38,6 +36,8 @@ const documents = { "\n fragment NavbarFields on CollectiveFeatures {\n id\n ABOUT\n CONNECTED_ACCOUNTS\n RECEIVE_FINANCIAL_CONTRIBUTIONS\n RECURRING_CONTRIBUTIONS\n EVENTS\n PROJECTS\n USE_EXPENSES\n RECEIVE_EXPENSES\n COLLECTIVE_GOALS\n TOP_FINANCIAL_CONTRIBUTORS\n CONVERSATIONS\n UPDATES\n TEAM\n CONTACT_FORM\n RECEIVE_HOST_APPLICATIONS\n HOST_DASHBOARD\n TRANSACTIONS\n REQUEST_VIRTUAL_CARDS\n }\n": types.NavbarFieldsFragmentDoc, "\n query UpdatesSection($slug: String!, $onlyPublishedUpdates: Boolean) {\n account(slug: $slug) {\n id\n updates(limit: 3, onlyPublishedUpdates: $onlyPublishedUpdates) {\n nodes {\n id\n slug\n title\n summary\n createdAt\n publishedAt\n isPrivate\n userCanSeeUpdate\n fromAccount {\n id\n type\n name\n slug\n imageUrl\n }\n }\n }\n }\n }\n": types.UpdatesSectionDocument, "\n query ContributionFlowPaymentMethods($slug: String) {\n account(slug: $slug) {\n id\n paymentMethods(\n type: [CREDITCARD, US_BANK_ACCOUNT, SEPA_DEBIT, BACS_DEBIT, GIFTCARD, PREPAID, COLLECTIVE]\n includeExpired: true\n ) {\n id\n name\n data\n service\n type\n expiryDate\n providerType\n sourcePaymentMethod {\n id\n name\n data\n service\n type\n expiryDate\n providerType\n balance {\n currency\n }\n limitedToHosts {\n id\n legacyId\n slug\n }\n }\n balance {\n valueInCents\n currency\n }\n account {\n id\n slug\n type\n name\n imageUrl\n }\n limitedToHosts {\n id\n legacyId\n slug\n }\n }\n }\n }\n": types.ContributionFlowPaymentMethodsDocument, + "\n fragment ConfirmContributionFields on Order {\n id\n hostFeePercent\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n memo\n fromAccount {\n id\n slug\n name\n type\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n type\n imageUrl\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n settings\n }\n }\n ... on Organization {\n host {\n id\n settings\n }\n }\n }\n createdByAccount {\n id\n slug\n name\n imageUrl\n }\n totalAmount {\n valueInCents\n currency\n }\n amount {\n currency\n valueInCents\n }\n taxAmount {\n currency\n valueInCents\n }\n tax {\n id\n type\n rate\n }\n platformTipAmount {\n currency\n valueInCents\n }\n platformTipEligible\n }\n": types.ConfirmContributionFieldsFragmentDoc, + "\n mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) {\n processPendingOrder(order: $order, action: $action) {\n id\n legacyId\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n ...ConfirmContributionFields\n }\n }\n \n": types.ConfirmContributionDocument, "\n query ContributionDrawer($orderId: Int!) {\n order(order: { legacyId: $orderId }) {\n id\n legacyId\n nextChargeDate\n amount {\n value\n valueInCents\n currency\n }\n totalAmount {\n value\n valueInCents\n currency\n }\n paymentMethod {\n id\n type\n }\n status\n description\n createdAt\n processedAt\n frequency\n tier {\n id\n name\n description\n }\n fromAccount {\n ...ContributionDrawerAccountFields\n ... on AccountWithHost {\n host {\n id\n slug\n }\n }\n }\n toAccount {\n ...ContributionDrawerAccountFields\n }\n platformTipEligible\n platformTipAmount {\n value\n valueInCents\n currency\n }\n hostFeePercent\n tags\n tax {\n type\n idNumber\n rate\n }\n accountingCategory {\n id\n name\n friendlyName\n code\n }\n activities {\n nodes {\n id\n type\n createdAt\n fromAccount {\n ...ContributionDrawerAccountFields\n }\n account {\n ...ContributionDrawerAccountFields\n }\n host {\n ...ContributionDrawerAccountFields\n }\n individual {\n ...ContributionDrawerAccountFields\n }\n data\n transaction {\n ...ContributionDrawerTransactionFields\n }\n }\n }\n customData\n memo\n needsConfirmation\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n transactions {\n ...ContributionDrawerTransactionFields\n }\n permissions {\n id\n canResume\n canMarkAsExpired\n canMarkAsPaid\n canEdit\n canComment\n canSeePrivateActivities\n canSetTags\n canUpdateAccountingCategory\n }\n }\n }\n\n fragment ContributionDrawerAccountFields on Account {\n id\n name\n slug\n isIncognito\n type\n imageUrl\n isHost\n isArchived\n ... on Individual {\n isGuest\n }\n ... on AccountWithHost {\n host {\n id\n slug\n accountingCategories {\n nodes {\n id\n code\n name\n friendlyName\n kind\n }\n }\n }\n approvedAt\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n }\n }\n }\n\n fragment ContributionDrawerTransactionFields on Transaction {\n id\n legacyId\n uuid\n kind\n amount {\n currency\n valueInCents\n }\n netAmount {\n currency\n valueInCents\n }\n group\n type\n description\n createdAt\n isRefunded\n isRefund\n isOrderRejected\n account {\n ...ContributionDrawerAccountFields\n }\n oppositeAccount {\n ...ContributionDrawerAccountFields\n }\n expense {\n id\n type\n }\n permissions {\n id\n canRefund\n canDownloadInvoice\n canReject\n }\n paymentProcessorUrl\n }\n ": types.ContributionDrawerDocument, "\n fragment CommentFields on Comment {\n id\n createdAt\n html\n reactions\n userReactions\n type\n account {\n id\n slug\n ... on AccountWithHost {\n host {\n id\n slug\n }\n }\n }\n fromAccount {\n id\n type\n name\n slug\n imageUrl\n ...AccountHoverCardFields\n }\n }\n \n": types.CommentFieldsFragmentDoc, "\n fragment ConversationListFragment on ConversationCollection {\n totalCount\n offset\n limit\n nodes {\n id\n title\n summary\n slug\n createdAt\n tags\n fromAccount {\n id\n name\n type\n slug\n imageUrl\n }\n followers(limit: 5) {\n totalCount\n nodes {\n id\n slug\n type\n name\n imageUrl(height: 64)\n }\n }\n stats {\n id\n commentsCount\n }\n }\n }\n": types.ConversationListFragmentFragmentDoc, @@ -112,14 +112,15 @@ const documents = { "\n query AccountReports(\n $accountSlug: String!\n $dateTo: DateTime\n $dateFrom: DateTime\n $timeUnit: TimeUnit\n $includeGroups: Boolean!\n ) {\n account(slug: $accountSlug) {\n id\n currency\n transactionReports(dateFrom: $dateFrom, dateTo: $dateTo, timeUnit: $timeUnit) {\n timeUnit\n nodes {\n date\n startingBalance {\n valueInCents\n currency\n }\n endingBalance {\n valueInCents\n currency\n }\n totalChange {\n valueInCents\n currency\n }\n groups @include(if: $includeGroups) {\n amount {\n valueInCents\n currency\n }\n netAmount {\n valueInCents\n currency\n }\n platformFee {\n valueInCents\n currency\n }\n paymentProcessorFee {\n valueInCents\n currency\n }\n hostFee {\n valueInCents\n currency\n }\n taxAmount {\n valueInCents\n currency\n }\n kind\n isHost\n type\n expenseType\n isRefund\n }\n }\n }\n }\n }\n": types.AccountReportsDocument, "\n mutation SubmitLegalDocument($account: AccountReferenceInput!, $type: LegalDocumentType!, $formData: JSON!) {\n submitLegalDocument(account: $account, type: $type, formData: $formData) {\n id\n type\n status\n isExpired\n }\n }\n": types.SubmitLegalDocumentDocument, "\n query AccountTaxInformation($id: String!) {\n account(id: $id) {\n id\n slug\n name\n legalName\n type\n usTaxForms: legalDocuments(type: US_TAX_FORM) {\n id\n year\n status\n updatedAt\n service\n type\n documentLink\n isExpired\n }\n location {\n address\n country\n structured\n }\n }\n }\n": types.AccountTaxInformationDocument, + "\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n": types.SuggestExpectedFundsDocument, "\n query HostTransactionsImportsSources($accountSlug: String!) {\n host(slug: $accountSlug) {\n id\n transactionsImportsSources\n }\n }\n ": types.HostTransactionsImportsSourcesDocument, "\n mutation CreateTransactionsImport(\n $account: AccountReferenceInput!\n $type: TransactionsImportType!\n $source: NonEmptyString!\n $name: NonEmptyString!\n ) {\n createTransactionsImport(account: $account, source: $source, name: $name, type: $type) {\n id\n account {\n id\n ... on Host {\n id\n transactionsImportsSources\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n ": types.CreateTransactionsImportDocument, "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.UploadTransactionsImportDocument, - "\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n legacyId\n slug\n currency\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.TransactionsImportDocument, - "\n mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) {\n updateTransactionsImportRows(id: $importId, rows: $rows) {\n id\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n rows {\n nodes {\n id\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.UpdateTransactionsImportRowDocument, + "\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.TransactionsImportDocument, "\n query HostTransactionImports($accountSlug: String!, $limit: Int, $offset: Int) {\n host(slug: $accountSlug) {\n id\n transactionsImports(limit: $limit, offset: $offset) {\n totalCount\n limit\n offset\n nodes {\n id\n ...TransactionImportListFields\n }\n }\n }\n }\n \n": types.HostTransactionImportsDocument, "\n fragment TransactionImportListFields on TransactionsImport {\n id\n source\n name\n type\n createdAt\n updatedAt\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n account {\n ... on Host {\n id\n transactionsImportsSources\n }\n }\n }\n": types.TransactionImportListFieldsFragmentDoc, "\n fragment TransactionsImportRowFields on TransactionsImportRow {\n id\n sourceId\n isDismissed\n description\n date\n rawValue\n amount {\n valueInCents\n currency\n }\n expense {\n id\n legacyId\n }\n order {\n id\n legacyId\n toAccount {\n id\n slug\n name\n imageUrl(height: 48)\n }\n }\n }\n": types.TransactionsImportRowFieldsFragmentDoc, + "\n mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) {\n updateTransactionsImportRows(id: $importId, rows: $rows) {\n id\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n rows {\n nodes {\n id\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.UpdateTransactionsImportRowDocument, "\n query AccountTransactionsMetaData($slug: String!) {\n transactions(account: { slug: $slug }, limit: 0) {\n paymentMethodTypes\n kinds\n }\n account(slug: $slug) {\n id\n name\n legacyId\n slug\n currency\n settings\n }\n }\n": types.AccountTransactionsMetaDataDocument, "\n query HostTransactionsMetaData($slug: String!) {\n transactions(host: { slug: $slug }, limit: 0) {\n paymentMethodTypes\n kinds\n }\n host(slug: $slug) {\n id\n name\n legacyId\n slug\n currency\n settings\n accountingCategories {\n nodes {\n id\n code\n name\n kind\n }\n }\n }\n }\n": types.HostTransactionsMetaDataDocument, "\n query TransactionDetails($transaction: TransactionReferenceInput!) {\n transaction(transaction: $transaction) {\n id\n legacyId\n group\n amount {\n valueInCents\n currency\n }\n paymentProcessorFee(fetchPaymentProcessorFee: true) {\n valueInCents\n currency\n }\n hostFee {\n valueInCents\n currency\n }\n netAmount {\n valueInCents\n currency\n }\n taxAmount(fetchTax: true) {\n valueInCents\n currency\n }\n oppositeTransaction {\n id\n legacyId\n }\n paymentMethod {\n id\n type\n service\n }\n type\n kind\n description\n createdAt\n clearedAt\n isRefunded\n isRefund\n isInReview\n isDisputed\n isOrderRejected\n merchantId\n account {\n id\n name\n slug\n isIncognito\n description\n type\n ... on AccountWithHost {\n host {\n id\n name\n slug\n }\n approvedAt\n }\n ... on AccountWithParent {\n parent {\n id\n name\n slug\n }\n }\n ...AccountHoverCardFields\n }\n fromAccount {\n id\n ... on AccountWithParent {\n parent {\n id\n }\n }\n }\n toAccount {\n id\n ... on AccountWithHost {\n host {\n id\n }\n }\n }\n oppositeAccount {\n id\n name\n slug\n imageUrl\n type\n ...AccountHoverCardFields\n }\n\n permissions {\n id\n canRefund\n canDownloadInvoice\n canReject\n }\n order {\n id\n legacyId\n status\n description\n processedAt\n createdAt\n amount {\n valueInCents\n currency\n }\n toAccount {\n id\n slug\n }\n fromAccount {\n id\n slug\n }\n accountingCategory {\n id\n code\n name\n friendlyName\n }\n }\n expense {\n id\n status\n tags\n type\n feesPayer\n amount\n currency\n description\n legacyId\n # limit: 1 as current best practice to avoid the API fetching entries it doesn't need\n comments(limit: 1) {\n totalCount\n }\n payoutMethod {\n id\n type\n }\n account {\n id\n slug\n }\n createdByAccount {\n id\n slug\n }\n permissions {\n id\n }\n createdAt\n payee {\n id\n slug\n imageUrl\n }\n accountingCategory {\n id\n code\n name\n friendlyName\n }\n host {\n id\n slug\n }\n }\n refundTransaction {\n id\n group\n createdAt\n }\n }\n }\n \n": types.TransactionDetailsDocument, @@ -244,14 +245,6 @@ export function graphql(source: "\n query UserContextualMemberships(\n $user * 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 SearchTags($term: String) {\n tagStats(tagSearchTerm: $term) {\n nodes {\n id\n tag\n }\n }\n }\n"): (typeof documents)["\n query SearchTags($term: String) {\n tagStats(tagSearchTerm: $term) {\n nodes {\n id\n tag\n }\n }\n }\n"]; -/** - * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function graphql(source: "\n fragment ConfirmContributionFields on Order {\n id\n hostFeePercent\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n memo\n fromAccount {\n id\n slug\n name\n type\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n type\n imageUrl\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n settings\n }\n }\n ... on Organization {\n host {\n id\n settings\n }\n }\n }\n createdByAccount {\n id\n slug\n name\n imageUrl\n }\n totalAmount {\n valueInCents\n currency\n }\n amount {\n currency\n valueInCents\n }\n taxAmount {\n currency\n valueInCents\n }\n tax {\n id\n type\n rate\n }\n platformTipAmount {\n currency\n valueInCents\n }\n platformTipEligible\n }\n"): (typeof documents)["\n fragment ConfirmContributionFields on Order {\n id\n hostFeePercent\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n memo\n fromAccount {\n id\n slug\n name\n type\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n type\n imageUrl\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n settings\n }\n }\n ... on Organization {\n host {\n id\n settings\n }\n }\n }\n createdByAccount {\n id\n slug\n name\n imageUrl\n }\n totalAmount {\n valueInCents\n currency\n }\n amount {\n currency\n valueInCents\n }\n taxAmount {\n currency\n valueInCents\n }\n tax {\n id\n type\n rate\n }\n platformTipAmount {\n currency\n valueInCents\n }\n platformTipEligible\n }\n"]; -/** - * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function graphql(source: "\n mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) {\n processPendingOrder(order: $order, action: $action) {\n id\n legacyId\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n ...ConfirmContributionFields\n }\n }\n \n"): (typeof documents)["\n mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) {\n processPendingOrder(order: $order, action: $action) {\n id\n legacyId\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n ...ConfirmContributionFields\n }\n }\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -332,6 +325,14 @@ export function graphql(source: "\n query UpdatesSection($slug: String!, $onlyP * 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 ContributionFlowPaymentMethods($slug: String) {\n account(slug: $slug) {\n id\n paymentMethods(\n type: [CREDITCARD, US_BANK_ACCOUNT, SEPA_DEBIT, BACS_DEBIT, GIFTCARD, PREPAID, COLLECTIVE]\n includeExpired: true\n ) {\n id\n name\n data\n service\n type\n expiryDate\n providerType\n sourcePaymentMethod {\n id\n name\n data\n service\n type\n expiryDate\n providerType\n balance {\n currency\n }\n limitedToHosts {\n id\n legacyId\n slug\n }\n }\n balance {\n valueInCents\n currency\n }\n account {\n id\n slug\n type\n name\n imageUrl\n }\n limitedToHosts {\n id\n legacyId\n slug\n }\n }\n }\n }\n"): (typeof documents)["\n query ContributionFlowPaymentMethods($slug: String) {\n account(slug: $slug) {\n id\n paymentMethods(\n type: [CREDITCARD, US_BANK_ACCOUNT, SEPA_DEBIT, BACS_DEBIT, GIFTCARD, PREPAID, COLLECTIVE]\n includeExpired: true\n ) {\n id\n name\n data\n service\n type\n expiryDate\n providerType\n sourcePaymentMethod {\n id\n name\n data\n service\n type\n expiryDate\n providerType\n balance {\n currency\n }\n limitedToHosts {\n id\n legacyId\n slug\n }\n }\n balance {\n valueInCents\n currency\n }\n account {\n id\n slug\n type\n name\n imageUrl\n }\n limitedToHosts {\n id\n legacyId\n slug\n }\n }\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment ConfirmContributionFields on Order {\n id\n hostFeePercent\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n memo\n fromAccount {\n id\n slug\n name\n type\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n type\n imageUrl\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n settings\n }\n }\n ... on Organization {\n host {\n id\n settings\n }\n }\n }\n createdByAccount {\n id\n slug\n name\n imageUrl\n }\n totalAmount {\n valueInCents\n currency\n }\n amount {\n currency\n valueInCents\n }\n taxAmount {\n currency\n valueInCents\n }\n tax {\n id\n type\n rate\n }\n platformTipAmount {\n currency\n valueInCents\n }\n platformTipEligible\n }\n"): (typeof documents)["\n fragment ConfirmContributionFields on Order {\n id\n hostFeePercent\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n memo\n fromAccount {\n id\n slug\n name\n type\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n type\n imageUrl\n ... on AccountWithHost {\n bankTransfersHostFeePercent: hostFeePercent(paymentMethodType: MANUAL)\n host {\n id\n settings\n }\n }\n ... on Organization {\n host {\n id\n settings\n }\n }\n }\n createdByAccount {\n id\n slug\n name\n imageUrl\n }\n totalAmount {\n valueInCents\n currency\n }\n amount {\n currency\n valueInCents\n }\n taxAmount {\n currency\n valueInCents\n }\n tax {\n id\n type\n rate\n }\n platformTipAmount {\n currency\n valueInCents\n }\n platformTipEligible\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) {\n processPendingOrder(order: $order, action: $action) {\n id\n legacyId\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n ...ConfirmContributionFields\n }\n }\n \n"): (typeof documents)["\n mutation ConfirmContribution($order: OrderUpdateInput!, $action: ProcessOrderAction!) {\n processPendingOrder(order: $order, action: $action) {\n id\n legacyId\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n ...ConfirmContributionFields\n }\n }\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -631,23 +632,23 @@ export function graphql(source: "\n query AccountTaxInformation($id: String!) { /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query HostTransactionsImportsSources($accountSlug: String!) {\n host(slug: $accountSlug) {\n id\n transactionsImportsSources\n }\n }\n "): (typeof documents)["\n query HostTransactionsImportsSources($accountSlug: String!) {\n host(slug: $accountSlug) {\n id\n transactionsImportsSources\n }\n }\n "]; +export function graphql(source: "\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n"): (typeof documents)["\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n mutation CreateTransactionsImport(\n $account: AccountReferenceInput!\n $type: TransactionsImportType!\n $source: NonEmptyString!\n $name: NonEmptyString!\n ) {\n createTransactionsImport(account: $account, source: $source, name: $name, type: $type) {\n id\n account {\n id\n ... on Host {\n id\n transactionsImportsSources\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n "): (typeof 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\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n "]; +export function graphql(source: "\n query HostTransactionsImportsSources($accountSlug: String!) {\n host(slug: $accountSlug) {\n id\n transactionsImportsSources\n }\n }\n "): (typeof documents)["\n query HostTransactionsImportsSources($accountSlug: String!) {\n host(slug: $accountSlug) {\n id\n transactionsImportsSources\n }\n }\n "]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; +export function graphql(source: "\n mutation CreateTransactionsImport(\n $account: AccountReferenceInput!\n $type: TransactionsImportType!\n $source: NonEmptyString!\n $name: NonEmptyString!\n ) {\n createTransactionsImport(account: $account, source: $source, name: $name, type: $type) {\n id\n account {\n id\n ... on Host {\n id\n transactionsImportsSources\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n "): (typeof 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\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n "]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n legacyId\n slug\n currency\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n legacyId\n slug\n currency\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; +export function graphql(source: "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) {\n updateTransactionsImportRows(id: $importId, rows: $rows) {\n id\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n rows {\n nodes {\n id\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) {\n updateTransactionsImportRows(id: $importId, rows: $rows) {\n id\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n rows {\n nodes {\n id\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; +export function graphql(source: "\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -660,6 +661,10 @@ export function graphql(source: "\n fragment TransactionImportListFields on Tra * 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 TransactionsImportRowFields on TransactionsImportRow {\n id\n sourceId\n isDismissed\n description\n date\n rawValue\n amount {\n valueInCents\n currency\n }\n expense {\n id\n legacyId\n }\n order {\n id\n legacyId\n toAccount {\n id\n slug\n name\n imageUrl(height: 48)\n }\n }\n }\n"): (typeof documents)["\n fragment TransactionsImportRowFields on TransactionsImportRow {\n id\n sourceId\n isDismissed\n description\n date\n rawValue\n amount {\n valueInCents\n currency\n }\n expense {\n id\n legacyId\n }\n order {\n id\n legacyId\n toAccount {\n id\n slug\n name\n imageUrl(height: 48)\n }\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) {\n updateTransactionsImportRows(id: $importId, rows: $rows) {\n id\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n rows {\n nodes {\n id\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation UpdateTransactionsImportRow($importId: NonEmptyString!, $rows: [TransactionsImportRowUpdateInput!]!) {\n updateTransactionsImportRows(id: $importId, rows: $rows) {\n id\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n rows {\n nodes {\n id\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/lib/graphql/types/v2/graphql.ts b/lib/graphql/types/v2/graphql.ts index 33f2196e347..fceb8a15311 100644 --- a/lib/graphql/types/v2/graphql.ts +++ b/lib/graphql/types/v2/graphql.ts @@ -8132,6 +8132,8 @@ export type OrderUpdateInput = { processedAt?: InputMaybe; /** The tax to apply to the order */ tax?: InputMaybe; + /** Reference to the transaction import row to link the order to */ + transactionsImportRow?: InputMaybe; }; export type OrderWithPayment = { @@ -10647,6 +10649,8 @@ export type TransactionsImportRowUpdateInput = { id: Scalars['NonEmptyString']['input']; /** Whether the row is dismissed */ isDismissed?: InputMaybe; + /** The order associated with the row */ + order?: InputMaybe; /** The source id of the row */ sourceId?: InputMaybe; }; @@ -11605,16 +11609,6 @@ export type SearchTagsQueryVariables = Exact<{ export type SearchTagsQuery = { __typename?: 'Query', tagStats: { __typename?: 'TagStatsCollection', nodes?: Array<{ __typename?: 'TagStat', id: string, tag: string } | null> | null } }; -export type ConfirmContributionFieldsFragment = { __typename?: 'Order', id: string, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, fromAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, totalAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null, platformTipAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null }; - -export type ConfirmContributionMutationVariables = Exact<{ - order: OrderUpdateInput; - action: ProcessOrderAction; -}>; - - -export type ConfirmContributionMutation = { __typename?: 'Mutation', processPendingOrder: { __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, permissions: { __typename?: 'OrderPermissions', id: string, canMarkAsPaid: boolean, canMarkAsExpired: boolean }, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, fromAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, totalAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null, platformTipAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null } }; - export type CancelRecurringContributionMutationVariables = Exact<{ order: OrderReferenceInput; reason: Scalars['String']['input']; @@ -11768,6 +11762,16 @@ export type ContributionFlowPaymentMethodsQueryVariables = Exact<{ export type ContributionFlowPaymentMethodsQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Collective', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Event', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Fund', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Host', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Individual', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Organization', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Project', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | { __typename?: 'Vendor', id: string, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, sourcePaymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, name?: string | null, data?: any | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null, expiryDate?: any | null, providerType?: PaymentMethodLegacyType | null, balance: { __typename?: 'Amount', currency?: Currency | null }, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null, balance: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, account?: { __typename?: 'Bot', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, type: AccountType, name?: string | null, imageUrl?: string | null } | null, limitedToHosts?: Array<{ __typename?: 'Host', id: string, legacyId: number, slug: string } | null> | null } | null> | null } | null }; +export type ConfirmContributionFieldsFragment = { __typename?: 'Order', id: string, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, fromAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, totalAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null, platformTipAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null }; + +export type ConfirmContributionMutationVariables = Exact<{ + order: OrderUpdateInput; + action: ProcessOrderAction; +}>; + + +export type ConfirmContributionMutation = { __typename?: 'Mutation', processPendingOrder: { __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, permissions: { __typename?: 'OrderPermissions', id: string, canMarkAsPaid: boolean, canMarkAsExpired: boolean }, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, fromAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, isIncognito: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, totalAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null, platformTipAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null } }; + export type ContributionDrawerQueryVariables = Exact<{ orderId: Scalars['Int']['input']; }>; @@ -12534,6 +12538,27 @@ export type AccountTaxInformationQueryVariables = Exact<{ export type AccountTaxInformationQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, usTaxForms?: Array<{ __typename?: 'LegalDocument', id: string, year: number, status: LegalDocumentRequestStatus, updatedAt: any, service: LegalDocumentService, type: LegalDocumentType, documentLink?: any | null, isExpired: boolean } | null> | null, location?: { __typename?: 'Location', address?: string | null, country?: string | null, structured?: any | null } | null } | null }; +export type SuggestExpectedFundsQueryVariables = Exact<{ + hostId: Scalars['String']['input']; + searchTerm?: InputMaybe; + offset?: InputMaybe; + limit?: InputMaybe; + frequency?: InputMaybe; + status?: InputMaybe | OrderStatus>; + onlySubscriptions?: InputMaybe; + minAmount?: InputMaybe; + maxAmount?: InputMaybe; + paymentMethod?: InputMaybe; + dateFrom?: InputMaybe; + dateTo?: InputMaybe; + expectedDateFrom?: InputMaybe; + expectedDateTo?: InputMaybe; + expectedFundsFilter?: InputMaybe; +}>; + + +export type SuggestExpectedFundsQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Collective', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Event', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Fund', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Host', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Individual', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Organization', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Project', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Vendor', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | null }; + export type HostTransactionsImportsSourcesQueryVariables = Exact<{ accountSlug: Scalars['String']['input']; }>; @@ -12566,15 +12591,7 @@ export type TransactionsImportQueryVariables = Exact<{ }>; -export type TransactionsImportQuery = { __typename?: 'Query', transactionsImport?: { __typename?: 'TransactionsImport', id: string, source: any, name: any, type: TransactionsImportType, csvConfig?: any | null, createdAt: any, updatedAt: any, file?: { __typename?: 'GenericFileInfo', id: string, url: any, name?: string | null, type: string, size?: number | null } | { __typename?: 'ImageFileInfo', id: string, url: any, name?: string | null, type: string, size?: number | null } | null, account: { __typename?: 'Bot', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Collective', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Event', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Fund', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Host', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Individual', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Organization', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Project', id: string, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Vendor', id: string, legacyId: number, slug: string, currency?: string | null }, rows: { __typename?: 'TransactionsImportRowCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null } | null }> | null } } | null }; - -export type UpdateTransactionsImportRowMutationVariables = Exact<{ - importId: Scalars['NonEmptyString']['input']; - rows: Array | TransactionsImportRowUpdateInput; -}>; - - -export type UpdateTransactionsImportRowMutation = { __typename?: 'Mutation', updateTransactionsImportRows: { __typename?: 'TransactionsImport', id: string, stats?: { __typename?: 'TransactionsImportStats', total: number, ignored: number, expenses: number, orders: number, processed: number } | null, rows: { __typename?: 'TransactionsImportRowCollection', nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null } | null }> | null } } }; +export type TransactionsImportQuery = { __typename?: 'Query', transactionsImport?: { __typename?: 'TransactionsImport', id: string, source: any, name: any, type: TransactionsImportType, csvConfig?: any | null, createdAt: any, updatedAt: any, file?: { __typename?: 'GenericFileInfo', id: string, url: any, name?: string | null, type: string, size?: number | null } | { __typename?: 'ImageFileInfo', id: string, url: any, name?: string | null, type: string, size?: number | null } | null, account: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, imageUrl?: string | null, legacyId: number, slug: string, currency?: string | null }, rows: { __typename?: 'TransactionsImportRowCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null } | null }> | null } } | null }; export type HostTransactionImportsQueryVariables = Exact<{ accountSlug: Scalars['String']['input']; @@ -12589,6 +12606,14 @@ export type TransactionImportListFieldsFragment = { __typename?: 'TransactionsIm export type TransactionsImportRowFieldsFragment = { __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null } | null }; +export type UpdateTransactionsImportRowMutationVariables = Exact<{ + importId: Scalars['NonEmptyString']['input']; + rows: Array | TransactionsImportRowUpdateInput; +}>; + + +export type UpdateTransactionsImportRowMutation = { __typename?: 'Mutation', updateTransactionsImportRows: { __typename?: 'TransactionsImport', id: string, stats?: { __typename?: 'TransactionsImportStats', total: number, ignored: number, expenses: number, orders: number, processed: number } | null, rows: { __typename?: 'TransactionsImportRowCollection', nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null } | null }> | null } } }; + export type AccountTransactionsMetaDataQueryVariables = Exact<{ slug: Scalars['String']['input']; }>; @@ -13441,10 +13466,10 @@ export type UpdatesPageQueryVariables = Exact<{ export type UpdatesPageQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Collective', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Event', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, parent?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: 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, 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 }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Fund', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Host', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Individual', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Organization', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Project', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, parent?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: 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, 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 }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | { __typename?: 'Vendor', id: string, legacyId: number, name?: string | null, slug: string, type: AccountType, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null }, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, slug: string, title: string, summary?: string | null, createdAt: any, publishedAt?: any | null, updatedAt: any, userCanSeeUpdate: boolean, notificationAudience?: UpdateAudience | null, tags?: Array | null, isPrivate: boolean, isChangelog: boolean, makePublicOn?: any | null, fromAccount?: { __typename?: 'Bot', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, type: AccountType, name?: string | null, slug: string, imageUrl?: string | null } | null }> | null } } | null }; -export const ConfirmContributionFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ConfirmContributionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"bankTransfersHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"MANUAL"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}}]}}]} as unknown as DocumentNode; export const AccountHoverCardFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const AgreementViewFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AgreementViewFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Agreement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"expiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"notes"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"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":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdBy"},"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":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"attachment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"size"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const AgreementMutationFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AgreementMutationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Agreement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AgreementViewFields"}},{"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":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostAgreements"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AgreementViewFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Agreement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"expiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"notes"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"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":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdBy"},"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":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"attachment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"size"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]} as unknown as DocumentNode; +export const ConfirmContributionFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ConfirmContributionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"bankTransfersHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"MANUAL"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}}]}}]} as unknown as DocumentNode; export const ContributionDrawerAccountFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerAccountFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const ContributionDrawerTransactionFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Transaction"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"uuid"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"isRefunded"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}},{"kind":"Field","name":{"kind":"Name","value":"isOrderRejected"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"oppositeAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canRefund"}},{"kind":"Field","name":{"kind":"Name","value":"canDownloadInvoice"}},{"kind":"Field","name":{"kind":"Name","value":"canReject"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorUrl"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerAccountFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const CommentFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CommentFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Comment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"html"}},{"kind":"Field","name":{"kind":"Name","value":"reactions"}},{"kind":"Field","name":{"kind":"Name","value":"userReactions"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"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":"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":"fromAccount"},"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":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -13485,7 +13510,6 @@ export const VendorFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind" export const ProcessingOrderFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ProcessingOrderFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"nextChargeDate"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"expiryDate"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalDonations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"paypalClientId"}},{"kind":"Field","name":{"kind":"Name","value":"supportedPaymentMethods"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"paypalClientId"}},{"kind":"Field","name":{"kind":"Name","value":"supportedPaymentMethods"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}}]} as unknown as DocumentNode; export const UserContextualMembershipsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"UserContextualMemberships"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"userSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"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":"getHostAdmin"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"getAccountAdmin"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"userSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"accountAdminMemberships"},"name":{"kind":"Name","value":"memberOf"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}},{"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":"accountSlug"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"isApproved"},"value":{"kind":"BooleanValue","value":true}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"getAccountAdmin"}}}]}],"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":"role"}},{"kind":"Field","name":{"kind":"Name","value":"since"}},{"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","alias":{"kind":"Name","value":"hostAdminMemberships"},"name":{"kind":"Name","value":"memberOf"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}},{"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":"isApproved"},"value":{"kind":"BooleanValue","value":true}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"getHostAdmin"}}}]}],"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":"role"}},{"kind":"Field","name":{"kind":"Name","value":"since"}},{"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"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const SearchTagsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"SearchTags"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"term"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tagStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"tagSearchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"term"}}}],"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":"tag"}}]}}]}}]}}]} as unknown as DocumentNode; -export const ConfirmContributionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ConfirmContribution"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderUpdateInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"action"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProcessOrderAction"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"processPendingOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}},{"kind":"Argument","name":{"kind":"Name","value":"action"},"value":{"kind":"Variable","name":{"kind":"Name","value":"action"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}}]}},{"kind":"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; export const CancelRecurringContributionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CancelRecurringContribution"},"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":"reason"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"reasonCode"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cancelOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}},{"kind":"Argument","name":{"kind":"Name","value":"reason"},"value":{"kind":"Variable","name":{"kind":"Name","value":"reason"}}},{"kind":"Argument","name":{"kind":"Name","value":"reasonCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"reasonCode"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]} as unknown as DocumentNode; export const EditPaymentMethodModalDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"EditPaymentMethodModal"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderReferenceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"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":"id"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"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":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"paypalClientId"}},{"kind":"Field","name":{"kind":"Name","value":"supportedPaymentMethods"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"paypalClientId"}},{"kind":"Field","name":{"kind":"Name","value":"supportedPaymentMethods"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const AddStripePaymentMethodFromSetupIntentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"AddStripePaymentMethodFromSetupIntent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"setupIntent"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SetupIntentInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addStripePaymentMethodFromSetupIntent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"setupIntent"},"value":{"kind":"Variable","name":{"kind":"Name","value":"setupIntent"}}},{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}}],"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"}}]}}]}}]} as unknown as DocumentNode; @@ -13503,6 +13527,7 @@ export const EditAgreementDocument = {"kind":"Document","definitions":[{"kind":" export const DeleteAgreementDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteAgreement"},"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":"deleteAgreement"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"agreement"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; export const UpdatesSectionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"UpdatesSection"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"onlyPublishedUpdates"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"updates"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"3"}},{"kind":"Argument","name":{"kind":"Name","value":"onlyPublishedUpdates"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyPublishedUpdates"}}}],"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":"title"}},{"kind":"Field","name":{"kind":"Name","value":"summary"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"publishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"isPrivate"}},{"kind":"Field","name":{"kind":"Name","value":"userCanSeeUpdate"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"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":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const ContributionFlowPaymentMethodsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ContributionFlowPaymentMethods"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"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":"paymentMethods"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CREDITCARD"},{"kind":"EnumValue","value":"US_BANK_ACCOUNT"},{"kind":"EnumValue","value":"SEPA_DEBIT"},{"kind":"EnumValue","value":"BACS_DEBIT"},{"kind":"EnumValue","value":"GIFTCARD"},{"kind":"EnumValue","value":"PREPAID"},{"kind":"EnumValue","value":"COLLECTIVE"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeExpired"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"expiryDate"}},{"kind":"Field","name":{"kind":"Name","value":"providerType"}},{"kind":"Field","name":{"kind":"Name","value":"sourcePaymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"expiryDate"}},{"kind":"Field","name":{"kind":"Name","value":"providerType"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"limitedToHosts"},"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":"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":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"limitedToHosts"},"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"}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const ConfirmContributionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ConfirmContribution"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderUpdateInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"action"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProcessOrderAction"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"processPendingOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}},{"kind":"Argument","name":{"kind":"Name","value":"action"},"value":{"kind":"Variable","name":{"kind":"Name","value":"action"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}}]}},{"kind":"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; export const ContributionDrawerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ContributionDrawer"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"legacyId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderId"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"nextChargeDate"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"idNumber"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"code"}}]}},{"kind":"Field","name":{"kind":"Name","value":"activities"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"individual"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"transaction"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"customData"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"needsConfirmation"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canResume"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canEdit"}},{"kind":"Field","name":{"kind":"Name","value":"canComment"}},{"kind":"Field","name":{"kind":"Name","value":"canSeePrivateActivities"}},{"kind":"Field","name":{"kind":"Name","value":"canSetTags"}},{"kind":"Field","name":{"kind":"Name","value":"canUpdateAccountingCategory"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerAccountFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Transaction"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"uuid"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"isRefunded"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}},{"kind":"Field","name":{"kind":"Name","value":"isOrderRejected"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"oppositeAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canRefund"}},{"kind":"Field","name":{"kind":"Name","value":"canDownloadInvoice"}},{"kind":"Field","name":{"kind":"Name","value":"canReject"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorUrl"}}]}}]} as unknown as DocumentNode; export const IsUserFollowingConversationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"IsUserFollowingConversation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"loggedInAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isFollowingConversation"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}]}}]}}]}}]} as unknown as DocumentNode; export const ProfilePageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ProfilePage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"longDescription"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tiers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"button"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"minimumAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"amountType"}},{"kind":"Field","name":{"kind":"Name","value":"interval"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"availableQuantity"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"financialContributors"},"name":{"kind":"Name","value":"contributors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"roles"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"BACKER"}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"150"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"roles"}},{"kind":"Field","name":{"kind":"Name","value":"isAdmin"}},{"kind":"Field","name":{"kind":"Name","value":"isCore"}},{"kind":"Field","name":{"kind":"Name","value":"isBacker"}},{"kind":"Field","name":{"kind":"Name","value":"since"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"collectiveSlug"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmountDonated"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"publicMessage"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalAmountReceived"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"yearlyBudget"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"activeRecurringContributionsBreakdown"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"count"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributorsCount"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -13569,12 +13594,13 @@ export const HostReportsDocument = {"kind":"Document","definitions":[{"kind":"Op export const AccountReportsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountReports"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timeUnit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TimeUnit"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"includeGroups"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"transactionReports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"timeUnit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timeUnit"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"startingBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endingBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"groups"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeGroups"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"expenseType"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const SubmitLegalDocumentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SubmitLegalDocument"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"LegalDocumentType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"formData"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"submitLegalDocument"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"formData"},"value":{"kind":"Variable","name":{"kind":"Name","value":"formData"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"isExpired"}}]}}]}}]} as unknown as DocumentNode; export const AccountTaxInformationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountTaxInformation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","alias":{"kind":"Name","value":"usTaxForms"},"name":{"kind":"Name","value":"legalDocuments"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"US_TAX_FORM"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"year"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"documentLink"}},{"kind":"Field","name":{"kind":"Name","value":"isExpired"}}]}},{"kind":"Field","name":{"kind":"Name","value":"location"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"country"}},{"kind":"Field","name":{"kind":"Name","value":"structured"}}]}}]}}]}}]} as unknown as DocumentNode; +export const SuggestExpectedFundsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"SuggestExpectedFunds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ContributionFrequency"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderStatus"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentMethodReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"INCOMING"}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"frequency"},"value":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}}},{"kind":"Argument","name":{"kind":"Name","value":"onlySubscriptions"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"maxAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"paymentMethod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ConfirmContributionFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ConfirmContributionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"bankTransfersHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"MANUAL"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}}]}}]} as unknown as DocumentNode; export const HostTransactionsImportsSourcesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostTransactionsImportsSources"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]} as unknown as DocumentNode; export const CreateTransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateTransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"source"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"name"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createTransactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}},{"kind":"Argument","name":{"kind":"Name","value":"source"},"value":{"kind":"Variable","name":{"kind":"Name","value":"source"}}},{"kind":"Argument","name":{"kind":"Name","value":"name"},"value":{"kind":"Variable","name":{"kind":"Name","value":"name"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionImportListFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionImportListFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImport"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]}}]} as unknown as DocumentNode; export const UploadTransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UploadTransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"csvConfig"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSONObject"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"data"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowCreateInput"}}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"file"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Upload"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importTransactions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}},{"kind":"Argument","name":{"kind":"Name","value":"csvConfig"},"value":{"kind":"Variable","name":{"kind":"Name","value":"csvConfig"}}},{"kind":"Argument","name":{"kind":"Name","value":"data"},"value":{"kind":"Variable","name":{"kind":"Name","value":"data"}}},{"kind":"Argument","name":{"kind":"Name","value":"file"},"value":{"kind":"Variable","name":{"kind":"Name","value":"file"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"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":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; -export const TransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"file"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"size"}}]}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"csvConfig"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"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":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; -export const UpdateTransactionsImportRowDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateTransactionsImportRow"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rows"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowUpdateInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateTransactionsImportRows"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}},{"kind":"Argument","name":{"kind":"Name","value":"rows"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rows"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"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":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; +export const TransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"file"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"size"}}]}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"csvConfig"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"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":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; export const HostTransactionImportsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostTransactionImports"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionImportListFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionImportListFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImport"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]}}]} as unknown as DocumentNode; +export const UpdateTransactionsImportRowDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateTransactionsImportRow"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rows"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowUpdateInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateTransactionsImportRows"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}},{"kind":"Argument","name":{"kind":"Name","value":"rows"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rows"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"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":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; export const AccountTransactionsMetaDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountTransactionsMetaData"},"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":"transactions"},"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":"slug"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"0"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"paymentMethodTypes"}},{"kind":"Field","name":{"kind":"Name","value":"kinds"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]} as unknown as DocumentNode; export const HostTransactionsMetaDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostTransactionsMetaData"},"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":"transactions"},"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"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"0"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"paymentMethodTypes"}},{"kind":"Field","name":{"kind":"Name","value":"kinds"}}]}},{"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":"name"}},{"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":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const TransactionDetailsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TransactionDetails"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"transaction"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionReferenceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transaction"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"transaction"},"value":{"kind":"Variable","name":{"kind":"Name","value":"transaction"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"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":"paymentProcessorFee"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"fetchPaymentProcessorFee"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"fetchTax"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"oppositeTransaction"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"service"}}]}},{"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":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"clearedAt"}},{"kind":"Field","name":{"kind":"Name","value":"isRefunded"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}},{"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":"merchantId"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"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":"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":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"oppositeAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canRefund"}},{"kind":"Field","name":{"kind":"Name","value":"canDownloadInvoice"}},{"kind":"Field","name":{"kind":"Name","value":"canReject"}}]}},{"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":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"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":"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":"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":"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":"friendlyName"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"feesPayer"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"comments"},"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","name":{"kind":"Name","value":"payoutMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"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":"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":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"payee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"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":"friendlyName"}}]}},{"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":"refundTransaction"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; diff --git a/lib/i18n/pending-order-payment-method-type.ts b/lib/i18n/pending-order-payment-method-type.ts new file mode 100644 index 00000000000..691ff02a6ba --- /dev/null +++ b/lib/i18n/pending-order-payment-method-type.ts @@ -0,0 +1,7 @@ +import { defineMessages } from 'react-intl'; + +export const i18nPendingOrderPaymentMethodTypes = defineMessages({ + UNKNOWN: { id: 'Unknown', defaultMessage: 'Unknown' }, + BANK_TRANSFER: { defaultMessage: 'Bank Transfer', id: 'Aj4Xx4' }, + CHECK: { id: 'PaymentMethod.Check', defaultMessage: 'Check' }, +}); diff --git a/pages/order.tsx b/pages/order.tsx index 26a523897d8..cb033937f0a 100644 --- a/pages/order.tsx +++ b/pages/order.tsx @@ -20,7 +20,7 @@ import CollectiveNavbar from '../components/collective-navbar'; import { NAVBAR_CATEGORIES } from '../components/collective-navbar/constants'; import { accountNavbarFieldsFragment } from '../components/collective-navbar/fragments'; import Container from '../components/Container'; -import { confirmContributionFieldsFragment } from '../components/ContributionConfirmationModal'; +import { confirmContributionFieldsFragment } from '../components/contributions/ConfirmContributionForm'; import CreatePendingOrderModal from '../components/dashboard/sections/contributions/CreatePendingOrderModal'; import DateTime from '../components/DateTime'; import ErrorPage from '../components/ErrorPage';