@accounter/client
Version:
Accounter client application
139 lines (138 loc) • 487 kB
text/typescript
/* eslint-disable */
import * as types from './graphql.js';
import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
/**
* Map of all GraphQL operations in the project.
*
* This map has several performance disadvantages:
* 1. It is not tree-shakeable, so it will include all operations in the project.
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
* 3. It does not support dead code elimination, so it will add unused operations.
*
* Therefore it is highly recommended to use the babel or swc plugin for production.
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
*/
type Documents = {
"\n query ListApiKeys {\n listApiKeys {\n id\n name\n roleId\n lastUsedAt\n createdAt\n }\n }\n": typeof types.ListApiKeysDocument,
"\n query ListBusinessUsers {\n listBusinessUsers {\n id\n email\n name\n roleId\n createdAt\n }\n }\n": typeof types.ListBusinessUsersDocument,
"\n query ListInvitations {\n listInvitations {\n id\n email\n roleId\n expiresAt\n }\n }\n": typeof types.ListInvitationsDocument,
"\n fragment DepositTransactionFields on Transaction {\n id\n eventDate\n chargeId\n amount {\n raw\n formatted\n currency\n }\n debitExchangeRates {\n aud\n cad\n eur\n gbp\n jpy\n sek\n usd\n date\n }\n eventExchangeRates {\n aud\n cad\n eur\n gbp\n jpy\n sek\n usd\n date\n }\n }\n": typeof types.DepositTransactionFieldsFragmentDoc,
"\n query SharedDepositTransactions($depositId: UUID!) {\n deposit(id: $depositId) {\n id\n currency\n metadata {\n id\n transactions {\n id\n ...DepositTransactionFields\n }\n }\n }\n }\n": typeof types.SharedDepositTransactionsDocument,
"\n query BusinessLedgerInfo($filters: BusinessTransactionsFilter) {\n businessTransactionsFromLedgerRecords(filters: $filters) {\n ... on BusinessTransactionsFromLedgerRecordsSuccessfulResult {\n __typename\n businessTransactions {\n amount {\n formatted\n raw\n }\n business {\n id\n name\n }\n foreignAmount {\n formatted\n raw\n currency\n }\n invoiceDate\n reference\n details\n counterAccount {\n __typename\n id\n name\n }\n chargeId\n }\n }\n ... on CommonError {\n __typename\n message\n }\n }\n }\n": typeof types.BusinessLedgerInfoDocument,
"\n query BusinessLedgerRecordsSummery($filters: BusinessTransactionsFilter) {\n businessTransactionsSumFromLedgerRecords(filters: $filters) {\n ... on BusinessTransactionsSumFromLedgerRecordsSuccessfulResult {\n __typename\n businessTransactionsSum {\n business {\n id\n name\n }\n credit {\n formatted\n }\n debit {\n formatted\n }\n total {\n formatted\n raw\n }\n foreignCurrenciesSum {\n currency\n credit {\n formatted\n }\n debit {\n formatted\n }\n total {\n formatted\n raw\n }\n }\n }\n }\n ... on CommonError {\n __typename\n message\n }\n }\n }\n": typeof types.BusinessLedgerRecordsSummeryDocument,
"\n query BusinessTripScreen($businessTripId: UUID!) {\n businessTrip(id: $businessTripId) {\n id\n name\n dates {\n start\n }\n }\n }\n": typeof types.BusinessTripScreenDocument,
"\n fragment BusinessTripsRowFields on BusinessTrip {\n id\n name\n accountantApproval\n }\n": typeof types.BusinessTripsRowFieldsFragmentDoc,
"\n query BusinessTripsRowValidation($id: UUID!) {\n businessTrip(id: $id) {\n id\n uncategorizedTransactions {\n transaction {\n ... on Transaction @defer {\n id\n }\n }\n }\n summary {\n ... on BusinessTripSummary @defer {\n errors\n }\n }\n }\n }\n": typeof types.BusinessTripsRowValidationDocument,
"\n query EditableBusinessTrip($businessTripId: UUID!) {\n businessTrip(id: $businessTripId) {\n id\n ...BusinessTripReportHeaderFields\n ...BusinessTripReportAttendeesFields\n ...BusinessTripUncategorizedTransactionsFields\n ...BusinessTripReportFlightsFields\n ...BusinessTripReportAccommodationsFields\n ...BusinessTripReportTravelAndSubsistenceFields\n ...BusinessTripReportCarRentalFields\n ...BusinessTripReportOtherFields\n ...BusinessTripReportSummaryFields\n ... on BusinessTrip {\n uncategorizedTransactions {\n transaction {\n id\n }\n }\n }\n }\n }\n": typeof types.EditableBusinessTripDocument,
"\n query BusinessTripsScreen {\n allBusinessTrips {\n id\n name\n dates {\n start\n }\n ...BusinessTripsRowFields\n }\n }\n": typeof types.BusinessTripsScreenDocument,
"\n fragment BusinessAdminSection on Business {\n __typename\n id\n ... on LtdFinancialEntity {\n adminInfo {\n id\n registrationDate\n withholdingTaxAnnualIds {\n id\n year\n }\n withholdingTaxCompanyId\n socialSecurityEmployerIds {\n id\n year\n }\n socialSecurityDeductionsId\n taxAdvancesAnnualIds {\n id\n year\n }\n taxAdvancesRates {\n date\n rate\n }\n }\n }\n }\n": typeof types.BusinessAdminSectionFragmentDoc,
"\n query AdminFinancialAccountsSection($adminId: UUID!) {\n financialAccountsByOwner(ownerId: $adminId) {\n id\n __typename\n name\n number\n type\n privateOrBusiness\n accountTaxCategories {\n id\n currency\n taxCategory {\n id\n name\n }\n }\n ... on BankFinancialAccount {\n bankNumber\n branchNumber\n iban\n swiftCode\n extendedBankNumber\n partyPreferredIndication\n partyAccountInvolvementCode\n accountDealDate\n accountUpdateDate\n metegDoarNet\n kodHarshaatPeilut\n accountClosingReasonCode\n accountAgreementOpeningDate\n serviceAuthorizationDesc\n branchTypeCode\n mymailEntitlementSwitch\n productLabel\n }\n }\n }\n": typeof types.AdminFinancialAccountsSectionDocument,
"\n fragment BusinessHeader on Business {\n __typename\n id\n name\n createdAt\n isActive\n ... on LtdFinancialEntity {\n governmentId\n adminInfo {\n id\n }\n clientInfo {\n id\n }\n }\n }\n": typeof types.BusinessHeaderFragmentDoc,
"\n query BusinessChargesSection($page: Int, $limit: Int, $filters: ChargeFilter) {\n allCharges(page: $page, limit: $limit, filters: $filters) {\n nodes {\n id\n ...ChargesTableFields\n }\n pageInfo {\n totalPages\n }\n }\n }\n": typeof types.BusinessChargesSectionDocument,
"\n query ClientContractsSection($clientId: UUID!) {\n contractsByClient(clientId: $clientId) {\n id\n purchaseOrders\n startDate\n endDate\n amount {\n raw\n currency\n }\n billingCycle\n isActive\n product\n documentType\n remarks\n plan\n msCloud\n operationsLimit\n }\n }\n": typeof types.ClientContractsSectionDocument,
"\n fragment ClientIntegrationsSection on LtdFinancialEntity {\n id\n clientInfo {\n id\n integrations {\n id\n greenInvoiceInfo {\n businessId\n greenInvoiceId\n }\n hiveId\n linearId\n slackChannelKey\n notionId\n workflowyUrl\n }\n }\n }\n": typeof types.ClientIntegrationsSectionFragmentDoc,
"\n query ClientIntegrationsSectionGreenInvoice($clientId: UUID!) {\n greenInvoiceClient(clientId: $clientId) {\n businessId\n greenInvoiceId\n country {\n id\n name\n }\n emails\n name\n phone\n taxId\n address\n city\n zip\n fax\n mobile\n }\n }\n": typeof types.ClientIntegrationsSectionGreenInvoiceDocument,
"\n query ContractBasedDocumentDraft($issueMonth: TimelessDate!, $contractId: UUID!) {\n periodicalDocumentDraftsByContracts(issueMonth: $issueMonth, contractIds: [$contractId]) {\n ...NewDocumentDraft\n }\n }\n": typeof types.ContractBasedDocumentDraftDocument,
"\n fragment BusinessConfigurationSection on Business {\n __typename\n id\n pcn874RecordType\n irsCode\n isActive\n ownerId\n ... on LtdFinancialEntity {\n optionalVAT\n exemptDealer\n isReceiptEnough\n isDocumentsOptional\n sortCode {\n id\n key\n defaultIrsCode\n }\n taxCategory {\n id\n }\n suggestions {\n phrases\n emails\n tags {\n id\n }\n description\n emailListener {\n internalEmailLinks\n emailBody\n attachments\n }\n }\n clientInfo {\n id\n }\n }\n }\n": typeof types.BusinessConfigurationSectionFragmentDoc,
"\n fragment BusinessContactSection on Business {\n __typename\n id\n ... on LtdFinancialEntity {\n name\n hebrewName\n country {\n id\n code\n }\n governmentId\n address\n city\n zipCode\n email\n # localAddress\n phoneNumber\n website\n clientInfo {\n id\n emails\n }\n }\n }\n": typeof types.BusinessContactSectionFragmentDoc,
"\n fragment BusinessPage on Business {\n id\n ... on LtdFinancialEntity {\n clientInfo {\n id\n }\n adminInfo {\n id\n }\n }\n ...ClientIntegrationsSection\n ...BusinessHeader\n ...BusinessContactSection\n ...BusinessConfigurationSection\n ...BusinessAdminSection\n }\n": typeof types.BusinessPageFragmentDoc,
"\n query BusinessLedgerSection($businessId: UUID!) {\n ledgerRecordsByFinancialEntity(financialEntityId: $businessId) {\n id\n ...LedgerRecordsTableFields\n }\n }\n": typeof types.BusinessLedgerSectionDocument,
"\n query BusinessTransactionsSection($businessId: UUID!) {\n transactionsByFinancialEntity(financialEntityID: $businessId) {\n id\n ...TransactionForTransactionsTableFields\n ...TransactionToDownloadForTransactionsTableFields\n }\n }\n": typeof types.BusinessTransactionsSectionDocument,
"\n query AllBusinessesForScreen($page: Int, $limit: Int, $name: String) {\n allBusinesses(page: $page, limit: $limit, name: $name) {\n nodes {\n __typename\n id\n name\n ... on LtdFinancialEntity {\n ...BusinessHeader\n }\n }\n pageInfo {\n totalPages\n totalRecords\n }\n }\n }\n": typeof types.AllBusinessesForScreenDocument,
"\n fragment ChargeMatchesTableFields on ChargeMatch {\n charge {\n id\n __typename\n minEventDate\n minDebitDate\n minDocumentsDate\n totalAmount {\n raw\n formatted\n }\n vat {\n raw\n formatted\n }\n counterparty {\n name\n id\n }\n userDescription\n tags {\n id\n name\n namePath\n }\n taxCategory {\n id\n name\n }\n # ...ChargesTableRowFields\n }\n confidenceScore\n }\n": typeof types.ChargeMatchesTableFieldsFragmentDoc,
"\n query ChargeExtendedInfoForChargeMatches($chargeId: UUID!) {\n charge(chargeId: $chargeId) {\n id\n transactions {\n id\n ...TransactionForTransactionsTableFields\n }\n additionalDocuments {\n id\n ...TableDocumentsRowFields\n }\n }\n }\n": typeof types.ChargeExtendedInfoForChargeMatchesDocument,
"\n query ChargesLedgerValidation($limit: Int, $filters: ChargeFilter) {\n chargesWithLedgerChanges(limit: $limit, filters: $filters) @stream {\n progress\n charge {\n id\n ...ChargesTableFields\n }\n }\n }\n": typeof types.ChargesLedgerValidationDocument,
"\n fragment ChargesTableAccountantApprovalFields on Charge {\n id\n accountantApproval\n }\n": typeof types.ChargesTableAccountantApprovalFieldsFragmentDoc,
"\n fragment ChargesTableAmountFields on Charge {\n __typename\n id\n totalAmount {\n raw\n formatted\n }\n ... on CreditcardBankCharge {\n validCreditCardAmount\n }\n }\n": typeof types.ChargesTableAmountFieldsFragmentDoc,
"\n fragment ChargesTableBusinessTripFields on Charge {\n id\n ... on BusinessTripCharge {\n businessTrip {\n id\n name\n }\n }\n }\n": typeof types.ChargesTableBusinessTripFieldsFragmentDoc,
"\n fragment ChargesTableEntityFields on Charge {\n __typename\n id\n counterparty {\n name\n id\n }\n validationData {\n missingInfo\n }\n }\n": typeof types.ChargesTableEntityFieldsFragmentDoc,
"\n fragment ChargesTableDateFields on Charge {\n id\n minEventDate\n minDebitDate\n minDocumentsDate\n maxEventDate\n maxDebitDate\n maxDocumentsDate\n }\n": typeof types.ChargesTableDateFieldsFragmentDoc,
"\n fragment ChargesTableDescriptionFields on Charge {\n id\n userDescription\n validationData {\n missingInfo\n }\n missingInfoSuggestions {\n description\n }\n }\n": typeof types.ChargesTableDescriptionFieldsFragmentDoc,
"\n fragment ChargesTableMoreInfoFields on Charge {\n __typename\n id\n metadata {\n transactionsCount\n documentsCount\n ledgerCount\n miscExpensesCount\n ... on ChargeMetadata @defer {\n invalidLedger\n }\n }\n validationData {\n missingInfo\n }\n }\n": typeof types.ChargesTableMoreInfoFieldsFragmentDoc,
"\n fragment ChargesTableTagsFields on Charge {\n id\n tags {\n id\n name\n namePath\n }\n validationData {\n ... on ValidationData {\n missingInfo\n }\n }\n missingInfoSuggestions {\n ... on ChargeSuggestions {\n tags {\n id\n name\n namePath\n }\n }\n }\n }\n": typeof types.ChargesTableTagsFieldsFragmentDoc,
"\n fragment ChargesTableTaxCategoryFields on Charge {\n __typename\n id\n taxCategory {\n id\n name\n }\n validationData {\n missingInfo\n }\n }\n": typeof types.ChargesTableTaxCategoryFieldsFragmentDoc,
"\n fragment ChargesTableTypeFields on Charge {\n __typename\n id\n }\n": typeof types.ChargesTableTypeFieldsFragmentDoc,
"\n fragment ChargesTableVatFields on Charge {\n __typename\n id\n vat {\n raw\n formatted\n }\n totalAmount {\n raw\n currency\n }\n validationData {\n missingInfo\n }\n }\n": typeof types.ChargesTableVatFieldsFragmentDoc,
"\n fragment ChargesTableErrorsFields on Charge {\n id\n errorsLedger: ledger {\n validate {\n errors\n }\n }\n }\n": typeof types.ChargesTableErrorsFieldsFragmentDoc,
"\n query FetchCharge($chargeId: UUID!) {\n charge(chargeId: $chargeId) {\n __typename\n id\n metadata {\n transactionsCount\n documentsCount\n receiptsCount\n invoicesCount\n ledgerCount\n miscExpensesCount\n isLedgerLocked\n openDocuments\n }\n totalAmount {\n raw\n }\n ...DocumentsGalleryFields @defer\n ...TableDocumentsFields @defer\n ...ChargeLedgerRecordsTableFields @defer\n ...ChargeTableTransactionsFields @defer\n ...ConversionChargeInfo @defer\n ...CreditcardBankChargeInfo @defer\n ...TableSalariesFields @defer\n ... on BusinessTripCharge {\n businessTrip {\n id\n ...BusinessTripReportFields\n }\n }\n ...ChargesTableErrorsFields @defer\n ...TableMiscExpensesFields @defer\n ...ExchangeRatesInfo @defer\n }\n }\n": typeof types.FetchChargeDocument,
"\n fragment TableDocumentsFields on Charge {\n id\n additionalDocuments {\n id\n ...TableDocumentsRowFields\n }\n }\n": typeof types.TableDocumentsFieldsFragmentDoc,
"\n fragment ChargeLedgerRecordsTableFields on Charge {\n id\n ledger {\n __typename\n records {\n id\n ...LedgerRecordsTableFields\n }\n ... on Ledger @defer {\n validate {\n ... on LedgerValidation @defer {\n matches\n differences {\n id\n ...LedgerRecordsTableFields\n }\n }\n }\n }\n }\n }\n": typeof types.ChargeLedgerRecordsTableFieldsFragmentDoc,
"\n fragment ChargeTableTransactionsFields on Charge {\n id\n transactions {\n id\n ...TransactionForTransactionsTableFields\n }\n }\n": typeof types.ChargeTableTransactionsFieldsFragmentDoc,
"\n fragment ChargesTableRowFields on Charge {\n id\n __typename\n metadata {\n ... on ChargeMetadata @defer {\n documentsCount\n ledgerCount\n transactionsCount\n miscExpensesCount\n }\n }\n totalAmount {\n raw\n }\n ...ChargesTableAccountantApprovalFields\n ...ChargesTableAmountFields\n ...ChargesTableBusinessTripFields @defer\n ...ChargesTableDateFields\n ...ChargesTableDescriptionFields\n ...ChargesTableEntityFields @defer\n ...ChargesTableMoreInfoFields\n ...ChargesTableTagsFields @defer\n ...ChargesTableTaxCategoryFields @defer\n ...ChargesTableTypeFields\n ...ChargesTableVatFields\n }\n": typeof types.ChargesTableRowFieldsFragmentDoc,
"\n query ChargeForRow($chargeId: UUID!) {\n charge(chargeId: $chargeId) {\n id\n ...ChargesTableRowFields\n }\n }\n": typeof types.ChargeForRowDocument,
"\n fragment ChargesTableFields on Charge {\n id\n owner {\n id\n }\n ...ChargesTableRowFields\n }\n": typeof types.ChargesTableFieldsFragmentDoc,
"\n query BankDepositInfo($chargeId: UUID!) {\n depositByCharge(chargeId: $chargeId) {\n id\n name\n metadata {\n id\n currentBalance {\n formatted\n }\n transactions {\n id\n chargeId\n ...TransactionForTransactionsTableFields\n }\n }\n isOpen\n }\n }\n": typeof types.BankDepositInfoDocument,
"\n query ChargeMatches($chargeId: UUID!) {\n findChargeMatches(chargeId: $chargeId) {\n matches {\n chargeId\n ...ChargeMatchesTableFields\n }\n }\n }\n": typeof types.ChargeMatchesDocument,
"\n fragment ConversionChargeInfo on Charge {\n id\n __typename\n ... on ConversionCharge {\n eventRate {\n from\n to\n rate\n }\n officialRate {\n from\n to\n rate\n }\n }\n }\n": typeof types.ConversionChargeInfoFragmentDoc,
"\n fragment CreditcardBankChargeInfo on Charge {\n id\n __typename\n ... on CreditcardBankCharge {\n creditCardTransactions {\n id\n ...TransactionForTransactionsTableFields\n }\n }\n }\n": typeof types.CreditcardBankChargeInfoFragmentDoc,
"\n fragment ExchangeRatesInfo on Charge {\n id\n __typename\n ... on FinancialCharge {\n exchangeRates {\n aud\n cad\n eur\n gbp\n ils\n jpy\n sek\n usd\n eth\n grt\n usdc\n }\n }\n }\n": typeof types.ExchangeRatesInfoFragmentDoc,
"\n fragment TableMiscExpensesFields on Charge {\n id\n miscExpenses {\n id\n amount {\n formatted\n }\n description\n invoiceDate\n valueDate\n creditor {\n id\n name\n }\n debtor {\n id\n name\n }\n chargeId\n ...EditMiscExpenseFields\n }\n }\n": typeof types.TableMiscExpensesFieldsFragmentDoc,
"\n fragment TableSalariesFields on Charge {\n id\n __typename\n ... on SalaryCharge {\n salaryRecords {\n directAmount {\n formatted\n }\n baseAmount {\n formatted\n }\n employee {\n id\n name\n }\n pensionFund {\n id\n name\n }\n pensionEmployeeAmount {\n formatted\n }\n pensionEmployerAmount {\n formatted\n }\n compensationsAmount {\n formatted\n }\n trainingFund {\n id\n name\n }\n trainingFundEmployeeAmount {\n formatted\n }\n trainingFundEmployerAmount {\n formatted\n }\n socialSecurityEmployeeAmount {\n formatted\n }\n socialSecurityEmployerAmount {\n formatted\n }\n incomeTaxAmount {\n formatted\n }\n healthInsuranceAmount {\n formatted\n }\n }\n }\n }\n": typeof types.TableSalariesFieldsFragmentDoc,
"\n query IncomeChargesChart($filters: ChargeFilter) {\n allCharges(filters: $filters) {\n nodes {\n id\n transactions {\n id\n eventDate\n effectiveDate\n amount {\n currency\n formatted\n raw\n }\n eventExchangeRates {\n aud\n cad\n eur\n gbp\n jpy\n sek\n usd\n date\n }\n debitExchangeRates {\n aud\n cad\n eur\n gbp\n jpy\n sek\n usd\n date\n }\n }\n }\n }\n }\n": typeof types.IncomeChargesChartDocument,
"\n fragment MonthlyIncomeExpenseChartInfo on IncomeExpenseChart {\n monthlyData {\n income {\n formatted\n raw\n }\n expense {\n formatted\n raw\n }\n balance {\n formatted\n raw\n }\n date\n }\n }\n": typeof types.MonthlyIncomeExpenseChartInfoFragmentDoc,
"\n query MonthlyIncomeExpenseChart($filters: IncomeExpenseChartFilters!) {\n incomeExpenseChart(filters: $filters) {\n fromDate\n toDate\n currency\n ...MonthlyIncomeExpenseChartInfo\n }\n }\n": typeof types.MonthlyIncomeExpenseChartDocument,
"\n query ContractsEditModal($contractId: UUID!) {\n contractsById(id: $contractId) {\n id\n startDate\n endDate\n purchaseOrders\n amount {\n raw\n currency\n }\n product\n msCloud\n billingCycle\n plan\n isActive\n remarks\n documentType\n operationsLimit\n }\n }\n": typeof types.ContractsEditModalDocument,
"\n fragment BusinessTripReportFields on BusinessTrip {\n id\n ...BusinessTripReportHeaderFields\n ...BusinessTripReportSummaryFields\n }\n": typeof types.BusinessTripReportFieldsFragmentDoc,
"\n fragment BusinessTripAccountantApprovalFields on BusinessTrip {\n id\n accountantApproval\n }\n": typeof types.BusinessTripAccountantApprovalFieldsFragmentDoc,
"\n query UncategorizedTransactionsByBusinessTrip($businessTripId: UUID!) {\n businessTrip(id: $businessTripId) {\n id\n uncategorizedTransactions {\n transaction {\n id\n eventDate\n sourceDescription\n referenceKey\n counterparty {\n id\n name\n }\n amount {\n formatted\n raw\n }\n }\n }\n }\n }\n": typeof types.UncategorizedTransactionsByBusinessTripDocument,
"\n fragment BusinessTripReportAccommodationsRowFields on BusinessTripAccommodationExpense {\n id\n ...BusinessTripReportCoreExpenseRowFields\n payedByEmployee\n country {\n id\n name\n }\n nightsCount\n attendeesStay {\n id\n attendee {\n id\n name\n }\n nightsCount\n }\n }\n": typeof types.BusinessTripReportAccommodationsRowFieldsFragmentDoc,
"\n fragment BusinessTripReportAccommodationsTableFields on BusinessTripAccommodationExpense {\n id\n date\n ...BusinessTripReportAccommodationsRowFields\n }\n": typeof types.BusinessTripReportAccommodationsTableFieldsFragmentDoc,
"\n fragment BusinessTripReportAccommodationsFields on BusinessTrip {\n id\n accommodationExpenses {\n id\n ...BusinessTripReportAccommodationsTableFields\n }\n }\n": typeof types.BusinessTripReportAccommodationsFieldsFragmentDoc,
"\n fragment BusinessTripReportAttendeeRowFields on BusinessTripAttendee {\n id\n name\n arrivalDate\n departureDate\n flights {\n id\n ...BusinessTripReportFlightsTableFields\n }\n accommodations {\n id\n ...BusinessTripReportAccommodationsTableFields\n }\n }\n": typeof types.BusinessTripReportAttendeeRowFieldsFragmentDoc,
"\n fragment BusinessTripReportAttendeesFields on BusinessTrip {\n id\n attendees {\n id\n name\n ...BusinessTripReportAttendeeRowFields\n }\n }\n": typeof types.BusinessTripReportAttendeesFieldsFragmentDoc,
"\n fragment BusinessTripReportCarRentalRowFields on BusinessTripCarRentalExpense {\n id\n payedByEmployee\n ...BusinessTripReportCoreExpenseRowFields\n days\n isFuelExpense\n }\n": typeof types.BusinessTripReportCarRentalRowFieldsFragmentDoc,
"\n fragment BusinessTripReportCarRentalFields on BusinessTrip {\n id\n carRentalExpenses {\n id\n date\n ...BusinessTripReportCarRentalRowFields\n }\n }\n": typeof types.BusinessTripReportCarRentalFieldsFragmentDoc,
"\n fragment BusinessTripReportCoreExpenseRowFields on BusinessTripExpense {\n id\n date\n valueDate\n amount {\n formatted\n raw\n currency\n }\n employee {\n id\n name\n }\n payedByEmployee\n charges {\n id\n }\n }\n": typeof types.BusinessTripReportCoreExpenseRowFieldsFragmentDoc,
"\n fragment BusinessTripReportFlightsRowFields on BusinessTripFlightExpense {\n id\n payedByEmployee\n ...BusinessTripReportCoreExpenseRowFields\n path\n class\n attendees {\n id\n name\n }\n }\n": typeof types.BusinessTripReportFlightsRowFieldsFragmentDoc,
"\n fragment BusinessTripReportFlightsTableFields on BusinessTripFlightExpense {\n id\n date\n ...BusinessTripReportFlightsRowFields\n }\n": typeof types.BusinessTripReportFlightsTableFieldsFragmentDoc,
"\n fragment BusinessTripReportFlightsFields on BusinessTrip {\n id\n flightExpenses {\n id\n ...BusinessTripReportFlightsTableFields\n }\n attendees {\n id\n name\n }\n }\n": typeof types.BusinessTripReportFlightsFieldsFragmentDoc,
"\n fragment BusinessTripReportOtherRowFields on BusinessTripOtherExpense {\n id\n ...BusinessTripReportCoreExpenseRowFields\n payedByEmployee\n description\n deductibleExpense\n }\n": typeof types.BusinessTripReportOtherRowFieldsFragmentDoc,
"\n fragment BusinessTripReportOtherFields on BusinessTrip {\n id\n otherExpenses {\n id\n date\n ...BusinessTripReportOtherRowFields\n }\n }\n": typeof types.BusinessTripReportOtherFieldsFragmentDoc,
"\n fragment BusinessTripReportHeaderFields on BusinessTrip {\n id\n name\n dates {\n start\n end\n }\n purpose\n destination {\n id\n name\n }\n ...BusinessTripAccountantApprovalFields\n }\n": typeof types.BusinessTripReportHeaderFieldsFragmentDoc,
"\n fragment BusinessTripReportSummaryFields on BusinessTrip {\n id\n ... on BusinessTrip @defer {\n summary {\n excessExpenditure {\n formatted\n }\n excessTax\n rows {\n type\n totalForeignCurrency {\n formatted\n }\n totalLocalCurrency {\n formatted\n }\n taxableForeignCurrency {\n formatted\n }\n taxableLocalCurrency {\n formatted\n }\n maxTaxableForeignCurrency {\n formatted\n }\n maxTaxableLocalCurrency {\n formatted\n }\n excessExpenditure {\n formatted\n }\n }\n errors\n }\n }\n }\n": typeof types.BusinessTripReportSummaryFieldsFragmentDoc,
"\n fragment BusinessTripReportTravelAndSubsistenceRowFields on BusinessTripTravelAndSubsistenceExpense {\n id\n ...BusinessTripReportCoreExpenseRowFields\n payedByEmployee\n expenseType\n }\n": typeof types.BusinessTripReportTravelAndSubsistenceRowFieldsFragmentDoc,
"\n fragment BusinessTripReportTravelAndSubsistenceFields on BusinessTrip {\n id\n travelAndSubsistenceExpenses {\n id\n date\n ...BusinessTripReportTravelAndSubsistenceRowFields\n }\n }\n": typeof types.BusinessTripReportTravelAndSubsistenceFieldsFragmentDoc,
"\n fragment BusinessTripUncategorizedTransactionsFields on BusinessTrip {\n id\n uncategorizedTransactions {\n transaction {\n id\n eventDate\n chargeId\n amount {\n raw\n }\n ...TransactionsTableEventDateFields\n ...TransactionsTableDebitDateFields\n ...TransactionsTableAccountFields\n ...TransactionsTableDescriptionFields\n ...TransactionsTableSourceIDFields\n ...TransactionsTableEntityFields\n }\n ...UncategorizedTransactionsTableAmountFields\n }\n }\n": typeof types.BusinessTripUncategorizedTransactionsFieldsFragmentDoc,
"\n fragment UncategorizedTransactionsTableAmountFields on UncategorizedTransaction {\n transaction {\n id\n amount {\n raw\n formatted\n }\n cryptoExchangeRate {\n rate\n }\n }\n categorizedAmount {\n raw\n formatted\n }\n errors\n }\n": typeof types.UncategorizedTransactionsTableAmountFieldsFragmentDoc,
"\n fragment DepreciationRecordRowFields on DepreciationRecord {\n id\n amount {\n currency\n formatted\n raw\n }\n activationDate\n category {\n id\n name\n percentage\n }\n type\n charge {\n id\n totalAmount {\n currency\n formatted\n raw\n }\n }\n }\n": typeof types.DepreciationRecordRowFieldsFragmentDoc,
"\n query ChargeDepreciation($chargeId: UUID!) {\n depreciationRecordsByCharge(chargeId: $chargeId) {\n id\n ...DepreciationRecordRowFields\n }\n }\n": typeof types.ChargeDepreciationDocument,
"\n query RecentBusinessIssuedDocuments($businessId: UUID!, $limit: Int) {\n recentDocumentsByBusiness(businessId: $businessId, limit: $limit) {\n id\n ... on FinancialDocument {\n issuedDocumentInfo {\n id\n status\n externalId\n }\n }\n ...TableDocumentsRowFields\n }\n }\n": typeof types.RecentBusinessIssuedDocumentsDocument,
"\n query RecentIssuedDocumentsOfSameType($documentType: DocumentType!) {\n recentIssuedDocumentsByType(documentType: $documentType) {\n id\n ...TableDocumentsRowFields\n }\n }\n": typeof types.RecentIssuedDocumentsOfSameTypeDocument,
"\n query EditDocument($documentId: UUID!) {\n documentById(documentId: $documentId) {\n id\n image\n file\n documentType\n description\n remarks\n __typename\n ... on FinancialDocument {\n vat {\n raw\n currency\n }\n serialNumber\n date\n amount {\n raw\n currency\n }\n debtor {\n id\n name\n }\n creditor {\n id\n name\n }\n vatReportDateOverride\n noVatAmount\n allocationNumber\n exchangeRateOverride\n }\n }\n }\n": typeof types.EditDocumentDocument,
"\n fragment EditMiscExpenseFields on MiscExpense {\n id\n amount {\n raw\n currency\n }\n description\n invoiceDate\n valueDate\n creditor {\n id\n }\n debtor {\n id\n }\n }\n": typeof types.EditMiscExpenseFieldsFragmentDoc,
"\n fragment EditTagFields on Tag {\n id\n name\n parent {\n id\n name\n }\n }\n": typeof types.EditTagFieldsFragmentDoc,
"\n query EditTransaction($transactionIDs: [UUID!]!) {\n transactionsByIDs(transactionIDs: $transactionIDs) {\n id\n counterparty {\n id\n name\n }\n effectiveDate\n isFee\n account {\n type\n id\n }\n }\n }\n": typeof types.EditTransactionDocument,
"\n query ClientInfoForDocumentIssuing($businessId: UUID!) {\n client(businessId: $businessId) {\n id\n integrations {\n id\n greenInvoiceInfo {\n greenInvoiceId\n businessId\n name\n }\n }\n ...IssueDocumentClientFields\n }\n }\n": typeof types.ClientInfoForDocumentIssuingDocument,
"\n query AllBusinessTrips {\n allBusinessTrips {\n id\n name\n }\n }\n": typeof types.AllBusinessTripsDocument,
"\n query AllDepreciationCategories {\n depreciationCategories {\n id\n name\n percentage\n }\n }\n": typeof types.AllDepreciationCategoriesDocument,
"\n query AllEmployeesByEmployer($employerId: UUID!) {\n employeesByEmployerId(employerId: $employerId) {\n id\n name\n }\n }\n": typeof types.AllEmployeesByEmployerDocument,
"\n query AllPensionFunds {\n allPensionFunds {\n id\n name\n }\n }\n": typeof types.AllPensionFundsDocument,
"\n query AllTrainingFunds {\n allTrainingFunds {\n id\n name\n }\n }\n": typeof types.AllTrainingFundsDocument,
"\n query AttendeesByBusinessTrip($businessTripId: UUID!) {\n businessTrip(id: $businessTripId) {\n id\n attendees {\n id\n name\n }\n }\n }\n": typeof types.AttendeesByBusinessTripDocument,
"\n query FetchMultipleBusinesses($businessIds: [UUID!]!) {\n businesses(ids: $businessIds) {\n id\n name\n }\n }\n": typeof types.FetchMultipleBusinessesDocument,
"\n query FetchMultipleCharges($chargeIds: [UUID!]!) {\n chargesByIDs(chargeIDs: $chargeIds) {\n id\n __typename\n metadata {\n transactionsCount\n invoicesCount\n }\n owner {\n id\n name\n }\n tags {\n id\n name\n namePath\n }\n decreasedVAT\n property\n isInvoicePaymentDifferentCurrency\n userDescription\n optionalVAT\n optionalDocuments\n }\n }\n": typeof types.FetchMultipleChargesDocument,
"\n query EditCharge($chargeId: UUID!) {\n charge(chargeId: $chargeId) {\n id\n __typename\n counterparty {\n id\n name\n }\n owner {\n id\n name\n }\n property\n decreasedVAT\n isInvoicePaymentDifferentCurrency\n userDescription\n taxCategory {\n id\n name\n }\n tags {\n id\n }\n missingInfoSuggestions {\n ... on ChargeSuggestions {\n tags {\n id\n }\n }\n }\n optionalVAT\n optionalDocuments\n ... on BusinessTripCharge {\n businessTrip {\n id\n name\n }\n }\n yearsOfRelevance {\n year\n amount\n }\n }\n }\n": typeof types.EditChargeDocument,
"\n query EditSalaryRecord($month: TimelessDate!, $employeeIDs: [UUID!]!) {\n salaryRecordsByDates(fromDate: $month, toDate: $month, employeeIDs: $employeeIDs) {\n month\n charge {\n id\n }\n directAmount {\n raw\n }\n baseAmount {\n raw\n }\n employee {\n id\n name\n }\n employer {\n id\n name\n }\n pensionFund {\n id\n name\n }\n pensionEmployeeAmount {\n raw\n }\n pensionEmployeePercentage\n pensionEmployerAmount {\n raw\n }\n pensionEmployerPercentage\n compensationsAmount {\n raw\n }\n compensationsPercentage\n trainingFund {\n id\n name\n }\n trainingFundEmployeeAmount {\n raw\n }\n trainingFundEmployeePercentage\n trainingFundEmployerAmount {\n raw\n }\n trainingFundEmployerPercentage\n socialSecurityEmployeeAmount {\n raw\n }\n socialSecurityEmployerAmount {\n raw\n }\n incomeTaxAmount {\n raw\n }\n healthInsuranceAmount {\n raw\n }\n globalAdditionalHoursAmount {\n raw\n }\n bonus {\n raw\n }\n gift {\n raw\n }\n travelAndSubsistence {\n raw\n }\n recovery {\n raw\n }\n notionalExpense {\n raw\n }\n vacationDays {\n added\n balance\n }\n vacationTakeout {\n raw\n }\n workDays\n sicknessDays {\n balance\n }\n }\n }\n": typeof types.EditSalaryRecordDocument,
"\n query SortCodeToUpdate($key: Int!, $ownerId: String!) {\n sortCode(key: $key, ownerId: $ownerId) {\n id\n key\n name\n defaultIrsCode\n }\n }\n": typeof types.SortCodeToUpdateDocument,
"\n query TaxCategoryToUpdate($id: UUID!) {\n taxCategory(id: $id) {\n id\n ownerId\n name\n sortCode {\n id\n key\n name\n }\n irsCode\n }\n }\n": typeof types.TaxCategoryToUpdateDocument,
"\n query MiscExpenseTransactionFields($transactionId: UUID!) {\n transactionsByIDs(transactionIDs: [$transactionId]) {\n id\n chargeId\n amount {\n raw\n currency\n }\n eventDate\n effectiveDate\n exactEffectiveDate\n counterparty {\n id\n }\n }\n }\n": typeof types.MiscExpenseTransactionFieldsDocument,
"\n fragment IssueDocumentClientFields on Client {\n id\n originalBusiness {\n id\n address\n city\n zipCode\n country {\n id\n code\n }\n governmentId\n name\n phoneNumber\n }\n emails\n # city\n # zip\n # fax\n # mobile\n }\n": typeof types.IssueDocumentClientFieldsFragmentDoc,
"\n query NewDocumentDraftByCharge($chargeId: UUID!) {\n newDocumentDraftByCharge(chargeId: $chargeId) {\n ...NewDocumentDraft\n }\n }\n": typeof types.NewDocumentDraftByChargeDocument,
"\n query NewDocumentDraftByDocument($documentId: UUID!) {\n newDocumentDraftByDocument(documentId: $documentId) {\n ...NewDocumentDraft\n }\n }\n": typeof types.NewDocumentDraftByDocumentDocument,
"\n fragment NewDocumentDraft on DocumentDraft {\n description\n remarks\n footer\n type\n date\n dueDate\n language\n currency\n vatType\n discount {\n amount\n type\n }\n rounding\n signed\n maxPayments\n client {\n id\n originalBusiness {\n id\n name\n }\n integrations {\n id\n }\n emails\n ...IssueDocumentClientFields\n }\n income {\n currency\n currencyRate\n description\n itemId\n price\n quantity\n vatRate\n vatType\n }\n payment {\n currency\n currencyRate\n date\n price\n type\n bankName\n bankBranch\n bankAccount\n chequeNum\n accountId\n transactionId\n cardType\n cardNum\n numPayments\n firstPayment\n }\n linkedDocumentIds\n linkedPaymentId\n }\n": typeof types.NewDocumentDraftFragmentDoc,
"\n query SimilarChargesByBusiness(\n $businessId: UUID!\n $tagsDifferentThan: [String!]\n $descriptionDifferentThan: String\n ) {\n similarChargesByBusiness(\n businessId: $businessId\n tagsDifferentThan: $tagsDifferentThan\n descriptionDifferentThan: $descriptionDifferentThan\n ) {\n id\n ...SimilarChargesTable\n }\n }\n": typeof types.SimilarChargesByBusinessDocument,
"\n query SimilarCharges(\n $chargeId: UUID!\n $withMissingTags: Boolean!\n $withMissingDescription: Boolean!\n $tagsDifferentThan: [String!]\n $descriptionDifferentThan: String\n ) {\n similarCharges(\n chargeId: $chargeId\n withMissingTags: $withMissingTags\n withMissingDescription: $withMissingDescription\n tagsDifferentThan: $tagsDifferentThan\n descriptionDifferentThan: $descriptionDifferentThan\n ) {\n id\n ...SimilarChargesTable\n }\n }\n": typeof types.SimilarChargesDocument,
"\n fragment SimilarChargesTable on Charge {\n id\n __typename\n counterparty {\n name\n id\n }\n minEventDate\n minDebitDate\n minDocumentsDate\n totalAmount {\n raw\n formatted\n }\n vat {\n raw\n formatted\n }\n userDescription\n tags {\n id\n name\n }\n taxCategory {\n id\n name\n }\n ... on BusinessTripCharge {\n businessTrip {\n id\n name\n }\n }\n metadata {\n transactionsCount\n documentsCount\n ledgerCount\n miscExpensesCount\n }\n }\n": typeof types.SimilarChargesTableFragmentDoc,
"\n query SimilarTransactions($transactionId: UUID!, $withMissingInfo: Boolean!) {\n similarTransactions(transactionId: $transactionId, withMissingInfo: $withMissingInfo) {\n id\n account {\n id\n name\n type\n }\n amount {\n formatted\n raw\n }\n effectiveDate\n eventDate\n sourceDescription\n }\n }\n": typeof types.SimilarTransactionsDocument,
"\n query UniformFormat($fromDate: TimelessDate!, $toDate: TimelessDate!) {\n uniformFormat(fromDate: $fromDate, toDate: $toDate) {\n bkmvdata\n ini\n }\n }\n": typeof types.UniformFormatDocument,
"\n fragment NewFetchedDocumentFields on Document {\n id\n documentType\n charge {\n id\n userDescription\n counterparty {\n id\n name\n }\n }\n }\n": typeof types.NewFetchedDocumentFieldsFragmentDoc,
"\n fragment ContractForContractsTableFields on Contract {\n id\n isActive\n client {\n id\n originalBusiness {\n id\n name\n }\n }\n purchaseOrders\n startDate\n endDate\n amount {\n raw\n formatted\n }\n billingCycle\n product\n plan\n operationsLimit\n msCloud\n # documentType\n # remarks\n }\n": typeof types.ContractForContractsTableFieldsFragmentDoc,
"\n query ContractBasedDocumentDrafts($issueMonth: TimelessDate!, $contractIds: [UUID!]!) {\n periodicalDocumentDraftsByContracts(issueMonth: $issueMonth, contractIds: $contractIds) {\n ...NewDocumentDraft\n }\n }\n": typeof types.ContractBasedDocumentDraftsDocument,
"\n fragment TableDocumentsRowFields on Document {\n id\n documentType\n image\n file\n description\n remarks\n charge {\n id\n }\n ... on FinancialDocument {\n amount {\n raw\n formatted\n currency\n }\n missingInfoSuggestions {\n amount {\n raw\n formatted\n currency\n }\n isIncome\n counterparty {\n id\n name\n }\n owner {\n id\n name\n }\n }\n date\n vat {\n raw\n formatted\n currency\n }\n serialNumber\n allocationNumber\n creditor {\n id\n name\n }\n debtor {\n id\n name\n }\n issuedDocumentInfo {\n id\n status\n originalDocument {\n income {\n description\n }\n }\n }\n }\n }\n": typeof types.TableDocumentsRowFieldsFragmentDoc,
"\n fragment DocumentsGalleryFields on Charge {\n id\n additionalDocuments {\n id\n image\n ... on FinancialDocument {\n documentType\n }\n }\n }\n": typeof types.DocumentsGalleryFieldsFragmentDoc,
"\n fragment LedgerRecordsTableFields on LedgerRecord {\n id\n creditAccount1 {\n __typename\n id\n name\n }\n creditAccount2 {\n __typename\n id\n name\n }\n debitAccount1 {\n __typename\n id\n name\n }\n debitAccount2 {\n __typename\n id\n name\n }\n creditAmount1 {\n formatted\n currency\n }\n creditAmount2 {\n formatted\n currency\n }\n debitAmount1 {\n formatted\n currency\n }\n debitAmount2 {\n formatted\n currency\n }\n localCurrencyCreditAmount1 {\n formatted\n raw\n }\n localCurrencyCreditAmount2 {\n formatted\n raw\n }\n localCurrencyDebitAmount1 {\n formatted\n raw\n }\n localCurrencyDebitAmount2 {\n formatted\n raw\n }\n invoiceDate\n valueDate\n description\n reference\n }\n": typeof types.LedgerRecordsTableFieldsFragmentDoc,
"\n query AccountantApprovalsChargesTable($page: Int, $limit: Int, $filters: ChargeFilter) {\n allCharges(page: $page, limit: $limit, filters: $filters) {\n nodes {\n id\n accountantApproval\n }\n }\n }\n": typeof types.AccountantApprovalsChargesTableDocument,
"\n query CorporateTaxRulingComplianceReport($years: [Int!]!) {\n corporateTaxRulingComplianceReport(years: $years) {\n id\n year\n totalIncome {\n formatted\n raw\n currency\n }\n researchAndDevelopmentExpenses {\n formatted\n raw\n currency\n }\n rndRelativeToIncome {\n rule\n ...CorporateTaxRulingReportRuleCellFields\n }\n localDevelopmentExpenses {\n formatted\n raw\n currency\n }\n localDevelopmentRelativeToRnd {\n rule\n ...CorporateTaxRulingReportRuleCellFields\n }\n foreignDevelopmentExpenses {\n formatted\n raw\n currency\n }\n foreignDevelopmentRelativeToRnd {\n rule\n ...CorporateTaxRulingReportRuleCellFields\n }\n businessTripRndExpenses {\n formatted\n raw\n currency\n }\n ... on CorporateTaxRulingComplianceReport @defer {\n differences {\n id\n totalIncome {\n formatted\n raw\n currency\n }\n researchAndDevelopmentExpenses {\n formatted\n raw\n currency\n }\n rndRelativeToIncome {\n ...CorporateTaxRulingReportRuleCellFields\n }\n localDevelopmentExpenses {\n formatted\n raw\n currency\n }\n localDevelopmentRelativeToRnd {\n ...CorporateTaxRulingReportRuleCellFields\n }\n foreignDevelopmentExpenses {\n formatted\n raw\n currency\n }\n foreignDevelopmentRelativeToRnd {\n ...CorporateTaxRulingReportRuleCellFields\n }\n businessTripRndExpenses {\n formatted\n raw\n currency\n }\n }\n }\n }\n }\n": typeof types.CorporateTaxRulingComplianceReportDocument,
"\n fragment CorporateTaxRulingReportRuleCellFields on CorporateTaxRule {\n id\n rule\n percentage {\n formatted\n }\n isCompliant\n }\n": typeof types.CorporateTaxRulingReportRuleCellFieldsFragmentDoc,
"\n query AllDynamicReports {\n allDynamicReports {\n id\n name\n isLocked\n updated\n }\n }\n": typeof types.AllDynamicReportsDocument,
"\n query DynamicReport($filters: BusinessTransactionsFilter) {\n businessTransactionsSumFromLedgerRecords(filters: $filters) {\n __typename\n ... on BusinessTransactionsSumFromLedgerRecordsSuccessfulResult {\n businessTransactionsSum {\n business {\n id\n name\n sortCode {\n id\n key\n name\n }\n }\n credit {\n formatted\n raw\n }\n debit {\n formatted\n raw\n }\n total {\n formatted\n raw\n }\n }\n }\n ... on C