@zeniai/client-epic-state 5.1.20-betaDI1 → 5.1.20-betaDI2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__testHelpers__/apiFailure.json +6 -0
- package/lib/common/aiCfo/aiCfoSuggestedQuestionsPageContext.d.ts +19 -0
- package/lib/common/aiCfo/aiCfoSuggestedQuestionsPageContext.js +2 -0
- package/lib/commonPayloadTypes/agingReportPayloadTypes.d.ts +22 -0
- package/lib/commonPayloadTypes/agingReportPayloadTypes.js +27 -0
- package/lib/commonPayloadTypes/balanceChangePayload.d.ts +20 -0
- package/lib/commonPayloadTypes/balanceChangePayload.js +24 -0
- package/lib/commonPayloadTypes/classesView/reportByClassPayloadV2.d.ts +27 -0
- package/lib/commonPayloadTypes/classesView/reportByClassPayloadV2.js +10 -0
- package/lib/commonPayloadTypes/coaBalanceByAdditionalPeriodPayload.d.ts +7 -0
- package/lib/commonPayloadTypes/coaBalanceByAdditionalPeriodPayload.js +14 -0
- package/lib/commonPayloadTypes/coaBalancePayload.d.ts +51 -0
- package/lib/commonPayloadTypes/coaBalancePayload.js +64 -0
- package/lib/commonPayloadTypes/commonPayload.d.ts +19 -0
- package/lib/commonPayloadTypes/commonPayload.js +22 -0
- package/lib/commonPayloadTypes/recommendationPayload.d.ts +45 -0
- package/lib/commonPayloadTypes/recommendationPayload.js +51 -0
- package/lib/commonPayloadTypes/sortOrderPayload.d.ts +4 -0
- package/lib/commonPayloadTypes/sortOrderPayload.js +11 -0
- package/lib/commonPayloadTypes/statusPayload.d.ts +14 -0
- package/lib/commonPayloadTypes/statusPayload.js +17 -0
- package/lib/commonPayloadTypes/subAccountView/reportBySubAccountPayload.d.ts +37 -0
- package/lib/commonPayloadTypes/subAccountView/reportBySubAccountPayload.js +2 -0
- package/lib/commonPayloadTypes/subAccountView/subAccountPayloadHelper.d.ts +5 -0
- package/lib/commonPayloadTypes/subAccountView/subAccountPayloadHelper.js +28 -0
- package/lib/commonPayloadTypes/urlPayload.d.ts +6 -0
- package/lib/commonPayloadTypes/urlPayload.js +8 -0
- package/lib/commonPayloadTypes/v2/coaBalancePayload.d.ts +57 -0
- package/lib/commonPayloadTypes/v2/coaBalancePayload.js +103 -0
- package/lib/commonPayloadTypes/v2/viewAndReportPayloadv2.d.ts +21 -0
- package/lib/commonPayloadTypes/v2/viewAndReportPayloadv2.js +30 -0
- package/lib/commonPayloadTypes/vendorRecommendationPayload.d.ts +13 -0
- package/lib/commonPayloadTypes/vendorRecommendationPayload.js +2 -0
- package/lib/commonPayloadTypes/viewAndReportPayload.d.ts +19 -0
- package/lib/commonPayloadTypes/viewAndReportPayload.js +27 -0
- package/lib/commonStateTypes/accountView/getNestedAccountIDHierarchyForReport.d.ts +21 -0
- package/lib/commonStateTypes/accountView/getNestedAccountIDHierarchyForReport.js +115 -0
- package/lib/commonStateTypes/accountView/nestedAccountID.d.ts +63 -0
- package/lib/commonStateTypes/accountView/nestedAccountID.js +17 -0
- package/lib/commonStateTypes/agingBalance/agingBalance.d.ts +14 -0
- package/lib/commonStateTypes/agingBalance/agingBalance.js +16 -0
- package/lib/commonStateTypes/allowedValue.d.ts +11 -0
- package/lib/commonStateTypes/allowedValue.js +10 -0
- package/lib/commonStateTypes/amount.d.ts +10 -0
- package/lib/commonStateTypes/amount.js +20 -0
- package/lib/commonStateTypes/animations.d.ts +2 -0
- package/lib/commonStateTypes/animations.js +66 -0
- package/lib/commonStateTypes/balance.d.ts +14 -0
- package/lib/commonStateTypes/balance.js +2 -0
- package/lib/commonStateTypes/balanceTimeseries.d.ts +17 -0
- package/lib/commonStateTypes/balanceTimeseries.js +2 -0
- package/lib/commonStateTypes/bookCloseDateHelper.d.ts +8 -0
- package/lib/commonStateTypes/bookCloseDateHelper.js +48 -0
- package/lib/commonStateTypes/cacheOverrideFetchReducer.d.ts +17 -0
- package/lib/commonStateTypes/cacheOverrideFetchReducer.js +20 -0
- package/lib/commonStateTypes/classesView/getNestedClassIDHierarchyForReport.d.ts +21 -0
- package/lib/commonStateTypes/classesView/getNestedClassIDHierarchyForReport.js +113 -0
- package/lib/commonStateTypes/classesView/nestedClassID.d.ts +56 -0
- package/lib/commonStateTypes/classesView/nestedClassID.js +7 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getAdditionalBalances.d.ts +33 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getAdditionalBalances.js +135 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getComparisionBalance.d.ts +3 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getComparisionBalance.js +151 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getSamePeriodLastYearBalance.d.ts +6 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getSamePeriodLastYearBalance.js +69 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getSummationBalance.d.ts +18 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/getSummationBalance.js +422 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/sliceCOABalances.d.ts +8 -0
- package/lib/commonStateTypes/coaBalance/additionalBalances/sliceCOABalances.js +52 -0
- package/lib/commonStateTypes/coaBalance/classBalances/getDifferenceOfBalancesGroupedByPeriod.d.ts +8 -0
- package/lib/commonStateTypes/coaBalance/classBalances/getDifferenceOfBalancesGroupedByPeriod.js +61 -0
- package/lib/commonStateTypes/coaBalance/classBalances/getSumOfBalancesGroupedByPeriod.d.ts +8 -0
- package/lib/commonStateTypes/coaBalance/classBalances/getSumOfBalancesGroupedByPeriod.js +82 -0
- package/lib/commonStateTypes/coaBalance/coaBalance.d.ts +69 -0
- package/lib/commonStateTypes/coaBalance/coaBalance.js +126 -0
- package/lib/commonStateTypes/coaBalance/coaBalanceByAdditionalPeriod.d.ts +5 -0
- package/lib/commonStateTypes/coaBalance/coaBalanceByAdditionalPeriod.js +2 -0
- package/lib/commonStateTypes/coaBalance/coaBalanceType.d.ts +9 -0
- package/lib/commonStateTypes/coaBalance/coaBalanceType.js +41 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilter.d.ts +72 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilter.js +65 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilterClassesView.d.ts +14 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilterClassesView.js +9 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilterProjectView.d.ts +13 -0
- package/lib/commonStateTypes/coaBalance/coaBalancesFilterProjectView.js +9 -0
- package/lib/commonStateTypes/coaBalance/pickAndMergeForecast.d.ts +13 -0
- package/lib/commonStateTypes/coaBalance/pickAndMergeForecast.js +65 -0
- package/lib/commonStateTypes/coaBalance/sortBalancesByFreeRangeTotal.d.ts +4 -0
- package/lib/commonStateTypes/coaBalance/sortBalancesByFreeRangeTotal.js +41 -0
- package/lib/commonStateTypes/coaBalance/sortBalancesByTotalAmounts.d.ts +4 -0
- package/lib/commonStateTypes/coaBalance/sortBalancesByTotalAmounts.js +43 -0
- package/lib/commonStateTypes/common.d.ts +31 -0
- package/lib/commonStateTypes/common.js +9 -0
- package/lib/commonStateTypes/currencyHelper.d.ts +4 -0
- package/lib/commonStateTypes/currencyHelper.js +12 -0
- package/lib/commonStateTypes/customerView/getNestedCustomerHierarchy.d.ts +9 -0
- package/lib/commonStateTypes/customerView/getNestedCustomerHierarchy.js +45 -0
- package/lib/commonStateTypes/customerView/nestedCustomerID.d.ts +40 -0
- package/lib/commonStateTypes/customerView/nestedCustomerID.js +2 -0
- package/lib/commonStateTypes/dataAvailable.d.ts +6 -0
- package/lib/commonStateTypes/dataAvailable.js +53 -0
- package/lib/commonStateTypes/fileType.d.ts +3 -0
- package/lib/commonStateTypes/fileType.js +7 -0
- package/lib/commonStateTypes/filterPrimitives.d.ts +23 -0
- package/lib/commonStateTypes/filterPrimitives.js +21 -0
- package/lib/commonStateTypes/fiscalYearHelpers/addSubtractPeriod.d.ts +5 -0
- package/lib/commonStateTypes/fiscalYearHelpers/addSubtractPeriod.js +31 -0
- package/lib/commonStateTypes/fiscalYearHelpers/formatMinutesToFromHHMM.d.ts +2 -0
- package/lib/commonStateTypes/fiscalYearHelpers/formatMinutesToFromHHMM.js +26 -0
- package/lib/commonStateTypes/fiscalYearHelpers/formatZeniDateFY.d.ts +27 -0
- package/lib/commonStateTypes/fiscalYearHelpers/formatZeniDateFY.js +49 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getActualPeriod.d.ts +4 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getActualPeriod.js +37 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getFYMonths.d.ts +9 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getFYMonths.js +28 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getFYQuarterAndYear.d.ts +15 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getFYQuarterAndYear.js +62 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getStartOfAndEndOfTimeframeFY.d.ts +15 -0
- package/lib/commonStateTypes/fiscalYearHelpers/getStartOfAndEndOfTimeframeFY.js +91 -0
- package/lib/commonStateTypes/numberToUnion.d.ts +16 -0
- package/lib/commonStateTypes/numberToUnion.js +38 -0
- package/lib/commonStateTypes/projectView/projectViewParentID.d.ts +5 -0
- package/lib/commonStateTypes/projectView/projectViewParentID.js +2 -0
- package/lib/commonStateTypes/pusherActions.d.ts +11 -0
- package/lib/commonStateTypes/pusherActions.js +6 -0
- package/lib/commonStateTypes/recommendationBase.d.ts +52 -0
- package/lib/commonStateTypes/recommendationBase.js +59 -0
- package/lib/commonStateTypes/reduceFetchState.d.ts +52 -0
- package/lib/commonStateTypes/reduceFetchState.js +192 -0
- package/lib/commonStateTypes/reimbursementTypeCode.d.ts +2 -0
- package/lib/commonStateTypes/reimbursementTypeCode.js +5 -0
- package/lib/commonStateTypes/selectorTypes/accountsViewSelectorReport.d.ts +14 -0
- package/lib/commonStateTypes/selectorTypes/accountsViewSelectorReport.js +2 -0
- package/lib/commonStateTypes/selectorTypes/classesViewSelectorReport.d.ts +15 -0
- package/lib/commonStateTypes/selectorTypes/classesViewSelectorReport.js +2 -0
- package/lib/commonStateTypes/selectorTypes/pickAndMergeForecastCalculatedSection.d.ts +2 -0
- package/lib/commonStateTypes/selectorTypes/pickAndMergeForecastCalculatedSection.js +8 -0
- package/lib/commonStateTypes/selectorTypes/pickAndMergeForecastSection.d.ts +0 -0
- package/lib/commonStateTypes/selectorTypes/pickAndMergeForecastSection.js +1 -0
- package/lib/commonStateTypes/selectorTypes/selectorTypes.d.ts +18 -0
- package/lib/commonStateTypes/selectorTypes/selectorTypes.js +2 -0
- package/lib/commonStateTypes/selectorTypes/sortOrderTypes.d.ts +3 -0
- package/lib/commonStateTypes/selectorTypes/sortOrderTypes.js +5 -0
- package/lib/commonStateTypes/status.d.ts +9 -0
- package/lib/commonStateTypes/status.js +2 -0
- package/lib/commonStateTypes/stringToUnion.d.ts +16 -0
- package/lib/commonStateTypes/stringToUnion.js +37 -0
- package/lib/commonStateTypes/systemInfo.d.ts +52 -0
- package/lib/commonStateTypes/systemInfo.js +242 -0
- package/lib/commonStateTypes/timePeriod.d.ts +51 -0
- package/lib/commonStateTypes/timePeriod.js +97 -0
- package/lib/commonStateTypes/timeframeTick.d.ts +15 -0
- package/lib/commonStateTypes/timeframeTick.js +22 -0
- package/lib/commonStateTypes/v2/viewAndReport.d.ts +17 -0
- package/lib/commonStateTypes/v2/viewAndReport.js +5 -0
- package/lib/commonStateTypes/vendorRecommendation.d.ts +18 -0
- package/lib/commonStateTypes/vendorRecommendation.js +2 -0
- package/lib/commonStateTypes/viewAndReport/agingReportStateTypes.d.ts +42 -0
- package/lib/commonStateTypes/viewAndReport/agingReportStateTypes.js +15 -0
- package/lib/commonStateTypes/viewAndReport/reportIDHelper.d.ts +10 -0
- package/lib/commonStateTypes/viewAndReport/reportIDHelper.js +47 -0
- package/lib/commonStateTypes/viewAndReport/reportUIState.d.ts +21 -0
- package/lib/commonStateTypes/viewAndReport/reportUIState.js +2 -0
- package/lib/commonStateTypes/viewAndReport/thisPeriodHelpers.d.ts +14 -0
- package/lib/commonStateTypes/viewAndReport/thisPeriodHelpers.js +108 -0
- package/lib/commonStateTypes/viewAndReport/viewAndReport.d.ts +37 -0
- package/lib/commonStateTypes/viewAndReport/viewAndReport.js +73 -0
- package/lib/commonStateTypes/workingDayHelper.d.ts +21 -0
- package/lib/commonStateTypes/workingDayHelper.js +124 -0
- package/lib/configureStore.d.ts +14 -0
- package/lib/configureStore.js +118 -0
- package/lib/coreEpics.d.ts +14 -0
- package/lib/coreEpics.js +65 -0
- package/lib/entity/account/accountPayload.d.ts +66 -0
- package/lib/entity/account/accountPayload.js +109 -0
- package/lib/entity/account/accountReducer.d.ts +29 -0
- package/lib/entity/account/accountReducer.js +180 -0
- package/lib/entity/account/accountSelector.d.ts +160 -0
- package/lib/entity/account/accountSelector.js +253 -0
- package/lib/entity/account/accountState.d.ts +93 -0
- package/lib/entity/account/accountState.js +81 -0
- package/lib/entity/account/pickAndMergeForecastAccountReport.d.ts +42 -0
- package/lib/entity/account/pickAndMergeForecastAccountReport.js +110 -0
- package/lib/entity/account/subAccountSelector.d.ts +28 -0
- package/lib/entity/account/subAccountSelector.js +63 -0
- package/lib/entity/accountGroup/accountGroupPayload.d.ts +23 -0
- package/lib/entity/accountGroup/accountGroupPayload.js +2 -0
- package/lib/entity/accountGroup/accountGroupReducer.d.ts +19 -0
- package/lib/entity/accountGroup/accountGroupReducer.js +137 -0
- package/lib/entity/accountGroup/accountGroupSelector.d.ts +836 -0
- package/lib/entity/accountGroup/accountGroupSelector.js +158 -0
- package/lib/entity/accountGroup/accountGroupState.d.ts +33 -0
- package/lib/entity/accountGroup/accountGroupState.js +26 -0
- package/lib/entity/accountGroup/accountGroupV2Selector.d.ts +23 -0
- package/lib/entity/accountGroup/accountGroupV2Selector.js +85 -0
- package/lib/entity/accountGroup/pickAndMergeForecastAcGroupReport.d.ts +3 -0
- package/lib/entity/accountGroup/pickAndMergeForecastAcGroupReport.js +84 -0
- package/lib/entity/accountRecon/accountReconPayload.d.ts +83 -0
- package/lib/entity/accountRecon/accountReconPayload.js +172 -0
- package/lib/entity/accountRecon/accountReconReducer.d.ts +23 -0
- package/lib/entity/accountRecon/accountReconReducer.js +141 -0
- package/lib/entity/accountRecon/accountReconSelector.d.ts +52 -0
- package/lib/entity/accountRecon/accountReconSelector.js +58 -0
- package/lib/entity/accountRecon/accountReconState.d.ts +99 -0
- package/lib/entity/accountRecon/accountReconState.js +58 -0
- package/lib/entity/address/addressPayload.d.ts +15 -0
- package/lib/entity/address/addressPayload.js +2 -0
- package/lib/entity/address/addressReducer.d.ts +7 -0
- package/lib/entity/address/addressReducer.js +60 -0
- package/lib/entity/address/addressSelector.d.ts +4 -0
- package/lib/entity/address/addressSelector.js +17 -0
- package/lib/entity/address/addressState.d.ts +18 -0
- package/lib/entity/address/addressState.js +2 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerPayload.d.ts +52 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerPayload.js +68 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerReducer.d.ts +10 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerReducer.js +50 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerSelector.d.ts +48 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerSelector.js +66 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerState.d.ts +53 -0
- package/lib/entity/aiAccountantCustomer/aiAccountantCustomerState.js +52 -0
- package/lib/entity/aiCfo/aiCfoPayload.d.ts +126 -0
- package/lib/entity/aiCfo/aiCfoPayload.js +2 -0
- package/lib/entity/aiCfo/aiCfoReducer.d.ts +67 -0
- package/lib/entity/aiCfo/aiCfoReducer.js +739 -0
- package/lib/entity/aiCfo/aiCfoSelector.d.ts +16 -0
- package/lib/entity/aiCfo/aiCfoSelector.js +60 -0
- package/lib/entity/aiCfo/aiCfoState.d.ts +212 -0
- package/lib/entity/aiCfo/aiCfoState.js +100 -0
- package/lib/entity/approvalRule/approvalRuleConflict.d.ts +56 -0
- package/lib/entity/approvalRule/approvalRuleConflict.js +77 -0
- package/lib/entity/approvalRule/approvalRulePayload.d.ts +67 -0
- package/lib/entity/approvalRule/approvalRulePayload.js +185 -0
- package/lib/entity/approvalRule/approvalRuleReducer.d.ts +6 -0
- package/lib/entity/approvalRule/approvalRuleReducer.js +28 -0
- package/lib/entity/approvalRule/approvalRuleSelector.d.ts +28 -0
- package/lib/entity/approvalRule/approvalRuleSelector.js +53 -0
- package/lib/entity/approvalRule/approvalRuleState.d.ts +113 -0
- package/lib/entity/approvalRule/approvalRuleState.js +36 -0
- package/lib/entity/bankAccount/bankAccount.d.ts +24 -0
- package/lib/entity/bankAccount/bankAccount.js +2 -0
- package/lib/entity/bankAccount/bankAccountPayload.d.ts +21 -0
- package/lib/entity/bankAccount/bankAccountPayload.js +26 -0
- package/lib/entity/bankAccount/bankAccountReducer.d.ts +6 -0
- package/lib/entity/bankAccount/bankAccountReducer.js +30 -0
- package/lib/entity/bankAccount/bankAccountSelector.d.ts +4 -0
- package/lib/entity/bankAccount/bankAccountSelector.js +15 -0
- package/lib/entity/billPay/billTransaction/billTransactionPayload.d.ts +118 -0
- package/lib/entity/billPay/billTransaction/billTransactionPayload.js +185 -0
- package/lib/entity/billPay/billTransaction/billTransactionReducer.d.ts +7 -0
- package/lib/entity/billPay/billTransaction/billTransactionReducer.js +71 -0
- package/lib/entity/billPay/billTransaction/billTransactionState.d.ts +136 -0
- package/lib/entity/billPay/billTransaction/billTransactionState.js +113 -0
- package/lib/entity/billPay/contact/contact.d.ts +10 -0
- package/lib/entity/billPay/contact/contact.js +2 -0
- package/lib/entity/billPay/contact/contactPayload.d.ts +9 -0
- package/lib/entity/billPay/contact/contactPayload.js +22 -0
- package/lib/entity/billPay/contact/contactReducer.d.ts +6 -0
- package/lib/entity/billPay/contact/contactReducer.js +29 -0
- package/lib/entity/billPay/contact/contactSelector.d.ts +4 -0
- package/lib/entity/billPay/contact/contactSelector.js +17 -0
- package/lib/entity/billPay/recurringBills/recurringBillsPayload.d.ts +47 -0
- package/lib/entity/billPay/recurringBills/recurringBillsPayload.js +58 -0
- package/lib/entity/billPay/recurringBills/recurringBillsReducer.d.ts +6 -0
- package/lib/entity/billPay/recurringBills/recurringBillsReducer.js +39 -0
- package/lib/entity/billPay/recurringBills/recurringBillsState.d.ts +45 -0
- package/lib/entity/billPay/recurringBills/recurringBillsState.js +14 -0
- package/lib/entity/cardPayment/cardPaymentPayload.d.ts +13 -0
- package/lib/entity/cardPayment/cardPaymentPayload.js +15 -0
- package/lib/entity/cardPayment/cardPaymentReducer.d.ts +9 -0
- package/lib/entity/cardPayment/cardPaymentReducer.js +50 -0
- package/lib/entity/cardPayment/cardPaymentSelector.d.ts +4 -0
- package/lib/entity/cardPayment/cardPaymentSelector.js +16 -0
- package/lib/entity/cardPayment/cardPaymentState.d.ts +15 -0
- package/lib/entity/cardPayment/cardPaymentState.js +2 -0
- package/lib/entity/cardPolicy/cardPolicyPayload.d.ts +277 -0
- package/lib/entity/cardPolicy/cardPolicyPayload.js +143 -0
- package/lib/entity/cardPolicy/cardPolicyReducer.d.ts +19 -0
- package/lib/entity/cardPolicy/cardPolicyReducer.js +175 -0
- package/lib/entity/cardPolicy/cardPolicySelector.d.ts +32 -0
- package/lib/entity/cardPolicy/cardPolicySelector.js +99 -0
- package/lib/entity/cardPolicy/cardPolicyState.d.ts +205 -0
- package/lib/entity/cardPolicy/cardPolicyState.js +14 -0
- package/lib/entity/cardPolicy/extractPolicyDocumentEpic.d.ts +18 -0
- package/lib/entity/cardPolicy/extractPolicyDocumentEpic.js +68 -0
- package/lib/entity/cardPolicy/fetchCardPolicyVendorOptionsEpic.d.ts +26 -0
- package/lib/entity/cardPolicy/fetchCardPolicyVendorOptionsEpic.js +47 -0
- package/lib/entity/cardPolicy/policyDocumentExtractionToRecommendationBridgeEpic.d.ts +25 -0
- package/lib/entity/cardPolicy/policyDocumentExtractionToRecommendationBridgeEpic.js +39 -0
- package/lib/entity/cardPolicy/policyRecommendationFromUploadEpic.d.ts +24 -0
- package/lib/entity/cardPolicy/policyRecommendationFromUploadEpic.js +105 -0
- package/lib/entity/chargeCard/chargeCard.d.ts +95 -0
- package/lib/entity/chargeCard/chargeCard.js +73 -0
- package/lib/entity/chargeCard/chargeCardPayload.d.ts +87 -0
- package/lib/entity/chargeCard/chargeCardPayload.js +99 -0
- package/lib/entity/chargeCard/chargeCardReducer.d.ts +26 -0
- package/lib/entity/chargeCard/chargeCardReducer.js +87 -0
- package/lib/entity/chargeCard/chargeCardSelector.d.ts +5 -0
- package/lib/entity/chargeCard/chargeCardSelector.js +21 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepayment.d.ts +37 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepayment.js +17 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepaymentPayload.d.ts +33 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepaymentPayload.js +34 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepaymentReducer.d.ts +6 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepaymentReducer.js +41 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepaymentSelector.d.ts +4 -0
- package/lib/entity/chargeCardRepayment/chargeCardRepaymentSelector.js +17 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransaction.d.ts +41 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransaction.js +20 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransactionPayload.d.ts +32 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransactionPayload.js +69 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransactionReducer.d.ts +26 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransactionReducer.js +93 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransactionSelector.d.ts +3 -0
- package/lib/entity/chargeCardTransaction/chargeCardTransactionSelector.js +16 -0
- package/lib/entity/class/classPayload.d.ts +27 -0
- package/lib/entity/class/classPayload.js +110 -0
- package/lib/entity/class/classReducer.d.ts +22 -0
- package/lib/entity/class/classReducer.js +93 -0
- package/lib/entity/class/classSelector.d.ts +57 -0
- package/lib/entity/class/classSelector.js +110 -0
- package/lib/entity/class/classSelectorTypes.d.ts +13 -0
- package/lib/entity/class/classSelectorTypes.js +2 -0
- package/lib/entity/class/classSelectorV2.d.ts +25 -0
- package/lib/entity/class/classSelectorV2.js +140 -0
- package/lib/entity/class/classState.d.ts +39 -0
- package/lib/entity/class/classState.js +14 -0
- package/lib/entity/company/cardsVisibilityHelpers.d.ts +4 -0
- package/lib/entity/company/cardsVisibilityHelpers.js +14 -0
- package/lib/entity/company/companyHelper.d.ts +6 -0
- package/lib/entity/company/companyHelper.js +40 -0
- package/lib/entity/company/companyPayload.d.ts +348 -0
- package/lib/entity/company/companyPayload.js +454 -0
- package/lib/entity/company/companyReducer.d.ts +51 -0
- package/lib/entity/company/companyReducer.js +204 -0
- package/lib/entity/company/companySelector.d.ts +21 -0
- package/lib/entity/company/companySelector.js +104 -0
- package/lib/entity/company/companyState.d.ts +10 -0
- package/lib/entity/company/companyState.js +2 -0
- package/lib/entity/company/companyStateTypes.d.ts +345 -0
- package/lib/entity/company/companyStateTypes.js +33 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricPayload.d.ts +53 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricPayload.js +90 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricReducer.d.ts +10 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricReducer.js +33 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricSelector.d.ts +4 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricSelector.js +17 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricState.d.ts +54 -0
- package/lib/entity/companyHealthMetric/companyHealthMetricState.js +2 -0
- package/lib/entity/connectedAccount/connectedAccount.d.ts +19 -0
- package/lib/entity/connectedAccount/connectedAccount.js +10 -0
- package/lib/entity/connectedAccount/connectedAccountPayload.d.ts +11 -0
- package/lib/entity/connectedAccount/connectedAccountPayload.js +15 -0
- package/lib/entity/connectedAccount/connectedAccountReducer.d.ts +6 -0
- package/lib/entity/connectedAccount/connectedAccountReducer.js +27 -0
- package/lib/entity/connectedAccount/connectedAccountSelector.d.ts +4 -0
- package/lib/entity/connectedAccount/connectedAccountSelector.js +17 -0
- package/lib/entity/countryList/countryListReducer.d.ts +10 -0
- package/lib/entity/countryList/countryListReducer.js +32 -0
- package/lib/entity/countryList/countryListSelector.d.ts +6 -0
- package/lib/entity/countryList/countryListSelector.js +10 -0
- package/lib/entity/countryList/countryListState.d.ts +11 -0
- package/lib/entity/countryList/countryListState.js +2 -0
- package/lib/entity/countryList/payloads/countryListPayload.d.ts +6 -0
- package/lib/entity/countryList/payloads/countryListPayload.js +9 -0
- package/lib/entity/countryList/payloads/nationalityCountryListPayload.d.ts +11 -0
- package/lib/entity/countryList/payloads/nationalityCountryListPayload.js +2 -0
- package/lib/entity/creditAgent/creditAgentPayload.d.ts +41 -0
- package/lib/entity/creditAgent/creditAgentPayload.js +40 -0
- package/lib/entity/creditAgent/creditAgentReducer.d.ts +9 -0
- package/lib/entity/creditAgent/creditAgentReducer.js +37 -0
- package/lib/entity/creditAgent/creditAgentSelector.d.ts +3 -0
- package/lib/entity/creditAgent/creditAgentSelector.js +10 -0
- package/lib/entity/creditAgent/creditAgentState.d.ts +39 -0
- package/lib/entity/creditAgent/creditAgentState.js +17 -0
- package/lib/entity/currency/currency.d.ts +11 -0
- package/lib/entity/currency/currency.js +2 -0
- package/lib/entity/currency/currencyPayload.d.ts +9 -0
- package/lib/entity/currency/currencyPayload.js +13 -0
- package/lib/entity/currency/currencyReducer.d.ts +6 -0
- package/lib/entity/currency/currencyReducer.js +31 -0
- package/lib/entity/currency/currencySelector.d.ts +2 -0
- package/lib/entity/currency/currencySelector.js +20 -0
- package/lib/entity/customer/customerPayload.d.ts +53 -0
- package/lib/entity/customer/customerPayload.js +112 -0
- package/lib/entity/customer/customerReducer.d.ts +12 -0
- package/lib/entity/customer/customerReducer.js +44 -0
- package/lib/entity/customer/customerSelector.d.ts +3 -0
- package/lib/entity/customer/customerSelector.js +6 -0
- package/lib/entity/customer/customerState.d.ts +48 -0
- package/lib/entity/customer/customerState.js +2 -0
- package/lib/entity/customerIncome/customerIncomeTrend.d.ts +28 -0
- package/lib/entity/customerIncome/customerIncomeTrend.js +90 -0
- package/lib/entity/customerIncome/customerIncomeTrendReducer.d.ts +14 -0
- package/lib/entity/customerIncome/customerIncomeTrendReducer.js +54 -0
- package/lib/entity/customerIncome/customerIncomeTrendSelector.d.ts +5 -0
- package/lib/entity/customerIncome/customerIncomeTrendSelector.js +23 -0
- package/lib/entity/customerIncome/customerIncomeTrendState.d.ts +8 -0
- package/lib/entity/customerIncome/customerIncomeTrendState.js +6 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionPayload.d.ts +13 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionPayload.js +2 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionReducer.d.ts +8 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionReducer.js +23 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionReducerHelpers.d.ts +3 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionReducerHelpers.js +38 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionSelector.d.ts +6 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionSelector.js +44 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionSelectorReducerTypes.d.ts +15 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionSelectorReducerTypes.js +2 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionState.d.ts +30 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionState.js +32 -0
- package/lib/entity/depositAccount/depositAccount.d.ts +47 -0
- package/lib/entity/depositAccount/depositAccount.js +17 -0
- package/lib/entity/depositAccount/depositAccountPayload.d.ts +40 -0
- package/lib/entity/depositAccount/depositAccountPayload.js +68 -0
- package/lib/entity/depositAccount/depositAccountReducer.d.ts +6 -0
- package/lib/entity/depositAccount/depositAccountReducer.js +35 -0
- package/lib/entity/depositAccount/depositAccountSelector.d.ts +6 -0
- package/lib/entity/depositAccount/depositAccountSelector.js +27 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransaction.d.ts +33 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransaction.js +39 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransactionPayload.d.ts +26 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransactionPayload.js +30 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransactionReducer.d.ts +6 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransactionReducer.js +29 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransactionSelector.d.ts +3 -0
- package/lib/entity/depositAccountTransaction/depositAccountTransactionSelector.js +16 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusPayload.d.ts +46 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusPayload.js +70 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusReducer.d.ts +6 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusReducer.js +27 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusSelector.d.ts +4 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusSelector.js +13 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusState.d.ts +60 -0
- package/lib/entity/entityApprovalStatus/entityApprovalStatusState.js +36 -0
- package/lib/entity/file/filePayload.d.ts +37 -0
- package/lib/entity/file/filePayload.js +2 -0
- package/lib/entity/file/fileReducer.d.ts +16 -0
- package/lib/entity/file/fileReducer.js +104 -0
- package/lib/entity/file/fileSelector.d.ts +7 -0
- package/lib/entity/file/fileSelector.js +34 -0
- package/lib/entity/file/fileState.d.ts +66 -0
- package/lib/entity/file/fileState.js +113 -0
- package/lib/entity/forecast/forecastPayload.d.ts +15 -0
- package/lib/entity/forecast/forecastPayload.js +21 -0
- package/lib/entity/forecast/forecastReducer.d.ts +6 -0
- package/lib/entity/forecast/forecastReducer.js +30 -0
- package/lib/entity/forecast/forecastSelector.d.ts +4 -0
- package/lib/entity/forecast/forecastSelector.js +13 -0
- package/lib/entity/forecast/forecastState.d.ts +21 -0
- package/lib/entity/forecast/forecastState.js +5 -0
- package/lib/entity/genericEntity/entity.d.ts +18 -0
- package/lib/entity/genericEntity/entity.js +10 -0
- package/lib/entity/genericEntity/entityPayload.d.ts +13 -0
- package/lib/entity/genericEntity/entityPayload.js +20 -0
- package/lib/entity/genericEntity/entityReducer.d.ts +8 -0
- package/lib/entity/genericEntity/entityReducer.js +36 -0
- package/lib/entity/genericEntity/entitySelector.d.ts +3 -0
- package/lib/entity/genericEntity/entitySelector.js +8 -0
- package/lib/entity/genericEntity/entityState.d.ts +5 -0
- package/lib/entity/genericEntity/entityState.js +2 -0
- package/lib/entity/globalMerchant/globalMerchantPayload.d.ts +63 -0
- package/lib/entity/globalMerchant/globalMerchantPayload.js +119 -0
- package/lib/entity/globalMerchant/globalMerchantReducer.d.ts +19 -0
- package/lib/entity/globalMerchant/globalMerchantReducer.js +96 -0
- package/lib/entity/globalMerchant/globalMerchantSelector.d.ts +6 -0
- package/lib/entity/globalMerchant/globalMerchantSelector.js +24 -0
- package/lib/entity/globalMerchant/globalMerchantState.d.ts +64 -0
- package/lib/entity/globalMerchant/globalMerchantState.js +6 -0
- package/lib/entity/insights/insightPayload.d.ts +20 -0
- package/lib/entity/insights/insightPayload.js +2 -0
- package/lib/entity/insights/insightReducer.d.ts +9 -0
- package/lib/entity/insights/insightReducer.js +62 -0
- package/lib/entity/insights/insightSelector.d.ts +3 -0
- package/lib/entity/insights/insightSelector.js +8 -0
- package/lib/entity/insights/insightState.d.ts +22 -0
- package/lib/entity/insights/insightState.js +17 -0
- package/lib/entity/insights/insightSummary.d.ts +7 -0
- package/lib/entity/insights/insightSummary.js +2 -0
- package/lib/entity/insights/insightSummaryPayload.d.ts +12 -0
- package/lib/entity/insights/insightSummaryPayload.js +13 -0
- package/lib/entity/jeSchedules/jeScheduleHelper.d.ts +2 -0
- package/lib/entity/jeSchedules/jeScheduleHelper.js +6 -0
- package/lib/entity/jeSchedules/jeSchedulesPayload.d.ts +116 -0
- package/lib/entity/jeSchedules/jeSchedulesPayload.js +344 -0
- package/lib/entity/jeSchedules/jeSchedulesReducer.d.ts +27 -0
- package/lib/entity/jeSchedules/jeSchedulesReducer.js +221 -0
- package/lib/entity/jeSchedules/jeSchedulesSelector.d.ts +77 -0
- package/lib/entity/jeSchedules/jeSchedulesSelector.js +143 -0
- package/lib/entity/jeSchedules/jeSchedulesState.d.ts +118 -0
- package/lib/entity/jeSchedules/jeSchedulesState.js +2 -0
- package/lib/entity/jeSchedules/jeSchedulesTypes.d.ts +18 -0
- package/lib/entity/jeSchedules/jeSchedulesTypes.js +45 -0
- package/lib/entity/jeSchedules/updateAccruedJESchedulesEpic.d.ts +9 -0
- package/lib/entity/jeSchedules/updateAccruedJESchedulesEpic.js +41 -0
- package/lib/entity/jeSchedules/updateJESchedulesEpic.d.ts +10 -0
- package/lib/entity/jeSchedules/updateJESchedulesEpic.js +68 -0
- package/lib/entity/merchant/merchant.d.ts +19 -0
- package/lib/entity/merchant/merchant.js +2 -0
- package/lib/entity/merchant/merchantPayload.d.ts +18 -0
- package/lib/entity/merchant/merchantPayload.js +30 -0
- package/lib/entity/merchant/merchantReducer.d.ts +11 -0
- package/lib/entity/merchant/merchantReducer.js +38 -0
- package/lib/entity/merchant/merchantSelector.d.ts +4 -0
- package/lib/entity/merchant/merchantSelector.js +17 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksPayload.d.ts +42 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksPayload.js +80 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksReducer.d.ts +12 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksReducer.js +28 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksSelector.d.ts +7 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksSelector.js +35 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksState.d.ts +49 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksState.js +10 -0
- package/lib/entity/notification/notificationPayload.d.ts +46 -0
- package/lib/entity/notification/notificationPayload.js +144 -0
- package/lib/entity/notification/notificationReducer.d.ts +20 -0
- package/lib/entity/notification/notificationReducer.js +117 -0
- package/lib/entity/notification/notificationSelector.d.ts +9 -0
- package/lib/entity/notification/notificationSelector.js +40 -0
- package/lib/entity/notification/notificationState.d.ts +7 -0
- package/lib/entity/notification/notificationState.js +2 -0
- package/lib/entity/notification/types/notificationSelectorTypes.d.ts +9 -0
- package/lib/entity/notification/types/notificationSelectorTypes.js +2 -0
- package/lib/entity/notification/types/notificationStateTypes.d.ts +50 -0
- package/lib/entity/notification/types/notificationStateTypes.js +2 -0
- package/lib/entity/notification/types/notificationTypes.d.ts +20 -0
- package/lib/entity/notification/types/notificationTypes.js +49 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerPayload.d.ts +36 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerPayload.js +27 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerReducer.d.ts +8 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerReducer.js +29 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerSelector.d.ts +3 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerSelector.js +16 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerState.d.ts +37 -0
- package/lib/entity/onboardingCustomer/onboardingCustomerState.js +2 -0
- package/lib/entity/paymentAccount/paymentAccountPayload.d.ts +52 -0
- package/lib/entity/paymentAccount/paymentAccountPayload.js +57 -0
- package/lib/entity/paymentAccount/paymentAccountReducer.d.ts +6 -0
- package/lib/entity/paymentAccount/paymentAccountReducer.js +38 -0
- package/lib/entity/paymentAccount/paymentAccountSelector.d.ts +7 -0
- package/lib/entity/paymentAccount/paymentAccountSelector.js +39 -0
- package/lib/entity/paymentAccount/paymentAccountState.d.ts +47 -0
- package/lib/entity/paymentAccount/paymentAccountState.js +9 -0
- package/lib/entity/paymentInstrument/paymentInstrument.d.ts +22 -0
- package/lib/entity/paymentInstrument/paymentInstrument.js +2 -0
- package/lib/entity/paymentInstrument/paymentInstrumentPayload.d.ts +19 -0
- package/lib/entity/paymentInstrument/paymentInstrumentPayload.js +21 -0
- package/lib/entity/paymentInstrument/paymentInstrumentReducer.d.ts +6 -0
- package/lib/entity/paymentInstrument/paymentInstrumentReducer.js +34 -0
- package/lib/entity/paymentInstrument/paymentInstrumentSelector.d.ts +4 -0
- package/lib/entity/paymentInstrument/paymentInstrumentSelector.js +17 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummaryPayload.d.ts +44 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummaryPayload.js +2 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummaryReducer.d.ts +6 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummaryReducer.js +76 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummarySelector.d.ts +3 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummarySelector.js +17 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummaryState.d.ts +25 -0
- package/lib/entity/portfolio/accountingSummary/accountingSummaryState.js +2 -0
- package/lib/entity/project/projectPayload.d.ts +20 -0
- package/lib/entity/project/projectPayload.js +44 -0
- package/lib/entity/project/projectReducer.d.ts +10 -0
- package/lib/entity/project/projectReducer.js +31 -0
- package/lib/entity/project/projectSelector.d.ts +5 -0
- package/lib/entity/project/projectSelector.js +12 -0
- package/lib/entity/project/projectState.d.ts +15 -0
- package/lib/entity/project/projectState.js +2 -0
- package/lib/entity/reimbursement/reimbursementPayload.d.ts +95 -0
- package/lib/entity/reimbursement/reimbursementPayload.js +207 -0
- package/lib/entity/reimbursement/reimbursementReducer.d.ts +7 -0
- package/lib/entity/reimbursement/reimbursementReducer.js +72 -0
- package/lib/entity/reimbursement/reimbursementState.d.ts +93 -0
- package/lib/entity/reimbursement/reimbursementState.js +2 -0
- package/lib/entity/sectionAccountsView/getNestedAccountIDHierarchyForSection.d.ts +8 -0
- package/lib/entity/sectionAccountsView/getNestedAccountIDHierarchyForSection.js +62 -0
- package/lib/entity/sectionAccountsView/sectionAccountsView.d.ts +14 -0
- package/lib/entity/sectionAccountsView/sectionAccountsView.js +6 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewEpic.d.ts +7 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewEpic.js +56 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewHelper.d.ts +11 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewHelper.js +15 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewReducer.d.ts +25 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewReducer.js +101 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewSelector.d.ts +36 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewSelector.js +85 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewState.d.ts +4 -0
- package/lib/entity/sectionAccountsView/sectionAccountsViewState.js +2 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesView.d.ts +12 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesView.js +6 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewEpic.d.ts +7 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewEpic.js +55 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewHelper.d.ts +10 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewHelper.js +14 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewReducer.d.ts +17 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewReducer.js +55 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewSelector.d.ts +11 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewSelector.js +54 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewSelectorTypes.d.ts +17 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewSelectorTypes.js +2 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewState.d.ts +4 -0
- package/lib/entity/sectionClassesViewV2/sectionClassesViewState.js +2 -0
- package/lib/entity/sectionClassesViewV2/selectorHelpers/getNestedClassIDHierarchyForSection.d.ts +8 -0
- package/lib/entity/sectionClassesViewV2/selectorHelpers/getNestedClassIDHierarchyForSection.js +59 -0
- package/lib/entity/sectionProjectView/sectionProjectView.d.ts +13 -0
- package/lib/entity/sectionProjectView/sectionProjectView.js +6 -0
- package/lib/entity/sectionProjectView/sectionProjectViewEpic.d.ts +6 -0
- package/lib/entity/sectionProjectView/sectionProjectViewEpic.js +56 -0
- package/lib/entity/sectionProjectView/sectionProjectViewHelper.d.ts +11 -0
- package/lib/entity/sectionProjectView/sectionProjectViewHelper.js +15 -0
- package/lib/entity/sectionProjectView/sectionProjectViewReducer.d.ts +15 -0
- package/lib/entity/sectionProjectView/sectionProjectViewReducer.js +64 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelector.d.ts +11 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelector.js +57 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelectorTypes.d.ts +16 -0
- package/lib/entity/sectionProjectView/sectionProjectViewSelectorTypes.js +2 -0
- package/lib/entity/sectionProjectView/sectionProjectViewState.d.ts +4 -0
- package/lib/entity/sectionProjectView/sectionProjectViewState.js +2 -0
- package/lib/entity/snackbar/snackbarReducer.d.ts +15 -0
- package/lib/entity/snackbar/snackbarReducer.js +39 -0
- package/lib/entity/snackbar/snackbarSelector.d.ts +16 -0
- package/lib/entity/snackbar/snackbarSelector.js +12 -0
- package/lib/entity/snackbar/snackbarState.d.ts +20 -0
- package/lib/entity/snackbar/snackbarState.js +2 -0
- package/lib/entity/snackbar/snackbarTypes.d.ts +5 -0
- package/lib/entity/snackbar/snackbarTypes.js +235 -0
- package/lib/entity/subscription/subscription/subscriptionPayload.d.ts +37 -0
- package/lib/entity/subscription/subscription/subscriptionPayload.js +2 -0
- package/lib/entity/subscription/subscription/subscriptionReducer.d.ts +9 -0
- package/lib/entity/subscription/subscription/subscriptionReducer.js +80 -0
- package/lib/entity/subscription/subscription/subscriptionSelector.d.ts +9 -0
- package/lib/entity/subscription/subscription/subscriptionSelector.js +26 -0
- package/lib/entity/subscription/subscription/subscriptionState.d.ts +38 -0
- package/lib/entity/subscription/subscription/subscriptionState.js +2 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnPayload.d.ts +29 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnPayload.js +2 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnReducer.d.ts +9 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnReducer.js +62 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnSelector.d.ts +8 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnSelector.js +25 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnState.d.ts +29 -0
- package/lib/entity/subscription/subscriptionAddOn/subscriptionAddOnState.js +2 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponPayload.d.ts +22 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponPayload.js +2 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponReducer.d.ts +9 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponReducer.js +56 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponSelector.d.ts +8 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponSelector.js +25 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponState.d.ts +23 -0
- package/lib/entity/subscription/subscriptionCoupon/subscriptionCouponState.js +2 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanPayload.d.ts +27 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanPayload.js +2 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanReducer.d.ts +9 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanReducer.js +66 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanSelector.d.ts +9 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanSelector.js +26 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanState.d.ts +30 -0
- package/lib/entity/subscription/subscriptionPlan/subscriptionPlanState.js +2 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummaryPayload.d.ts +30 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummaryPayload.js +2 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummaryReducer.d.ts +13 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummaryReducer.js +74 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummarySelector.d.ts +9 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummarySelector.js +38 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummaryState.d.ts +32 -0
- package/lib/entity/subscription/subscriptionSummary/subscriptionSummaryState.js +2 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountPayload.d.ts +17 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountPayload.js +22 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountReducer.d.ts +6 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountReducer.js +28 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountSelector.d.ts +4 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountSelector.js +17 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountState.d.ts +15 -0
- package/lib/entity/subscriptionPaymentAccount/subscriptionPaymentAccountState.js +2 -0
- package/lib/entity/tag/tagPayload.d.ts +9 -0
- package/lib/entity/tag/tagPayload.js +12 -0
- package/lib/entity/tag/tagReducer.d.ts +9 -0
- package/lib/entity/tag/tagReducer.js +49 -0
- package/lib/entity/tag/tagSelector.d.ts +4 -0
- package/lib/entity/tag/tagSelector.js +17 -0
- package/lib/entity/tag/tagState.d.ts +12 -0
- package/lib/entity/tag/tagState.js +2 -0
- package/lib/entity/task/taskPayload.d.ts +38 -0
- package/lib/entity/task/taskPayload.js +59 -0
- package/lib/entity/task/taskReducer.d.ts +6 -0
- package/lib/entity/task/taskReducer.js +33 -0
- package/lib/entity/task/taskSelector.d.ts +4 -0
- package/lib/entity/task/taskSelector.js +17 -0
- package/lib/entity/task/taskState.d.ts +62 -0
- package/lib/entity/task/taskState.js +32 -0
- package/lib/entity/taskGroup/taskGroupPayload.d.ts +9 -0
- package/lib/entity/taskGroup/taskGroupPayload.js +13 -0
- package/lib/entity/taskGroup/taskGroupReducer.d.ts +6 -0
- package/lib/entity/taskGroup/taskGroupReducer.js +33 -0
- package/lib/entity/taskGroup/taskGroupSelector.d.ts +4 -0
- package/lib/entity/taskGroup/taskGroupSelector.js +17 -0
- package/lib/entity/taskGroup/taskGroupState.d.ts +12 -0
- package/lib/entity/taskGroup/taskGroupState.js +2 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplatePayload.d.ts +9 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplatePayload.js +2 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplateReducer.d.ts +6 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplateReducer.js +32 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplateSelector.d.ts +4 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplateSelector.js +17 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplateState.d.ts +15 -0
- package/lib/entity/taskGroupTemplate/taskGroupTemplateState.js +2 -0
- package/lib/entity/taskSummary/taskSummaryPayload.d.ts +7 -0
- package/lib/entity/taskSummary/taskSummaryPayload.js +2 -0
- package/lib/entity/taskSummary/taskSummaryReducer.d.ts +6 -0
- package/lib/entity/taskSummary/taskSummaryReducer.js +32 -0
- package/lib/entity/taskSummary/taskSummarySelector.d.ts +4 -0
- package/lib/entity/taskSummary/taskSummarySelector.js +17 -0
- package/lib/entity/taskSummary/taskSummaryState.d.ts +8 -0
- package/lib/entity/taskSummary/taskSummaryState.js +2 -0
- package/lib/entity/tenant/SessionManager.d.ts +56 -0
- package/lib/entity/tenant/SessionManager.js +340 -0
- package/lib/entity/tenant/clearAllEpic.d.ts +223 -0
- package/lib/entity/tenant/clearAllEpic.js +454 -0
- package/lib/entity/tenant/epic/deleteConnectionEpic.d.ts +19 -0
- package/lib/entity/tenant/epic/deleteConnectionEpic.js +29 -0
- package/lib/entity/tenant/epic/doMagicLinkSignInEpic.d.ts +35 -0
- package/lib/entity/tenant/epic/doMagicLinkSignInEpic.js +46 -0
- package/lib/entity/tenant/epic/fetchActiveTenantEpic.d.ts +9 -0
- package/lib/entity/tenant/epic/fetchActiveTenantEpic.js +48 -0
- package/lib/entity/tenant/epic/fetchAllTenantsEpic.d.ts +14 -0
- package/lib/entity/tenant/epic/fetchAllTenantsEpic.js +100 -0
- package/lib/entity/tenant/epic/fetchExcludedResourcesEpic.d.ts +18 -0
- package/lib/entity/tenant/epic/fetchExcludedResourcesEpic.js +19 -0
- package/lib/entity/tenant/epic/fetchExternalConnectionsEpic.d.ts +18 -0
- package/lib/entity/tenant/epic/fetchExternalConnectionsEpic.js +19 -0
- package/lib/entity/tenant/epic/fetchSubscriptionSummaryForTenantEpic.d.ts +18 -0
- package/lib/entity/tenant/epic/fetchSubscriptionSummaryForTenantEpic.js +16 -0
- package/lib/entity/tenant/epic/initEmailConnectOAuthEpic.d.ts +21 -0
- package/lib/entity/tenant/epic/initEmailConnectOAuthEpic.js +59 -0
- package/lib/entity/tenant/epic/resendVerifyDeviceOTPEpic.d.ts +16 -0
- package/lib/entity/tenant/epic/resendVerifyDeviceOTPEpic.js +39 -0
- package/lib/entity/tenant/epic/saveAPIKeyConnectionEpic.d.ts +19 -0
- package/lib/entity/tenant/epic/saveAPIKeyConnectionEpic.js +35 -0
- package/lib/entity/tenant/epic/saveConnectorCredentialsEpic.d.ts +21 -0
- package/lib/entity/tenant/epic/saveConnectorCredentialsEpic.js +42 -0
- package/lib/entity/tenant/epic/saveExternalConnectionEpic.d.ts +7 -0
- package/lib/entity/tenant/epic/saveExternalConnectionEpic.js +66 -0
- package/lib/entity/tenant/epic/saveOAuthConnectionEpic.d.ts +19 -0
- package/lib/entity/tenant/epic/saveOAuthConnectionEpic.js +37 -0
- package/lib/entity/tenant/epic/sendEmailMagicLinkToUserEpic.d.ts +7 -0
- package/lib/entity/tenant/epic/sendEmailMagicLinkToUserEpic.js +64 -0
- package/lib/entity/tenant/epic/sessionHeartbeatEpic.d.ts +16 -0
- package/lib/entity/tenant/epic/sessionHeartbeatEpic.js +25 -0
- package/lib/entity/tenant/epic/signInUserEpic.d.ts +22 -0
- package/lib/entity/tenant/epic/signInUserEpic.js +37 -0
- package/lib/entity/tenant/epic/signOutUserEpic.d.ts +12 -0
- package/lib/entity/tenant/epic/signOutUserEpic.js +21 -0
- package/lib/entity/tenant/epic/verifyDeviceWithTwoFAEpic.d.ts +28 -0
- package/lib/entity/tenant/epic/verifyDeviceWithTwoFAEpic.js +42 -0
- package/lib/entity/tenant/sessionTypes.d.ts +26 -0
- package/lib/entity/tenant/sessionTypes.js +12 -0
- package/lib/entity/tenant/tenantPayload.d.ts +193 -0
- package/lib/entity/tenant/tenantPayload.js +2 -0
- package/lib/entity/tenant/tenantReducer.d.ts +260 -0
- package/lib/entity/tenant/tenantReducer.js +1141 -0
- package/lib/entity/tenant/tenantSelector.d.ts +94 -0
- package/lib/entity/tenant/tenantSelector.js +328 -0
- package/lib/entity/tenant/tenantState.d.ts +167 -0
- package/lib/entity/tenant/tenantState.js +2 -0
- package/lib/entity/toastNotification/epic/pushToastNotificationEpic.d.ts +19 -0
- package/lib/entity/toastNotification/epic/pushToastNotificationEpic.js +42 -0
- package/lib/entity/toastNotification/toastNotificationConstants.d.ts +4 -0
- package/lib/entity/toastNotification/toastNotificationConstants.js +7 -0
- package/lib/entity/toastNotification/toastNotificationPayload.d.ts +16 -0
- package/lib/entity/toastNotification/toastNotificationPayload.js +45 -0
- package/lib/entity/toastNotification/toastNotificationReducer.d.ts +6 -0
- package/lib/entity/toastNotification/toastNotificationReducer.js +41 -0
- package/lib/entity/toastNotification/toastNotificationSelector.d.ts +4 -0
- package/lib/entity/toastNotification/toastNotificationSelector.js +11 -0
- package/lib/entity/toastNotification/toastNotificationState.d.ts +27 -0
- package/lib/entity/toastNotification/toastNotificationState.js +78 -0
- package/lib/entity/transaction/payloadTypes/attachmentPayload.d.ts +15 -0
- package/lib/entity/transaction/payloadTypes/attachmentPayload.js +29 -0
- package/lib/entity/transaction/payloadTypes/customerTransactionPayload.d.ts +13 -0
- package/lib/entity/transaction/payloadTypes/customerTransactionPayload.js +35 -0
- package/lib/entity/transaction/payloadTypes/otherTransactionPayload.d.ts +13 -0
- package/lib/entity/transaction/payloadTypes/otherTransactionPayload.js +56 -0
- package/lib/entity/transaction/payloadTypes/reconciliationTransactionPayloads.d.ts +35 -0
- package/lib/entity/transaction/payloadTypes/reconciliationTransactionPayloads.js +83 -0
- package/lib/entity/transaction/payloadTypes/scheduleTransactionPayload.d.ts +16 -0
- package/lib/entity/transaction/payloadTypes/scheduleTransactionPayload.js +38 -0
- package/lib/entity/transaction/payloadTypes/transactionIDPayload.d.ts +7 -0
- package/lib/entity/transaction/payloadTypes/transactionIDPayload.js +14 -0
- package/lib/entity/transaction/payloadTypes/transactionLinePayload.d.ts +100 -0
- package/lib/entity/transaction/payloadTypes/transactionLinePayload.js +220 -0
- package/lib/entity/transaction/payloadTypes/transactionPayload.d.ts +84 -0
- package/lib/entity/transaction/payloadTypes/transactionPayload.js +447 -0
- package/lib/entity/transaction/payloadTypes/vendorTransactionPayload.d.ts +23 -0
- package/lib/entity/transaction/payloadTypes/vendorTransactionPayload.js +67 -0
- package/lib/entity/transaction/stateTypes/attachment.d.ts +26 -0
- package/lib/entity/transaction/stateTypes/attachment.js +44 -0
- package/lib/entity/transaction/stateTypes/customerTransaction.d.ts +17 -0
- package/lib/entity/transaction/stateTypes/customerTransaction.js +6 -0
- package/lib/entity/transaction/stateTypes/otherTransaction.d.ts +11 -0
- package/lib/entity/transaction/stateTypes/otherTransaction.js +8 -0
- package/lib/entity/transaction/stateTypes/paymentType.d.ts +4 -0
- package/lib/entity/transaction/stateTypes/paymentType.js +9 -0
- package/lib/entity/transaction/stateTypes/reconciliationTransaction.d.ts +32 -0
- package/lib/entity/transaction/stateTypes/reconciliationTransaction.js +10 -0
- package/lib/entity/transaction/stateTypes/scheduleTransaction.d.ts +13 -0
- package/lib/entity/transaction/stateTypes/scheduleTransaction.js +2 -0
- package/lib/entity/transaction/stateTypes/transaction.d.ts +67 -0
- package/lib/entity/transaction/stateTypes/transaction.js +2 -0
- package/lib/entity/transaction/stateTypes/transactionLine.d.ts +79 -0
- package/lib/entity/transaction/stateTypes/transactionLine.js +31 -0
- package/lib/entity/transaction/stateTypes/transactionType.d.ts +23 -0
- package/lib/entity/transaction/stateTypes/transactionType.js +72 -0
- package/lib/entity/transaction/stateTypes/vendorTransaction.d.ts +25 -0
- package/lib/entity/transaction/stateTypes/vendorTransaction.js +10 -0
- package/lib/entity/transaction/toSupportedTransaction.d.ts +3 -0
- package/lib/entity/transaction/toSupportedTransaction.js +27 -0
- package/lib/entity/transaction/transactionHelper.d.ts +6 -0
- package/lib/entity/transaction/transactionHelper.js +164 -0
- package/lib/entity/transaction/transactionReducer.d.ts +49 -0
- package/lib/entity/transaction/transactionReducer.js +187 -0
- package/lib/entity/transaction/transactionSelector.d.ts +9 -0
- package/lib/entity/transaction/transactionSelector.js +29 -0
- package/lib/entity/transaction/transactionState.d.ts +20 -0
- package/lib/entity/transaction/transactionState.js +2 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogPayload.d.ts +36 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogPayload.js +59 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogReducer.d.ts +6 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogReducer.js +27 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogSelector.d.ts +4 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogSelector.js +17 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogState.d.ts +40 -0
- package/lib/entity/transactionActivityLog/transactionActivityLogState.js +20 -0
- package/lib/entity/user/userPayload.d.ts +30 -0
- package/lib/entity/user/userPayload.js +2 -0
- package/lib/entity/user/userReducer.d.ts +14 -0
- package/lib/entity/user/userReducer.js +86 -0
- package/lib/entity/user/userSelector.d.ts +8 -0
- package/lib/entity/user/userSelector.js +47 -0
- package/lib/entity/user/userState.d.ts +38 -0
- package/lib/entity/user/userState.js +2 -0
- package/lib/entity/userGroups/userGroupsPayload.d.ts +7 -0
- package/lib/entity/userGroups/userGroupsPayload.js +10 -0
- package/lib/entity/userGroups/userGroupsReducer.d.ts +8 -0
- package/lib/entity/userGroups/userGroupsReducer.js +29 -0
- package/lib/entity/userGroups/userGroupsSelector.d.ts +4 -0
- package/lib/entity/userGroups/userGroupsSelector.js +12 -0
- package/lib/entity/userGroups/userGroupsState.d.ts +9 -0
- package/lib/entity/userGroups/userGroupsState.js +2 -0
- package/lib/entity/userRole/userRolePayload.d.ts +86 -0
- package/lib/entity/userRole/userRolePayload.js +107 -0
- package/lib/entity/userRole/userRoleReducer.d.ts +10 -0
- package/lib/entity/userRole/userRoleReducer.js +104 -0
- package/lib/entity/userRole/userRoleSelector.d.ts +4 -0
- package/lib/entity/userRole/userRoleSelector.js +13 -0
- package/lib/entity/userRole/userRoleState.d.ts +50 -0
- package/lib/entity/userRole/userRoleState.js +6 -0
- package/lib/entity/userRole/userRoleType.d.ts +46 -0
- package/lib/entity/userRole/userRoleType.js +534 -0
- package/lib/entity/vendor/__mocks__/vendorMock.d.ts +7 -0
- package/lib/entity/vendor/__mocks__/vendorMock.js +311 -0
- package/lib/entity/vendor/__mocks__/vendorStateMocks.d.ts +8 -0
- package/lib/entity/vendor/__mocks__/vendorStateMocks.js +415 -0
- package/lib/entity/vendor/vendorPayload.d.ts +98 -0
- package/lib/entity/vendor/vendorPayload.js +123 -0
- package/lib/entity/vendor/vendorReducer.d.ts +13 -0
- package/lib/entity/vendor/vendorReducer.js +73 -0
- package/lib/entity/vendor/vendorSelector.d.ts +5 -0
- package/lib/entity/vendor/vendorSelector.js +27 -0
- package/lib/entity/vendor/vendorState.d.ts +83 -0
- package/lib/entity/vendor/vendorState.js +10 -0
- package/lib/entity/vendor/vendorType.d.ts +9 -0
- package/lib/entity/vendor/vendorType.js +10 -0
- package/lib/entity/vendorExpense/vendorExpenseReducer.d.ts +14 -0
- package/lib/entity/vendorExpense/vendorExpenseReducer.js +77 -0
- package/lib/entity/vendorExpense/vendorExpenseSelector.d.ts +10 -0
- package/lib/entity/vendorExpense/vendorExpenseSelector.js +37 -0
- package/lib/entity/vendorExpense/vendorExpenseState.d.ts +26 -0
- package/lib/entity/vendorExpense/vendorExpenseState.js +6 -0
- package/lib/entity/vendorExpense/vendorExpenseTrend.d.ts +37 -0
- package/lib/entity/vendorExpense/vendorExpenseTrend.js +139 -0
- package/lib/epic.d.ts +611 -0
- package/lib/epic.js +626 -0
- package/lib/epicManager.d.ts +24 -0
- package/lib/epicManager.js +23 -0
- package/lib/esm/__testHelpers__/apiFailure.json +6 -0
- package/lib/esm/common/aiCfo/aiCfoSuggestedQuestionsPageContext.js +1 -0
- package/lib/esm/commonPayloadTypes/agingReportPayloadTypes.js +24 -0
- package/lib/esm/commonPayloadTypes/balanceChangePayload.js +20 -0
- package/lib/esm/commonPayloadTypes/classesView/reportByClassPayloadV2.js +9 -0
- package/lib/esm/commonPayloadTypes/coaBalanceByAdditionalPeriodPayload.js +10 -0
- package/lib/esm/commonPayloadTypes/coaBalancePayload.js +57 -0
- package/lib/esm/commonPayloadTypes/commonPayload.js +17 -0
- package/lib/esm/commonPayloadTypes/recommendationPayload.js +44 -0
- package/lib/esm/commonPayloadTypes/sortOrderPayload.js +6 -0
- package/lib/esm/commonPayloadTypes/statusPayload.js +13 -0
- package/lib/esm/commonPayloadTypes/subAccountView/reportBySubAccountPayload.js +1 -0
- package/lib/esm/commonPayloadTypes/subAccountView/subAccountPayloadHelper.js +24 -0
- package/lib/esm/commonPayloadTypes/urlPayload.js +4 -0
- package/lib/esm/commonPayloadTypes/v2/coaBalancePayload.js +96 -0
- package/lib/esm/commonPayloadTypes/v2/viewAndReportPayloadv2.js +25 -0
- package/lib/esm/commonPayloadTypes/vendorRecommendationPayload.js +1 -0
- package/lib/esm/commonPayloadTypes/viewAndReportPayload.js +22 -0
- package/lib/esm/commonStateTypes/accountView/getNestedAccountIDHierarchyForReport.js +108 -0
- package/lib/esm/commonStateTypes/accountView/nestedAccountID.js +12 -0
- package/lib/esm/commonStateTypes/agingBalance/agingBalance.js +11 -0
- package/lib/esm/commonStateTypes/allowedValue.js +6 -0
- package/lib/esm/commonStateTypes/amount.js +14 -0
- package/lib/esm/commonStateTypes/animations.js +62 -0
- package/lib/esm/commonStateTypes/balance.js +1 -0
- package/lib/esm/commonStateTypes/balanceTimeseries.js +1 -0
- package/lib/esm/commonStateTypes/bookCloseDateHelper.js +43 -0
- package/lib/esm/commonStateTypes/cacheOverrideFetchReducer.js +16 -0
- package/lib/esm/commonStateTypes/classesView/getNestedClassIDHierarchyForReport.js +106 -0
- package/lib/esm/commonStateTypes/classesView/nestedClassID.js +4 -0
- package/lib/esm/commonStateTypes/coaBalance/additionalBalances/getAdditionalBalances.js +128 -0
- package/lib/esm/commonStateTypes/coaBalance/additionalBalances/getComparisionBalance.js +148 -0
- package/lib/esm/commonStateTypes/coaBalance/additionalBalances/getSamePeriodLastYearBalance.js +62 -0
- package/lib/esm/commonStateTypes/coaBalance/additionalBalances/getSummationBalance.js +413 -0
- package/lib/esm/commonStateTypes/coaBalance/additionalBalances/sliceCOABalances.js +46 -0
- package/lib/esm/commonStateTypes/coaBalance/classBalances/getDifferenceOfBalancesGroupedByPeriod.js +57 -0
- package/lib/esm/commonStateTypes/coaBalance/classBalances/getSumOfBalancesGroupedByPeriod.js +78 -0
- package/lib/esm/commonStateTypes/coaBalance/coaBalance.js +120 -0
- package/lib/esm/commonStateTypes/coaBalance/coaBalanceByAdditionalPeriod.js +1 -0
- package/lib/esm/commonStateTypes/coaBalance/coaBalanceType.js +34 -0
- package/lib/esm/commonStateTypes/coaBalance/coaBalancesFilter.js +59 -0
- package/lib/esm/commonStateTypes/coaBalance/coaBalancesFilterClassesView.js +5 -0
- package/lib/esm/commonStateTypes/coaBalance/coaBalancesFilterProjectView.js +5 -0
- package/lib/esm/commonStateTypes/coaBalance/pickAndMergeForecast.js +58 -0
- package/lib/esm/commonStateTypes/coaBalance/sortBalancesByFreeRangeTotal.js +38 -0
- package/lib/esm/commonStateTypes/coaBalance/sortBalancesByTotalAmounts.js +40 -0
- package/lib/esm/commonStateTypes/common.js +4 -0
- package/lib/esm/commonStateTypes/currencyHelper.js +8 -0
- package/lib/esm/commonStateTypes/customerView/getNestedCustomerHierarchy.js +42 -0
- package/lib/esm/commonStateTypes/customerView/nestedCustomerID.js +1 -0
- package/lib/esm/commonStateTypes/dataAvailable.js +48 -0
- package/lib/esm/commonStateTypes/fileType.js +3 -0
- package/lib/esm/commonStateTypes/filterPrimitives.js +20 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/addSubtractPeriod.js +27 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/formatMinutesToFromHHMM.js +21 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/formatZeniDateFY.js +45 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/getActualPeriod.js +33 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/getFYMonths.js +24 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/getFYQuarterAndYear.js +55 -0
- package/lib/esm/commonStateTypes/fiscalYearHelpers/getStartOfAndEndOfTimeframeFY.js +88 -0
- package/lib/esm/commonStateTypes/numberToUnion.js +34 -0
- package/lib/esm/commonStateTypes/projectView/projectViewParentID.js +1 -0
- package/lib/esm/commonStateTypes/pusherActions.js +3 -0
- package/lib/esm/commonStateTypes/recommendationBase.js +54 -0
- package/lib/esm/commonStateTypes/reduceFetchState.js +181 -0
- package/lib/esm/commonStateTypes/reimbursementTypeCode.js +1 -0
- package/lib/esm/commonStateTypes/selectorTypes/accountsViewSelectorReport.js +1 -0
- package/lib/esm/commonStateTypes/selectorTypes/classesViewSelectorReport.js +1 -0
- package/lib/esm/commonStateTypes/selectorTypes/pickAndMergeForecastCalculatedSection.js +5 -0
- package/lib/esm/commonStateTypes/selectorTypes/pickAndMergeForecastSection.js +1 -0
- package/lib/esm/commonStateTypes/selectorTypes/selectorTypes.js +1 -0
- package/lib/esm/commonStateTypes/selectorTypes/sortOrderTypes.js +3 -0
- package/lib/esm/commonStateTypes/status.js +1 -0
- package/lib/esm/commonStateTypes/stringToUnion.js +33 -0
- package/lib/esm/commonStateTypes/systemInfo.js +239 -0
- package/lib/esm/commonStateTypes/timePeriod.js +82 -0
- package/lib/esm/commonStateTypes/timeframeTick.js +16 -0
- package/lib/esm/commonStateTypes/v2/viewAndReport.js +4 -0
- package/lib/esm/commonStateTypes/vendorRecommendation.js +1 -0
- package/lib/esm/commonStateTypes/viewAndReport/agingReportStateTypes.js +11 -0
- package/lib/esm/commonStateTypes/viewAndReport/reportIDHelper.js +35 -0
- package/lib/esm/commonStateTypes/viewAndReport/reportUIState.js +1 -0
- package/lib/esm/commonStateTypes/viewAndReport/thisPeriodHelpers.js +102 -0
- package/lib/esm/commonStateTypes/viewAndReport/viewAndReport.js +68 -0
- package/lib/esm/commonStateTypes/workingDayHelper.js +111 -0
- package/lib/esm/configureStore.js +77 -0
- package/lib/esm/coreEpics.js +63 -0
- package/lib/esm/entity/account/accountPayload.js +99 -0
- package/lib/esm/entity/account/accountReducer.js +173 -0
- package/lib/esm/entity/account/accountSelector.js +237 -0
- package/lib/esm/entity/account/accountState.js +71 -0
- package/lib/esm/entity/account/pickAndMergeForecastAccountReport.js +99 -0
- package/lib/esm/entity/account/subAccountSelector.js +58 -0
- package/lib/esm/entity/accountGroup/accountGroupPayload.js +1 -0
- package/lib/esm/entity/accountGroup/accountGroupReducer.js +130 -0
- package/lib/esm/entity/accountGroup/accountGroupSelector.js +154 -0
- package/lib/esm/entity/accountGroup/accountGroupState.js +21 -0
- package/lib/esm/entity/accountGroup/accountGroupV2Selector.js +76 -0
- package/lib/esm/entity/accountGroup/pickAndMergeForecastAcGroupReport.js +77 -0
- package/lib/esm/entity/accountRecon/accountReconPayload.js +164 -0
- package/lib/esm/entity/accountRecon/accountReconReducer.js +137 -0
- package/lib/esm/entity/accountRecon/accountReconSelector.js +55 -0
- package/lib/esm/entity/accountRecon/accountReconState.js +48 -0
- package/lib/esm/entity/address/addressPayload.js +1 -0
- package/lib/esm/entity/address/addressReducer.js +55 -0
- package/lib/esm/entity/address/addressSelector.js +10 -0
- package/lib/esm/entity/address/addressState.js +1 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerPayload.js +62 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerReducer.js +46 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerSelector.js +62 -0
- package/lib/esm/entity/aiAccountantCustomer/aiAccountantCustomerState.js +45 -0
- package/lib/esm/entity/aiCfo/aiCfoPayload.js +1 -0
- package/lib/esm/entity/aiCfo/aiCfoReducer.js +734 -0
- package/lib/esm/entity/aiCfo/aiCfoSelector.js +52 -0
- package/lib/esm/entity/aiCfo/aiCfoState.js +77 -0
- package/lib/esm/entity/approvalRule/approvalRuleConflict.js +74 -0
- package/lib/esm/entity/approvalRule/approvalRulePayload.js +181 -0
- package/lib/esm/entity/approvalRule/approvalRuleReducer.js +24 -0
- package/lib/esm/entity/approvalRule/approvalRuleSelector.js +44 -0
- package/lib/esm/entity/approvalRule/approvalRuleState.js +26 -0
- package/lib/esm/entity/bankAccount/bankAccount.js +1 -0
- package/lib/esm/entity/bankAccount/bankAccountPayload.js +22 -0
- package/lib/esm/entity/bankAccount/bankAccountReducer.js +26 -0
- package/lib/esm/entity/bankAccount/bankAccountSelector.js +8 -0
- package/lib/esm/entity/billPay/billTransaction/billTransactionPayload.js +174 -0
- package/lib/esm/entity/billPay/billTransaction/billTransactionReducer.js +64 -0
- package/lib/esm/entity/billPay/billTransaction/billTransactionState.js +104 -0
- package/lib/esm/entity/billPay/contact/contact.js +1 -0
- package/lib/esm/entity/billPay/contact/contactPayload.js +17 -0
- package/lib/esm/entity/billPay/contact/contactReducer.js +25 -0
- package/lib/esm/entity/billPay/contact/contactSelector.js +10 -0
- package/lib/esm/entity/billPay/recurringBills/recurringBillsPayload.js +52 -0
- package/lib/esm/entity/billPay/recurringBills/recurringBillsReducer.js +35 -0
- package/lib/esm/entity/billPay/recurringBills/recurringBillsState.js +9 -0
- package/lib/esm/entity/cardPayment/cardPaymentPayload.js +11 -0
- package/lib/esm/entity/cardPayment/cardPaymentReducer.js +43 -0
- package/lib/esm/entity/cardPayment/cardPaymentSelector.js +9 -0
- package/lib/esm/entity/cardPayment/cardPaymentState.js +1 -0
- package/lib/esm/entity/cardPolicy/cardPolicyPayload.js +130 -0
- package/lib/esm/entity/cardPolicy/cardPolicyReducer.js +171 -0
- package/lib/esm/entity/cardPolicy/cardPolicySelector.js +75 -0
- package/lib/esm/entity/cardPolicy/cardPolicyState.js +9 -0
- package/lib/esm/entity/cardPolicy/extractPolicyDocumentEpic.js +64 -0
- package/lib/esm/entity/cardPolicy/fetchCardPolicyVendorOptionsEpic.js +43 -0
- package/lib/esm/entity/cardPolicy/policyDocumentExtractionToRecommendationBridgeEpic.js +35 -0
- package/lib/esm/entity/cardPolicy/policyRecommendationFromUploadEpic.js +101 -0
- package/lib/esm/entity/chargeCard/chargeCard.js +60 -0
- package/lib/esm/entity/chargeCard/chargeCardPayload.js +95 -0
- package/lib/esm/entity/chargeCard/chargeCardReducer.js +80 -0
- package/lib/esm/entity/chargeCard/chargeCardSelector.js +13 -0
- package/lib/esm/entity/chargeCardRepayment/chargeCardRepayment.js +12 -0
- package/lib/esm/entity/chargeCardRepayment/chargeCardRepaymentPayload.js +30 -0
- package/lib/esm/entity/chargeCardRepayment/chargeCardRepaymentReducer.js +37 -0
- package/lib/esm/entity/chargeCardRepayment/chargeCardRepaymentSelector.js +10 -0
- package/lib/esm/entity/chargeCardTransaction/chargeCardTransaction.js +15 -0
- package/lib/esm/entity/chargeCardTransaction/chargeCardTransactionPayload.js +64 -0
- package/lib/esm/entity/chargeCardTransaction/chargeCardTransactionReducer.js +89 -0
- package/lib/esm/entity/chargeCardTransaction/chargeCardTransactionSelector.js +10 -0
- package/lib/esm/entity/class/classPayload.js +100 -0
- package/lib/esm/entity/class/classReducer.js +86 -0
- package/lib/esm/entity/class/classSelector.js +100 -0
- package/lib/esm/entity/class/classSelectorTypes.js +1 -0
- package/lib/esm/entity/class/classSelectorV2.js +131 -0
- package/lib/esm/entity/class/classState.js +11 -0
- package/lib/esm/entity/company/cardsVisibilityHelpers.js +9 -0
- package/lib/esm/entity/company/companyHelper.js +33 -0
- package/lib/esm/entity/company/companyPayload.js +447 -0
- package/lib/esm/entity/company/companyReducer.js +197 -0
- package/lib/esm/entity/company/companySelector.js +92 -0
- package/lib/esm/entity/company/companyState.js +1 -0
- package/lib/esm/entity/company/companyStateTypes.js +26 -0
- package/lib/esm/entity/companyHealthMetric/companyHealthMetricPayload.js +86 -0
- package/lib/esm/entity/companyHealthMetric/companyHealthMetricReducer.js +29 -0
- package/lib/esm/entity/companyHealthMetric/companyHealthMetricSelector.js +10 -0
- package/lib/esm/entity/companyHealthMetric/companyHealthMetricState.js +1 -0
- package/lib/esm/entity/connectedAccount/connectedAccount.js +5 -0
- package/lib/esm/entity/connectedAccount/connectedAccountPayload.js +11 -0
- package/lib/esm/entity/connectedAccount/connectedAccountReducer.js +23 -0
- package/lib/esm/entity/connectedAccount/connectedAccountSelector.js +10 -0
- package/lib/esm/entity/countryList/countryListReducer.js +28 -0
- package/lib/esm/entity/countryList/countryListSelector.js +6 -0
- package/lib/esm/entity/countryList/countryListState.js +1 -0
- package/lib/esm/entity/countryList/payloads/countryListPayload.js +6 -0
- package/lib/esm/entity/countryList/payloads/nationalityCountryListPayload.js +1 -0
- package/lib/esm/entity/creditAgent/creditAgentPayload.js +36 -0
- package/lib/esm/entity/creditAgent/creditAgentReducer.js +33 -0
- package/lib/esm/entity/creditAgent/creditAgentSelector.js +6 -0
- package/lib/esm/entity/creditAgent/creditAgentState.js +13 -0
- package/lib/esm/entity/currency/currency.js +1 -0
- package/lib/esm/entity/currency/currencyPayload.js +9 -0
- package/lib/esm/entity/currency/currencyReducer.js +27 -0
- package/lib/esm/entity/currency/currencySelector.js +14 -0
- package/lib/esm/entity/customer/customerPayload.js +105 -0
- package/lib/esm/entity/customer/customerReducer.js +40 -0
- package/lib/esm/entity/customer/customerSelector.js +3 -0
- package/lib/esm/entity/customer/customerState.js +1 -0
- package/lib/esm/entity/customerIncome/customerIncomeTrend.js +86 -0
- package/lib/esm/entity/customerIncome/customerIncomeTrendReducer.js +50 -0
- package/lib/esm/entity/customerIncome/customerIncomeTrendSelector.js +17 -0
- package/lib/esm/entity/customerIncome/customerIncomeTrendState.js +2 -0
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionPayload.js +1 -0
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionReducer.js +20 -0
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionReducerHelpers.js +34 -0
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionSelector.js +36 -0
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionSelectorReducerTypes.js +1 -0
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionState.js +29 -0
- package/lib/esm/entity/depositAccount/depositAccount.js +12 -0
- package/lib/esm/entity/depositAccount/depositAccountPayload.js +62 -0
- package/lib/esm/entity/depositAccount/depositAccountReducer.js +31 -0
- package/lib/esm/entity/depositAccount/depositAccountSelector.js +18 -0
- package/lib/esm/entity/depositAccountTransaction/depositAccountTransaction.js +34 -0
- package/lib/esm/entity/depositAccountTransaction/depositAccountTransactionPayload.js +26 -0
- package/lib/esm/entity/depositAccountTransaction/depositAccountTransactionReducer.js +25 -0
- package/lib/esm/entity/depositAccountTransaction/depositAccountTransactionSelector.js +10 -0
- package/lib/esm/entity/entityApprovalStatus/entityApprovalStatusPayload.js +66 -0
- package/lib/esm/entity/entityApprovalStatus/entityApprovalStatusReducer.js +23 -0
- package/lib/esm/entity/entityApprovalStatus/entityApprovalStatusSelector.js +9 -0
- package/lib/esm/entity/entityApprovalStatus/entityApprovalStatusState.js +29 -0
- package/lib/esm/entity/file/filePayload.js +1 -0
- package/lib/esm/entity/file/fileReducer.js +97 -0
- package/lib/esm/entity/file/fileSelector.js +27 -0
- package/lib/esm/entity/file/fileState.js +104 -0
- package/lib/esm/entity/forecast/forecastPayload.js +17 -0
- package/lib/esm/entity/forecast/forecastReducer.js +26 -0
- package/lib/esm/entity/forecast/forecastSelector.js +9 -0
- package/lib/esm/entity/forecast/forecastState.js +2 -0
- package/lib/esm/entity/genericEntity/entity.js +5 -0
- package/lib/esm/entity/genericEntity/entityPayload.js +16 -0
- package/lib/esm/entity/genericEntity/entityReducer.js +32 -0
- package/lib/esm/entity/genericEntity/entitySelector.js +5 -0
- package/lib/esm/entity/genericEntity/entityState.js +1 -0
- package/lib/esm/entity/globalMerchant/globalMerchantPayload.js +112 -0
- package/lib/esm/entity/globalMerchant/globalMerchantReducer.js +89 -0
- package/lib/esm/entity/globalMerchant/globalMerchantSelector.js +18 -0
- package/lib/esm/entity/globalMerchant/globalMerchantState.js +3 -0
- package/lib/esm/entity/insights/insightPayload.js +1 -0
- package/lib/esm/entity/insights/insightReducer.js +55 -0
- package/lib/esm/entity/insights/insightSelector.js +5 -0
- package/lib/esm/entity/insights/insightState.js +15 -0
- package/lib/esm/entity/insights/insightSummary.js +1 -0
- package/lib/esm/entity/insights/insightSummaryPayload.js +9 -0
- package/lib/esm/entity/jeSchedules/jeScheduleHelper.js +3 -0
- package/lib/esm/entity/jeSchedules/jeSchedulesPayload.js +334 -0
- package/lib/esm/entity/jeSchedules/jeSchedulesReducer.js +214 -0
- package/lib/esm/entity/jeSchedules/jeSchedulesSelector.js +135 -0
- package/lib/esm/entity/jeSchedules/jeSchedulesState.js +1 -0
- package/lib/esm/entity/jeSchedules/jeSchedulesTypes.js +36 -0
- package/lib/esm/entity/jeSchedules/updateAccruedJESchedulesEpic.js +37 -0
- package/lib/esm/entity/jeSchedules/updateJESchedulesEpic.js +64 -0
- package/lib/esm/entity/merchant/merchant.js +1 -0
- package/lib/esm/entity/merchant/merchantPayload.js +24 -0
- package/lib/esm/entity/merchant/merchantReducer.js +34 -0
- package/lib/esm/entity/merchant/merchantSelector.js +10 -0
- package/lib/esm/entity/monthEndCloseChecks/monthEndCloseChecksPayload.js +76 -0
- package/lib/esm/entity/monthEndCloseChecks/monthEndCloseChecksReducer.js +24 -0
- package/lib/esm/entity/monthEndCloseChecks/monthEndCloseChecksSelector.js +26 -0
- package/lib/esm/entity/monthEndCloseChecks/monthEndCloseChecksState.js +6 -0
- package/lib/esm/entity/notification/notificationPayload.js +140 -0
- package/lib/esm/entity/notification/notificationReducer.js +110 -0
- package/lib/esm/entity/notification/notificationSelector.js +31 -0
- package/lib/esm/entity/notification/notificationState.js +1 -0
- package/lib/esm/entity/notification/types/notificationSelectorTypes.js +1 -0
- package/lib/esm/entity/notification/types/notificationStateTypes.js +1 -0
- package/lib/esm/entity/notification/types/notificationTypes.js +39 -0
- package/lib/esm/entity/onboardingCustomer/onboardingCustomerPayload.js +23 -0
- package/lib/esm/entity/onboardingCustomer/onboardingCustomerReducer.js +25 -0
- package/lib/esm/entity/onboardingCustomer/onboardingCustomerSelector.js +10 -0
- package/lib/esm/entity/onboardingCustomer/onboardingCustomerState.js +1 -0
- package/lib/esm/entity/paymentAccount/paymentAccountPayload.js +53 -0
- package/lib/esm/entity/paymentAccount/paymentAccountReducer.js +34 -0
- package/lib/esm/entity/paymentAccount/paymentAccountSelector.js +29 -0
- package/lib/esm/entity/paymentAccount/paymentAccountState.js +6 -0
- package/lib/esm/entity/paymentInstrument/paymentInstrument.js +1 -0
- package/lib/esm/entity/paymentInstrument/paymentInstrumentPayload.js +17 -0
- package/lib/esm/entity/paymentInstrument/paymentInstrumentReducer.js +30 -0
- package/lib/esm/entity/paymentInstrument/paymentInstrumentSelector.js +10 -0
- package/lib/esm/entity/portfolio/accountingSummary/accountingSummaryPayload.js +1 -0
- package/lib/esm/entity/portfolio/accountingSummary/accountingSummaryReducer.js +72 -0
- package/lib/esm/entity/portfolio/accountingSummary/accountingSummarySelector.js +11 -0
- package/lib/esm/entity/portfolio/accountingSummary/accountingSummaryState.js +1 -0
- package/lib/esm/entity/project/projectPayload.js +38 -0
- package/lib/esm/entity/project/projectReducer.js +27 -0
- package/lib/esm/entity/project/projectSelector.js +8 -0
- package/lib/esm/entity/project/projectState.js +1 -0
- package/lib/esm/entity/reimbursement/reimbursementPayload.js +201 -0
- package/lib/esm/entity/reimbursement/reimbursementReducer.js +65 -0
- package/lib/esm/entity/reimbursement/reimbursementState.js +1 -0
- package/lib/esm/entity/sectionAccountsView/getNestedAccountIDHierarchyForSection.js +59 -0
- package/lib/esm/entity/sectionAccountsView/sectionAccountsView.js +3 -0
- package/lib/esm/entity/sectionAccountsView/sectionAccountsViewEpic.js +52 -0
- package/lib/esm/entity/sectionAccountsView/sectionAccountsViewHelper.js +11 -0
- package/lib/esm/entity/sectionAccountsView/sectionAccountsViewReducer.js +97 -0
- package/lib/esm/entity/sectionAccountsView/sectionAccountsViewSelector.js +75 -0
- package/lib/esm/entity/sectionAccountsView/sectionAccountsViewState.js +1 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesView.js +3 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesViewEpic.js +51 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesViewHelper.js +10 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesViewReducer.js +51 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesViewSelector.js +47 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesViewSelectorTypes.js +1 -0
- package/lib/esm/entity/sectionClassesViewV2/sectionClassesViewState.js +1 -0
- package/lib/esm/entity/sectionClassesViewV2/selectorHelpers/getNestedClassIDHierarchyForSection.js +56 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectView.js +3 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewEpic.js +52 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewHelper.js +11 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewReducer.js +60 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewSelector.js +50 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewSelectorTypes.js +1 -0
- package/lib/esm/entity/sectionProjectView/sectionProjectViewState.js +1 -0
- package/lib/esm/entity/snackbar/snackbarReducer.js +35 -0
- package/lib/esm/entity/snackbar/snackbarSelector.js +9 -0
- package/lib/esm/entity/snackbar/snackbarState.js +1 -0
- package/lib/esm/entity/snackbar/snackbarTypes.js +230 -0
- package/lib/esm/entity/subscription/subscription/subscriptionPayload.js +1 -0
- package/lib/esm/entity/subscription/subscription/subscriptionReducer.js +76 -0
- package/lib/esm/entity/subscription/subscription/subscriptionSelector.js +19 -0
- package/lib/esm/entity/subscription/subscription/subscriptionState.js +1 -0
- package/lib/esm/entity/subscription/subscriptionAddOn/subscriptionAddOnPayload.js +1 -0
- package/lib/esm/entity/subscription/subscriptionAddOn/subscriptionAddOnReducer.js +58 -0
- package/lib/esm/entity/subscription/subscriptionAddOn/subscriptionAddOnSelector.js +19 -0
- package/lib/esm/entity/subscription/subscriptionAddOn/subscriptionAddOnState.js +1 -0
- package/lib/esm/entity/subscription/subscriptionCoupon/subscriptionCouponPayload.js +1 -0
- package/lib/esm/entity/subscription/subscriptionCoupon/subscriptionCouponReducer.js +52 -0
- package/lib/esm/entity/subscription/subscriptionCoupon/subscriptionCouponSelector.js +19 -0
- package/lib/esm/entity/subscription/subscriptionCoupon/subscriptionCouponState.js +1 -0
- package/lib/esm/entity/subscription/subscriptionPlan/subscriptionPlanPayload.js +1 -0
- package/lib/esm/entity/subscription/subscriptionPlan/subscriptionPlanReducer.js +62 -0
- package/lib/esm/entity/subscription/subscriptionPlan/subscriptionPlanSelector.js +19 -0
- package/lib/esm/entity/subscription/subscriptionPlan/subscriptionPlanState.js +1 -0
- package/lib/esm/entity/subscription/subscriptionSummary/subscriptionSummaryPayload.js +1 -0
- package/lib/esm/entity/subscription/subscriptionSummary/subscriptionSummaryReducer.js +69 -0
- package/lib/esm/entity/subscription/subscriptionSummary/subscriptionSummarySelector.js +31 -0
- package/lib/esm/entity/subscription/subscriptionSummary/subscriptionSummaryState.js +1 -0
- package/lib/esm/entity/subscriptionPaymentAccount/subscriptionPaymentAccountPayload.js +18 -0
- package/lib/esm/entity/subscriptionPaymentAccount/subscriptionPaymentAccountReducer.js +24 -0
- package/lib/esm/entity/subscriptionPaymentAccount/subscriptionPaymentAccountSelector.js +10 -0
- package/lib/esm/entity/subscriptionPaymentAccount/subscriptionPaymentAccountState.js +1 -0
- package/lib/esm/entity/tag/tagPayload.js +8 -0
- package/lib/esm/entity/tag/tagReducer.js +42 -0
- package/lib/esm/entity/tag/tagSelector.js +10 -0
- package/lib/esm/entity/tag/tagState.js +1 -0
- package/lib/esm/entity/task/taskPayload.js +55 -0
- package/lib/esm/entity/task/taskReducer.js +29 -0
- package/lib/esm/entity/task/taskSelector.js +10 -0
- package/lib/esm/entity/task/taskState.js +23 -0
- package/lib/esm/entity/taskGroup/taskGroupPayload.js +10 -0
- package/lib/esm/entity/taskGroup/taskGroupReducer.js +29 -0
- package/lib/esm/entity/taskGroup/taskGroupSelector.js +10 -0
- package/lib/esm/entity/taskGroup/taskGroupState.js +1 -0
- package/lib/esm/entity/taskGroupTemplate/taskGroupTemplatePayload.js +1 -0
- package/lib/esm/entity/taskGroupTemplate/taskGroupTemplateReducer.js +28 -0
- package/lib/esm/entity/taskGroupTemplate/taskGroupTemplateSelector.js +10 -0
- package/lib/esm/entity/taskGroupTemplate/taskGroupTemplateState.js +1 -0
- package/lib/esm/entity/taskSummary/taskSummaryPayload.js +1 -0
- package/lib/esm/entity/taskSummary/taskSummaryReducer.js +28 -0
- package/lib/esm/entity/taskSummary/taskSummarySelector.js +10 -0
- package/lib/esm/entity/taskSummary/taskSummaryState.js +1 -0
- package/lib/esm/entity/tenant/SessionManager.js +336 -0
- package/lib/esm/entity/tenant/clearAllEpic.js +450 -0
- package/lib/esm/entity/tenant/epic/deleteConnectionEpic.js +25 -0
- package/lib/esm/entity/tenant/epic/doMagicLinkSignInEpic.js +42 -0
- package/lib/esm/entity/tenant/epic/fetchActiveTenantEpic.js +44 -0
- package/lib/esm/entity/tenant/epic/fetchAllTenantsEpic.js +95 -0
- package/lib/esm/entity/tenant/epic/fetchExcludedResourcesEpic.js +15 -0
- package/lib/esm/entity/tenant/epic/fetchExternalConnectionsEpic.js +15 -0
- package/lib/esm/entity/tenant/epic/fetchSubscriptionSummaryForTenantEpic.js +12 -0
- package/lib/esm/entity/tenant/epic/initEmailConnectOAuthEpic.js +55 -0
- package/lib/esm/entity/tenant/epic/resendVerifyDeviceOTPEpic.js +35 -0
- package/lib/esm/entity/tenant/epic/saveAPIKeyConnectionEpic.js +31 -0
- package/lib/esm/entity/tenant/epic/saveConnectorCredentialsEpic.js +38 -0
- package/lib/esm/entity/tenant/epic/saveExternalConnectionEpic.js +59 -0
- package/lib/esm/entity/tenant/epic/saveOAuthConnectionEpic.js +33 -0
- package/lib/esm/entity/tenant/epic/sendEmailMagicLinkToUserEpic.js +60 -0
- package/lib/esm/entity/tenant/epic/sessionHeartbeatEpic.js +21 -0
- package/lib/esm/entity/tenant/epic/signInUserEpic.js +30 -0
- package/lib/esm/entity/tenant/epic/signOutUserEpic.js +17 -0
- package/lib/esm/entity/tenant/epic/verifyDeviceWithTwoFAEpic.js +38 -0
- package/lib/esm/entity/tenant/sessionTypes.js +9 -0
- package/lib/esm/entity/tenant/tenantPayload.js +1 -0
- package/lib/esm/entity/tenant/tenantReducer.js +1127 -0
- package/lib/esm/entity/tenant/tenantSelector.js +307 -0
- package/lib/esm/entity/tenant/tenantState.js +1 -0
- package/lib/esm/entity/toastNotification/epic/pushToastNotificationEpic.js +38 -0
- package/lib/esm/entity/toastNotification/toastNotificationConstants.js +4 -0
- package/lib/esm/entity/toastNotification/toastNotificationPayload.js +41 -0
- package/lib/esm/entity/toastNotification/toastNotificationReducer.js +37 -0
- package/lib/esm/entity/toastNotification/toastNotificationSelector.js +5 -0
- package/lib/esm/entity/toastNotification/toastNotificationState.js +74 -0
- package/lib/esm/entity/transaction/payloadTypes/attachmentPayload.js +24 -0
- package/lib/esm/entity/transaction/payloadTypes/customerTransactionPayload.js +29 -0
- package/lib/esm/entity/transaction/payloadTypes/otherTransactionPayload.js +50 -0
- package/lib/esm/entity/transaction/payloadTypes/reconciliationTransactionPayloads.js +76 -0
- package/lib/esm/entity/transaction/payloadTypes/scheduleTransactionPayload.js +34 -0
- package/lib/esm/entity/transaction/payloadTypes/transactionIDPayload.js +9 -0
- package/lib/esm/entity/transaction/payloadTypes/transactionLinePayload.js +211 -0
- package/lib/esm/entity/transaction/payloadTypes/transactionPayload.js +437 -0
- package/lib/esm/entity/transaction/payloadTypes/vendorTransactionPayload.js +58 -0
- package/lib/esm/entity/transaction/stateTypes/attachment.js +38 -0
- package/lib/esm/entity/transaction/stateTypes/customerTransaction.js +2 -0
- package/lib/esm/entity/transaction/stateTypes/otherTransaction.js +4 -0
- package/lib/esm/entity/transaction/stateTypes/paymentType.js +5 -0
- package/lib/esm/entity/transaction/stateTypes/reconciliationTransaction.js +5 -0
- package/lib/esm/entity/transaction/stateTypes/scheduleTransaction.js +1 -0
- package/lib/esm/entity/transaction/stateTypes/transaction.js +1 -0
- package/lib/esm/entity/transaction/stateTypes/transactionLine.js +26 -0
- package/lib/esm/entity/transaction/stateTypes/transactionType.js +61 -0
- package/lib/esm/entity/transaction/stateTypes/vendorTransaction.js +5 -0
- package/lib/esm/entity/transaction/toSupportedTransaction.js +24 -0
- package/lib/esm/entity/transaction/transactionHelper.js +157 -0
- package/lib/esm/entity/transaction/transactionReducer.js +180 -0
- package/lib/esm/entity/transaction/transactionSelector.js +23 -0
- package/lib/esm/entity/transaction/transactionState.js +1 -0
- package/lib/esm/entity/transactionActivityLog/transactionActivityLogPayload.js +53 -0
- package/lib/esm/entity/transactionActivityLog/transactionActivityLogReducer.js +23 -0
- package/lib/esm/entity/transactionActivityLog/transactionActivityLogSelector.js +10 -0
- package/lib/esm/entity/transactionActivityLog/transactionActivityLogState.js +16 -0
- package/lib/esm/entity/user/userPayload.js +1 -0
- package/lib/esm/entity/user/userReducer.js +78 -0
- package/lib/esm/entity/user/userSelector.js +39 -0
- package/lib/esm/entity/user/userState.js +1 -0
- package/lib/esm/entity/userGroups/userGroupsPayload.js +7 -0
- package/lib/esm/entity/userGroups/userGroupsReducer.js +25 -0
- package/lib/esm/entity/userGroups/userGroupsSelector.js +8 -0
- package/lib/esm/entity/userGroups/userGroupsState.js +1 -0
- package/lib/esm/entity/userRole/userRolePayload.js +101 -0
- package/lib/esm/entity/userRole/userRoleReducer.js +99 -0
- package/lib/esm/entity/userRole/userRoleSelector.js +9 -0
- package/lib/esm/entity/userRole/userRoleState.js +4 -0
- package/lib/esm/entity/userRole/userRoleType.js +489 -0
- package/lib/esm/entity/vendor/__mocks__/vendorMock.js +308 -0
- package/lib/esm/entity/vendor/__mocks__/vendorStateMocks.js +412 -0
- package/lib/esm/entity/vendor/vendorPayload.js +116 -0
- package/lib/esm/entity/vendor/vendorReducer.js +66 -0
- package/lib/esm/entity/vendor/vendorSelector.js +19 -0
- package/lib/esm/entity/vendor/vendorState.js +7 -0
- package/lib/esm/entity/vendor/vendorType.js +5 -0
- package/lib/esm/entity/vendorExpense/vendorExpenseReducer.js +73 -0
- package/lib/esm/entity/vendorExpense/vendorExpenseSelector.js +29 -0
- package/lib/esm/entity/vendorExpense/vendorExpenseState.js +2 -0
- package/lib/esm/entity/vendorExpense/vendorExpenseTrend.js +133 -0
- package/lib/esm/epic.js +624 -0
- package/lib/esm/epicManager.js +20 -0
- package/lib/esm/externalAPI.js +1 -0
- package/lib/esm/index.js +711 -0
- package/lib/esm/init.js +197 -0
- package/lib/esm/reducer.js +719 -0
- package/lib/esm/responsePayload.js +20 -0
- package/lib/esm/view/accountList/accountListPayload.js +1 -0
- package/lib/esm/view/accountList/accountListReducer.js +102 -0
- package/lib/esm/view/accountList/accountListSelector.js +74 -0
- package/lib/esm/view/accountList/accountListState.js +1 -0
- package/lib/esm/view/accountList/fetchAccountListEpic.js +51 -0
- package/lib/esm/view/accountMappingView/__mocks__/accountMappingSelectorMock.js +4650 -0
- package/lib/esm/view/accountMappingView/accountMappingPayload.js +156 -0
- package/lib/esm/view/accountMappingView/accountMappingReducer.js +329 -0
- package/lib/esm/view/accountMappingView/accountMappingState.js +1 -0
- package/lib/esm/view/accountMappingView/accountMappingTypeHelper.js +1 -0
- package/lib/esm/view/accountMappingView/accountMappingViewSelector.js +127 -0
- package/lib/esm/view/accountMappingView/accountTypeRecommendation/accountTypeRecommendationPayload.js +63 -0
- package/lib/esm/view/accountMappingView/accountTypeRecommendation/fetchRecommendationForAccountTypeEpic.js +23 -0
- package/lib/esm/view/accountMappingView/fetchAccountListForAccountTypesEpic.js +37 -0
- package/lib/esm/view/accountMappingView/initializeAccountMappingViewEpic.js +11 -0
- package/lib/esm/view/accountMappingView/saveAccountMappingViewEpic.js +48 -0
- package/lib/esm/view/addressView/__mocks__/addressViewMocks.js +203 -0
- package/lib/esm/view/addressView/__mocks__/json/createAddressResponse.json +23 -0
- package/lib/esm/view/addressView/__mocks__/json/createCompanyAddressSuccess.json +258 -0
- package/lib/esm/view/addressView/__mocks__/json/createCompanyUserAddressSuccess.json +418 -0
- package/lib/esm/view/addressView/__mocks__/json/fetchAddressResponse.json +24 -0
- package/lib/esm/view/addressView/__mocks__/json/updateAddressResponse.json +24 -0
- package/lib/esm/view/addressView/addressViewPayload.js +19 -0
- package/lib/esm/view/addressView/addressViewReducer.js +186 -0
- package/lib/esm/view/addressView/addressViewSelector.js +28 -0
- package/lib/esm/view/addressView/addressViewState.js +1 -0
- package/lib/esm/view/addressView/epic/createAddressEpic.js +41 -0
- package/lib/esm/view/addressView/epic/createCompanyAddressEpic.js +44 -0
- package/lib/esm/view/addressView/epic/createCompanyUserAddressEpic.js +53 -0
- package/lib/esm/view/addressView/epic/fetchAddressEpic.js +29 -0
- package/lib/esm/view/addressView/epic/saveNewAddressEpic.js +29 -0
- package/lib/esm/view/addressView/epic/updateAddressEpic.js +25 -0
- package/lib/esm/view/addressView/toAddressViewLocalData.js +32 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewPayload.js +2 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewReducer.js +152 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewSelector.js +77 -0
- package/lib/esm/view/aiAccountantView/aiAccountantViewState.js +11 -0
- package/lib/esm/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.js +46 -0
- package/lib/esm/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.js +24 -0
- package/lib/esm/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.js +44 -0
- package/lib/esm/view/aiAccountantView/epics/triggerAiAccountantJobEpic.js +79 -0
- package/lib/esm/view/aiAgentPerformance/aggregatedReportEpic.js +25 -0
- package/lib/esm/view/aiAgentPerformance/aggregatedReportPayload.js +1 -0
- package/lib/esm/view/aiAgentPerformance/aggregatedReportViewReducer.js +158 -0
- package/lib/esm/view/aiAgentPerformance/aggregatedReportViewSelector.js +8 -0
- package/lib/esm/view/aiAgentPerformance/aggregatedReportViewState.js +41 -0
- package/lib/esm/view/aiAgentPerformance/performanceHelper.js +48 -0
- package/lib/esm/view/aiCfoView/aiCfoViewPayload.js +1 -0
- package/lib/esm/view/aiCfoView/aiCfoViewReducer.js +459 -0
- package/lib/esm/view/aiCfoView/aiCfoViewSelector.js +24 -0
- package/lib/esm/view/aiCfoView/aiCfoViewState.js +1 -0
- package/lib/esm/view/aiCfoView/epics/acceptMasterTOSEpic.js +24 -0
- package/lib/esm/view/aiCfoView/epics/createSessionAndSubmitEpic.js +147 -0
- package/lib/esm/view/aiCfoView/epics/createSessionEpic.js +34 -0
- package/lib/esm/view/aiCfoView/epics/deleteChatSessionEpic.js +55 -0
- package/lib/esm/view/aiCfoView/epics/fetchChatHistoryEpic.js +43 -0
- package/lib/esm/view/aiCfoView/epics/fetchChatSessionsForUserEpic.js +31 -0
- package/lib/esm/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.js +39 -0
- package/lib/esm/view/aiCfoView/epics/stopSubmitEpic.js +51 -0
- package/lib/esm/view/aiCfoView/epics/stopSubmitQuestionEpic.js +37 -0
- package/lib/esm/view/aiCfoView/epics/submitQuestionEpic.js +59 -0
- package/lib/esm/view/apAgingView/apAgingDetail/apAgingDetailPayload.js +42 -0
- package/lib/esm/view/apAgingView/apAgingDetail/apAgingDetailReducer.js +95 -0
- package/lib/esm/view/apAgingView/apAgingDetail/apAgingDetailSelector.js +76 -0
- package/lib/esm/view/apAgingView/apAgingDetail/apAgingDetailState.js +1 -0
- package/lib/esm/view/apAgingView/apAgingDetail/fetchApAgingDetailEpic.js +33 -0
- package/lib/esm/view/apAgingView/apAgingReport/apAgingPayload.js +42 -0
- package/lib/esm/view/apAgingView/apAgingReport/apAgingReducer.js +122 -0
- package/lib/esm/view/apAgingView/apAgingReport/apAgingSelector.js +64 -0
- package/lib/esm/view/apAgingView/apAgingReport/apAgingState.js +1 -0
- package/lib/esm/view/apAgingView/apAgingReport/fetchApAgingEpic.js +43 -0
- package/lib/esm/view/arAgingView/arAgingDetail/arAgingDetailPayload.js +42 -0
- package/lib/esm/view/arAgingView/arAgingDetail/arAgingDetailReducer.js +95 -0
- package/lib/esm/view/arAgingView/arAgingDetail/arAgingDetailSelector.js +53 -0
- package/lib/esm/view/arAgingView/arAgingDetail/arAgingDetailState.js +1 -0
- package/lib/esm/view/arAgingView/arAgingDetail/fetchArAgingDetailEpic.js +33 -0
- package/lib/esm/view/arAgingView/arAgingReport/arAgingPayload.js +49 -0
- package/lib/esm/view/arAgingView/arAgingReport/arAgingReducer.js +134 -0
- package/lib/esm/view/arAgingView/arAgingReport/arAgingSelector.js +93 -0
- package/lib/esm/view/arAgingView/arAgingReport/arAgingState.js +1 -0
- package/lib/esm/view/arAgingView/arAgingReport/fetchArAgingEpic.js +41 -0
- package/lib/esm/view/auditReportView/auditReportViewHelper.js +94 -0
- package/lib/esm/view/auditReportView/auditReportViewPayload.js +1 -0
- package/lib/esm/view/auditReportView/auditReportViewReducer.js +202 -0
- package/lib/esm/view/auditReportView/auditReportViewSelector.js +43 -0
- package/lib/esm/view/auditReportView/auditReportViewState.js +19 -0
- package/lib/esm/view/auditReportView/epics/fetchAuditReportGroupViewEpic.js +50 -0
- package/lib/esm/view/auditReportView/epics/fetchAuditRuleGroupViewEpic.js +35 -0
- package/lib/esm/view/auditReportView/epics/saveReasonForAuditRuleEpic.js +42 -0
- package/lib/esm/view/authenticationView/authenticationViewPayload.js +1 -0
- package/lib/esm/view/authenticationView/authenticationViewReducer.js +56 -0
- package/lib/esm/view/authenticationView/authenticationViewSelector.js +8 -0
- package/lib/esm/view/authenticationView/authenticationViewState.js +1 -0
- package/lib/esm/view/authenticationView/epics/fetchCollaborationAuthTokenEpic.js +24 -0
- package/lib/esm/view/autoComplete/entityAutoCompletePayload.js +1 -0
- package/lib/esm/view/autoComplete/entityAutoCompleteReducer.js +55 -0
- package/lib/esm/view/autoComplete/entityAutoCompleteSelector.js +22 -0
- package/lib/esm/view/autoComplete/entityAutoCompleteState.js +1 -0
- package/lib/esm/view/autoComplete/fetchEntityAutoCompleteEpic.js +46 -0
- package/lib/esm/view/balanceSheet/balanceSheetEpic.js +31 -0
- package/lib/esm/view/balanceSheet/balanceSheetForTimeframeEpic.js +72 -0
- package/lib/esm/view/balanceSheet/balanceSheetPayload.js +72 -0
- package/lib/esm/view/balanceSheet/balanceSheetReducer.js +108 -0
- package/lib/esm/view/balanceSheet/balanceSheetSelector.js +89 -0
- package/lib/esm/view/balanceSheet/balanceSheetSelectorTypes.js +109 -0
- package/lib/esm/view/balanceSheet/balanceSheetState.js +1 -0
- package/lib/esm/view/bankAccountView/bankAccountViewPayload.js +23 -0
- package/lib/esm/view/bankAccountView/bankAccountViewReducer.js +343 -0
- package/lib/esm/view/bankAccountView/bankAccountViewSelector.js +35 -0
- package/lib/esm/view/bankAccountView/bankAccountViewState.js +1 -0
- package/lib/esm/view/bankAccountView/epic/createBankAccountEpic.js +164 -0
- package/lib/esm/view/bankAccountView/epic/createInternationalBankAccountEpic.js +120 -0
- package/lib/esm/view/bankAccountView/epic/createUserBankAccountEpic.js +60 -0
- package/lib/esm/view/bankAccountView/epic/deleteBankAccountEpic.js +55 -0
- package/lib/esm/view/bankAccountView/epic/deleteInternationalBankAccountEpic.js +55 -0
- package/lib/esm/view/bankAccountView/epic/deleteUserBankAccountEpic.js +59 -0
- package/lib/esm/view/bankAccountView/epic/fetchBankCountryNameByIbanEpic.js +41 -0
- package/lib/esm/view/bankAccountView/epic/fetchBankNameByRoutingEpic.js +39 -0
- package/lib/esm/view/bankAccountView/epic/fetchBankNameBySwiftEpic.js +39 -0
- package/lib/esm/view/billPayCard/billPayCardPayload.js +1 -0
- package/lib/esm/view/billPayCard/billPayCardReducer.js +50 -0
- package/lib/esm/view/billPayCard/billPayCardSelector.js +12 -0
- package/lib/esm/view/billPayCard/billPayCardState.js +3 -0
- package/lib/esm/view/billPayCard/fetchBillPayCardEpic.js +47 -0
- package/lib/esm/view/cardBalance/cardBalanceEpic.js +17 -0
- package/lib/esm/view/cardBalance/cardBalancePayload.js +1 -0
- package/lib/esm/view/cardBalance/cardBalanceReducer.js +64 -0
- package/lib/esm/view/cardBalance/cardBalanceSelector.js +15 -0
- package/lib/esm/view/cardBalance/cardBalanceState.js +1 -0
- package/lib/esm/view/cardBalance/statementCloseDayEpic.js +21 -0
- package/lib/esm/view/cardPayment/cardPaymentViewPayload.js +1 -0
- package/lib/esm/view/cardPayment/cardPaymentViewReducer.js +120 -0
- package/lib/esm/view/cardPayment/cardPaymentViewSelector.js +20 -0
- package/lib/esm/view/cardPayment/cardPaymentViewState.js +1 -0
- package/lib/esm/view/cardPayment/cardPaymentViewTypes.js +7 -0
- package/lib/esm/view/cardPayment/epic/addCardPaymentSourceEpic.js +66 -0
- package/lib/esm/view/cardPayment/epic/confirmCardSetupIntentEpic.js +40 -0
- package/lib/esm/view/cardPayment/epic/createCardSetupIntentEpic.js +52 -0
- package/lib/esm/view/cardPayment/epic/fetchPaymentSourcesEpic.js +44 -0
- package/lib/esm/view/cashBalance/cashBalanceEpic.js +17 -0
- package/lib/esm/view/cashBalance/cashBalancePayload.js +1 -0
- package/lib/esm/view/cashBalance/cashBalanceReducer.js +51 -0
- package/lib/esm/view/cashBalance/cashBalanceSelector.js +15 -0
- package/lib/esm/view/cashBalance/cashBalanceState.js +1 -0
- package/lib/esm/view/cashFlow/cashFlowEpic.js +31 -0
- package/lib/esm/view/cashFlow/cashFlowForTimeframeEpic.js +48 -0
- package/lib/esm/view/cashFlow/cashFlowPayload.js +62 -0
- package/lib/esm/view/cashFlow/cashFlowReducer.js +107 -0
- package/lib/esm/view/cashFlow/cashFlowSelector.js +104 -0
- package/lib/esm/view/cashFlow/cashFlowSelectorTypes.js +83 -0
- package/lib/esm/view/cashFlow/cashFlowState.js +1 -0
- package/lib/esm/view/cashInCashOut/cashInCashOutEpic.js +20 -0
- package/lib/esm/view/cashInCashOut/cashInCashOutPayload.js +1 -0
- package/lib/esm/view/cashInCashOut/cashInCashOutReducer.js +235 -0
- package/lib/esm/view/cashInCashOut/cashInCashOutSelector.js +92 -0
- package/lib/esm/view/cashInCashOut/cashInCashOutSelectorTypes.js +6 -0
- package/lib/esm/view/cashInCashOut/cashInCashOutState.js +1 -0
- package/lib/esm/view/cashPosition/cashPositionEpic.js +19 -0
- package/lib/esm/view/cashPosition/cashPositionPayload.js +1 -0
- package/lib/esm/view/cashPosition/cashPositionReducer.js +259 -0
- package/lib/esm/view/cashPosition/cashPositionSelector.js +70 -0
- package/lib/esm/view/cashPosition/cashPositionSelectorTypes.js +1 -0
- package/lib/esm/view/cashPosition/cashPositionState.js +1 -0
- package/lib/esm/view/classList/classListPayload.js +1 -0
- package/lib/esm/view/classList/classListReducer.js +45 -0
- package/lib/esm/view/classList/classListSelector.js +17 -0
- package/lib/esm/view/classList/classListState.js +1 -0
- package/lib/esm/view/classList/fetchClassListEpic.js +31 -0
- package/lib/esm/view/common/getSelectedAndHighlightedRanges.js +293 -0
- package/lib/esm/view/common/recurringViewHelper.js +80 -0
- package/lib/esm/view/common/reportsHelpers.js +16 -0
- package/lib/esm/view/common/zeniClearingAccountHelper.js +8 -0
- package/lib/esm/view/commonVendorView/commonVendorViewHelper.js +93 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/epics/resetTransactionVendorLocalDataEpic.js +26 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/epics/saveTransactionVendorEpic.js +138 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/transactionVendorLocalDataHelper.js +9 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/transactionVendorViewPayload.js +46 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/transactionVendorViewReducer.js +140 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/transactionVendorViewSelector.js +59 -0
- package/lib/esm/view/commonVendorView/transactionVendorView/transactionVendorViewState.js +1 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/fetchAndUpdateVendorRecommendationsEpic.js +61 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/fetchVendorDetailsEpic.js +58 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/fetchVendorEpic.js +65 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/initializeVendorAddressEpic.js +25 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/resetVendorDetailLocalDataEpic.js +26 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/saveVendorEpic.js +250 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/twoFactorAuth/fetchUserDetailEpic.js +21 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/twoFactorAuth/verifyUserEpic.js +27 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/updateSelectedVendorForCreateFlowEpic.js +20 -0
- package/lib/esm/view/commonVendorView/vendorView/epics/vendorDetailLocalDataHelpers.js +83 -0
- package/lib/esm/view/commonVendorView/vendorView/vendorViewPayload.js +88 -0
- package/lib/esm/view/commonVendorView/vendorView/vendorViewReducer.js +649 -0
- package/lib/esm/view/commonVendorView/vendorView/vendorViewSelector.js +252 -0
- package/lib/esm/view/commonVendorView/vendorView/vendorViewState.js +1 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorDetailPageViewEpic.js +30 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorDetailsEpic.js +43 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorEpic.js +60 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/epics/resetVendorsTabVendorDetailLocalDataEpic.js +18 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/epics/saveVendorsTabVendorEpic.js +52 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/epics/vendorsTabVendorDetailLocalDataHelpers.js +66 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewPayload.js +80 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewReducer.js +230 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewSelector.js +141 -0
- package/lib/esm/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewState.js +4 -0
- package/lib/esm/view/companyConfigView/companyConfigEpic.js +19 -0
- package/lib/esm/view/companyConfigView/companyConfigPayload.js +1 -0
- package/lib/esm/view/companyConfigView/companyConfigReducer.js +33 -0
- package/lib/esm/view/companyConfigView/companyConfigSelector.js +8 -0
- package/lib/esm/view/companyConfigView/companyConfigState.js +1 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricConfigPayload.js +1 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricConfigReducer.js +36 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricConfigSelector.js +5 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricView.js +1 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricViewPayload.js +1 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricViewReducer.js +100 -0
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricViewSelector.js +557 -0
- package/lib/esm/view/companyHealthMetricView/epic/fetchCompanyHealthMetricConfigEpic.js +19 -0
- package/lib/esm/view/companyHealthMetricView/epic/fetchCompanyHealthMetricViewEpic.js +37 -0
- package/lib/esm/view/companyHealthMetricView/epic/initializeCompanyHealthMetricViewLocalData.js +24 -0
- package/lib/esm/view/companyHealthMetricView/epic/saveCompanyHealthMetricByIdEpic.js +53 -0
- package/lib/esm/view/companyMonthEndReportView/companyMonthEndReportViewPayload.js +1 -0
- package/lib/esm/view/companyMonthEndReportView/companyMonthEndReportViewReducer.js +355 -0
- package/lib/esm/view/companyMonthEndReportView/companyMonthEndReportViewSelector.js +118 -0
- package/lib/esm/view/companyMonthEndReportView/companyMonthEndReportViewState.js +40 -0
- package/lib/esm/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportHistoricDataEpic.js +62 -0
- package/lib/esm/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportHistoricDatesEpic.js +50 -0
- package/lib/esm/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportTemplatesEpic.js +51 -0
- package/lib/esm/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportViewEpic.js +48 -0
- package/lib/esm/view/companyMonthEndReportView/epics/improveUsingZeniGPTEpic.js +29 -0
- package/lib/esm/view/companyMonthEndReportView/epics/saveCompanyMonthEndReportEpic.js +76 -0
- package/lib/esm/view/companyMonthEndReportView/epics/sendCompanyMonthEndReportEpic.js +83 -0
- package/lib/esm/view/companyTaskManagerView/companyTaskManagerViewPayload.js +1 -0
- package/lib/esm/view/companyTaskManagerView/companyTaskManagerViewReducer.js +122 -0
- package/lib/esm/view/companyTaskManagerView/companyTaskManagerViewSelector.js +48 -0
- package/lib/esm/view/companyTaskManagerView/companyTaskManagerViewState.js +1 -0
- package/lib/esm/view/companyTaskManagerView/epics/fetchCockpitContextEpic.js +38 -0
- package/lib/esm/view/companyTaskManagerView/epics/fetchCompanyTaskManagerViewEpic.js +73 -0
- package/lib/esm/view/companyTaskManagerView/epics/fetchTaskManagerMetricsEpic.js +24 -0
- package/lib/esm/view/companyTaskManagerView/epics/updateCompanyTaskManagerViewFiltersEpic.js +16 -0
- package/lib/esm/view/companyView/companyViewPayload.js +1 -0
- package/lib/esm/view/companyView/companyViewReducer.js +631 -0
- package/lib/esm/view/companyView/companyViewState.js +1 -0
- package/lib/esm/view/companyView/epic/companyManagementSavePendingUpdates.js +14 -0
- package/lib/esm/view/companyView/epic/companyManagementSaveUpdatesEpic.js +112 -0
- package/lib/esm/view/companyView/epic/companyPassport/createCompanyOfficersEpic.js +86 -0
- package/lib/esm/view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic.js +25 -0
- package/lib/esm/view/companyView/epic/companyPassport/fetchCompanyPassportViewEpic.js +61 -0
- package/lib/esm/view/companyView/epic/companyPassport/saveCompanyPassportDetailsEpic.js +30 -0
- package/lib/esm/view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic.js +61 -0
- package/lib/esm/view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic.js +98 -0
- package/lib/esm/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +54 -0
- package/lib/esm/view/companyView/epic/companyPassport/updateCompanyOfficerEpic.js +48 -0
- package/lib/esm/view/companyView/epic/companyPassport/updateCompanyPassportLocalStoreDataEpic.js +34 -0
- package/lib/esm/view/companyView/epic/companyPassport/updatePrimaryContactEpic.js +70 -0
- package/lib/esm/view/companyView/epic/fetchAllCockpitViewsEpic.js +81 -0
- package/lib/esm/view/companyView/epic/fetchCompanyManagementViewEpic.js +97 -0
- package/lib/esm/view/companyView/epic/fetchCompanyMetaDataEpic.js +20 -0
- package/lib/esm/view/companyView/epic/fetchCompanyPortfolioViewEpic.js +36 -0
- package/lib/esm/view/companyView/epic/fetchManagementViewEpic.js +23 -0
- package/lib/esm/view/companyView/epic/fetchOnboardingViewEpic.js +38 -0
- package/lib/esm/view/companyView/epic/fetchPortfolioViewEpic.js +23 -0
- package/lib/esm/view/companyView/epic/fetchSubscriptionViewEpic.js +25 -0
- package/lib/esm/view/companyView/epic/fetchZeniUsersEpic.js +20 -0
- package/lib/esm/view/companyView/epic/getSubscriptionIDsByCompanyID.js +13 -0
- package/lib/esm/view/companyView/helpers/cockpitHelpers.js +166 -0
- package/lib/esm/view/companyView/parentSubsidiaryView/fetchParentSubsidiaryManagementViewEpic.js +15 -0
- package/lib/esm/view/companyView/parentSubsidiaryView/parentSubsidiaryViewSelector.js +13 -0
- package/lib/esm/view/companyView/parentSubsidiaryView/parentSubsidiaryViewState.js +4 -0
- package/lib/esm/view/companyView/selector/companyManagementViewSelector.js +482 -0
- package/lib/esm/view/companyView/selector/companyPassportViewSelector.js +155 -0
- package/lib/esm/view/companyView/selector/companyPortfolioViewSelector.js +238 -0
- package/lib/esm/view/companyView/selector/getAllCockpitTabsFilterView.js +60 -0
- package/lib/esm/view/companyView/selectorHelpers/getCompanyView.js +192 -0
- package/lib/esm/view/companyView/types/cockpitTabsID.js +12 -0
- package/lib/esm/view/companyView/types/cockpitTypes.js +85 -0
- package/lib/esm/view/companyView/types/commonState.js +9 -0
- package/lib/esm/view/companyView/types/companyManagementViewState.js +28 -0
- package/lib/esm/view/companyView/types/companyMetaDataViewState.js +13 -0
- package/lib/esm/view/companyView/types/companyPassport/companyDetailsLocalData.js +1 -0
- package/lib/esm/view/companyView/types/companyPassport/companyPassportLocalData.js +80 -0
- package/lib/esm/view/companyView/types/companyPassport/companyPassportViewState.js +101 -0
- package/lib/esm/view/companyView/types/companyPassport/companyUsersLocalData.js +10 -0
- package/lib/esm/view/companyView/types/companyPassportViewPayload.js +111 -0
- package/lib/esm/view/companyView/types/companyPortfolioViewState.js +14 -0
- package/lib/esm/view/companyView/types/companyView.js +1 -0
- package/lib/esm/view/companyView/types/userAndRole.js +19 -0
- package/lib/esm/view/createTransferEntry/createTransferEntryReducer.js +82 -0
- package/lib/esm/view/createTransferEntry/createTransferEntrySelector.js +64 -0
- package/lib/esm/view/createTransferEntry/createTransferEntryState.js +17 -0
- package/lib/esm/view/createTransferEntry/epics/createTransferEntryEpic.js +136 -0
- package/lib/esm/view/createTransferEntry/epics/fetchTransferAccountsEpic.js +36 -0
- package/lib/esm/view/creditAgentView/buildCreditReportCsv.js +44 -0
- package/lib/esm/view/creditAgentView/creditAgentViewPayload.js +2 -0
- package/lib/esm/view/creditAgentView/creditAgentViewReducer.js +168 -0
- package/lib/esm/view/creditAgentView/creditAgentViewSelector.js +85 -0
- package/lib/esm/view/creditAgentView/creditAgentViewState.js +20 -0
- package/lib/esm/view/creditAgentView/epics/fetchCardProfilesEpic.js +20 -0
- package/lib/esm/view/creditAgentView/epics/fetchCreditAgentMacroEpic.js +19 -0
- package/lib/esm/view/creditAgentView/epics/saveCreditAgentMacroEpic.js +58 -0
- package/lib/esm/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.js +39 -0
- package/lib/esm/view/creditAgentView/epics/updateCardProfileEpic.js +62 -0
- package/lib/esm/view/dashboard/dashboardEpic.js +209 -0
- package/lib/esm/view/dashboard/dashboardReducer.js +47 -0
- package/lib/esm/view/dashboard/dashboardSelector.js +230 -0
- package/lib/esm/view/dashboard/dashboardState.js +1 -0
- package/lib/esm/view/dashboardLayout/dashboardLayoutPayload.js +1 -0
- package/lib/esm/view/dashboardLayout/dashboardLayoutReducer.js +85 -0
- package/lib/esm/view/dashboardLayout/dashboardLayoutSelector.js +3 -0
- package/lib/esm/view/dashboardLayout/dashboardLayoutState.js +1 -0
- package/lib/esm/view/dashboardLayout/fetchDashboardLayoutEpic.js +46 -0
- package/lib/esm/view/dashboardLayout/updateDashboardLayoutEpic.js +24 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/deleteAccountStatementEpic.js +38 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/excludeAccountFromReconciliationEpic.js +63 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/fetchReconciliationViewEpic.js +125 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/includeAccountInReconciliationEpic.js +65 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/initialiseLocalDataForSelectedAccountIdEpic.js +54 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/saveReconciliationDetailEpic.js +182 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/saveReconciliationReviewEpic.js +228 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/updateReconcileTabLocalDataEpic.js +115 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementDocumentAIHelper.js +39 -0
- package/lib/esm/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementEpic.js +53 -0
- package/lib/esm/view/expenseAutomationView/epics/common/fetchAllExpenseAutomationTabsEpic.js +90 -0
- package/lib/esm/view/expenseAutomationView/epics/common/refreshExpenseAutomationCurrentTabEpic.js +69 -0
- package/lib/esm/view/expenseAutomationView/epics/fluxAnalysis/fetchFluxAnalysisViewEpic.js +82 -0
- package/lib/esm/view/expenseAutomationView/epics/fluxAnalysis/reviewFluxAnalysisEpic.js +80 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/accountSettings/fetchAccountSettingsListForAccountTypesEpic.js +37 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/accountSettings/fetchRecommendationForAccountSettingsEpic.js +23 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/accountSettings/initializeAccountSettingsViewEpic.js +9 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/accountSettings/saveAccountSettingsViewEpic.js +46 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulePageEpic.js +19 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +50 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/ignoreRecommendedJeScheduleEpic.js +78 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/initializeJeScheduleLocalDataEpic.js +28 -0
- package/lib/esm/view/expenseAutomationView/epics/jeSchedule/retryJeSchedulesEpic.js +78 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/bulkUploadMatchResultToastEpic.js +33 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic.js +29 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/confirmBulkUploadMatchEpic.js +49 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/fetchBulkUploadBatchDetailsEpic.js +40 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/fetchBulkUploadBatchesEpic.js +49 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/fetchCompletedTransactionsEpic.js +81 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/fetchMissingReceiptsEpic.js +54 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/fetchMoreBatchDetailsEpic.js +33 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/fetchMultipleBatchDetailsEpic.js +72 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/refetchCompletedTransactionsOnBulkUploadSortEpic.js +12 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/refreshBatchDetailsForBatchIdEpic.js +52 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/restoreBulkUploadAutomatchingOnMountEpic.js +100 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/searchTransactionsForManualMatchEpic.js +82 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/syncTabsAfterAutomatchEpic.js +56 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/uploadMissingReceiptSuccessEpic.js +24 -0
- package/lib/esm/view/expenseAutomationView/epics/missingReceipts/watchBulkUploadBatchStatusEpic.js +99 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/backgroundRefetchReviewTabEpic.js +101 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationEpic.js +82 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.js +48 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/initializeTransactionCategorizationLocalDataEpic.js +79 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/markTransactionAsNotMiscategorizedEpic.js +137 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/saveTransactionCategorizationEpic.js +24 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.js +27 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/updateTransactionCategorizationEpic.js +202 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/uploadTransactionReceiptSuccessEpic.js +24 -0
- package/lib/esm/view/expenseAutomationView/expenseAutomationViewPayload.js +1 -0
- package/lib/esm/view/expenseAutomationView/expenseAutomationViewReducer.js +76 -0
- package/lib/esm/view/expenseAutomationView/expenseAutomationViewSelector.js +198 -0
- package/lib/esm/view/expenseAutomationView/expenseAutomationViewState.js +10 -0
- package/lib/esm/view/expenseAutomationView/helpers/bulkUploadTiming.js +16 -0
- package/lib/esm/view/expenseAutomationView/helpers/helpers.js +63 -0
- package/lib/esm/view/expenseAutomationView/helpers/jeAccountSettingHelper.js +46 -0
- package/lib/esm/view/expenseAutomationView/helpers/reconciliationHelpers.js +35 -0
- package/lib/esm/view/expenseAutomationView/helpers/rollingCalendarDateRangeInclusive.js +13 -0
- package/lib/esm/view/expenseAutomationView/helpers/saveTransactionHelper.js +178 -0
- package/lib/esm/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +766 -0
- package/lib/esm/view/expenseAutomationView/payload/fluxAnalysisPayload.js +8 -0
- package/lib/esm/view/expenseAutomationView/payload/jeSchedulesPayload.js +58 -0
- package/lib/esm/view/expenseAutomationView/payload/missingReceiptsPayload.js +198 -0
- package/lib/esm/view/expenseAutomationView/payload/reconciliationPayload.js +69 -0
- package/lib/esm/view/expenseAutomationView/payload/transactionCategorizationPayload.js +1 -0
- package/lib/esm/view/expenseAutomationView/reducers/fluxAnalysisViewReducer.js +373 -0
- package/lib/esm/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +461 -0
- package/lib/esm/view/expenseAutomationView/reducers/missingReceiptsViewReducer.js +663 -0
- package/lib/esm/view/expenseAutomationView/reducers/reconciliationViewReducer.js +682 -0
- package/lib/esm/view/expenseAutomationView/reducers/transactionsViewReducer.js +1058 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/expenseAutomationViewSelectorTypes.js +39 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/fluxAnalysisViewSelectorTypes.js +1 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/jeAccountSettingsViewSelectorTypes.js +1 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.js +1 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/missingReceiptsSelectorTypes.js +1 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/reconciliationViewSelectorTypes.js +3 -0
- package/lib/esm/view/expenseAutomationView/selectorTypes/transactionsViewSelectorTypes.js +1 -0
- package/lib/esm/view/expenseAutomationView/selectors/fluxAnalysisViewSelector.js +150 -0
- package/lib/esm/view/expenseAutomationView/selectors/jeAccountSettingsViewSelector.js +38 -0
- package/lib/esm/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +171 -0
- package/lib/esm/view/expenseAutomationView/selectors/missingReceiptsSelector.js +316 -0
- package/lib/esm/view/expenseAutomationView/selectors/reconciliationViewSelector.js +476 -0
- package/lib/esm/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +258 -0
- package/lib/esm/view/expenseAutomationView/transactionFilterHelpers.js +346 -0
- package/lib/esm/view/expenseAutomationView/types/completedSubTab.js +17 -0
- package/lib/esm/view/expenseAutomationView/types/fluxAnalysisViewState.js +4 -0
- package/lib/esm/view/expenseAutomationView/types/jeSchedulesViewState.js +24 -0
- package/lib/esm/view/expenseAutomationView/types/missingReceiptsViewState.js +51 -0
- package/lib/esm/view/expenseAutomationView/types/reconciliationViewState.js +32 -0
- package/lib/esm/view/expenseAutomationView/types/transactionsViewState.js +27 -0
- package/lib/esm/view/featureNotificationView/epics/fetchRegisteredInterestsEpic.js +23 -0
- package/lib/esm/view/featureNotificationView/epics/notifyMeForFeatureEpic.js +25 -0
- package/lib/esm/view/featureNotificationView/featureNotificationViewPayload.js +11 -0
- package/lib/esm/view/featureNotificationView/featureNotificationViewReducer.js +106 -0
- package/lib/esm/view/featureNotificationView/featureNotificationViewSelector.js +4 -0
- package/lib/esm/view/featureNotificationView/featureNotificationViewState.js +1 -0
- package/lib/esm/view/fileView/epic/deleteFileEpic.js +27 -0
- package/lib/esm/view/fileView/epic/deleteFileListEpic.js +24 -0
- package/lib/esm/view/fileView/epic/fetchFileEpic.js +28 -0
- package/lib/esm/view/fileView/epic/fetchFileListEpic.js +26 -0
- package/lib/esm/view/fileView/epic/updateFileNameEpic.js +29 -0
- package/lib/esm/view/fileView/epic/updateFilesMetadataEpic.js +12 -0
- package/lib/esm/view/fileView/fileDownloadHelpers.js +25 -0
- package/lib/esm/view/fileView/fileUploadHelpers.js +83 -0
- package/lib/esm/view/fileView/fileViewPayload.js +1 -0
- package/lib/esm/view/fileView/fileViewReducer.js +162 -0
- package/lib/esm/view/fileView/fileViewSelector.js +26 -0
- package/lib/esm/view/fileView/fileViewState.js +12 -0
- package/lib/esm/view/financeStatement/financeStatementEpic.js +71 -0
- package/lib/esm/view/financeStatement/financeStatementReducer.js +136 -0
- package/lib/esm/view/financeStatement/financeStatementSelector.js +144 -0
- package/lib/esm/view/financeStatement/financeStatementState.js +1 -0
- package/lib/esm/view/forecastList/fetchForecastListEpic.js +15 -0
- package/lib/esm/view/forecastList/forecastListPayload.js +1 -0
- package/lib/esm/view/forecastList/forecastListReducer.js +34 -0
- package/lib/esm/view/forecastList/forecastListSelector.js +22 -0
- package/lib/esm/view/forecastList/forecastListState.js +1 -0
- package/lib/esm/view/globalMerchantView/epics/createGlobalMerchantEpic.js +97 -0
- package/lib/esm/view/globalMerchantView/epics/fetchGlobalMerchantRecommendationEpic.js +60 -0
- package/lib/esm/view/globalMerchantView/globalMerchantAutoCompleteView/fetchGlobalMerchantAutoCompleteViewEpic.js +44 -0
- package/lib/esm/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewPayload.js +1 -0
- package/lib/esm/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewReducer.js +41 -0
- package/lib/esm/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewSelector.js +11 -0
- package/lib/esm/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewState.js +3 -0
- package/lib/esm/view/globalMerchantView/globalMerchantViewPayload.js +1 -0
- package/lib/esm/view/globalMerchantView/globalMerchantViewReducer.js +117 -0
- package/lib/esm/view/globalMerchantView/globalMerchantViewSelector.js +17 -0
- package/lib/esm/view/globalMerchantView/globalMerchantViewState.js +1 -0
- package/lib/esm/view/insightsCard/insightsCardEpic.js +16 -0
- package/lib/esm/view/insightsCard/insightsCardPayload.js +1 -0
- package/lib/esm/view/insightsCard/insightsCardReducer.js +42 -0
- package/lib/esm/view/insightsCard/insightsCardSelector.js +15 -0
- package/lib/esm/view/insightsCard/insightsCardSelectorTypes.js +1 -0
- package/lib/esm/view/insightsCard/insightsCardState.js +1 -0
- package/lib/esm/view/monthEndCloseChecksView/epics/fetchMonthClosePerformanceTrendEpic.js +43 -0
- package/lib/esm/view/monthEndCloseChecksView/epics/fetchMonthEndCloseChecksEpic.js +57 -0
- package/lib/esm/view/monthEndCloseChecksView/monthEndCloseChecksViewPayload.js +1 -0
- package/lib/esm/view/monthEndCloseChecksView/monthEndCloseChecksViewReducer.js +101 -0
- package/lib/esm/view/monthEndCloseChecksView/monthEndCloseChecksViewSelector.js +89 -0
- package/lib/esm/view/monthEndCloseChecksView/monthEndCloseChecksViewState.js +1 -0
- package/lib/esm/view/netBurnOrIncome/fetchNetBurnOrIncomeWithForecastEpic.js +108 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeEpic.js +31 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeForTimeframeEpic.js +53 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeHelper.js +34 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomePayload.js +1 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeReducer.js +429 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeSelector.js +178 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeSelectorTypes.js +17 -0
- package/lib/esm/view/netBurnOrIncome/netBurnOrIncomeState.js +1 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewEpic.js +30 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewPayload.js +1 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewReducer.js +113 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewSelector.js +101 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewSelectorTypes.js +16 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewState.js +1 -0
- package/lib/esm/view/netBurnOrIncomeClassesView/netBurnOrIncomeForTimeframeClassesViewEpic.js +40 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/epic/fetchNetBurnOrIncomeStoryCardEpic.js +25 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/epic/updateNetBurnOrIncomeStoryCardSettingsEpic.js +39 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardPayload.js +44 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardReducer.js +126 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardSelector.js +82 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardSelectorTypes.js +3 -0
- package/lib/esm/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardState.js +11 -0
- package/lib/esm/view/notificationView/epics/fetchNotificationUnreadCountEpic.js +35 -0
- package/lib/esm/view/notificationView/epics/fetchNotificationViewEpic.js +54 -0
- package/lib/esm/view/notificationView/epics/updateNotificationViewAllNotificationsStatusEpic.js +46 -0
- package/lib/esm/view/notificationView/epics/updateNotificationViewNotificationStatusEpic.js +82 -0
- package/lib/esm/view/notificationView/notificationView.helpers.js +7 -0
- package/lib/esm/view/notificationView/notificationViewPayload.js +1 -0
- package/lib/esm/view/notificationView/notificationViewReducer.js +376 -0
- package/lib/esm/view/notificationView/notificationViewSelector.js +94 -0
- package/lib/esm/view/notificationView/notificationViewState.js +14 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/fetchCompanyOnboardingViewEpic.js +49 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/fetchOnboardingCompletedCompaniesEpic.js +23 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/fetchQBOConnectionPoolEpic.js +15 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/getOnboardingEmailGroupEpic.js +23 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/initializeOnboardingCustomerViewUpdateDataEpic.js +159 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/retryBankAccountConnectionForOnboardingEpic.js +84 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/saveOnboardingCustomerCompletedStatusEpic.js +33 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/saveOnboardingCustomerNotesEpic.js +32 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/saveOnboardingCustomerViewUpdatesEpic.js +123 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/sendOnboardingCustomerViewInviteEpic.js +115 -0
- package/lib/esm/view/onboardingView/cockpitView/epic/updateQBOConnectionPoolExternalConnectionEpic.js +24 -0
- package/lib/esm/view/onboardingView/cockpitView/onboardingCockpitViewPayload.js +133 -0
- package/lib/esm/view/onboardingView/cockpitView/onboardingCockpitViewReducer.js +593 -0
- package/lib/esm/view/onboardingView/cockpitView/onboardingCockpitViewSelector.js +254 -0
- package/lib/esm/view/onboardingView/cockpitView/onboardingCockpitViewState.js +1 -0
- package/lib/esm/view/onboardingView/cockpitView/types/onboardingCockpitViewTypes.js +24 -0
- package/lib/esm/view/onboardingView/customerView/epic/aiAgentsActivation/fetchAiAgentsActivationStatusEpic.js +40 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/acknowledgeOnboardingAiActivationViewedEpic.js +29 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/acknowledgeOnboardingAiFinanceTeamEpic.js +40 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/fetchOnboardingCustomerSetupViewEpic.js +67 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/fetchOnboardingCustomerViewEpic.js +23 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewCompleteStatusEpic.js +49 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewDashboardLoadedEpic.js +28 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewEpic.js +185 -0
- package/lib/esm/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewLocalStoreDataEpic.js +140 -0
- package/lib/esm/view/onboardingView/customerView/epic/paymentAccounts/updateOnboardingPaymentAccountLoginStatusEpic.js +33 -0
- package/lib/esm/view/onboardingView/customerView/epic/paymentAccounts/updateOnboardingPaymentAccountStatusEpic.js +33 -0
- package/lib/esm/view/onboardingView/customerView/epic/plaidConnection/establishOnboardingPlaidConnectionEpic.js +41 -0
- package/lib/esm/view/onboardingView/customerView/epic/plaidConnection/getOnboardingPlaidLinkTokenEpic.js +27 -0
- package/lib/esm/view/onboardingView/customerView/onboardingCustomerViewPayload.js +1 -0
- package/lib/esm/view/onboardingView/customerView/onboardingCustomerViewReducer.js +770 -0
- package/lib/esm/view/onboardingView/customerView/onboardingCustomerViewSelector.js +343 -0
- package/lib/esm/view/onboardingView/customerView/onboardingCustomerViewState.js +67 -0
- package/lib/esm/view/onboardingView/customerView/types/paymentAccount.js +1 -0
- package/lib/esm/view/opEx/fetchOpExWithForecastEpic.js +107 -0
- package/lib/esm/view/opEx/opExEpic.js +31 -0
- package/lib/esm/view/opEx/opExForTimeFrameEpic.js +48 -0
- package/lib/esm/view/opEx/opExPayload.js +1 -0
- package/lib/esm/view/opEx/opExReducer.js +399 -0
- package/lib/esm/view/opEx/opExSelector.js +167 -0
- package/lib/esm/view/opEx/opExSelectorTypes.js +1 -0
- package/lib/esm/view/opEx/opExState.js +1 -0
- package/lib/esm/view/opExByVendor/fetchOpExByVendorReportEpic.js +31 -0
- package/lib/esm/view/opExByVendor/fetchOpExByVendorReportForTimeframeEpic.js +79 -0
- package/lib/esm/view/opExByVendor/fetchOpExByVendorReportSummaryEpic.js +37 -0
- package/lib/esm/view/opExByVendor/opExByVendorPayload.js +1 -0
- package/lib/esm/view/opExByVendor/opExByVendorReducer.js +353 -0
- package/lib/esm/view/opExByVendor/opExByVendorSelector.js +176 -0
- package/lib/esm/view/opExByVendor/opExByVendorState.js +11 -0
- package/lib/esm/view/opExClassesView/opExClassesViewEpic.js +30 -0
- package/lib/esm/view/opExClassesView/opExClassesViewPayload.js +1 -0
- package/lib/esm/view/opExClassesView/opExClassesViewReducer.js +114 -0
- package/lib/esm/view/opExClassesView/opExClassesViewSelector.js +86 -0
- package/lib/esm/view/opExClassesView/opExClassesViewSelectorTypes.js +9 -0
- package/lib/esm/view/opExClassesView/opExClassesViewState.js +1 -0
- package/lib/esm/view/opExClassesView/opExForTimeframeClassesViewEpic.js +38 -0
- package/lib/esm/view/ownerList/fetchOwnerListEpic.js +30 -0
- package/lib/esm/view/ownerList/ownerListPayload.js +1 -0
- package/lib/esm/view/ownerList/ownerListReducer.js +34 -0
- package/lib/esm/view/ownerList/ownerListState.js +1 -0
- package/lib/esm/view/people/changeZeniPersonRolesEpic.js +34 -0
- package/lib/esm/view/people/deletePersonEpic.js +20 -0
- package/lib/esm/view/people/fetchAllPeopleRequiredViewsEpic.js +19 -0
- package/lib/esm/view/people/fetchPeopleEpic.js +25 -0
- package/lib/esm/view/people/helpers/updateManagersListOnRoleChange.js +16 -0
- package/lib/esm/view/people/initializeEditPersonEpic.js +38 -0
- package/lib/esm/view/people/invitePeopleEpic.js +57 -0
- package/lib/esm/view/people/inviteZeniPeopleEpic.js +49 -0
- package/lib/esm/view/people/peoplePageEpic.js +23 -0
- package/lib/esm/view/people/peoplePayload.js +1 -0
- package/lib/esm/view/people/peopleReducer.js +249 -0
- package/lib/esm/view/people/peopleSaveUpdatesEpic.js +75 -0
- package/lib/esm/view/people/peopleSelector.js +141 -0
- package/lib/esm/view/people/peopleSelectorTypes.js +1 -0
- package/lib/esm/view/people/peopleState.js +1 -0
- package/lib/esm/view/people/peopleTypes.js +10 -0
- package/lib/esm/view/people/resendInviteEpic.js +21 -0
- package/lib/esm/view/profitAndLoss/pAndLWithForecast/pAndLWithForecastSelector.js +45 -0
- package/lib/esm/view/profitAndLoss/profitAndLossEpic.js +31 -0
- package/lib/esm/view/profitAndLoss/profitAndLossForTimeframeEpic.js +54 -0
- package/lib/esm/view/profitAndLoss/profitAndLossPayload.js +1 -0
- package/lib/esm/view/profitAndLoss/profitAndLossReducer.js +167 -0
- package/lib/esm/view/profitAndLoss/profitAndLossSelector.js +108 -0
- package/lib/esm/view/profitAndLoss/profitAndLossState.js +1 -0
- package/lib/esm/view/profitAndLossClassesView/horizontalSectionEmptyBalancesSlice.js +17 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector.js +334 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelectorTypes.js +9 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesViewEpic.js +30 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesViewPayload.js +1 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesViewReducer.js +123 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesViewSelector.js +67 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesViewSelectorTypes.js +21 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossClassesViewState.js +1 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossForTimeframeClassesViewEpic.js +44 -0
- package/lib/esm/view/profitAndLossClassesView/profitAndLossHorizontalEnrichment.js +306 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossForTimeframeProjectViewEpic.js +47 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewEpic.js +30 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewPayload.js +1 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewReducer.js +113 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewSelector.js +65 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewSelectorTypes.js +1 -0
- package/lib/esm/view/profitAndLossProjectView/profitAndLossProjectViewState.js +1 -0
- package/lib/esm/view/projectList/fetchProjectListEpic.js +38 -0
- package/lib/esm/view/projectList/projectListPayload.js +1 -0
- package/lib/esm/view/projectList/projectListReducer.js +39 -0
- package/lib/esm/view/projectList/projectListSelector.js +9 -0
- package/lib/esm/view/projectList/projectListState.js +1 -0
- package/lib/esm/view/recommendation/fetchEntityRecommendationsByTransactionIdEpic.js +79 -0
- package/lib/esm/view/recommendation/fetchEntityRecommendationsForLineUpdateEpic.js +87 -0
- package/lib/esm/view/recommendation/fetchRecommendationByEntityIdEpic.js +35 -0
- package/lib/esm/view/recommendation/fetchRecommendationByEntityNameEpic.js +34 -0
- package/lib/esm/view/recommendation/recommendationHelper.js +86 -0
- package/lib/esm/view/recommendation/recommendationPayload.js +1 -0
- package/lib/esm/view/recommendation/recommendationReducer.js +148 -0
- package/lib/esm/view/recommendation/recommendationSelector.js +13 -0
- package/lib/esm/view/recommendation/recommendationState.js +9 -0
- package/lib/esm/view/referralView/epics/fetchReferralsEpic.js +26 -0
- package/lib/esm/view/referralView/epics/fetchRewardsPlanEpic.js +31 -0
- package/lib/esm/view/referralView/epics/resendReferralInviteEpic.js +29 -0
- package/lib/esm/view/referralView/epics/sendReferralInviteEpic.js +36 -0
- package/lib/esm/view/referralView/epics/updateReferViewedEpic.js +18 -0
- package/lib/esm/view/referralView/referralPayload.js +29 -0
- package/lib/esm/view/referralView/referralReducer.js +196 -0
- package/lib/esm/view/referralView/referralSelector.js +84 -0
- package/lib/esm/view/referralView/referralState.js +37 -0
- package/lib/esm/view/reimbursementCard/fetchReimbursementCardEpic.js +41 -0
- package/lib/esm/view/reimbursementCard/reimbursementCardPayload.js +1 -0
- package/lib/esm/view/reimbursementCard/reimbursementCardReducer.js +51 -0
- package/lib/esm/view/reimbursementCard/reimbursementCardSelector.js +12 -0
- package/lib/esm/view/reimbursementCard/reimbursementCardState.js +3 -0
- package/lib/esm/view/reportUIOptions/reportUIOptionsReducer.js +118 -0
- package/lib/esm/view/reportUIOptions/reportUIOptionsState.js +1 -0
- package/lib/esm/view/reportUIOptions/toggleReportUIOptionForecastModeEpic.js +36 -0
- package/lib/esm/view/reportUIOptions/updateReportUIOptionCOABalancesRangeEpic.js +72 -0
- package/lib/esm/view/reportUIOptions/updateReportUIOptionCompareModeEpic.js +50 -0
- package/lib/esm/view/reportUIOptions/updateReportUIOptionIsCompareModeOnEpic.js +64 -0
- package/lib/esm/view/reportUIOptions/updateReportUIOptionThisPeriodEpic.js +26 -0
- package/lib/esm/view/reportUIOptions/updateReportUIOptionTimeFrameEpic.js +11 -0
- package/lib/esm/view/reportsResync/reportsClassViewRefetchingEpic.js +34 -0
- package/lib/esm/view/reportsResync/reportsResyncEpic.js +44 -0
- package/lib/esm/view/reportsResync/reportsResyncReducer.js +49 -0
- package/lib/esm/view/reportsResync/reportsResyncSelector.js +6 -0
- package/lib/esm/view/reportsResync/reportsResyncState.js +1 -0
- package/lib/esm/view/revenue/fetchRevenueWithForecastEpic.js +106 -0
- package/lib/esm/view/revenue/revenueEpic.js +31 -0
- package/lib/esm/view/revenue/revenueForTimeframeEpic.js +50 -0
- package/lib/esm/view/revenue/revenueHelper.js +34 -0
- package/lib/esm/view/revenue/revenuePayload.js +1 -0
- package/lib/esm/view/revenue/revenueReducer.js +412 -0
- package/lib/esm/view/revenue/revenueSelector.js +203 -0
- package/lib/esm/view/revenue/revenueSelectorTypes.js +10 -0
- package/lib/esm/view/revenue/revenueState.js +1 -0
- package/lib/esm/view/revenueClassesView/revenueClassesViewEpic.js +30 -0
- package/lib/esm/view/revenueClassesView/revenueClassesViewPayload.js +1 -0
- package/lib/esm/view/revenueClassesView/revenueClassesViewReducer.js +114 -0
- package/lib/esm/view/revenueClassesView/revenueClassesViewSelector.js +90 -0
- package/lib/esm/view/revenueClassesView/revenueClassesViewSelectorTypes.js +11 -0
- package/lib/esm/view/revenueClassesView/revenueClassesViewState.js +1 -0
- package/lib/esm/view/revenueClassesView/revenueForTimeframeClassesViewEpic.js +30 -0
- package/lib/esm/view/reviewCompanyView/fetchReviewCompanyViewEpic.js +43 -0
- package/lib/esm/view/reviewCompanyView/retryBankAccountConnectionEpic.js +75 -0
- package/lib/esm/view/reviewCompanyView/reviewCompanyPayload.js +1 -0
- package/lib/esm/view/reviewCompanyView/reviewCompanyViewReducer.js +124 -0
- package/lib/esm/view/reviewCompanyView/reviewCompanyViewSelector.js +148 -0
- package/lib/esm/view/reviewCompanyView/reviewCompanyViewState.js +56 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/LinkBillExpenseView/linkBillExpense.js +11 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/cancelScheduleAccruedJournalEntryEpic.js +78 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/createNewSchedulesAccruedEpic.js +30 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/deleteScheduleAccruedDetailEpic.js +77 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/fetchRecommendedTransactionRowIndexEpic.js +68 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/fetchScheduleAccruedDetailsEpic.js +48 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/fetchScheduleAccruedDetailsPageEpic.js +24 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/initializeScheduleAccruedDetailLocalDataEpic.js +38 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/saveScheduleAccruedDetailsEpic.js +126 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/epics/updateAmountsInScheduleAccruedDetailEpic.js +29 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailLocalDataHelper.js +115 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailPayload.js +307 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailReducer.js +390 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailSelector.js +137 -0
- package/lib/esm/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailState.js +1 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/createNewSchedulesEpic.js +33 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/deleteScheduleDetailEpic.js +77 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/fetchScheduleDetailsEpic.js +78 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/fetchScheduleDetailsPageEpic.js +24 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/initializeScheduleDetailLocalDataEpic.js +36 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/markAsCompleteScheduleDetailEpic.js +72 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/saveScheduleDetailsEpic.js +100 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/epics/updateAmountsInScheduleDetailEpic.js +34 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/scheduleDetailLocalDataHelper.js +257 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/scheduleDetailPayload.js +338 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/scheduleDetailReducer.js +376 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/scheduleDetailSelector.js +123 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/scheduleDetailState.js +1 -0
- package/lib/esm/view/scheduleView/scheduleDetailView/scheduleDetailTypes.js +11 -0
- package/lib/esm/view/scheduleView/scheduleListView/epics/fetchAccruedScheduleListEpic.js +48 -0
- package/lib/esm/view/scheduleView/scheduleListView/epics/fetchDownloadSchedulesEpic.js +55 -0
- package/lib/esm/view/scheduleView/scheduleListView/epics/fetchScheduleListEpic.js +68 -0
- package/lib/esm/view/scheduleView/scheduleListView/epics/fetchSchedulesAccountEpic.js +11 -0
- package/lib/esm/view/scheduleView/scheduleListView/scheduleListHelper.js +383 -0
- package/lib/esm/view/scheduleView/scheduleListView/scheduleListPayload.js +1 -0
- package/lib/esm/view/scheduleView/scheduleListView/scheduleListReducer.js +428 -0
- package/lib/esm/view/scheduleView/scheduleListView/scheduleListSelector.js +383 -0
- package/lib/esm/view/scheduleView/scheduleListView/scheduleListState.js +1 -0
- package/lib/esm/view/scheduleView/scheduleListView/scheduleListTypes.js +29 -0
- package/lib/esm/view/settingsView/epic/fetchBankAccountsListEpic.js +26 -0
- package/lib/esm/view/settingsView/epic/fetchBankConnectionsViewEpic.js +39 -0
- package/lib/esm/view/settingsView/epic/fetchBillingAccountsViewEpic.js +13 -0
- package/lib/esm/view/settingsView/epic/fetchCompanyBillingAddressEpic.js +53 -0
- package/lib/esm/view/settingsView/epic/fetchMyProfileEpic.js +50 -0
- package/lib/esm/view/settingsView/epic/fetchMyProfileViewEpic.js +16 -0
- package/lib/esm/view/settingsView/epic/fetchNotificationSettingsEpic.js +24 -0
- package/lib/esm/view/settingsView/epic/fetchNotificationSettingsViewEpic.js +14 -0
- package/lib/esm/view/settingsView/epic/initializeMyProfileLocalDataEpic.js +45 -0
- package/lib/esm/view/settingsView/epic/refreshIntegrationsDataEpic.js +28 -0
- package/lib/esm/view/settingsView/epic/saveCompanyBillingAddressEpic.js +57 -0
- package/lib/esm/view/settingsView/epic/saveNotificationSettingsEpic.js +80 -0
- package/lib/esm/view/settingsView/epic/updateMyProfileEpic.js +105 -0
- package/lib/esm/view/settingsView/settingsViewHelpers.js +158 -0
- package/lib/esm/view/settingsView/settingsViewPayload.js +1 -0
- package/lib/esm/view/settingsView/settingsViewReducer.js +412 -0
- package/lib/esm/view/settingsView/settingsViewSelector.js +281 -0
- package/lib/esm/view/settingsView/settingsViewState.js +13 -0
- package/lib/esm/view/settingsView/types/settingsViewSelectorTypes.js +1 -0
- package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesPayload.js +26 -0
- package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesReducer.js +199 -0
- package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesSelector.js +72 -0
- package/lib/esm/view/spendManagement/autotransferRules/autoTransferRulesState.js +1 -0
- package/lib/esm/view/spendManagement/autotransferRules/epics/createAutoTransferRuleEpic.js +100 -0
- package/lib/esm/view/spendManagement/autotransferRules/epics/deleteAutoTransferRuleEpic.js +48 -0
- package/lib/esm/view/spendManagement/autotransferRules/epics/fetchAutoTransferReviewDetailEpic.js +36 -0
- package/lib/esm/view/spendManagement/autotransferRules/epics/fetchAutoTransferRuleHistory.js +45 -0
- package/lib/esm/view/spendManagement/autotransferRules/epics/fetchAutoTransferRulesEpic.js +50 -0
- package/lib/esm/view/spendManagement/autotransferRules/epics/updateAutoTransferRuleEpic.js +69 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/billDetailViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/billDetailViewReducer.js +463 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/billDetailViewSelector.js +357 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/billDetailViewState.js +51 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/epics/approveOrRejectBillEpic.js +49 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/epics/cancelAndDeleteBillEpic.js +72 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/epics/deleteBillEpic.js +61 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/epics/fetchBillDetailEpic.js +164 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/epics/fetchEligibleActionsForBillEpic.js +36 -0
- package/lib/esm/view/spendManagement/billPay/billDetailView/epics/retryOrRefundBillEpic.js +85 -0
- package/lib/esm/view/spendManagement/billPay/billList/billListDownloadSelector.js +58 -0
- package/lib/esm/view/spendManagement/billPay/billList/billListPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billList/billListReducer.js +182 -0
- package/lib/esm/view/spendManagement/billPay/billList/billListSelector.js +683 -0
- package/lib/esm/view/spendManagement/billPay/billList/billListState.js +64 -0
- package/lib/esm/view/spendManagement/billPay/billList/fetchBillListEpic.js +57 -0
- package/lib/esm/view/spendManagement/billPay/billList/fetchBillListPerTabEpic.js +40 -0
- package/lib/esm/view/spendManagement/billPay/billPayConfig/billPayConfigPayload.js +257 -0
- package/lib/esm/view/spendManagement/billPay/billPayConfig/billPayConfigReducer.js +133 -0
- package/lib/esm/view/spendManagement/billPay/billPayConfig/billPayConfigSelector.js +30 -0
- package/lib/esm/view/spendManagement/billPay/billPayConfig/billPayConfigState.js +91 -0
- package/lib/esm/view/spendManagement/billPay/billPayConfig/fetchBillPayConfigEpic.js +28 -0
- package/lib/esm/view/spendManagement/billPay/billPayReview/billPayReviewPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPayReview/billPayReviewReducer.js +105 -0
- package/lib/esm/view/spendManagement/billPay/billPayReview/billPayReviewSelector.js +196 -0
- package/lib/esm/view/spendManagement/billPay/billPayReview/billPayReviewState.js +8 -0
- package/lib/esm/view/spendManagement/billPay/billPayReview/fetchDuplicateBillEpic.js +49 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewReducer.js +341 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelector.js +104 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelectorTypes.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewState.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/deleteBillPayApprovalRuleEpic.js +44 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversDetailsEpic.js +30 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversListEpic.js +36 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPaySetupApproverViewEpic.js +42 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/initializeBillPaySetupApproverViewUpdateDataEpic.js +37 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/reorderBillPayApprovalRulesEpic.js +54 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/epic/saveBillPaySetupApproverViewUpdatesEpic.js +74 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/types/commonPayload.js +174 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupApproverView/types/commonState.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/billPaySetupViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/billPaySetupViewReducer.js +102 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/billPaySetupViewSelector.js +33 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/billPaySetupViewState.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/epic/billPaySetup/fetchBillPaySetupViewEpic.js +77 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/epic/billPayTerms/acceptBillPayTermsEpic.js +40 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/epic/billPayTerms/acceptBillPayUpdatedTermsEpic.js +40 -0
- package/lib/esm/view/spendManagement/billPay/billPaySetupView/types/billPayTerms.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewReducer.js +179 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewSelector.js +67 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewState.js +21 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/epics/approveOrRejectBillsBulkActionEpic.js +75 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/epics/cancelOrDeleteBillsBulkActionEpic.js +76 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/epics/submitDraftBillsBulkActionEpic.js +84 -0
- package/lib/esm/view/spendManagement/billPay/billsBulkActionView/epics/validateBillsBulkActionEpic.ts.js +28 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/editBillViewPayload.js +15 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/editBillViewReducer.js +504 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/editBillViewSelector.js +758 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/editBillViewState.js +72 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/convertAmountToHomeCurrencyEpic.js +86 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/fetchBillAndInitializeLocalStoreEpic.js +48 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/fetchEditBillDetailPageEpic.js +94 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/fetchVendorAndUpdateBillLocalDataEpic.js +170 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/fetchVendorByNameAndParseInvoice.js +36 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/initializeBillToLocalStoreEpic.js +241 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/parseInvoiceToBillEpic.js +485 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/saveBillDetailEpic.js +260 -0
- package/lib/esm/view/spendManagement/billPay/editBillView/epics/updateVendorContactEpic.js +118 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/epics/createInternationalPaymentInstrumentEpic.js +117 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/epics/deletePaymentInstrumentEpic.js +55 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/epics/fetchInternationalWireDynamicFormEpic.js +50 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/epics/initializeDynamicFormEpic.js +38 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/epics/initializeInternationalWireLocalDataEpic.js +49 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/internationalWire.js +10 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/internationalWirePayload.js +49 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/internationalWireReducer.js +162 -0
- package/lib/esm/view/spendManagement/billPay/internationalWire/internationalWireSelector.js +46 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/epics/fetchIntlVerificationFormEpic.js +32 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/epics/initializeIntlVerificationFormEpic.js +39 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/epics/submitIntlVerificationEpic.js +62 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationPayload.js +15 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationReducer.js +87 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationSelector.js +29 -0
- package/lib/esm/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationState.js +1 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBankNameByRoutingEpic.js +38 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBankNameBySwiftEpic.js +38 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBillEpic.js +37 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkTenantEpic.js +30 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/epics/saveMagicLinkBankAccountEpic.js +93 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/magicLinkViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/magicLinkViewReducer.js +273 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/magicLinkViewSelector.js +51 -0
- package/lib/esm/view/spendManagement/billPay/magicLinkView/magicLinkViewState.js +1 -0
- package/lib/esm/view/spendManagement/billPay/previousBills/fetchPreviousBillsEpic.js +58 -0
- package/lib/esm/view/spendManagement/billPay/previousBills/previousBillsPayload.js +1 -0
- package/lib/esm/view/spendManagement/billPay/previousBills/previousBillsReducer.js +50 -0
- package/lib/esm/view/spendManagement/billPay/previousBills/previousBillsSelector.js +18 -0
- package/lib/esm/view/spendManagement/billPay/previousBills/previousBillsState.js +9 -0
- package/lib/esm/view/spendManagement/billPay/wiseRedirectView/wiseRedirectEpic.js +28 -0
- package/lib/esm/view/spendManagement/billPay/wiseRedirectView/wiseRedirectReducer.js +35 -0
- package/lib/esm/view/spendManagement/billPay/wiseRedirectView/wiseRedirectSelector.js +8 -0
- package/lib/esm/view/spendManagement/billPay/wiseRedirectView/wiseRedirectState.js +1 -0
- package/lib/esm/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowPayload.js +29 -0
- package/lib/esm/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowReducer.js +78 -0
- package/lib/esm/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowSelector.js +49 -0
- package/lib/esm/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowState.js +47 -0
- package/lib/esm/view/spendManagement/cashManagement/autoSweepFlow/epics/fetchCashManagementSettingsEpic.js +32 -0
- package/lib/esm/view/spendManagement/cashManagement/autoSweepFlow/epics/saveAutoSweepSettingsEpic.js +32 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewPayload.js +54 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewReducer.js +92 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewSelector.js +212 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewState.js +10 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementBannerEpic.js +23 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementOverviewPageEpic.js +36 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementRecommendationEpic.js +27 -0
- package/lib/esm/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchRecentTransferEpic.js +28 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailReducer.js +52 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailSelector.js +22 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/fetchCardPolicyDetailEpic.js +36 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/updateCardPolicyEpic.js +39 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/archiveCardPolicyEpic.js +34 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListReducer.js +71 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListSelector.js +21 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/fetchCardPolicyListEpic.js +38 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyAiCardPolicyFormDraftUpdate.js +289 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToAiCardPolicyDraft.js +109 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToDraftEpic.js +44 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToManualCardPolicyDraft.js +111 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyUploadPlanToAiCardPolicyDraft.js +25 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/buildAiCardPolicyFormDraftSeed.js +363 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/buildManualCardPolicyFormDraftSeed.js +36 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyChipIds.js +19 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyFormDraftTypes.js +6 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyRequestParts.js +119 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyReducer.js +154 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicySelector.js +22 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyTemplateEpic.js +49 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/deriveAiPolicyReviewRowsFromInputs.js +140 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/fetchCardPolicyMccCategoriesEpic.js +20 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/seedAiCardPolicyFormDraftEpic.js +100 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toBulkCardPolicyTemplateRequestsFromDraft.js +96 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toCardPolicyTemplateRequestFromDraft.js +59 -0
- package/lib/esm/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toManualCardPolicyTemplateRequestFromDraft.js +24 -0
- package/lib/esm/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingReducer.js +94 -0
- package/lib/esm/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingSelector.js +31 -0
- package/lib/esm/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/cardUserOnboarding/epics/initializeCardUserOnboardingLocalDataEpic.js +30 -0
- package/lib/esm/view/spendManagement/chargeCards/cardUserOnboarding/epics/saveCardOnboardingUserDetailsEpic.js +10 -0
- package/lib/esm/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailReducer.js +83 -0
- package/lib/esm/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailSelector.js +47 -0
- package/lib/esm/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailState.js +9 -0
- package/lib/esm/view/spendManagement/chargeCards/cashbackDetail/fetchCashbackDetailEpic.js +20 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigPayload.js +17 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigReducer.js +67 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardConfig/fetchChargeCardConfigEpic.js +19 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetail.js +146 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailReducer.js +674 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailSelector.js +326 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/closeChargeCardEpic.js +67 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardDetailEpic.js +75 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardDetailPageEpic.js +63 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionAttachmentsEpic.js +38 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionListEpic.js +43 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionStatisticsEpic.js +35 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardsRecurringExpensesEpic.js +40 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/fetchDepositAccountLimitEpic.js +36 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/lockChargeCardEpic.js +73 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/unlockChargeCardEpic.js +70 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardDetailEpic.js +56 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardLimitEpic.js +70 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardNameEpic.js +78 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/updateDebitCardPinAttemptEpic.js +38 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardDetail/updatePhysicalChargeCardAttemptEpic.js +38 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/chargeCardList.js +87 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/chargeCardListPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/chargeCardListReducer.js +368 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector.js +447 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/closeChargeCardsEpic.js +65 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/fetchChargeCardListEpic.js +31 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/fetchChargeCardListPageEpic.js +103 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/fetchCreditAccountEpic.js +19 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/fetchCreditAccountRepaymentEpic.js +19 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/fetchDebitCardSummaryEpic.js +19 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/lockChargeCardsEpic.js +65 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/resendCardInviteEpic.js +27 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/revokeCardInviteEpic.js +25 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/revokeChargeCardsInviteEpic.js +67 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/unlockChargeCardsEpic.js +64 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardList/updateChargeCardsLimitEpic.js +72 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory.js +32 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector.js +22 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers.js +79 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer.js +84 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector.js +103 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/fetchChargeCardPaymentHistoryEpic.js +31 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/fetchChargeCardPaymentPageEpic.js +31 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer.js +49 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector.js +37 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.js +21 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.js +87 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewReducer.js +158 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewSelector.js +42 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/epic/acceptChargeCardTermsEpic.js +76 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/epic/enableChargeCardAutoPayEpic.js +50 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/epic/expressInterestChargeCardEpic.js +44 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/epic/fetchChargeCardSetupViewEpic.js +77 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardSetUp/types/chargeCardTerms.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementList.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListReducer.js +49 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListSelector.js +9 -0
- package/lib/esm/view/spendManagement/chargeCards/chargeCardStatementList/fetchChargeCardStatementListEpic.js +28 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/aiCardCreationFormDraftTypes.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/applyAiCardCreationFormDraftUpdate.js +34 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/buildAiCardCreationFormDraftSeed.js +57 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/depositAccountWithLimitPayload.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/deriveAiCardRowsFromTeams.js +35 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/fetchDepositAccountListForCardsEpic.js +26 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/fetchIssueCardPageEpic.js +57 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardEpic.js +144 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardReducer.js +171 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardSelector.js +130 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardState.js +1 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/seedAiCardCreationFormDraftEpic.js +62 -0
- package/lib/esm/view/spendManagement/chargeCards/issueChargeCard/toIssueChargeCardLocalDataFromDraft.js +44 -0
- package/lib/esm/view/spendManagement/commonHistoryView/commonHistory.js +27 -0
- package/lib/esm/view/spendManagement/commonHistoryView/commonHistoryPayload.js +20 -0
- package/lib/esm/view/spendManagement/commonHistoryView/commonHistoryReducer.js +58 -0
- package/lib/esm/view/spendManagement/commonHistoryView/commonHistorySelector.js +12 -0
- package/lib/esm/view/spendManagement/commonHistoryView/fetchEntityHistoryEpic.js +56 -0
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/enableSetupEpic.js +57 -0
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/parseUploadedKybDocumentEpic.js +58 -0
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/parseUploadedKycDocumentEpic.js +77 -0
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +334 -0
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +148 -0
- package/lib/esm/view/spendManagement/commonSetup/kycKybAutofillActions.js +14 -0
- package/lib/esm/view/spendManagement/commonSetup/kycKybParseMapper.js +221 -0
- package/lib/esm/view/spendManagement/commonSetup/setupViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/commonSetup/setupViewReducer.js +357 -0
- package/lib/esm/view/spendManagement/commonSetup/setupViewSelector.js +277 -0
- package/lib/esm/view/spendManagement/commonSetup/setupViewState.js +15 -0
- package/lib/esm/view/spendManagement/commonSetup/types/businessVerification.js +148 -0
- package/lib/esm/view/spendManagement/commonSetup/types/kycKybAutofill.js +41 -0
- package/lib/esm/view/spendManagement/helpers.js +372 -0
- package/lib/esm/view/spendManagement/merchantList/fetchMerchantListEpic.js +26 -0
- package/lib/esm/view/spendManagement/merchantList/merchantListPayload.js +1 -0
- package/lib/esm/view/spendManagement/merchantList/merchantListReducer.js +43 -0
- package/lib/esm/view/spendManagement/merchantList/merchantListSelector.js +9 -0
- package/lib/esm/view/spendManagement/merchantList/merchantListState.js +1 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/paymentAccounts/getPaymentAccountsEpic.js +37 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/paymentAccounts/updateMappedCashAccountEpic.js +25 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountEpic.js +27 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountLoginStatusEpic.js +34 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountStatusEpic.js +33 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePrimaryFundingAccountEpic.js +89 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/plaidConnection/establishPlaidConnectionEpic.js +144 -0
- package/lib/esm/view/spendManagement/plaidAccount/epic/plaidConnection/getPlaidLinkTokenEpic.js +47 -0
- package/lib/esm/view/spendManagement/plaidAccount/plaidAccountViewReducer.js +452 -0
- package/lib/esm/view/spendManagement/plaidAccount/plaidAccountViewSelector.js +3 -0
- package/lib/esm/view/spendManagement/plaidAccount/plaidAccountViewState.js +30 -0
- package/lib/esm/view/spendManagement/plaidAccount/types/paymentAccount.js +1 -0
- package/lib/esm/view/spendManagement/plaidAccount/types/plaidConnection.js +1 -0
- package/lib/esm/view/spendManagement/realTimeApprovalView/realTimeApprovalPayload.js +1 -0
- package/lib/esm/view/spendManagement/realTimeApprovalView/realTimeApprovalReducer.js +61 -0
- package/lib/esm/view/spendManagement/realTimeApprovalView/realTimeApprovalSelector.js +12 -0
- package/lib/esm/view/spendManagement/realTimeApprovalView/realTimeApprovalState.js +10 -0
- package/lib/esm/view/spendManagement/realTimeApprovalView/saveRealTimeApprovalEpic.js +122 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/editRemiViewPayload.js +47 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/editRemiViewReducer.js +480 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/editRemiViewSelector.js +196 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/editRemiViewState.js +21 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/fetchCurrencyConversionValueEpic.js +59 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/fetchEditRemiDetailPageEpic.js +75 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/fetchRecommendationsAndUpdateMerchantRecommendationsEpic.js +117 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/fetchRemiAndInitializeLocalStoreEpic.js +37 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/initializeRemiToLocalStoreEpic.js +127 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/parseReceiptsToRemiEpic.js +191 -0
- package/lib/esm/view/spendManagement/reimbursement/editRemiView/epics/saveRemiDetailEpic.js +113 -0
- package/lib/esm/view/spendManagement/reimbursement/reimbursementConfig/fetchReimbursementConfigEpic.js +21 -0
- package/lib/esm/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigPayload.js +15 -0
- package/lib/esm/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigReducer.js +52 -0
- package/lib/esm/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigSelector.js +7 -0
- package/lib/esm/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigState.js +6 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/epics/approveOrRejectRemiEpic.js +52 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/epics/cancelAndDeleteRemiEpic.js +61 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/epics/deleteRemiEpic.js +51 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/epics/fetchDuplicateReimbursementEpic.js +67 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/epics/fetchRemiDetailEpic.js +108 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/remiDetailViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/remiDetailViewReducer.js +309 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/remiDetailViewSelector.js +284 -0
- package/lib/esm/view/spendManagement/reimbursement/remiDetailView/remiDetailViewState.js +35 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/fetchRemiListEpic.js +35 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/fetchRemiListPerTabEpic.js +48 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListDownloadSelector.js +65 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListPayload.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListReducer.js +194 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListSelector.js +562 -0
- package/lib/esm/view/spendManagement/reimbursement/remiListView/remiListState.js +77 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/deleteRemiApprovalRuleEpic.js +44 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiApproversDetailsEpic.js +25 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiApproversListEpic.js +36 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiSetupApproverViewEpic.js +44 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/initializeRemiSetupApproverViewUpdateDataEpic.js +37 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/reorderRemiApprovalRulesEpic.js +61 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/epic/saveRemiSetupApproverViewUpdatesEpic.js +74 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewReducer.js +335 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewSelector.js +121 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewSelectorTypes.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewState.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/fetchRemiSetupViewEpic.js +79 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/updateMileageDetailsEpic.js +76 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/updateRemiSetupViewLocalStoreDataEpic.js +35 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/epic/remiTerms/acceptEmployeeRemiTermsEpic.js +34 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/epic/remiTerms/acceptRemiTermsEpic.js +40 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/remiSetupViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/remiSetupViewReducer.js +160 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/remiSetupViewSelector.js +50 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/remiSetupViewState.js +3 -0
- package/lib/esm/view/spendManagement/reimbursement/remiSetupView/types/remiTerms.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/epics/approveOrRejectRemisBulkActionEpic.js +75 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/epics/cancelOrDeleteRemisBulkActionEpic.js +76 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/epics/reviewDraftRemisBulkActionEpic.ts.js +24 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/epics/submitDraftRemisBulkActionEpic.js +69 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewReducer.js +166 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewSelector.js +42 -0
- package/lib/esm/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewState.js +19 -0
- package/lib/esm/view/spendManagement/spendManagementFilterHelpers.js +342 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryDetailEpic.js +72 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryHistoryEpic.js +27 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryTransactionListEpic.js +35 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/treasuryDetailPayload.js +11 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/treasuryDetailReducer.js +174 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/treasuryDetailSelector.js +45 -0
- package/lib/esm/view/spendManagement/treasury/treasuryList/treasuryDetailState.js +8 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/acceptTreasuryTermsEpic.js +40 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/fetchPortfolioAllocationEpic.js +17 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/fetchTreasuryFundsEpic.js +24 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/fetchTreasurySetupViewEpic.js +77 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/updatePortfolioAllocationEpic.js +40 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryPromoIntroClosedByOutsideClickEpic.js +18 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryPromoRemindMeLaterClickedEpic.js +18 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryVideoViewedEpic.js +18 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/treasurySetupViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/treasurySetupViewReducer.js +366 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/treasurySetupViewSelector.js +48 -0
- package/lib/esm/view/spendManagement/treasury/treasurySetUp/treasurySetupViewState.js +16 -0
- package/lib/esm/view/spendManagement/treasury/treasuryStatementList/fetchTreasuryStatementListEpic.js +38 -0
- package/lib/esm/view/spendManagement/treasury/treasuryStatementList/treasuryStatementList.js +8 -0
- package/lib/esm/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListPayload.js +1 -0
- package/lib/esm/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListReducer.js +53 -0
- package/lib/esm/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListSelector.js +13 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTaxLetterList/fetchTreasuryTaxLetterListEpic.js +37 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListReducer.js +53 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListSelector.js +13 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListState.js +8 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyEpic.js +87 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyPayload.js +11 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyReducer.js +44 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneySelector.js +60 -0
- package/lib/esm/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyState.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/checkDeposit/checkDepositEpic.js +44 -0
- package/lib/esm/view/spendManagement/zeniAccounts/checkDeposit/checkDepositReducer.js +39 -0
- package/lib/esm/view/spendManagement/zeniAccounts/checkDeposit/checkDepositSelector.js +28 -0
- package/lib/esm/view/spendManagement/zeniAccounts/checkDeposit/checkDepositState.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailPayload.js +11 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailReducer.js +192 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailSelector.js +81 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailState.js +27 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountDetailEpic.js +54 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountEpic.js +31 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountHistoryEpic.js +34 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountDetail/updateDepositAccountEpic.js +63 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountList/depositAccountList.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListPayload.js +10 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListReducer.js +38 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListSelector.js +9 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountList/fetchDepositAccountListEpic.js +34 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListPayload.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListReducer.js +58 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListSelector.js +18 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListState.js +6 -0
- package/lib/esm/view/spendManagement/zeniAccounts/depositAccountTransactionList/fetchDepositAccountTransactionListEpic.js +50 -0
- package/lib/esm/view/spendManagement/zeniAccounts/expressPay/epics/fetchExpressPayInitialDetailsEpic.js +35 -0
- package/lib/esm/view/spendManagement/zeniAccounts/expressPay/epics/submitExpressPayEpic.js +62 -0
- package/lib/esm/view/spendManagement/zeniAccounts/expressPay/expressPayReducer.js +57 -0
- package/lib/esm/view/spendManagement/zeniAccounts/expressPay/expressPaySelector.js +78 -0
- package/lib/esm/view/spendManagement/zeniAccounts/expressPay/expressPayState.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/fetchPaymentAccountBalanceEpic.js +48 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/fetchPaymentAccountListEpic.js +37 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountList.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListPayload.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListReducer.js +92 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListSelector.js +15 -0
- package/lib/esm/view/spendManagement/zeniAccounts/paymentAccountList/unlinkPaymentAccountEpic.js +50 -0
- package/lib/esm/view/spendManagement/zeniAccounts/transferDetail/fetchReviewTransferDetailEpic.js +36 -0
- package/lib/esm/view/spendManagement/zeniAccounts/transferDetail/transferDetailPayload.js +15 -0
- package/lib/esm/view/spendManagement/zeniAccounts/transferDetail/transferDetailReducer.js +107 -0
- package/lib/esm/view/spendManagement/zeniAccounts/transferDetail/transferDetailSelector.js +30 -0
- package/lib/esm/view/spendManagement/zeniAccounts/transferDetail/transferDetailState.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/transferDetail/transferMoneyEpic.js +54 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountList/createCheckingAccountEpic.js +64 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountList/fetchZeniAccountListPageEpic.js +36 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListPayload.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListReducer.js +79 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListSelector.js +56 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListState.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/epic/acceptZeniAccountTermsEpic.js +41 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/epic/fetchZeniAccountSetupViewEpic.js +77 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/types/zeniAccountTerms.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewPayload.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewReducer.js +89 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewSelector.js +37 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewState.js +1 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountsConfig/fetchZeniAccountsConfigEpic.js +29 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigPayload.js +94 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigReducer.js +51 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigSelector.js +20 -0
- package/lib/esm/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigState.js +1 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionAddOnsEpic.js +35 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionCouponsEpic.js +35 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionCreateEstimateEpic.js +45 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionDetailsEpic.js +69 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionListEpic.js +81 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionPlansEpic.js +34 -0
- package/lib/esm/view/subscriptionView/epic/fetchSubscriptionUpdateEstimateEpic.js +48 -0
- package/lib/esm/view/subscriptionView/epic/initializeSubscriptionLocalDataEpic.js +40 -0
- package/lib/esm/view/subscriptionView/epic/saveSubscriptionNotesUpdatesEpic.js +32 -0
- package/lib/esm/view/subscriptionView/epic/saveSubscriptionUpdatesEpic.js +88 -0
- package/lib/esm/view/subscriptionView/reduceSubscriptionViewFetchState.js +44 -0
- package/lib/esm/view/subscriptionView/selectorHelpers.js +29 -0
- package/lib/esm/view/subscriptionView/subscriptionEstmiatePayload.js +41 -0
- package/lib/esm/view/subscriptionView/subscriptionViewPayload.js +37 -0
- package/lib/esm/view/subscriptionView/subscriptionViewReducer.js +355 -0
- package/lib/esm/view/subscriptionView/subscriptionViewSelector.js +421 -0
- package/lib/esm/view/subscriptionView/subscriptionViewSelectorTypes.js +1 -0
- package/lib/esm/view/subscriptionView/subscriptionViewState.js +1 -0
- package/lib/esm/view/subscriptionView/types/subscriptionEstmiate.js +1 -0
- package/lib/esm/view/subscriptionView/types/subscriptionTypes.js +25 -0
- package/lib/esm/view/subscriptionView/types/subscriptionView.js +1 -0
- package/lib/esm/view/tagView/epics/createTagEpic.js +65 -0
- package/lib/esm/view/tagView/epics/deleteTagEpic.js +49 -0
- package/lib/esm/view/tagView/epics/fetchAllTagsEpic.js +29 -0
- package/lib/esm/view/tagView/tagViewPayload.js +1 -0
- package/lib/esm/view/tagView/tagViewReducer.js +92 -0
- package/lib/esm/view/tagView/tagViewSelector.js +13 -0
- package/lib/esm/view/tagView/tagViewState.js +1 -0
- package/lib/esm/view/taskManager/cannedResponsesView/cannedResponses.js +1 -0
- package/lib/esm/view/taskManager/cannedResponsesView/cannedResponsesPayload.js +12 -0
- package/lib/esm/view/taskManager/cannedResponsesView/cannedResponsesReducer.js +64 -0
- package/lib/esm/view/taskManager/cannedResponsesView/cannedResponsesSelector.js +3 -0
- package/lib/esm/view/taskManager/cannedResponsesView/epics/deleteCannedResponseEpic.js +17 -0
- package/lib/esm/view/taskManager/cannedResponsesView/epics/fetchCannedResponsesEpic.js +21 -0
- package/lib/esm/view/taskManager/cannedResponsesView/epics/saveCannedResponseEpic.js +29 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/archiveTaskEpic.js +67 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/deleteTaskEpic.js +47 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/fetchTaskDetailEpic.js +93 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/fetchTaskDetailPageEpic.js +34 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/fetchTaskHistoryEpic.js +47 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.js +42 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.js +112 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/sendCommentMentionNotificationEpic.js +44 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/snoozeTaskEpic.js +66 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/unsnoozeTaskEpic.js +57 -0
- package/lib/esm/view/taskManager/taskDetailView/taskDetail.js +40 -0
- package/lib/esm/view/taskManager/taskDetailView/taskDetailReducer.js +327 -0
- package/lib/esm/view/taskManager/taskDetailView/taskDetailSelector.js +159 -0
- package/lib/esm/view/taskManager/taskGroupTemplateView/epics/createTaskFromTaskGroupTemplateEpic.js +50 -0
- package/lib/esm/view/taskManager/taskGroupTemplateView/epics/fetchTaskGroupTemplatesEpic.js +30 -0
- package/lib/esm/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewPayload.js +1 -0
- package/lib/esm/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewReducer.js +55 -0
- package/lib/esm/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewSelector.js +7 -0
- package/lib/esm/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewState.js +1 -0
- package/lib/esm/view/taskManager/taskGroupView/epics/createNewTaskGroupEpic.js +55 -0
- package/lib/esm/view/taskManager/taskGroupView/epics/deleteTaskGroupEpic.js +37 -0
- package/lib/esm/view/taskManager/taskGroupView/epics/fetchAllTaskGroupsEpic.js +29 -0
- package/lib/esm/view/taskManager/taskGroupView/epics/updateTaskGroupNameEpic.js +47 -0
- package/lib/esm/view/taskManager/taskGroupView/taskGroupViewPayload.js +1 -0
- package/lib/esm/view/taskManager/taskGroupView/taskGroupViewReducer.js +119 -0
- package/lib/esm/view/taskManager/taskGroupView/taskGroupViewState.js +1 -0
- package/lib/esm/view/taskManager/taskListView/epics/bulkUpdateTaskListEpic.js +128 -0
- package/lib/esm/view/taskManager/taskListView/epics/dragNDropTasksEpic.js +19 -0
- package/lib/esm/view/taskManager/taskListView/epics/fetchTaskListEpic.js +39 -0
- package/lib/esm/view/taskManager/taskListView/epics/fetchTaskListPageEpic.js +48 -0
- package/lib/esm/view/taskManager/taskListView/epics/updateTaskFromListViewEpic.js +33 -0
- package/lib/esm/view/taskManager/taskListView/taskList.js +62 -0
- package/lib/esm/view/taskManager/taskListView/taskListPayload.js +1 -0
- package/lib/esm/view/taskManager/taskListView/taskListReducer.js +650 -0
- package/lib/esm/view/taskManager/taskListView/taskListSelector.js +360 -0
- package/lib/esm/view/taskManager/taskListView/taskListViewHelpers.js +50 -0
- package/lib/esm/view/tasksCard/fetchTasksCardEpic.js +14 -0
- package/lib/esm/view/tasksCard/tasksCardPayload.js +1 -0
- package/lib/esm/view/tasksCard/tasksCardReducer.js +60 -0
- package/lib/esm/view/tasksCard/tasksCardSelector.js +50 -0
- package/lib/esm/view/tasksCard/tasksCardState.js +1 -0
- package/lib/esm/view/topEx/topExEpic.js +16 -0
- package/lib/esm/view/topEx/topExPayload.js +1 -0
- package/lib/esm/view/topEx/topExReducer.js +80 -0
- package/lib/esm/view/topEx/topExSelector.js +61 -0
- package/lib/esm/view/topEx/topExSelectorTypes.js +1 -0
- package/lib/esm/view/topEx/topExState.js +13 -0
- package/lib/esm/view/transactionActivityLogView/fetchTransactionActivityLogEpic.js +43 -0
- package/lib/esm/view/transactionActivityLogView/transactionActivityLogViewPayload.js +1 -0
- package/lib/esm/view/transactionActivityLogView/transactionActivityLogViewReducer.js +47 -0
- package/lib/esm/view/transactionActivityLogView/transactionActivityLogViewSelector.js +34 -0
- package/lib/esm/view/transactionActivityLogView/transactionActivityLogViewState.js +1 -0
- package/lib/esm/view/transactionDetail/epics/deleteTransactionAttachmentEpic.js +41 -0
- package/lib/esm/view/transactionDetail/epics/downloadAccountingProviderAttachmentEpic.js +22 -0
- package/lib/esm/view/transactionDetail/epics/initializeTransactionDetailLocalDataEpic.js +24 -0
- package/lib/esm/view/transactionDetail/epics/markTransactionAsNotMiscategorizedEpic.js +87 -0
- package/lib/esm/view/transactionDetail/epics/saveTransactionDetailEpic.js +23 -0
- package/lib/esm/view/transactionDetail/epics/saveTransactionHelper.js +305 -0
- package/lib/esm/view/transactionDetail/epics/transactionDetailEpic.js +134 -0
- package/lib/esm/view/transactionDetail/epics/updateTransactionDetailEpic.js +293 -0
- package/lib/esm/view/transactionDetail/epics/uploadMissingAttachmentSuccessEpic.js +16 -0
- package/lib/esm/view/transactionDetail/filePayload.js +1 -0
- package/lib/esm/view/transactionDetail/getAccountingProviderAttachmentSelector.js +8 -0
- package/lib/esm/view/transactionDetail/journalEntryLinesViewModel.js +149 -0
- package/lib/esm/view/transactionDetail/transactionDetailLocalDataHelper.js +1090 -0
- package/lib/esm/view/transactionDetail/transactionDetailPayload.js +1 -0
- package/lib/esm/view/transactionDetail/transactionDetailReducer.js +816 -0
- package/lib/esm/view/transactionDetail/transactionDetailSelector.js +213 -0
- package/lib/esm/view/transactionDetail/transactionDetailState.js +69 -0
- package/lib/esm/view/transactionDetail/transactionDetailTypes.js +1 -0
- package/lib/esm/view/transactionList/fetchTransactionListByAccountEpic.js +51 -0
- package/lib/esm/view/transactionList/fetchTransactionListByClassEpic.js +46 -0
- package/lib/esm/view/transactionList/fetchTransactionListByEntityEpic.js +46 -0
- package/lib/esm/view/transactionList/fetchTransactionListByProjectEpic.js +45 -0
- package/lib/esm/view/transactionList/fetchTransactionsListByCategoryTypeEpic.js +64 -0
- package/lib/esm/view/transactionList/parallelFetchAccountTransactionListEpic.js +79 -0
- package/lib/esm/view/transactionList/parallelFetchClassTransactionListEpic.js +79 -0
- package/lib/esm/view/transactionList/parallelFetchEntityTransactionListEpic.js +88 -0
- package/lib/esm/view/transactionList/parallelFetchProjectTransactionListEpic.js +32 -0
- package/lib/esm/view/transactionList/parallelFetchTransactionListByCategoryTypeEpic.js +32 -0
- package/lib/esm/view/transactionList/reduceTransactionListFetchState.js +51 -0
- package/lib/esm/view/transactionList/transactionListByAccountSelector.js +57 -0
- package/lib/esm/view/transactionList/transactionListByCategoryTypeSelector.js +46 -0
- package/lib/esm/view/transactionList/transactionListByClassSelector.js +58 -0
- package/lib/esm/view/transactionList/transactionListByEntitySelector.js +97 -0
- package/lib/esm/view/transactionList/transactionListByProjectSelector.js +58 -0
- package/lib/esm/view/transactionList/transactionListPayload.js +1 -0
- package/lib/esm/view/transactionList/transactionListReducer.js +473 -0
- package/lib/esm/view/transactionList/transactionListState.js +51 -0
- package/lib/esm/view/trend/fetchExpenseTrendEpic.js +54 -0
- package/lib/esm/view/trend/fetchIncomeTrendEpic.js +51 -0
- package/lib/esm/view/trend/trendPayload.js +1 -0
- package/lib/esm/view/trend/trendReducer.js +66 -0
- package/lib/esm/view/trend/trendSelector.js +134 -0
- package/lib/esm/view/trend/trendState.js +1 -0
- package/lib/esm/view/trendWithTransactions/fetchTransactionsForEntityEpic.js +14 -0
- package/lib/esm/view/trendWithTransactions/fetchTrendForEntityEpic.js +16 -0
- package/lib/esm/view/trendWithTransactions/reduceTrendWithTransactionsState.js +51 -0
- package/lib/esm/view/trendWithTransactions/trendWithTransactionsReducer.js +61 -0
- package/lib/esm/view/trendWithTransactions/trendWithTransactionsSelector.js +51 -0
- package/lib/esm/view/trendWithTransactions/trendWithTransactionsState.js +1 -0
- package/lib/esm/view/twoFactorAuthentication/resendOtpEpic.js +168 -0
- package/lib/esm/view/twoFactorAuthentication/sendOtpEpic.js +169 -0
- package/lib/esm/view/twoFactorAuthentication/twoFactorAuthentication.js +34 -0
- package/lib/esm/view/twoFactorAuthentication/twoFactorAuthenticationPayload.js +7 -0
- package/lib/esm/view/twoFactorAuthentication/twoFactorAuthenticationReducer.js +238 -0
- package/lib/esm/view/twoFactorAuthentication/twoFactorAuthenticationSelector.js +17 -0
- package/lib/esm/view/twoFactorAuthentication/verifyOtpEpic.js +153 -0
- package/lib/esm/view/userFinancialAccount/fetchUserFinancialAccountEpic.js +48 -0
- package/lib/esm/view/userFinancialAccount/userFinancialAccountPayload.js +1 -0
- package/lib/esm/view/userFinancialAccount/userFinancialAccountReducer.js +89 -0
- package/lib/esm/view/userFinancialAccount/userFinancialAccountSelector.js +29 -0
- package/lib/esm/view/userFinancialAccount/userFinancialAccountState.js +1 -0
- package/lib/esm/view/userGroupListView/userGroupListViewReducer.js +65 -0
- package/lib/esm/view/userGroupListView/userGroupListViewSelector.js +16 -0
- package/lib/esm/view/userGroupListView/userGroupListViewState.js +1 -0
- package/lib/esm/view/userListView/fetchUserListByTypeEpic.js +78 -0
- package/lib/esm/view/userListView/userListViewPayload.js +1 -0
- package/lib/esm/view/userListView/userListViewReducer.js +72 -0
- package/lib/esm/view/userListView/userListViewSelector.js +31 -0
- package/lib/esm/view/userListView/userListViewState.js +1 -0
- package/lib/esm/view/userRoleConfigView/userRoleConfigEpic.js +32 -0
- package/lib/esm/view/userRoleConfigView/userRoleConfigPayload.js +1 -0
- package/lib/esm/view/userRoleConfigView/userRoleConfigReducer.js +40 -0
- package/lib/esm/view/userRoleConfigView/userRoleConfigSelector.js +8 -0
- package/lib/esm/view/userRoleConfigView/userRoleConfigState.js +1 -0
- package/lib/esm/view/vendor1099TypeList/vendor1099TypeListEpic.js +19 -0
- package/lib/esm/view/vendor1099TypeList/vendor1099TypeListPayload.js +1 -0
- package/lib/esm/view/vendor1099TypeList/vendor1099TypeListReducer.js +47 -0
- package/lib/esm/view/vendor1099TypeList/vendor1099TypeListState.js +1 -0
- package/lib/esm/view/vendorFiling1099/__mock__/json/vendorFiling1099DownloadSuccess.json +574 -0
- package/lib/esm/view/vendorFiling1099/__mock__/json/vendorFiling1099ListSuccess.json +94 -0
- package/lib/esm/view/vendorFiling1099/__mock__/vendorFiling1099DownloadMock.js +89 -0
- package/lib/esm/view/vendorFiling1099/__mock__/vendorFiling1099ListMock.js +202 -0
- package/lib/esm/view/vendorFiling1099/__mock__/vendorFiling1099ListSelectorMock.js +43 -0
- package/lib/esm/view/vendorFiling1099/__mock__/vendorFiling1099UploadDetailsMock.js +152 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099AllEpic.js +26 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099DownloadEpic.js +45 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099ListEpic.js +37 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListPayload.js +1 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListReducer.js +125 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListSelector.js +80 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListState.js +11 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsPayload.js +50 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsReducer.js +211 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsSaveEpic.js +54 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsSelector.js +12 -0
- package/lib/esm/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsState.js +1 -0
- package/lib/esm/view/vendorList/fetchVendorsListEpic.js +93 -0
- package/lib/esm/view/vendorList/vendorListPayload.js +1 -0
- package/lib/esm/view/vendorList/vendorListReducer.js +148 -0
- package/lib/esm/view/vendorList/vendorListSelector.js +84 -0
- package/lib/esm/view/vendorList/vendorListState.js +1 -0
- package/lib/esm/view/vendorReviewView/common/payload/commonTypes.js +84 -0
- package/lib/esm/view/vendorReviewView/common/state/commonTypes.js +83 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/epics/fetchVendorFirstReviewAttachmentsEpic.js +33 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/epics/fetchVendorFirstReviewViewEpic.js +87 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/epics/saveVendorDetailsViewEpic.js +57 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/epics/saveVendorFirstReviewViewEpic.js +247 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewPayload.js +24 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewReducer.js +339 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewSelector.js +120 -0
- package/lib/esm/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewState.js +11 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/epics/approveVendorGlobalReviewEpic.js +142 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/epics/fetchVendorGlobalReviewViewEpic.js +90 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/epics/rejectVendorGlobalReviewEpic.js +90 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewPayload.js +8 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewReducer.js +259 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewSelector.js +57 -0
- package/lib/esm/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewState.js +8 -0
- package/lib/esm/view/vendorTabView/fetchVendorTabViewEpic.js +71 -0
- package/lib/esm/view/vendorTabView/vendorTabViewReducer.js +48 -0
- package/lib/esm/view/vendorTabView/vendorTabViewSelector.js +12 -0
- package/lib/esm/view/vendorTabView/vendorTabViewState.js +10 -0
- package/lib/esm/view/vendorTypeList/vendorTypeListEpic.js +19 -0
- package/lib/esm/view/vendorTypeList/vendorTypeListPayload.js +1 -0
- package/lib/esm/view/vendorTypeList/vendorTypeListReducer.js +33 -0
- package/lib/esm/view/vendorTypeList/vendorTypeListState.js +1 -0
- package/lib/esm/view/vendorTypeList/vendorTypeSelector.js +1 -0
- package/lib/esm/view/zeniAccStatementList/fetchZeniAccStatementListEpic.js +32 -0
- package/lib/esm/view/zeniAccStatementList/fetchZeniAccStatementPageEpic.js +33 -0
- package/lib/esm/view/zeniAccStatementList/zeniAccStatementList.js +8 -0
- package/lib/esm/view/zeniAccStatementList/zeniAccStatementListPayload.js +1 -0
- package/lib/esm/view/zeniAccStatementList/zeniAccStatementListReducer.js +78 -0
- package/lib/esm/view/zeniAccStatementList/zeniAccStatementListSelector.js +32 -0
- package/lib/esm/view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic.js +16 -0
- package/lib/esm/view/zeniAccountsPromoCard/zeniAccountsPromoCardPayload.js +1 -0
- package/lib/esm/view/zeniAccountsPromoCard/zeniAccountsPromoCardReducer.js +54 -0
- package/lib/esm/view/zeniAccountsPromoCard/zeniAccountsPromoCardSelector.js +12 -0
- package/lib/esm/view/zeniAccountsPromoCard/zeniAccountsPromoCardState.js +1 -0
- package/lib/esm/view/zeniOAuthView/epics/approveOAuthConsentEpic.js +65 -0
- package/lib/esm/view/zeniOAuthView/zeniOAuthParamsParser.js +41 -0
- package/lib/esm/view/zeniOAuthView/zeniOAuthReducer.js +49 -0
- package/lib/esm/view/zeniOAuthView/zeniOAuthSelector.js +3 -0
- package/lib/esm/view/zeniOAuthView/zeniOAuthState.js +1 -0
- package/lib/esm/zeniAPI.js +152 -0
- package/lib/esm/zeniDayJS.js +118 -0
- package/lib/esm/zeniUrl.js +12 -0
- package/lib/externalAPI.d.ts +4 -0
- package/lib/externalAPI.js +2 -0
- package/lib/index.d.ts +994 -0
- package/lib/index.js +2583 -0
- package/lib/init.d.ts +66 -0
- package/lib/init.js +242 -0
- package/lib/reducer.d.ts +703 -0
- package/lib/reducer.js +758 -0
- package/lib/responsePayload.d.ts +39 -0
- package/lib/responsePayload.js +29 -0
- package/lib/view/accountList/accountListPayload.d.ts +7 -0
- package/lib/view/accountList/accountListPayload.js +2 -0
- package/lib/view/accountList/accountListReducer.d.ts +22 -0
- package/lib/view/accountList/accountListReducer.js +109 -0
- package/lib/view/accountList/accountListSelector.d.ts +30 -0
- package/lib/view/accountList/accountListSelector.js +83 -0
- package/lib/view/accountList/accountListState.d.ts +12 -0
- package/lib/view/accountList/accountListState.js +2 -0
- package/lib/view/accountList/fetchAccountListEpic.d.ts +8 -0
- package/lib/view/accountList/fetchAccountListEpic.js +55 -0
- package/lib/view/accountMappingView/__mocks__/accountMappingSelectorMock.d.ts +11 -0
- package/lib/view/accountMappingView/__mocks__/accountMappingSelectorMock.js +4659 -0
- package/lib/view/accountMappingView/accountMappingPayload.d.ts +8 -0
- package/lib/view/accountMappingView/accountMappingPayload.js +160 -0
- package/lib/view/accountMappingView/accountMappingReducer.d.ts +18 -0
- package/lib/view/accountMappingView/accountMappingReducer.js +333 -0
- package/lib/view/accountMappingView/accountMappingState.d.ts +63 -0
- package/lib/view/accountMappingView/accountMappingState.js +2 -0
- package/lib/view/accountMappingView/accountMappingTypeHelper.d.ts +17 -0
- package/lib/view/accountMappingView/accountMappingTypeHelper.js +2 -0
- package/lib/view/accountMappingView/accountMappingViewSelector.d.ts +42 -0
- package/lib/view/accountMappingView/accountMappingViewSelector.js +130 -0
- package/lib/view/accountMappingView/accountTypeRecommendation/accountTypeRecommendationPayload.d.ts +44 -0
- package/lib/view/accountMappingView/accountTypeRecommendation/accountTypeRecommendationPayload.js +67 -0
- package/lib/view/accountMappingView/accountTypeRecommendation/fetchRecommendationForAccountTypeEpic.d.ts +7 -0
- package/lib/view/accountMappingView/accountTypeRecommendation/fetchRecommendationForAccountTypeEpic.js +27 -0
- package/lib/view/accountMappingView/fetchAccountListForAccountTypesEpic.d.ts +8 -0
- package/lib/view/accountMappingView/fetchAccountListForAccountTypesEpic.js +41 -0
- package/lib/view/accountMappingView/initializeAccountMappingViewEpic.d.ts +5 -0
- package/lib/view/accountMappingView/initializeAccountMappingViewEpic.js +15 -0
- package/lib/view/accountMappingView/saveAccountMappingViewEpic.d.ts +9 -0
- package/lib/view/accountMappingView/saveAccountMappingViewEpic.js +52 -0
- package/lib/view/addressView/__mocks__/addressViewMocks.d.ts +35 -0
- package/lib/view/addressView/__mocks__/addressViewMocks.js +239 -0
- package/lib/view/addressView/__mocks__/json/createAddressResponse.json +23 -0
- package/lib/view/addressView/__mocks__/json/createCompanyAddressSuccess.json +258 -0
- package/lib/view/addressView/__mocks__/json/createCompanyUserAddressSuccess.json +418 -0
- package/lib/view/addressView/__mocks__/json/fetchAddressResponse.json +24 -0
- package/lib/view/addressView/__mocks__/json/updateAddressResponse.json +24 -0
- package/lib/view/addressView/addressViewPayload.d.ts +10 -0
- package/lib/view/addressView/addressViewPayload.js +23 -0
- package/lib/view/addressView/addressViewReducer.d.ts +46 -0
- package/lib/view/addressView/addressViewReducer.js +193 -0
- package/lib/view/addressView/addressViewSelector.d.ts +13 -0
- package/lib/view/addressView/addressViewSelector.js +38 -0
- package/lib/view/addressView/addressViewState.d.ts +20 -0
- package/lib/view/addressView/addressViewState.js +2 -0
- package/lib/view/addressView/epic/createAddressEpic.d.ts +7 -0
- package/lib/view/addressView/epic/createAddressEpic.js +45 -0
- package/lib/view/addressView/epic/createCompanyAddressEpic.d.ts +8 -0
- package/lib/view/addressView/epic/createCompanyAddressEpic.js +48 -0
- package/lib/view/addressView/epic/createCompanyUserAddressEpic.d.ts +10 -0
- package/lib/view/addressView/epic/createCompanyUserAddressEpic.js +57 -0
- package/lib/view/addressView/epic/fetchAddressEpic.d.ts +19 -0
- package/lib/view/addressView/epic/fetchAddressEpic.js +33 -0
- package/lib/view/addressView/epic/saveNewAddressEpic.d.ts +23 -0
- package/lib/view/addressView/epic/saveNewAddressEpic.js +33 -0
- package/lib/view/addressView/epic/updateAddressEpic.d.ts +19 -0
- package/lib/view/addressView/epic/updateAddressEpic.js +29 -0
- package/lib/view/addressView/toAddressViewLocalData.d.ts +5 -0
- package/lib/view/addressView/toAddressViewLocalData.js +37 -0
- package/lib/view/aiAccountantView/aiAccountantViewPayload.d.ts +33 -0
- package/lib/view/aiAccountantView/aiAccountantViewPayload.js +8 -0
- package/lib/view/aiAccountantView/aiAccountantViewReducer.d.ts +29 -0
- package/lib/view/aiAccountantView/aiAccountantViewReducer.js +156 -0
- package/lib/view/aiAccountantView/aiAccountantViewSelector.d.ts +16 -0
- package/lib/view/aiAccountantView/aiAccountantViewSelector.js +83 -0
- package/lib/view/aiAccountantView/aiAccountantViewState.d.ts +26 -0
- package/lib/view/aiAccountantView/aiAccountantViewState.js +13 -0
- package/lib/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.d.ts +33 -0
- package/lib/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.js +50 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.d.ts +23 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.js +28 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.d.ts +33 -0
- package/lib/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.js +48 -0
- package/lib/view/aiAccountantView/epics/triggerAiAccountantJobEpic.d.ts +28 -0
- package/lib/view/aiAccountantView/epics/triggerAiAccountantJobEpic.js +83 -0
- package/lib/view/aiAgentPerformance/aggregatedReportEpic.d.ts +15 -0
- package/lib/view/aiAgentPerformance/aggregatedReportEpic.js +29 -0
- package/lib/view/aiAgentPerformance/aggregatedReportPayload.d.ts +47 -0
- package/lib/view/aiAgentPerformance/aggregatedReportPayload.js +2 -0
- package/lib/view/aiAgentPerformance/aggregatedReportViewReducer.d.ts +14 -0
- package/lib/view/aiAgentPerformance/aggregatedReportViewReducer.js +163 -0
- package/lib/view/aiAgentPerformance/aggregatedReportViewSelector.d.ts +6 -0
- package/lib/view/aiAgentPerformance/aggregatedReportViewSelector.js +12 -0
- package/lib/view/aiAgentPerformance/aggregatedReportViewState.d.ts +66 -0
- package/lib/view/aiAgentPerformance/aggregatedReportViewState.js +45 -0
- package/lib/view/aiAgentPerformance/performanceHelper.d.ts +11 -0
- package/lib/view/aiAgentPerformance/performanceHelper.js +54 -0
- package/lib/view/aiCfoView/aiCfoViewPayload.d.ts +33 -0
- package/lib/view/aiCfoView/aiCfoViewPayload.js +2 -0
- package/lib/view/aiCfoView/aiCfoViewReducer.d.ts +117 -0
- package/lib/view/aiCfoView/aiCfoViewReducer.js +463 -0
- package/lib/view/aiCfoView/aiCfoViewSelector.d.ts +25 -0
- package/lib/view/aiCfoView/aiCfoViewSelector.js +29 -0
- package/lib/view/aiCfoView/aiCfoViewState.d.ts +57 -0
- package/lib/view/aiCfoView/aiCfoViewState.js +2 -0
- package/lib/view/aiCfoView/epics/acceptMasterTOSEpic.d.ts +9 -0
- package/lib/view/aiCfoView/epics/acceptMasterTOSEpic.js +28 -0
- package/lib/view/aiCfoView/epics/createSessionAndSubmitEpic.d.ts +9 -0
- package/lib/view/aiCfoView/epics/createSessionAndSubmitEpic.js +151 -0
- package/lib/view/aiCfoView/epics/createSessionEpic.d.ts +8 -0
- package/lib/view/aiCfoView/epics/createSessionEpic.js +38 -0
- package/lib/view/aiCfoView/epics/deleteChatSessionEpic.d.ts +34 -0
- package/lib/view/aiCfoView/epics/deleteChatSessionEpic.js +59 -0
- package/lib/view/aiCfoView/epics/fetchChatHistoryEpic.d.ts +8 -0
- package/lib/view/aiCfoView/epics/fetchChatHistoryEpic.js +47 -0
- package/lib/view/aiCfoView/epics/fetchChatSessionsForUserEpic.d.ts +8 -0
- package/lib/view/aiCfoView/epics/fetchChatSessionsForUserEpic.js +35 -0
- package/lib/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.d.ts +15 -0
- package/lib/view/aiCfoView/epics/fetchSuggestedQuestionsEpic.js +43 -0
- package/lib/view/aiCfoView/epics/stopSubmitEpic.d.ts +8 -0
- package/lib/view/aiCfoView/epics/stopSubmitEpic.js +55 -0
- package/lib/view/aiCfoView/epics/stopSubmitQuestionEpic.d.ts +7 -0
- package/lib/view/aiCfoView/epics/stopSubmitQuestionEpic.js +41 -0
- package/lib/view/aiCfoView/epics/submitQuestionEpic.d.ts +8 -0
- package/lib/view/aiCfoView/epics/submitQuestionEpic.js +63 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailPayload.d.ts +16 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailPayload.js +47 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailReducer.d.ts +20 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailReducer.js +102 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailSelector.d.ts +17 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailSelector.js +83 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailState.d.ts +13 -0
- package/lib/view/apAgingView/apAgingDetail/apAgingDetailState.js +2 -0
- package/lib/view/apAgingView/apAgingDetail/fetchApAgingDetailEpic.d.ts +8 -0
- package/lib/view/apAgingView/apAgingDetail/fetchApAgingDetailEpic.js +37 -0
- package/lib/view/apAgingView/apAgingReport/apAgingPayload.d.ts +22 -0
- package/lib/view/apAgingView/apAgingReport/apAgingPayload.js +50 -0
- package/lib/view/apAgingView/apAgingReport/apAgingReducer.d.ts +18 -0
- package/lib/view/apAgingView/apAgingReport/apAgingReducer.js +126 -0
- package/lib/view/apAgingView/apAgingReport/apAgingSelector.d.ts +18 -0
- package/lib/view/apAgingView/apAgingReport/apAgingSelector.js +70 -0
- package/lib/view/apAgingView/apAgingReport/apAgingState.d.ts +13 -0
- package/lib/view/apAgingView/apAgingReport/apAgingState.js +2 -0
- package/lib/view/apAgingView/apAgingReport/fetchApAgingEpic.d.ts +8 -0
- package/lib/view/apAgingView/apAgingReport/fetchApAgingEpic.js +47 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailPayload.d.ts +16 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailPayload.js +47 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailReducer.d.ts +20 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailReducer.js +102 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailSelector.d.ts +15 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailSelector.js +56 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailState.d.ts +13 -0
- package/lib/view/arAgingView/arAgingDetail/arAgingDetailState.js +2 -0
- package/lib/view/arAgingView/arAgingDetail/fetchArAgingDetailEpic.d.ts +8 -0
- package/lib/view/arAgingView/arAgingDetail/fetchArAgingDetailEpic.js +37 -0
- package/lib/view/arAgingView/arAgingReport/arAgingPayload.d.ts +22 -0
- package/lib/view/arAgingView/arAgingReport/arAgingPayload.js +57 -0
- package/lib/view/arAgingView/arAgingReport/arAgingReducer.d.ts +22 -0
- package/lib/view/arAgingView/arAgingReport/arAgingReducer.js +138 -0
- package/lib/view/arAgingView/arAgingReport/arAgingSelector.d.ts +24 -0
- package/lib/view/arAgingView/arAgingReport/arAgingSelector.js +99 -0
- package/lib/view/arAgingView/arAgingReport/arAgingState.d.ts +18 -0
- package/lib/view/arAgingView/arAgingReport/arAgingState.js +2 -0
- package/lib/view/arAgingView/arAgingReport/fetchArAgingEpic.d.ts +8 -0
- package/lib/view/arAgingView/arAgingReport/fetchArAgingEpic.js +45 -0
- package/lib/view/auditReportView/auditReportViewHelper.d.ts +13 -0
- package/lib/view/auditReportView/auditReportViewHelper.js +106 -0
- package/lib/view/auditReportView/auditReportViewPayload.d.ts +88 -0
- package/lib/view/auditReportView/auditReportViewPayload.js +2 -0
- package/lib/view/auditReportView/auditReportViewReducer.d.ts +44 -0
- package/lib/view/auditReportView/auditReportViewReducer.js +206 -0
- package/lib/view/auditReportView/auditReportViewSelector.d.ts +27 -0
- package/lib/view/auditReportView/auditReportViewSelector.js +49 -0
- package/lib/view/auditReportView/auditReportViewState.d.ts +85 -0
- package/lib/view/auditReportView/auditReportViewState.js +25 -0
- package/lib/view/auditReportView/epics/fetchAuditReportGroupViewEpic.d.ts +7 -0
- package/lib/view/auditReportView/epics/fetchAuditReportGroupViewEpic.js +54 -0
- package/lib/view/auditReportView/epics/fetchAuditRuleGroupViewEpic.d.ts +7 -0
- package/lib/view/auditReportView/epics/fetchAuditRuleGroupViewEpic.js +39 -0
- package/lib/view/auditReportView/epics/saveReasonForAuditRuleEpic.d.ts +8 -0
- package/lib/view/auditReportView/epics/saveReasonForAuditRuleEpic.js +46 -0
- package/lib/view/authenticationView/authenticationViewPayload.d.ts +6 -0
- package/lib/view/authenticationView/authenticationViewPayload.js +2 -0
- package/lib/view/authenticationView/authenticationViewReducer.d.ts +9 -0
- package/lib/view/authenticationView/authenticationViewReducer.js +60 -0
- package/lib/view/authenticationView/authenticationViewSelector.d.ts +7 -0
- package/lib/view/authenticationView/authenticationViewSelector.js +11 -0
- package/lib/view/authenticationView/authenticationViewState.d.ts +10 -0
- package/lib/view/authenticationView/authenticationViewState.js +2 -0
- package/lib/view/authenticationView/epics/fetchCollaborationAuthTokenEpic.d.ts +8 -0
- package/lib/view/authenticationView/epics/fetchCollaborationAuthTokenEpic.js +28 -0
- package/lib/view/autoComplete/entityAutoCompletePayload.d.ts +6 -0
- package/lib/view/autoComplete/entityAutoCompletePayload.js +2 -0
- package/lib/view/autoComplete/entityAutoCompleteReducer.d.ts +20 -0
- package/lib/view/autoComplete/entityAutoCompleteReducer.js +59 -0
- package/lib/view/autoComplete/entityAutoCompleteSelector.d.ts +10 -0
- package/lib/view/autoComplete/entityAutoCompleteSelector.js +25 -0
- package/lib/view/autoComplete/entityAutoCompleteState.d.ts +7 -0
- package/lib/view/autoComplete/entityAutoCompleteState.js +2 -0
- package/lib/view/autoComplete/fetchEntityAutoCompleteEpic.d.ts +8 -0
- package/lib/view/autoComplete/fetchEntityAutoCompleteEpic.js +50 -0
- package/lib/view/balanceSheet/balanceSheetEpic.d.ts +6 -0
- package/lib/view/balanceSheet/balanceSheetEpic.js +35 -0
- package/lib/view/balanceSheet/balanceSheetForTimeframeEpic.d.ts +9 -0
- package/lib/view/balanceSheet/balanceSheetForTimeframeEpic.js +77 -0
- package/lib/view/balanceSheet/balanceSheetPayload.d.ts +43 -0
- package/lib/view/balanceSheet/balanceSheetPayload.js +76 -0
- package/lib/view/balanceSheet/balanceSheetReducer.d.ts +30 -0
- package/lib/view/balanceSheet/balanceSheetReducer.js +112 -0
- package/lib/view/balanceSheet/balanceSheetSelector.d.ts +22 -0
- package/lib/view/balanceSheet/balanceSheetSelector.js +95 -0
- package/lib/view/balanceSheet/balanceSheetSelectorTypes.d.ts +48 -0
- package/lib/view/balanceSheet/balanceSheetSelectorTypes.js +115 -0
- package/lib/view/balanceSheet/balanceSheetState.d.ts +17 -0
- package/lib/view/balanceSheet/balanceSheetState.js +2 -0
- package/lib/view/bankAccountView/bankAccountViewPayload.d.ts +40 -0
- package/lib/view/bankAccountView/bankAccountViewPayload.js +29 -0
- package/lib/view/bankAccountView/bankAccountViewReducer.d.ts +70 -0
- package/lib/view/bankAccountView/bankAccountViewReducer.js +347 -0
- package/lib/view/bankAccountView/bankAccountViewSelector.d.ts +14 -0
- package/lib/view/bankAccountView/bankAccountViewSelector.js +38 -0
- package/lib/view/bankAccountView/bankAccountViewState.d.ts +55 -0
- package/lib/view/bankAccountView/bankAccountViewState.js +2 -0
- package/lib/view/bankAccountView/epic/createBankAccountEpic.d.ts +11 -0
- package/lib/view/bankAccountView/epic/createBankAccountEpic.js +168 -0
- package/lib/view/bankAccountView/epic/createInternationalBankAccountEpic.d.ts +10 -0
- package/lib/view/bankAccountView/epic/createInternationalBankAccountEpic.js +124 -0
- package/lib/view/bankAccountView/epic/createUserBankAccountEpic.d.ts +11 -0
- package/lib/view/bankAccountView/epic/createUserBankAccountEpic.js +64 -0
- package/lib/view/bankAccountView/epic/deleteBankAccountEpic.d.ts +9 -0
- package/lib/view/bankAccountView/epic/deleteBankAccountEpic.js +59 -0
- package/lib/view/bankAccountView/epic/deleteInternationalBankAccountEpic.d.ts +9 -0
- package/lib/view/bankAccountView/epic/deleteInternationalBankAccountEpic.js +59 -0
- package/lib/view/bankAccountView/epic/deleteUserBankAccountEpic.d.ts +9 -0
- package/lib/view/bankAccountView/epic/deleteUserBankAccountEpic.js +63 -0
- package/lib/view/bankAccountView/epic/fetchBankCountryNameByIbanEpic.d.ts +7 -0
- package/lib/view/bankAccountView/epic/fetchBankCountryNameByIbanEpic.js +45 -0
- package/lib/view/bankAccountView/epic/fetchBankNameByRoutingEpic.d.ts +7 -0
- package/lib/view/bankAccountView/epic/fetchBankNameByRoutingEpic.js +43 -0
- package/lib/view/bankAccountView/epic/fetchBankNameBySwiftEpic.d.ts +7 -0
- package/lib/view/bankAccountView/epic/fetchBankNameBySwiftEpic.js +43 -0
- package/lib/view/billPayCard/billPayCardPayload.d.ts +29 -0
- package/lib/view/billPayCard/billPayCardPayload.js +2 -0
- package/lib/view/billPayCard/billPayCardReducer.d.ts +10 -0
- package/lib/view/billPayCard/billPayCardReducer.js +54 -0
- package/lib/view/billPayCard/billPayCardSelector.d.ts +12 -0
- package/lib/view/billPayCard/billPayCardSelector.js +16 -0
- package/lib/view/billPayCard/billPayCardState.d.ts +11 -0
- package/lib/view/billPayCard/billPayCardState.js +4 -0
- package/lib/view/billPayCard/fetchBillPayCardEpic.d.ts +9 -0
- package/lib/view/billPayCard/fetchBillPayCardEpic.js +51 -0
- package/lib/view/cardBalance/cardBalanceEpic.d.ts +17 -0
- package/lib/view/cardBalance/cardBalanceEpic.js +21 -0
- package/lib/view/cardBalance/cardBalancePayload.d.ts +9 -0
- package/lib/view/cardBalance/cardBalancePayload.js +2 -0
- package/lib/view/cardBalance/cardBalanceReducer.d.ts +11 -0
- package/lib/view/cardBalance/cardBalanceReducer.js +68 -0
- package/lib/view/cardBalance/cardBalanceSelector.d.ts +33 -0
- package/lib/view/cardBalance/cardBalanceSelector.js +19 -0
- package/lib/view/cardBalance/cardBalanceState.d.ts +7 -0
- package/lib/view/cardBalance/cardBalanceState.js +2 -0
- package/lib/view/cardBalance/statementCloseDayEpic.d.ts +16 -0
- package/lib/view/cardBalance/statementCloseDayEpic.js +25 -0
- package/lib/view/cardPayment/cardPaymentViewPayload.d.ts +25 -0
- package/lib/view/cardPayment/cardPaymentViewPayload.js +2 -0
- package/lib/view/cardPayment/cardPaymentViewReducer.d.ts +33 -0
- package/lib/view/cardPayment/cardPaymentViewReducer.js +124 -0
- package/lib/view/cardPayment/cardPaymentViewSelector.d.ts +21 -0
- package/lib/view/cardPayment/cardPaymentViewSelector.js +24 -0
- package/lib/view/cardPayment/cardPaymentViewState.d.ts +20 -0
- package/lib/view/cardPayment/cardPaymentViewState.js +2 -0
- package/lib/view/cardPayment/cardPaymentViewTypes.d.ts +3 -0
- package/lib/view/cardPayment/cardPaymentViewTypes.js +9 -0
- package/lib/view/cardPayment/epic/addCardPaymentSourceEpic.d.ts +29 -0
- package/lib/view/cardPayment/epic/addCardPaymentSourceEpic.js +70 -0
- package/lib/view/cardPayment/epic/confirmCardSetupIntentEpic.d.ts +25 -0
- package/lib/view/cardPayment/epic/confirmCardSetupIntentEpic.js +44 -0
- package/lib/view/cardPayment/epic/createCardSetupIntentEpic.d.ts +27 -0
- package/lib/view/cardPayment/epic/createCardSetupIntentEpic.js +56 -0
- package/lib/view/cardPayment/epic/fetchPaymentSourcesEpic.d.ts +32 -0
- package/lib/view/cardPayment/epic/fetchPaymentSourcesEpic.js +48 -0
- package/lib/view/cashBalance/cashBalanceEpic.d.ts +17 -0
- package/lib/view/cashBalance/cashBalanceEpic.js +21 -0
- package/lib/view/cashBalance/cashBalancePayload.d.ts +9 -0
- package/lib/view/cashBalance/cashBalancePayload.js +2 -0
- package/lib/view/cashBalance/cashBalanceReducer.d.ts +7 -0
- package/lib/view/cashBalance/cashBalanceReducer.js +55 -0
- package/lib/view/cashBalance/cashBalanceSelector.d.ts +33 -0
- package/lib/view/cashBalance/cashBalanceSelector.js +19 -0
- package/lib/view/cashBalance/cashBalanceState.d.ts +7 -0
- package/lib/view/cashBalance/cashBalanceState.js +2 -0
- package/lib/view/cashFlow/cashFlowEpic.d.ts +6 -0
- package/lib/view/cashFlow/cashFlowEpic.js +35 -0
- package/lib/view/cashFlow/cashFlowForTimeframeEpic.d.ts +9 -0
- package/lib/view/cashFlow/cashFlowForTimeframeEpic.js +53 -0
- package/lib/view/cashFlow/cashFlowPayload.d.ts +32 -0
- package/lib/view/cashFlow/cashFlowPayload.js +69 -0
- package/lib/view/cashFlow/cashFlowReducer.d.ts +31 -0
- package/lib/view/cashFlow/cashFlowReducer.js +111 -0
- package/lib/view/cashFlow/cashFlowSelector.d.ts +14 -0
- package/lib/view/cashFlow/cashFlowSelector.js +109 -0
- package/lib/view/cashFlow/cashFlowSelectorTypes.d.ts +40 -0
- package/lib/view/cashFlow/cashFlowSelectorTypes.js +87 -0
- package/lib/view/cashFlow/cashFlowState.d.ts +18 -0
- package/lib/view/cashFlow/cashFlowState.js +2 -0
- package/lib/view/cashInCashOut/cashInCashOutEpic.d.ts +26 -0
- package/lib/view/cashInCashOut/cashInCashOutEpic.js +24 -0
- package/lib/view/cashInCashOut/cashInCashOutPayload.d.ts +15 -0
- package/lib/view/cashInCashOut/cashInCashOutPayload.js +2 -0
- package/lib/view/cashInCashOut/cashInCashOutReducer.d.ts +33 -0
- package/lib/view/cashInCashOut/cashInCashOutReducer.js +239 -0
- package/lib/view/cashInCashOut/cashInCashOutSelector.d.ts +29 -0
- package/lib/view/cashInCashOut/cashInCashOutSelector.js +96 -0
- package/lib/view/cashInCashOut/cashInCashOutSelectorTypes.d.ts +25 -0
- package/lib/view/cashInCashOut/cashInCashOutSelectorTypes.js +8 -0
- package/lib/view/cashInCashOut/cashInCashOutState.d.ts +19 -0
- package/lib/view/cashInCashOut/cashInCashOutState.js +2 -0
- package/lib/view/cashPosition/cashPositionEpic.d.ts +22 -0
- package/lib/view/cashPosition/cashPositionEpic.js +23 -0
- package/lib/view/cashPosition/cashPositionPayload.d.ts +11 -0
- package/lib/view/cashPosition/cashPositionPayload.js +2 -0
- package/lib/view/cashPosition/cashPositionReducer.d.ts +35 -0
- package/lib/view/cashPosition/cashPositionReducer.js +263 -0
- package/lib/view/cashPosition/cashPositionSelector.d.ts +26 -0
- package/lib/view/cashPosition/cashPositionSelector.js +74 -0
- package/lib/view/cashPosition/cashPositionSelectorTypes.d.ts +18 -0
- package/lib/view/cashPosition/cashPositionSelectorTypes.js +2 -0
- package/lib/view/cashPosition/cashPositionState.d.ts +17 -0
- package/lib/view/cashPosition/cashPositionState.js +2 -0
- package/lib/view/classList/classListPayload.d.ts +7 -0
- package/lib/view/classList/classListPayload.js +2 -0
- package/lib/view/classList/classListReducer.d.ts +9 -0
- package/lib/view/classList/classListReducer.js +49 -0
- package/lib/view/classList/classListSelector.d.ts +10 -0
- package/lib/view/classList/classListSelector.js +22 -0
- package/lib/view/classList/classListState.d.ts +6 -0
- package/lib/view/classList/classListState.js +2 -0
- package/lib/view/classList/fetchClassListEpic.d.ts +8 -0
- package/lib/view/classList/fetchClassListEpic.js +35 -0
- package/lib/view/common/getSelectedAndHighlightedRanges.d.ts +52 -0
- package/lib/view/common/getSelectedAndHighlightedRanges.js +302 -0
- package/lib/view/common/recurringViewHelper.d.ts +11 -0
- package/lib/view/common/recurringViewHelper.js +88 -0
- package/lib/view/common/reportsHelpers.d.ts +3 -0
- package/lib/view/common/reportsHelpers.js +21 -0
- package/lib/view/common/zeniClearingAccountHelper.d.ts +4 -0
- package/lib/view/common/zeniClearingAccountHelper.js +13 -0
- package/lib/view/commonVendorView/commonVendorViewHelper.d.ts +21 -0
- package/lib/view/commonVendorView/commonVendorViewHelper.js +104 -0
- package/lib/view/commonVendorView/transactionVendorView/epics/resetTransactionVendorLocalDataEpic.d.ts +7 -0
- package/lib/view/commonVendorView/transactionVendorView/epics/resetTransactionVendorLocalDataEpic.js +30 -0
- package/lib/view/commonVendorView/transactionVendorView/epics/saveTransactionVendorEpic.d.ts +10 -0
- package/lib/view/commonVendorView/transactionVendorView/epics/saveTransactionVendorEpic.js +142 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorLocalDataHelper.d.ts +3 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorLocalDataHelper.js +13 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewPayload.d.ts +18 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewPayload.js +50 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewReducer.d.ts +26 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewReducer.js +144 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewSelector.d.ts +25 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewSelector.js +63 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewState.d.ts +16 -0
- package/lib/view/commonVendorView/transactionVendorView/transactionVendorViewState.js +2 -0
- package/lib/view/commonVendorView/vendorView/epics/fetchAndUpdateVendorRecommendationsEpic.d.ts +7 -0
- package/lib/view/commonVendorView/vendorView/epics/fetchAndUpdateVendorRecommendationsEpic.js +66 -0
- package/lib/view/commonVendorView/vendorView/epics/fetchVendorDetailsEpic.d.ts +11 -0
- package/lib/view/commonVendorView/vendorView/epics/fetchVendorDetailsEpic.js +62 -0
- package/lib/view/commonVendorView/vendorView/epics/fetchVendorEpic.d.ts +16 -0
- package/lib/view/commonVendorView/vendorView/epics/fetchVendorEpic.js +69 -0
- package/lib/view/commonVendorView/vendorView/epics/initializeVendorAddressEpic.d.ts +7 -0
- package/lib/view/commonVendorView/vendorView/epics/initializeVendorAddressEpic.js +29 -0
- package/lib/view/commonVendorView/vendorView/epics/resetVendorDetailLocalDataEpic.d.ts +7 -0
- package/lib/view/commonVendorView/vendorView/epics/resetVendorDetailLocalDataEpic.js +30 -0
- package/lib/view/commonVendorView/vendorView/epics/saveVendorEpic.d.ts +15 -0
- package/lib/view/commonVendorView/vendorView/epics/saveVendorEpic.js +254 -0
- package/lib/view/commonVendorView/vendorView/epics/twoFactorAuth/fetchUserDetailEpic.d.ts +8 -0
- package/lib/view/commonVendorView/vendorView/epics/twoFactorAuth/fetchUserDetailEpic.js +25 -0
- package/lib/view/commonVendorView/vendorView/epics/twoFactorAuth/verifyUserEpic.d.ts +8 -0
- package/lib/view/commonVendorView/vendorView/epics/twoFactorAuth/verifyUserEpic.js +31 -0
- package/lib/view/commonVendorView/vendorView/epics/updateSelectedVendorForCreateFlowEpic.d.ts +7 -0
- package/lib/view/commonVendorView/vendorView/epics/updateSelectedVendorForCreateFlowEpic.js +24 -0
- package/lib/view/commonVendorView/vendorView/epics/vendorDetailLocalDataHelpers.d.ts +21 -0
- package/lib/view/commonVendorView/vendorView/epics/vendorDetailLocalDataHelpers.js +88 -0
- package/lib/view/commonVendorView/vendorView/vendorViewPayload.d.ts +37 -0
- package/lib/view/commonVendorView/vendorView/vendorViewPayload.js +92 -0
- package/lib/view/commonVendorView/vendorView/vendorViewReducer.d.ts +87 -0
- package/lib/view/commonVendorView/vendorView/vendorViewReducer.js +653 -0
- package/lib/view/commonVendorView/vendorView/vendorViewSelector.d.ts +74 -0
- package/lib/view/commonVendorView/vendorView/vendorViewSelector.js +257 -0
- package/lib/view/commonVendorView/vendorView/vendorViewState.d.ts +58 -0
- package/lib/view/commonVendorView/vendorView/vendorViewState.js +2 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorDetailPageViewEpic.d.ts +8 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorDetailPageViewEpic.js +34 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorDetailsEpic.d.ts +11 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorDetailsEpic.js +47 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorEpic.d.ts +16 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/fetchVendorsTabVendorEpic.js +64 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/resetVendorsTabVendorDetailLocalDataEpic.d.ts +7 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/resetVendorsTabVendorDetailLocalDataEpic.js +22 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/saveVendorsTabVendorEpic.d.ts +11 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/saveVendorsTabVendorEpic.js +56 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/vendorsTabVendorDetailLocalDataHelpers.d.ts +21 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/epics/vendorsTabVendorDetailLocalDataHelpers.js +71 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewPayload.d.ts +34 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewPayload.js +84 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewReducer.d.ts +48 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewReducer.js +234 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewSelector.d.ts +73 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewSelector.js +148 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewState.d.ts +50 -0
- package/lib/view/commonVendorView/vendorsTabVendorView/vendorsTabVendorViewState.js +6 -0
- package/lib/view/companyConfigView/companyConfigEpic.d.ts +7 -0
- package/lib/view/companyConfigView/companyConfigEpic.js +23 -0
- package/lib/view/companyConfigView/companyConfigPayload.d.ts +7 -0
- package/lib/view/companyConfigView/companyConfigPayload.js +2 -0
- package/lib/view/companyConfigView/companyConfigReducer.d.ts +7 -0
- package/lib/view/companyConfigView/companyConfigReducer.js +37 -0
- package/lib/view/companyConfigView/companyConfigSelector.d.ts +12 -0
- package/lib/view/companyConfigView/companyConfigSelector.js +12 -0
- package/lib/view/companyConfigView/companyConfigState.d.ts +5 -0
- package/lib/view/companyConfigView/companyConfigState.js +2 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigPayload.d.ts +6 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigPayload.js +2 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigReducer.d.ts +7 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigReducer.js +40 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigSelector.d.ts +9 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigSelector.js +9 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricView.d.ts +29 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricView.js +2 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricViewPayload.d.ts +9 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricViewPayload.js +2 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricViewReducer.d.ts +23 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricViewReducer.js +104 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricViewSelector.d.ts +51 -0
- package/lib/view/companyHealthMetricView/companyHealthMetricViewSelector.js +566 -0
- package/lib/view/companyHealthMetricView/epic/fetchCompanyHealthMetricConfigEpic.d.ts +7 -0
- package/lib/view/companyHealthMetricView/epic/fetchCompanyHealthMetricConfigEpic.js +23 -0
- package/lib/view/companyHealthMetricView/epic/fetchCompanyHealthMetricViewEpic.d.ts +9 -0
- package/lib/view/companyHealthMetricView/epic/fetchCompanyHealthMetricViewEpic.js +41 -0
- package/lib/view/companyHealthMetricView/epic/initializeCompanyHealthMetricViewLocalData.d.ts +6 -0
- package/lib/view/companyHealthMetricView/epic/initializeCompanyHealthMetricViewLocalData.js +28 -0
- package/lib/view/companyHealthMetricView/epic/saveCompanyHealthMetricByIdEpic.d.ts +9 -0
- package/lib/view/companyHealthMetricView/epic/saveCompanyHealthMetricByIdEpic.js +57 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewPayload.d.ts +46 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewPayload.js +2 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewReducer.d.ts +93 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewReducer.js +359 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewSelector.d.ts +27 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewSelector.js +121 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewState.d.ts +55 -0
- package/lib/view/companyMonthEndReportView/companyMonthEndReportViewState.js +46 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportHistoricDataEpic.d.ts +8 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportHistoricDataEpic.js +66 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportHistoricDatesEpic.d.ts +7 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportHistoricDatesEpic.js +54 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportTemplatesEpic.d.ts +7 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportTemplatesEpic.js +55 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportViewEpic.d.ts +8 -0
- package/lib/view/companyMonthEndReportView/epics/fetchCompanyMonthEndReportViewEpic.js +52 -0
- package/lib/view/companyMonthEndReportView/epics/improveUsingZeniGPTEpic.d.ts +7 -0
- package/lib/view/companyMonthEndReportView/epics/improveUsingZeniGPTEpic.js +33 -0
- package/lib/view/companyMonthEndReportView/epics/saveCompanyMonthEndReportEpic.d.ts +9 -0
- package/lib/view/companyMonthEndReportView/epics/saveCompanyMonthEndReportEpic.js +80 -0
- package/lib/view/companyMonthEndReportView/epics/sendCompanyMonthEndReportEpic.d.ts +10 -0
- package/lib/view/companyMonthEndReportView/epics/sendCompanyMonthEndReportEpic.js +87 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewPayload.d.ts +29 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewPayload.js +2 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewReducer.d.ts +25 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewReducer.js +126 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewSelector.d.ts +25 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewSelector.js +51 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewState.d.ts +31 -0
- package/lib/view/companyTaskManagerView/companyTaskManagerViewState.js +2 -0
- package/lib/view/companyTaskManagerView/epics/fetchCockpitContextEpic.d.ts +10 -0
- package/lib/view/companyTaskManagerView/epics/fetchCockpitContextEpic.js +42 -0
- package/lib/view/companyTaskManagerView/epics/fetchCompanyTaskManagerViewEpic.d.ts +9 -0
- package/lib/view/companyTaskManagerView/epics/fetchCompanyTaskManagerViewEpic.js +77 -0
- package/lib/view/companyTaskManagerView/epics/fetchTaskManagerMetricsEpic.d.ts +7 -0
- package/lib/view/companyTaskManagerView/epics/fetchTaskManagerMetricsEpic.js +28 -0
- package/lib/view/companyTaskManagerView/epics/updateCompanyTaskManagerViewFiltersEpic.d.ts +6 -0
- package/lib/view/companyTaskManagerView/epics/updateCompanyTaskManagerViewFiltersEpic.js +20 -0
- package/lib/view/companyView/companyViewPayload.d.ts +93 -0
- package/lib/view/companyView/companyViewPayload.js +2 -0
- package/lib/view/companyView/companyViewReducer.d.ts +126 -0
- package/lib/view/companyView/companyViewReducer.js +636 -0
- package/lib/view/companyView/companyViewState.d.ts +18 -0
- package/lib/view/companyView/companyViewState.js +2 -0
- package/lib/view/companyView/epic/companyManagementSavePendingUpdates.d.ts +7 -0
- package/lib/view/companyView/epic/companyManagementSavePendingUpdates.js +18 -0
- package/lib/view/companyView/epic/companyManagementSaveUpdatesEpic.d.ts +10 -0
- package/lib/view/companyView/epic/companyManagementSaveUpdatesEpic.js +116 -0
- package/lib/view/companyView/epic/companyPassport/createCompanyOfficersEpic.d.ts +10 -0
- package/lib/view/companyView/epic/companyPassport/createCompanyOfficersEpic.js +90 -0
- package/lib/view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic.d.ts +9 -0
- package/lib/view/companyView/epic/companyPassport/dismissCapitalizationOnboardingEpic.js +29 -0
- package/lib/view/companyView/epic/companyPassport/fetchCompanyPassportViewEpic.d.ts +17 -0
- package/lib/view/companyView/epic/companyPassport/fetchCompanyPassportViewEpic.js +65 -0
- package/lib/view/companyView/epic/companyPassport/saveCompanyPassportDetailsEpic.d.ts +24 -0
- package/lib/view/companyView/epic/companyPassport/saveCompanyPassportDetailsEpic.js +34 -0
- package/lib/view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic.d.ts +10 -0
- package/lib/view/companyView/epic/companyPassport/updateAccountingClassesEnabledEpic.js +65 -0
- package/lib/view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic.d.ts +10 -0
- package/lib/view/companyView/epic/companyPassport/updateCapitalizationAccountThresholdEpic.js +102 -0
- package/lib/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.d.ts +9 -0
- package/lib/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +58 -0
- package/lib/view/companyView/epic/companyPassport/updateCompanyOfficerEpic.d.ts +10 -0
- package/lib/view/companyView/epic/companyPassport/updateCompanyOfficerEpic.js +52 -0
- package/lib/view/companyView/epic/companyPassport/updateCompanyPassportLocalStoreDataEpic.d.ts +6 -0
- package/lib/view/companyView/epic/companyPassport/updateCompanyPassportLocalStoreDataEpic.js +41 -0
- package/lib/view/companyView/epic/companyPassport/updatePrimaryContactEpic.d.ts +20 -0
- package/lib/view/companyView/epic/companyPassport/updatePrimaryContactEpic.js +74 -0
- package/lib/view/companyView/epic/fetchAllCockpitViewsEpic.d.ts +12 -0
- package/lib/view/companyView/epic/fetchAllCockpitViewsEpic.js +85 -0
- package/lib/view/companyView/epic/fetchCompanyManagementViewEpic.d.ts +16 -0
- package/lib/view/companyView/epic/fetchCompanyManagementViewEpic.js +101 -0
- package/lib/view/companyView/epic/fetchCompanyMetaDataEpic.d.ts +7 -0
- package/lib/view/companyView/epic/fetchCompanyMetaDataEpic.js +24 -0
- package/lib/view/companyView/epic/fetchCompanyPortfolioViewEpic.d.ts +11 -0
- package/lib/view/companyView/epic/fetchCompanyPortfolioViewEpic.js +40 -0
- package/lib/view/companyView/epic/fetchManagementViewEpic.d.ts +6 -0
- package/lib/view/companyView/epic/fetchManagementViewEpic.js +27 -0
- package/lib/view/companyView/epic/fetchOnboardingViewEpic.d.ts +7 -0
- package/lib/view/companyView/epic/fetchOnboardingViewEpic.js +42 -0
- package/lib/view/companyView/epic/fetchPortfolioViewEpic.d.ts +6 -0
- package/lib/view/companyView/epic/fetchPortfolioViewEpic.js +27 -0
- package/lib/view/companyView/epic/fetchSubscriptionViewEpic.d.ts +7 -0
- package/lib/view/companyView/epic/fetchSubscriptionViewEpic.js +29 -0
- package/lib/view/companyView/epic/fetchZeniUsersEpic.d.ts +8 -0
- package/lib/view/companyView/epic/fetchZeniUsersEpic.js +24 -0
- package/lib/view/companyView/epic/getSubscriptionIDsByCompanyID.d.ts +2 -0
- package/lib/view/companyView/epic/getSubscriptionIDsByCompanyID.js +19 -0
- package/lib/view/companyView/helpers/cockpitHelpers.d.ts +19 -0
- package/lib/view/companyView/helpers/cockpitHelpers.js +177 -0
- package/lib/view/companyView/parentSubsidiaryView/fetchParentSubsidiaryManagementViewEpic.d.ts +6 -0
- package/lib/view/companyView/parentSubsidiaryView/fetchParentSubsidiaryManagementViewEpic.js +19 -0
- package/lib/view/companyView/parentSubsidiaryView/parentSubsidiaryViewSelector.d.ts +4 -0
- package/lib/view/companyView/parentSubsidiaryView/parentSubsidiaryViewSelector.js +16 -0
- package/lib/view/companyView/parentSubsidiaryView/parentSubsidiaryViewState.d.ts +6 -0
- package/lib/view/companyView/parentSubsidiaryView/parentSubsidiaryViewState.js +7 -0
- package/lib/view/companyView/selector/companyManagementViewSelector.d.ts +40 -0
- package/lib/view/companyView/selector/companyManagementViewSelector.js +492 -0
- package/lib/view/companyView/selector/companyPassportViewSelector.d.ts +36 -0
- package/lib/view/companyView/selector/companyPassportViewSelector.js +163 -0
- package/lib/view/companyView/selector/companyPortfolioViewSelector.d.ts +15 -0
- package/lib/view/companyView/selector/companyPortfolioViewSelector.js +245 -0
- package/lib/view/companyView/selector/getAllCockpitTabsFilterView.d.ts +8 -0
- package/lib/view/companyView/selector/getAllCockpitTabsFilterView.js +63 -0
- package/lib/view/companyView/selectorHelpers/getCompanyView.d.ts +6 -0
- package/lib/view/companyView/selectorHelpers/getCompanyView.js +195 -0
- package/lib/view/companyView/types/cockpitTabsID.d.ts +7 -0
- package/lib/view/companyView/types/cockpitTabsID.js +17 -0
- package/lib/view/companyView/types/cockpitTypes.d.ts +47 -0
- package/lib/view/companyView/types/cockpitTypes.js +94 -0
- package/lib/view/companyView/types/commonState.d.ts +7 -0
- package/lib/view/companyView/types/commonState.js +12 -0
- package/lib/view/companyView/types/companyManagementViewState.d.ts +28 -0
- package/lib/view/companyView/types/companyManagementViewState.js +33 -0
- package/lib/view/companyView/types/companyMetaDataViewState.d.ts +13 -0
- package/lib/view/companyView/types/companyMetaDataViewState.js +17 -0
- package/lib/view/companyView/types/companyPassport/companyDetailsLocalData.d.ts +46 -0
- package/lib/view/companyView/types/companyPassport/companyDetailsLocalData.js +2 -0
- package/lib/view/companyView/types/companyPassport/companyPassportLocalData.d.ts +10 -0
- package/lib/view/companyView/types/companyPassport/companyPassportLocalData.js +83 -0
- package/lib/view/companyView/types/companyPassport/companyPassportViewState.d.ts +22 -0
- package/lib/view/companyView/types/companyPassport/companyPassportViewState.js +104 -0
- package/lib/view/companyView/types/companyPassport/companyUsersLocalData.d.ts +22 -0
- package/lib/view/companyView/types/companyPassport/companyUsersLocalData.js +13 -0
- package/lib/view/companyView/types/companyPassportViewPayload.d.ts +26 -0
- package/lib/view/companyView/types/companyPassportViewPayload.js +119 -0
- package/lib/view/companyView/types/companyPortfolioViewState.d.ts +15 -0
- package/lib/view/companyView/types/companyPortfolioViewState.js +17 -0
- package/lib/view/companyView/types/companyView.d.ts +30 -0
- package/lib/view/companyView/types/companyView.js +2 -0
- package/lib/view/companyView/types/userAndRole.d.ts +10 -0
- package/lib/view/companyView/types/userAndRole.js +22 -0
- package/lib/view/createTransferEntry/createTransferEntryReducer.d.ts +32 -0
- package/lib/view/createTransferEntry/createTransferEntryReducer.js +86 -0
- package/lib/view/createTransferEntry/createTransferEntrySelector.d.ts +39 -0
- package/lib/view/createTransferEntry/createTransferEntrySelector.js +69 -0
- package/lib/view/createTransferEntry/createTransferEntryState.d.ts +30 -0
- package/lib/view/createTransferEntry/createTransferEntryState.js +20 -0
- package/lib/view/createTransferEntry/epics/createTransferEntryEpic.d.ts +11 -0
- package/lib/view/createTransferEntry/epics/createTransferEntryEpic.js +140 -0
- package/lib/view/createTransferEntry/epics/fetchTransferAccountsEpic.d.ts +14 -0
- package/lib/view/createTransferEntry/epics/fetchTransferAccountsEpic.js +40 -0
- package/lib/view/creditAgentView/buildCreditReportCsv.d.ts +17 -0
- package/lib/view/creditAgentView/buildCreditReportCsv.js +47 -0
- package/lib/view/creditAgentView/creditAgentViewPayload.d.ts +6 -0
- package/lib/view/creditAgentView/creditAgentViewPayload.js +7 -0
- package/lib/view/creditAgentView/creditAgentViewReducer.d.ts +41 -0
- package/lib/view/creditAgentView/creditAgentViewReducer.js +172 -0
- package/lib/view/creditAgentView/creditAgentViewSelector.d.ts +20 -0
- package/lib/view/creditAgentView/creditAgentViewSelector.js +93 -0
- package/lib/view/creditAgentView/creditAgentViewState.d.ts +29 -0
- package/lib/view/creditAgentView/creditAgentViewState.js +22 -0
- package/lib/view/creditAgentView/epics/fetchCardProfilesEpic.d.ts +15 -0
- package/lib/view/creditAgentView/epics/fetchCardProfilesEpic.js +24 -0
- package/lib/view/creditAgentView/epics/fetchCreditAgentMacroEpic.d.ts +15 -0
- package/lib/view/creditAgentView/epics/fetchCreditAgentMacroEpic.js +23 -0
- package/lib/view/creditAgentView/epics/saveCreditAgentMacroEpic.d.ts +29 -0
- package/lib/view/creditAgentView/epics/saveCreditAgentMacroEpic.js +62 -0
- package/lib/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.d.ts +30 -0
- package/lib/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.js +43 -0
- package/lib/view/creditAgentView/epics/updateCardProfileEpic.d.ts +37 -0
- package/lib/view/creditAgentView/epics/updateCardProfileEpic.js +66 -0
- package/lib/view/dashboard/dashboardEpic.d.ts +27 -0
- package/lib/view/dashboard/dashboardEpic.js +213 -0
- package/lib/view/dashboard/dashboardReducer.d.ts +12 -0
- package/lib/view/dashboard/dashboardReducer.js +51 -0
- package/lib/view/dashboard/dashboardSelector.d.ts +15 -0
- package/lib/view/dashboard/dashboardSelector.js +233 -0
- package/lib/view/dashboard/dashboardState.d.ts +7 -0
- package/lib/view/dashboard/dashboardState.js +2 -0
- package/lib/view/dashboardLayout/dashboardLayoutPayload.d.ts +15 -0
- package/lib/view/dashboardLayout/dashboardLayoutPayload.js +2 -0
- package/lib/view/dashboardLayout/dashboardLayoutReducer.d.ts +8 -0
- package/lib/view/dashboardLayout/dashboardLayoutReducer.js +89 -0
- package/lib/view/dashboardLayout/dashboardLayoutSelector.d.ts +3 -0
- package/lib/view/dashboardLayout/dashboardLayoutSelector.js +6 -0
- package/lib/view/dashboardLayout/dashboardLayoutState.d.ts +6 -0
- package/lib/view/dashboardLayout/dashboardLayoutState.js +2 -0
- package/lib/view/dashboardLayout/fetchDashboardLayoutEpic.d.ts +19 -0
- package/lib/view/dashboardLayout/fetchDashboardLayoutEpic.js +50 -0
- package/lib/view/dashboardLayout/updateDashboardLayoutEpic.d.ts +13 -0
- package/lib/view/dashboardLayout/updateDashboardLayoutEpic.js +28 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/deleteAccountStatementEpic.d.ts +9 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/deleteAccountStatementEpic.js +42 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/excludeAccountFromReconciliationEpic.d.ts +9 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/excludeAccountFromReconciliationEpic.js +67 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/fetchReconciliationViewEpic.d.ts +16 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/fetchReconciliationViewEpic.js +130 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/includeAccountInReconciliationEpic.d.ts +10 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/includeAccountInReconciliationEpic.js +69 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/initialiseLocalDataForSelectedAccountIdEpic.d.ts +10 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/initialiseLocalDataForSelectedAccountIdEpic.js +59 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/saveReconciliationDetailEpic.d.ts +15 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/saveReconciliationDetailEpic.js +189 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/saveReconciliationReviewEpic.d.ts +9 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/saveReconciliationReviewEpic.js +232 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/updateReconcileTabLocalDataEpic.d.ts +6 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/updateReconcileTabLocalDataEpic.js +122 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementDocumentAIHelper.d.ts +13 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementDocumentAIHelper.js +45 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementEpic.d.ts +15 -0
- package/lib/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementEpic.js +57 -0
- package/lib/view/expenseAutomationView/epics/common/fetchAllExpenseAutomationTabsEpic.d.ts +12 -0
- package/lib/view/expenseAutomationView/epics/common/fetchAllExpenseAutomationTabsEpic.js +94 -0
- package/lib/view/expenseAutomationView/epics/common/refreshExpenseAutomationCurrentTabEpic.d.ts +13 -0
- package/lib/view/expenseAutomationView/epics/common/refreshExpenseAutomationCurrentTabEpic.js +73 -0
- package/lib/view/expenseAutomationView/epics/fluxAnalysis/fetchFluxAnalysisViewEpic.d.ts +11 -0
- package/lib/view/expenseAutomationView/epics/fluxAnalysis/fetchFluxAnalysisViewEpic.js +86 -0
- package/lib/view/expenseAutomationView/epics/fluxAnalysis/reviewFluxAnalysisEpic.d.ts +13 -0
- package/lib/view/expenseAutomationView/epics/fluxAnalysis/reviewFluxAnalysisEpic.js +84 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/fetchAccountSettingsListForAccountTypesEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/fetchAccountSettingsListForAccountTypesEpic.js +41 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/fetchRecommendationForAccountSettingsEpic.d.ts +7 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/fetchRecommendationForAccountSettingsEpic.js +27 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/initializeAccountSettingsViewEpic.d.ts +4 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/initializeAccountSettingsViewEpic.js +13 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/saveAccountSettingsViewEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/accountSettings/saveAccountSettingsViewEpic.js +50 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulePageEpic.d.ts +7 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulePageEpic.js +23 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/fetchJeSchedulesEpic.js +54 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/ignoreRecommendedJeScheduleEpic.d.ts +9 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/ignoreRecommendedJeScheduleEpic.js +82 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/initializeJeScheduleLocalDataEpic.d.ts +6 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/initializeJeScheduleLocalDataEpic.js +32 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/retryJeSchedulesEpic.d.ts +10 -0
- package/lib/view/expenseAutomationView/epics/jeSchedule/retryJeSchedulesEpic.js +82 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/bulkUploadMatchResultToastEpic.d.ts +13 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/bulkUploadMatchResultToastEpic.js +37 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic.d.ts +18 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic.js +33 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/confirmBulkUploadMatchEpic.d.ts +7 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/confirmBulkUploadMatchEpic.js +53 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchBulkUploadBatchDetailsEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchBulkUploadBatchDetailsEpic.js +44 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchBulkUploadBatchesEpic.d.ts +7 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchBulkUploadBatchesEpic.js +53 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchCompletedTransactionsEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchCompletedTransactionsEpic.js +85 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchMissingReceiptsEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchMissingReceiptsEpic.js +58 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchMoreBatchDetailsEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchMoreBatchDetailsEpic.js +37 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchMultipleBatchDetailsEpic.d.ts +9 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/fetchMultipleBatchDetailsEpic.js +77 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/refetchCompletedTransactionsOnBulkUploadSortEpic.d.ts +10 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/refetchCompletedTransactionsOnBulkUploadSortEpic.js +16 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/refreshBatchDetailsForBatchIdEpic.d.ts +18 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/refreshBatchDetailsForBatchIdEpic.js +56 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/restoreBulkUploadAutomatchingOnMountEpic.d.ts +18 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/restoreBulkUploadAutomatchingOnMountEpic.js +104 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/searchTransactionsForManualMatchEpic.d.ts +14 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/searchTransactionsForManualMatchEpic.js +86 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/syncTabsAfterAutomatchEpic.d.ts +28 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/syncTabsAfterAutomatchEpic.js +60 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/uploadMissingReceiptSuccessEpic.d.ts +7 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/uploadMissingReceiptSuccessEpic.js +28 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/watchBulkUploadBatchStatusEpic.d.ts +33 -0
- package/lib/view/expenseAutomationView/epics/missingReceipts/watchBulkUploadBatchStatusEpic.js +105 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/backgroundRefetchReviewTabEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/backgroundRefetchReviewTabEpic.js +105 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationEpic.d.ts +8 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationEpic.js +86 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.d.ts +10 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.js +52 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/initializeTransactionCategorizationLocalDataEpic.d.ts +5 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/initializeTransactionCategorizationLocalDataEpic.js +83 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/markTransactionAsNotMiscategorizedEpic.d.ts +9 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/markTransactionAsNotMiscategorizedEpic.js +141 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/saveTransactionCategorizationEpic.d.ts +5 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/saveTransactionCategorizationEpic.js +31 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.d.ts +6 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.js +31 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/updateTransactionCategorizationEpic.d.ts +6 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/updateTransactionCategorizationEpic.js +209 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/uploadTransactionReceiptSuccessEpic.d.ts +7 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/uploadTransactionReceiptSuccessEpic.js +28 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewPayload.d.ts +3 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewPayload.js +2 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewReducer.d.ts +20 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewReducer.js +80 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewSelector.d.ts +3 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewSelector.js +201 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewState.d.ts +11 -0
- package/lib/view/expenseAutomationView/expenseAutomationViewState.js +14 -0
- package/lib/view/expenseAutomationView/helpers/bulkUploadTiming.d.ts +16 -0
- package/lib/view/expenseAutomationView/helpers/bulkUploadTiming.js +19 -0
- package/lib/view/expenseAutomationView/helpers/helpers.d.ts +11 -0
- package/lib/view/expenseAutomationView/helpers/helpers.js +70 -0
- package/lib/view/expenseAutomationView/helpers/jeAccountSettingHelper.d.ts +3 -0
- package/lib/view/expenseAutomationView/helpers/jeAccountSettingHelper.js +50 -0
- package/lib/view/expenseAutomationView/helpers/reconciliationHelpers.d.ts +15 -0
- package/lib/view/expenseAutomationView/helpers/reconciliationHelpers.js +45 -0
- package/lib/view/expenseAutomationView/helpers/rollingCalendarDateRangeInclusive.d.ts +7 -0
- package/lib/view/expenseAutomationView/helpers/rollingCalendarDateRangeInclusive.js +16 -0
- package/lib/view/expenseAutomationView/helpers/saveTransactionHelper.d.ts +8 -0
- package/lib/view/expenseAutomationView/helpers/saveTransactionHelper.js +182 -0
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +61 -0
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +783 -0
- package/lib/view/expenseAutomationView/payload/fluxAnalysisPayload.d.ts +89 -0
- package/lib/view/expenseAutomationView/payload/fluxAnalysisPayload.js +10 -0
- package/lib/view/expenseAutomationView/payload/jeSchedulesPayload.d.ts +36 -0
- package/lib/view/expenseAutomationView/payload/jeSchedulesPayload.js +63 -0
- package/lib/view/expenseAutomationView/payload/missingReceiptsPayload.d.ts +139 -0
- package/lib/view/expenseAutomationView/payload/missingReceiptsPayload.js +213 -0
- package/lib/view/expenseAutomationView/payload/reconciliationPayload.d.ts +101 -0
- package/lib/view/expenseAutomationView/payload/reconciliationPayload.js +72 -0
- package/lib/view/expenseAutomationView/payload/transactionCategorizationPayload.d.ts +70 -0
- package/lib/view/expenseAutomationView/payload/transactionCategorizationPayload.js +2 -0
- package/lib/view/expenseAutomationView/reducers/fluxAnalysisViewReducer.d.ts +52 -0
- package/lib/view/expenseAutomationView/reducers/fluxAnalysisViewReducer.js +377 -0
- package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.d.ts +69 -0
- package/lib/view/expenseAutomationView/reducers/jeSchedulesViewReducer.js +465 -0
- package/lib/view/expenseAutomationView/reducers/missingReceiptsViewReducer.d.ts +133 -0
- package/lib/view/expenseAutomationView/reducers/missingReceiptsViewReducer.js +669 -0
- package/lib/view/expenseAutomationView/reducers/reconciliationViewReducer.d.ts +118 -0
- package/lib/view/expenseAutomationView/reducers/reconciliationViewReducer.js +686 -0
- package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.d.ts +202 -0
- package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.js +1065 -0
- package/lib/view/expenseAutomationView/selectorTypes/expenseAutomationViewSelectorTypes.d.ts +42 -0
- package/lib/view/expenseAutomationView/selectorTypes/expenseAutomationViewSelectorTypes.js +43 -0
- package/lib/view/expenseAutomationView/selectorTypes/fluxAnalysisViewSelectorTypes.d.ts +52 -0
- package/lib/view/expenseAutomationView/selectorTypes/fluxAnalysisViewSelectorTypes.js +2 -0
- package/lib/view/expenseAutomationView/selectorTypes/jeAccountSettingsViewSelectorTypes.d.ts +19 -0
- package/lib/view/expenseAutomationView/selectorTypes/jeAccountSettingsViewSelectorTypes.js +2 -0
- package/lib/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.d.ts +33 -0
- package/lib/view/expenseAutomationView/selectorTypes/jeSchedulesSelectorTypes.js +2 -0
- package/lib/view/expenseAutomationView/selectorTypes/missingReceiptsSelectorTypes.d.ts +96 -0
- package/lib/view/expenseAutomationView/selectorTypes/missingReceiptsSelectorTypes.js +2 -0
- package/lib/view/expenseAutomationView/selectorTypes/reconciliationViewSelectorTypes.d.ts +67 -0
- package/lib/view/expenseAutomationView/selectorTypes/reconciliationViewSelectorTypes.js +7 -0
- package/lib/view/expenseAutomationView/selectorTypes/transactionsViewSelectorTypes.d.ts +56 -0
- package/lib/view/expenseAutomationView/selectorTypes/transactionsViewSelectorTypes.js +2 -0
- package/lib/view/expenseAutomationView/selectors/fluxAnalysisViewSelector.d.ts +3 -0
- package/lib/view/expenseAutomationView/selectors/fluxAnalysisViewSelector.js +153 -0
- package/lib/view/expenseAutomationView/selectors/jeAccountSettingsViewSelector.d.ts +3 -0
- package/lib/view/expenseAutomationView/selectors/jeAccountSettingsViewSelector.js +41 -0
- package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.d.ts +7 -0
- package/lib/view/expenseAutomationView/selectors/jeSchedulesViewSelector.js +177 -0
- package/lib/view/expenseAutomationView/selectors/missingReceiptsSelector.d.ts +3 -0
- package/lib/view/expenseAutomationView/selectors/missingReceiptsSelector.js +322 -0
- package/lib/view/expenseAutomationView/selectors/reconciliationViewSelector.d.ts +5 -0
- package/lib/view/expenseAutomationView/selectors/reconciliationViewSelector.js +483 -0
- package/lib/view/expenseAutomationView/selectors/transactionCategorizationSelector.d.ts +10 -0
- package/lib/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +268 -0
- package/lib/view/expenseAutomationView/transactionFilterHelpers.d.ts +66 -0
- package/lib/view/expenseAutomationView/transactionFilterHelpers.js +350 -0
- package/lib/view/expenseAutomationView/types/completedSubTab.d.ts +10 -0
- package/lib/view/expenseAutomationView/types/completedSubTab.js +21 -0
- package/lib/view/expenseAutomationView/types/fluxAnalysisViewState.d.ts +79 -0
- package/lib/view/expenseAutomationView/types/fluxAnalysisViewState.js +6 -0
- package/lib/view/expenseAutomationView/types/jeSchedulesViewState.d.ts +66 -0
- package/lib/view/expenseAutomationView/types/jeSchedulesViewState.js +29 -0
- package/lib/view/expenseAutomationView/types/missingReceiptsViewState.d.ts +184 -0
- package/lib/view/expenseAutomationView/types/missingReceiptsViewState.js +63 -0
- package/lib/view/expenseAutomationView/types/reconciliationViewState.d.ts +138 -0
- package/lib/view/expenseAutomationView/types/reconciliationViewState.js +37 -0
- package/lib/view/expenseAutomationView/types/transactionsViewState.d.ts +187 -0
- package/lib/view/expenseAutomationView/types/transactionsViewState.js +33 -0
- package/lib/view/featureNotificationView/epics/fetchRegisteredInterestsEpic.d.ts +16 -0
- package/lib/view/featureNotificationView/epics/fetchRegisteredInterestsEpic.js +27 -0
- package/lib/view/featureNotificationView/epics/notifyMeForFeatureEpic.d.ts +14 -0
- package/lib/view/featureNotificationView/epics/notifyMeForFeatureEpic.js +29 -0
- package/lib/view/featureNotificationView/featureNotificationViewPayload.d.ts +23 -0
- package/lib/view/featureNotificationView/featureNotificationViewPayload.js +15 -0
- package/lib/view/featureNotificationView/featureNotificationViewReducer.d.ts +19 -0
- package/lib/view/featureNotificationView/featureNotificationViewReducer.js +110 -0
- package/lib/view/featureNotificationView/featureNotificationViewSelector.d.ts +6 -0
- package/lib/view/featureNotificationView/featureNotificationViewSelector.js +11 -0
- package/lib/view/featureNotificationView/featureNotificationViewState.d.ts +26 -0
- package/lib/view/featureNotificationView/featureNotificationViewState.js +2 -0
- package/lib/view/fileView/epic/deleteFileEpic.d.ts +8 -0
- package/lib/view/fileView/epic/deleteFileEpic.js +31 -0
- package/lib/view/fileView/epic/deleteFileListEpic.d.ts +8 -0
- package/lib/view/fileView/epic/deleteFileListEpic.js +28 -0
- package/lib/view/fileView/epic/fetchFileEpic.d.ts +8 -0
- package/lib/view/fileView/epic/fetchFileEpic.js +32 -0
- package/lib/view/fileView/epic/fetchFileListEpic.d.ts +8 -0
- package/lib/view/fileView/epic/fetchFileListEpic.js +30 -0
- package/lib/view/fileView/epic/updateFileNameEpic.d.ts +8 -0
- package/lib/view/fileView/epic/updateFileNameEpic.js +33 -0
- package/lib/view/fileView/epic/updateFilesMetadataEpic.d.ts +6 -0
- package/lib/view/fileView/epic/updateFilesMetadataEpic.js +16 -0
- package/lib/view/fileView/fileDownloadHelpers.d.ts +3 -0
- package/lib/view/fileView/fileDownloadHelpers.js +31 -0
- package/lib/view/fileView/fileUploadHelpers.d.ts +24 -0
- package/lib/view/fileView/fileUploadHelpers.js +90 -0
- package/lib/view/fileView/fileViewPayload.d.ts +7 -0
- package/lib/view/fileView/fileViewPayload.js +2 -0
- package/lib/view/fileView/fileViewReducer.d.ts +46 -0
- package/lib/view/fileView/fileViewReducer.js +166 -0
- package/lib/view/fileView/fileViewSelector.d.ts +14 -0
- package/lib/view/fileView/fileViewSelector.js +36 -0
- package/lib/view/fileView/fileViewState.d.ts +12 -0
- package/lib/view/fileView/fileViewState.js +15 -0
- package/lib/view/financeStatement/financeStatementEpic.d.ts +53 -0
- package/lib/view/financeStatement/financeStatementEpic.js +75 -0
- package/lib/view/financeStatement/financeStatementReducer.d.ts +28 -0
- package/lib/view/financeStatement/financeStatementReducer.js +140 -0
- package/lib/view/financeStatement/financeStatementSelector.d.ts +32 -0
- package/lib/view/financeStatement/financeStatementSelector.js +147 -0
- package/lib/view/financeStatement/financeStatementState.d.ts +7 -0
- package/lib/view/financeStatement/financeStatementState.js +2 -0
- package/lib/view/forecastList/fetchForecastListEpic.d.ts +8 -0
- package/lib/view/forecastList/fetchForecastListEpic.js +19 -0
- package/lib/view/forecastList/forecastListPayload.d.ts +7 -0
- package/lib/view/forecastList/forecastListPayload.js +2 -0
- package/lib/view/forecastList/forecastListReducer.d.ts +7 -0
- package/lib/view/forecastList/forecastListReducer.js +38 -0
- package/lib/view/forecastList/forecastListSelector.d.ts +19 -0
- package/lib/view/forecastList/forecastListSelector.js +27 -0
- package/lib/view/forecastList/forecastListState.d.ts +4 -0
- package/lib/view/forecastList/forecastListState.js +2 -0
- package/lib/view/globalMerchantView/epics/createGlobalMerchantEpic.d.ts +9 -0
- package/lib/view/globalMerchantView/epics/createGlobalMerchantEpic.js +101 -0
- package/lib/view/globalMerchantView/epics/fetchGlobalMerchantRecommendationEpic.d.ts +9 -0
- package/lib/view/globalMerchantView/epics/fetchGlobalMerchantRecommendationEpic.js +64 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/fetchGlobalMerchantAutoCompleteViewEpic.d.ts +8 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/fetchGlobalMerchantAutoCompleteViewEpic.js +48 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewPayload.d.ts +11 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewPayload.js +2 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewReducer.d.ts +11 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewReducer.js +45 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewSelector.d.ts +7 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewSelector.js +14 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewState.d.ts +8 -0
- package/lib/view/globalMerchantView/globalMerchantAutoCompleteView/globalMerchantAutoCompleteViewState.js +7 -0
- package/lib/view/globalMerchantView/globalMerchantViewPayload.d.ts +24 -0
- package/lib/view/globalMerchantView/globalMerchantViewPayload.js +2 -0
- package/lib/view/globalMerchantView/globalMerchantViewReducer.d.ts +27 -0
- package/lib/view/globalMerchantView/globalMerchantViewReducer.js +121 -0
- package/lib/view/globalMerchantView/globalMerchantViewSelector.d.ts +9 -0
- package/lib/view/globalMerchantView/globalMerchantViewSelector.js +20 -0
- package/lib/view/globalMerchantView/globalMerchantViewState.d.ts +19 -0
- package/lib/view/globalMerchantView/globalMerchantViewState.js +2 -0
- package/lib/view/insightsCard/insightsCardEpic.d.ts +15 -0
- package/lib/view/insightsCard/insightsCardEpic.js +20 -0
- package/lib/view/insightsCard/insightsCardPayload.d.ts +7 -0
- package/lib/view/insightsCard/insightsCardPayload.js +2 -0
- package/lib/view/insightsCard/insightsCardReducer.d.ts +7 -0
- package/lib/view/insightsCard/insightsCardReducer.js +46 -0
- package/lib/view/insightsCard/insightsCardSelector.d.ts +3 -0
- package/lib/view/insightsCard/insightsCardSelector.js +18 -0
- package/lib/view/insightsCard/insightsCardSelectorTypes.d.ts +8 -0
- package/lib/view/insightsCard/insightsCardSelectorTypes.js +2 -0
- package/lib/view/insightsCard/insightsCardState.d.ts +7 -0
- package/lib/view/insightsCard/insightsCardState.js +2 -0
- package/lib/view/monthEndCloseChecksView/epics/fetchMonthClosePerformanceTrendEpic.d.ts +7 -0
- package/lib/view/monthEndCloseChecksView/epics/fetchMonthClosePerformanceTrendEpic.js +47 -0
- package/lib/view/monthEndCloseChecksView/epics/fetchMonthEndCloseChecksEpic.d.ts +8 -0
- package/lib/view/monthEndCloseChecksView/epics/fetchMonthEndCloseChecksEpic.js +61 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewPayload.d.ts +11 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewPayload.js +2 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewReducer.d.ts +28 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewReducer.js +105 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewSelector.d.ts +16 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewSelector.js +93 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewState.d.ts +12 -0
- package/lib/view/monthEndCloseChecksView/monthEndCloseChecksViewState.js +2 -0
- package/lib/view/netBurnOrIncome/fetchNetBurnOrIncomeWithForecastEpic.d.ts +21 -0
- package/lib/view/netBurnOrIncome/fetchNetBurnOrIncomeWithForecastEpic.js +113 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeEpic.d.ts +5 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeEpic.js +35 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeForTimeframeEpic.d.ts +11 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeForTimeframeEpic.js +58 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeHelper.d.ts +9 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeHelper.js +37 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomePayload.d.ts +21 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomePayload.js +2 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeReducer.d.ts +65 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeReducer.js +434 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeSelector.d.ts +15 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeSelector.js +183 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeSelectorTypes.d.ts +26 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeSelectorTypes.js +22 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeState.d.ts +40 -0
- package/lib/view/netBurnOrIncome/netBurnOrIncomeState.js +2 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewEpic.d.ts +6 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewEpic.js +34 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewPayload.d.ts +11 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewPayload.js +2 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewReducer.d.ts +35 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewReducer.js +117 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewSelector.d.ts +11 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewSelector.js +105 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewSelectorTypes.d.ts +17 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewSelectorTypes.js +21 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewState.d.ts +21 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewState.js +2 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeForTimeframeClassesViewEpic.d.ts +8 -0
- package/lib/view/netBurnOrIncomeClassesView/netBurnOrIncomeForTimeframeClassesViewEpic.js +44 -0
- package/lib/view/netBurnOrIncomeStoryCard/epic/fetchNetBurnOrIncomeStoryCardEpic.d.ts +6 -0
- package/lib/view/netBurnOrIncomeStoryCard/epic/fetchNetBurnOrIncomeStoryCardEpic.js +29 -0
- package/lib/view/netBurnOrIncomeStoryCard/epic/updateNetBurnOrIncomeStoryCardSettingsEpic.d.ts +9 -0
- package/lib/view/netBurnOrIncomeStoryCard/epic/updateNetBurnOrIncomeStoryCardSettingsEpic.js +44 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardPayload.d.ts +50 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardPayload.js +49 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardReducer.d.ts +14 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardReducer.js +130 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardSelector.d.ts +3 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardSelector.js +85 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardSelectorTypes.d.ts +19 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardSelectorTypes.js +7 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardState.d.ts +43 -0
- package/lib/view/netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardState.js +16 -0
- package/lib/view/notificationView/epics/fetchNotificationUnreadCountEpic.d.ts +10 -0
- package/lib/view/notificationView/epics/fetchNotificationUnreadCountEpic.js +39 -0
- package/lib/view/notificationView/epics/fetchNotificationViewEpic.d.ts +9 -0
- package/lib/view/notificationView/epics/fetchNotificationViewEpic.js +58 -0
- package/lib/view/notificationView/epics/updateNotificationViewAllNotificationsStatusEpic.d.ts +9 -0
- package/lib/view/notificationView/epics/updateNotificationViewAllNotificationsStatusEpic.js +50 -0
- package/lib/view/notificationView/epics/updateNotificationViewNotificationStatusEpic.d.ts +9 -0
- package/lib/view/notificationView/epics/updateNotificationViewNotificationStatusEpic.js +86 -0
- package/lib/view/notificationView/notificationView.helpers.d.ts +2 -0
- package/lib/view/notificationView/notificationView.helpers.js +11 -0
- package/lib/view/notificationView/notificationViewPayload.d.ts +34 -0
- package/lib/view/notificationView/notificationViewPayload.js +2 -0
- package/lib/view/notificationView/notificationViewReducer.d.ts +65 -0
- package/lib/view/notificationView/notificationViewReducer.js +381 -0
- package/lib/view/notificationView/notificationViewSelector.d.ts +29 -0
- package/lib/view/notificationView/notificationViewSelector.js +99 -0
- package/lib/view/notificationView/notificationViewState.d.ts +30 -0
- package/lib/view/notificationView/notificationViewState.js +19 -0
- package/lib/view/onboardingView/cockpitView/epic/fetchCompanyOnboardingViewEpic.d.ts +13 -0
- package/lib/view/onboardingView/cockpitView/epic/fetchCompanyOnboardingViewEpic.js +53 -0
- package/lib/view/onboardingView/cockpitView/epic/fetchOnboardingCompletedCompaniesEpic.d.ts +8 -0
- package/lib/view/onboardingView/cockpitView/epic/fetchOnboardingCompletedCompaniesEpic.js +27 -0
- package/lib/view/onboardingView/cockpitView/epic/fetchQBOConnectionPoolEpic.d.ts +7 -0
- package/lib/view/onboardingView/cockpitView/epic/fetchQBOConnectionPoolEpic.js +19 -0
- package/lib/view/onboardingView/cockpitView/epic/getOnboardingEmailGroupEpic.d.ts +7 -0
- package/lib/view/onboardingView/cockpitView/epic/getOnboardingEmailGroupEpic.js +27 -0
- package/lib/view/onboardingView/cockpitView/epic/initializeOnboardingCustomerViewUpdateDataEpic.d.ts +6 -0
- package/lib/view/onboardingView/cockpitView/epic/initializeOnboardingCustomerViewUpdateDataEpic.js +163 -0
- package/lib/view/onboardingView/cockpitView/epic/retryBankAccountConnectionForOnboardingEpic.d.ts +9 -0
- package/lib/view/onboardingView/cockpitView/epic/retryBankAccountConnectionForOnboardingEpic.js +88 -0
- package/lib/view/onboardingView/cockpitView/epic/saveOnboardingCustomerCompletedStatusEpic.d.ts +10 -0
- package/lib/view/onboardingView/cockpitView/epic/saveOnboardingCustomerCompletedStatusEpic.js +37 -0
- package/lib/view/onboardingView/cockpitView/epic/saveOnboardingCustomerNotesEpic.d.ts +8 -0
- package/lib/view/onboardingView/cockpitView/epic/saveOnboardingCustomerNotesEpic.js +36 -0
- package/lib/view/onboardingView/cockpitView/epic/saveOnboardingCustomerViewUpdatesEpic.d.ts +14 -0
- package/lib/view/onboardingView/cockpitView/epic/saveOnboardingCustomerViewUpdatesEpic.js +127 -0
- package/lib/view/onboardingView/cockpitView/epic/sendOnboardingCustomerViewInviteEpic.d.ts +17 -0
- package/lib/view/onboardingView/cockpitView/epic/sendOnboardingCustomerViewInviteEpic.js +120 -0
- package/lib/view/onboardingView/cockpitView/epic/updateQBOConnectionPoolExternalConnectionEpic.d.ts +14 -0
- package/lib/view/onboardingView/cockpitView/epic/updateQBOConnectionPoolExternalConnectionEpic.js +31 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewPayload.d.ts +76 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewPayload.js +137 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewReducer.d.ts +80 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewReducer.js +597 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewSelector.d.ts +65 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewSelector.js +260 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewState.d.ts +47 -0
- package/lib/view/onboardingView/cockpitView/onboardingCockpitViewState.js +2 -0
- package/lib/view/onboardingView/cockpitView/types/onboardingCockpitViewTypes.d.ts +47 -0
- package/lib/view/onboardingView/cockpitView/types/onboardingCockpitViewTypes.js +29 -0
- package/lib/view/onboardingView/customerView/epic/aiAgentsActivation/fetchAiAgentsActivationStatusEpic.d.ts +7 -0
- package/lib/view/onboardingView/customerView/epic/aiAgentsActivation/fetchAiAgentsActivationStatusEpic.js +44 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/acknowledgeOnboardingAiActivationViewedEpic.d.ts +8 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/acknowledgeOnboardingAiActivationViewedEpic.js +33 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/acknowledgeOnboardingAiFinanceTeamEpic.d.ts +9 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/acknowledgeOnboardingAiFinanceTeamEpic.js +44 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/fetchOnboardingCustomerSetupViewEpic.d.ts +16 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/fetchOnboardingCustomerSetupViewEpic.js +71 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/fetchOnboardingCustomerViewEpic.d.ts +16 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/fetchOnboardingCustomerViewEpic.js +27 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewCompleteStatusEpic.d.ts +9 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewCompleteStatusEpic.js +53 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewDashboardLoadedEpic.d.ts +8 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewDashboardLoadedEpic.js +32 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewEpic.d.ts +15 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewEpic.js +189 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewLocalStoreDataEpic.d.ts +6 -0
- package/lib/view/onboardingView/customerView/epic/customerDetails/updateOnboardingCustomerViewLocalStoreDataEpic.js +147 -0
- package/lib/view/onboardingView/customerView/epic/paymentAccounts/updateOnboardingPaymentAccountLoginStatusEpic.d.ts +10 -0
- package/lib/view/onboardingView/customerView/epic/paymentAccounts/updateOnboardingPaymentAccountLoginStatusEpic.js +37 -0
- package/lib/view/onboardingView/customerView/epic/paymentAccounts/updateOnboardingPaymentAccountStatusEpic.d.ts +10 -0
- package/lib/view/onboardingView/customerView/epic/paymentAccounts/updateOnboardingPaymentAccountStatusEpic.js +37 -0
- package/lib/view/onboardingView/customerView/epic/plaidConnection/establishOnboardingPlaidConnectionEpic.d.ts +10 -0
- package/lib/view/onboardingView/customerView/epic/plaidConnection/establishOnboardingPlaidConnectionEpic.js +45 -0
- package/lib/view/onboardingView/customerView/epic/plaidConnection/getOnboardingPlaidLinkTokenEpic.d.ts +8 -0
- package/lib/view/onboardingView/customerView/epic/plaidConnection/getOnboardingPlaidLinkTokenEpic.js +31 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewPayload.d.ts +35 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewPayload.js +2 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewReducer.d.ts +121 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewReducer.js +775 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewSelector.d.ts +62 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewSelector.js +354 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewState.d.ts +93 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewState.js +72 -0
- package/lib/view/onboardingView/customerView/types/paymentAccount.d.ts +8 -0
- package/lib/view/onboardingView/customerView/types/paymentAccount.js +2 -0
- package/lib/view/opEx/fetchOpExWithForecastEpic.d.ts +21 -0
- package/lib/view/opEx/fetchOpExWithForecastEpic.js +112 -0
- package/lib/view/opEx/opExEpic.d.ts +6 -0
- package/lib/view/opEx/opExEpic.js +35 -0
- package/lib/view/opEx/opExForTimeFrameEpic.d.ts +11 -0
- package/lib/view/opEx/opExForTimeFrameEpic.js +53 -0
- package/lib/view/opEx/opExPayload.d.ts +10 -0
- package/lib/view/opEx/opExPayload.js +2 -0
- package/lib/view/opEx/opExReducer.d.ts +65 -0
- package/lib/view/opEx/opExReducer.js +404 -0
- package/lib/view/opEx/opExSelector.d.ts +10 -0
- package/lib/view/opEx/opExSelector.js +171 -0
- package/lib/view/opEx/opExSelectorTypes.d.ts +19 -0
- package/lib/view/opEx/opExSelectorTypes.js +2 -0
- package/lib/view/opEx/opExState.d.ts +29 -0
- package/lib/view/opEx/opExState.js +2 -0
- package/lib/view/opExByVendor/fetchOpExByVendorReportEpic.d.ts +6 -0
- package/lib/view/opExByVendor/fetchOpExByVendorReportEpic.js +35 -0
- package/lib/view/opExByVendor/fetchOpExByVendorReportForTimeframeEpic.d.ts +10 -0
- package/lib/view/opExByVendor/fetchOpExByVendorReportForTimeframeEpic.js +83 -0
- package/lib/view/opExByVendor/fetchOpExByVendorReportSummaryEpic.d.ts +7 -0
- package/lib/view/opExByVendor/fetchOpExByVendorReportSummaryEpic.js +41 -0
- package/lib/view/opExByVendor/opExByVendorPayload.d.ts +51 -0
- package/lib/view/opExByVendor/opExByVendorPayload.js +2 -0
- package/lib/view/opExByVendor/opExByVendorReducer.d.ts +57 -0
- package/lib/view/opExByVendor/opExByVendorReducer.js +357 -0
- package/lib/view/opExByVendor/opExByVendorSelector.d.ts +42 -0
- package/lib/view/opExByVendor/opExByVendorSelector.js +181 -0
- package/lib/view/opExByVendor/opExByVendorState.d.ts +77 -0
- package/lib/view/opExByVendor/opExByVendorState.js +16 -0
- package/lib/view/opExClassesView/opExClassesViewEpic.d.ts +6 -0
- package/lib/view/opExClassesView/opExClassesViewEpic.js +34 -0
- package/lib/view/opExClassesView/opExClassesViewPayload.d.ts +6 -0
- package/lib/view/opExClassesView/opExClassesViewPayload.js +2 -0
- package/lib/view/opExClassesView/opExClassesViewReducer.d.ts +35 -0
- package/lib/view/opExClassesView/opExClassesViewReducer.js +118 -0
- package/lib/view/opExClassesView/opExClassesViewSelector.d.ts +12 -0
- package/lib/view/opExClassesView/opExClassesViewSelector.js +90 -0
- package/lib/view/opExClassesView/opExClassesViewSelectorTypes.d.ts +15 -0
- package/lib/view/opExClassesView/opExClassesViewSelectorTypes.js +14 -0
- package/lib/view/opExClassesView/opExClassesViewState.d.ts +21 -0
- package/lib/view/opExClassesView/opExClassesViewState.js +2 -0
- package/lib/view/opExClassesView/opExForTimeframeClassesViewEpic.d.ts +8 -0
- package/lib/view/opExClassesView/opExForTimeframeClassesViewEpic.js +42 -0
- package/lib/view/ownerList/fetchOwnerListEpic.d.ts +8 -0
- package/lib/view/ownerList/fetchOwnerListEpic.js +34 -0
- package/lib/view/ownerList/ownerListPayload.d.ts +6 -0
- package/lib/view/ownerList/ownerListPayload.js +2 -0
- package/lib/view/ownerList/ownerListReducer.d.ts +11 -0
- package/lib/view/ownerList/ownerListReducer.js +38 -0
- package/lib/view/ownerList/ownerListState.d.ts +4 -0
- package/lib/view/ownerList/ownerListState.js +2 -0
- package/lib/view/people/changeZeniPersonRolesEpic.d.ts +44 -0
- package/lib/view/people/changeZeniPersonRolesEpic.js +38 -0
- package/lib/view/people/deletePersonEpic.d.ts +34 -0
- package/lib/view/people/deletePersonEpic.js +24 -0
- package/lib/view/people/fetchAllPeopleRequiredViewsEpic.d.ts +9 -0
- package/lib/view/people/fetchAllPeopleRequiredViewsEpic.js +23 -0
- package/lib/view/people/fetchPeopleEpic.d.ts +23 -0
- package/lib/view/people/fetchPeopleEpic.js +29 -0
- package/lib/view/people/helpers/updateManagersListOnRoleChange.d.ts +11 -0
- package/lib/view/people/helpers/updateManagersListOnRoleChange.js +20 -0
- package/lib/view/people/initializeEditPersonEpic.d.ts +5 -0
- package/lib/view/people/initializeEditPersonEpic.js +42 -0
- package/lib/view/people/invitePeopleEpic.d.ts +48 -0
- package/lib/view/people/invitePeopleEpic.js +61 -0
- package/lib/view/people/inviteZeniPeopleEpic.d.ts +50 -0
- package/lib/view/people/inviteZeniPeopleEpic.js +53 -0
- package/lib/view/people/peoplePageEpic.d.ts +15 -0
- package/lib/view/people/peoplePageEpic.js +27 -0
- package/lib/view/people/peoplePayload.d.ts +20 -0
- package/lib/view/people/peoplePayload.js +2 -0
- package/lib/view/people/peopleReducer.d.ts +38 -0
- package/lib/view/people/peopleReducer.js +254 -0
- package/lib/view/people/peopleSaveUpdatesEpic.d.ts +6 -0
- package/lib/view/people/peopleSaveUpdatesEpic.js +79 -0
- package/lib/view/people/peopleSelector.d.ts +7 -0
- package/lib/view/people/peopleSelector.js +148 -0
- package/lib/view/people/peopleSelectorTypes.d.ts +28 -0
- package/lib/view/people/peopleSelectorTypes.js +2 -0
- package/lib/view/people/peopleState.d.ts +34 -0
- package/lib/view/people/peopleState.js +2 -0
- package/lib/view/people/peopleTypes.d.ts +3 -0
- package/lib/view/people/peopleTypes.js +12 -0
- package/lib/view/people/resendInviteEpic.d.ts +29 -0
- package/lib/view/people/resendInviteEpic.js +25 -0
- package/lib/view/profitAndLoss/pAndLWithForecast/pAndLWithForecastSelector.d.ts +17 -0
- package/lib/view/profitAndLoss/pAndLWithForecast/pAndLWithForecastSelector.js +48 -0
- package/lib/view/profitAndLoss/profitAndLossEpic.d.ts +6 -0
- package/lib/view/profitAndLoss/profitAndLossEpic.js +35 -0
- package/lib/view/profitAndLoss/profitAndLossForTimeframeEpic.d.ts +10 -0
- package/lib/view/profitAndLoss/profitAndLossForTimeframeEpic.js +59 -0
- package/lib/view/profitAndLoss/profitAndLossPayload.d.ts +16 -0
- package/lib/view/profitAndLoss/profitAndLossPayload.js +2 -0
- package/lib/view/profitAndLoss/profitAndLossReducer.d.ts +37 -0
- package/lib/view/profitAndLoss/profitAndLossReducer.js +172 -0
- package/lib/view/profitAndLoss/profitAndLossSelector.d.ts +48 -0
- package/lib/view/profitAndLoss/profitAndLossSelector.js +114 -0
- package/lib/view/profitAndLoss/profitAndLossState.d.ts +19 -0
- package/lib/view/profitAndLoss/profitAndLossState.js +2 -0
- package/lib/view/profitAndLossClassesView/horizontalSectionEmptyBalancesSlice.d.ts +9 -0
- package/lib/view/profitAndLossClassesView/horizontalSectionEmptyBalancesSlice.js +20 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector.d.ts +15 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelector.js +338 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelectorTypes.d.ts +111 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesByClassHorizontalSelectorTypes.js +13 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewEpic.d.ts +6 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewEpic.js +34 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewPayload.d.ts +16 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewPayload.js +2 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewReducer.d.ts +37 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewReducer.js +127 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewSelector.d.ts +8 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewSelector.js +71 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewSelectorTypes.d.ts +14 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewSelectorTypes.js +26 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewState.d.ts +25 -0
- package/lib/view/profitAndLossClassesView/profitAndLossClassesViewState.js +2 -0
- package/lib/view/profitAndLossClassesView/profitAndLossForTimeframeClassesViewEpic.d.ts +8 -0
- package/lib/view/profitAndLossClassesView/profitAndLossForTimeframeClassesViewEpic.js +48 -0
- package/lib/view/profitAndLossClassesView/profitAndLossHorizontalEnrichment.d.ts +20 -0
- package/lib/view/profitAndLossClassesView/profitAndLossHorizontalEnrichment.js +310 -0
- package/lib/view/profitAndLossProjectView/profitAndLossForTimeframeProjectViewEpic.d.ts +9 -0
- package/lib/view/profitAndLossProjectView/profitAndLossForTimeframeProjectViewEpic.js +51 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewEpic.d.ts +6 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewEpic.js +34 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewPayload.d.ts +33 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewPayload.js +2 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewReducer.d.ts +33 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewReducer.js +117 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelector.d.ts +9 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelector.js +69 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelectorTypes.d.ts +19 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewSelectorTypes.js +2 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewState.d.ts +22 -0
- package/lib/view/profitAndLossProjectView/profitAndLossProjectViewState.js +2 -0
- package/lib/view/projectList/fetchProjectListEpic.d.ts +8 -0
- package/lib/view/projectList/fetchProjectListEpic.js +42 -0
- package/lib/view/projectList/projectListPayload.d.ts +7 -0
- package/lib/view/projectList/projectListPayload.js +2 -0
- package/lib/view/projectList/projectListReducer.d.ts +9 -0
- package/lib/view/projectList/projectListReducer.js +43 -0
- package/lib/view/projectList/projectListSelector.d.ts +8 -0
- package/lib/view/projectList/projectListSelector.js +13 -0
- package/lib/view/projectList/projectListState.d.ts +4 -0
- package/lib/view/projectList/projectListState.js +2 -0
- package/lib/view/recommendation/fetchEntityRecommendationsByTransactionIdEpic.d.ts +11 -0
- package/lib/view/recommendation/fetchEntityRecommendationsByTransactionIdEpic.js +84 -0
- package/lib/view/recommendation/fetchEntityRecommendationsForLineUpdateEpic.d.ts +9 -0
- package/lib/view/recommendation/fetchEntityRecommendationsForLineUpdateEpic.js +91 -0
- package/lib/view/recommendation/fetchRecommendationByEntityIdEpic.d.ts +7 -0
- package/lib/view/recommendation/fetchRecommendationByEntityIdEpic.js +39 -0
- package/lib/view/recommendation/fetchRecommendationByEntityNameEpic.d.ts +7 -0
- package/lib/view/recommendation/fetchRecommendationByEntityNameEpic.js +38 -0
- package/lib/view/recommendation/recommendationHelper.d.ts +17 -0
- package/lib/view/recommendation/recommendationHelper.js +94 -0
- package/lib/view/recommendation/recommendationPayload.d.ts +15 -0
- package/lib/view/recommendation/recommendationPayload.js +2 -0
- package/lib/view/recommendation/recommendationReducer.d.ts +63 -0
- package/lib/view/recommendation/recommendationReducer.js +152 -0
- package/lib/view/recommendation/recommendationSelector.d.ts +10 -0
- package/lib/view/recommendation/recommendationSelector.js +17 -0
- package/lib/view/recommendation/recommendationState.d.ts +12 -0
- package/lib/view/recommendation/recommendationState.js +13 -0
- package/lib/view/referralView/epics/fetchReferralsEpic.d.ts +7 -0
- package/lib/view/referralView/epics/fetchReferralsEpic.js +30 -0
- package/lib/view/referralView/epics/fetchRewardsPlanEpic.d.ts +7 -0
- package/lib/view/referralView/epics/fetchRewardsPlanEpic.js +35 -0
- package/lib/view/referralView/epics/resendReferralInviteEpic.d.ts +8 -0
- package/lib/view/referralView/epics/resendReferralInviteEpic.js +33 -0
- package/lib/view/referralView/epics/sendReferralInviteEpic.d.ts +8 -0
- package/lib/view/referralView/epics/sendReferralInviteEpic.js +40 -0
- package/lib/view/referralView/epics/updateReferViewedEpic.d.ts +8 -0
- package/lib/view/referralView/epics/updateReferViewedEpic.js +22 -0
- package/lib/view/referralView/referralPayload.d.ts +53 -0
- package/lib/view/referralView/referralPayload.js +33 -0
- package/lib/view/referralView/referralReducer.d.ts +24 -0
- package/lib/view/referralView/referralReducer.js +200 -0
- package/lib/view/referralView/referralSelector.d.ts +24 -0
- package/lib/view/referralView/referralSelector.js +92 -0
- package/lib/view/referralView/referralState.d.ts +59 -0
- package/lib/view/referralView/referralState.js +42 -0
- package/lib/view/reimbursementCard/fetchReimbursementCardEpic.d.ts +8 -0
- package/lib/view/reimbursementCard/fetchReimbursementCardEpic.js +45 -0
- package/lib/view/reimbursementCard/reimbursementCardPayload.d.ts +25 -0
- package/lib/view/reimbursementCard/reimbursementCardPayload.js +2 -0
- package/lib/view/reimbursementCard/reimbursementCardReducer.d.ts +10 -0
- package/lib/view/reimbursementCard/reimbursementCardReducer.js +55 -0
- package/lib/view/reimbursementCard/reimbursementCardSelector.d.ts +12 -0
- package/lib/view/reimbursementCard/reimbursementCardSelector.js +16 -0
- package/lib/view/reimbursementCard/reimbursementCardState.d.ts +11 -0
- package/lib/view/reimbursementCard/reimbursementCardState.js +4 -0
- package/lib/view/reportUIOptions/reportUIOptionsReducer.d.ts +40 -0
- package/lib/view/reportUIOptions/reportUIOptionsReducer.js +122 -0
- package/lib/view/reportUIOptions/reportUIOptionsState.d.ts +22 -0
- package/lib/view/reportUIOptions/reportUIOptionsState.js +2 -0
- package/lib/view/reportUIOptions/toggleReportUIOptionForecastModeEpic.d.ts +11 -0
- package/lib/view/reportUIOptions/toggleReportUIOptionForecastModeEpic.js +40 -0
- package/lib/view/reportUIOptions/updateReportUIOptionCOABalancesRangeEpic.d.ts +43 -0
- package/lib/view/reportUIOptions/updateReportUIOptionCOABalancesRangeEpic.js +76 -0
- package/lib/view/reportUIOptions/updateReportUIOptionCompareModeEpic.d.ts +54 -0
- package/lib/view/reportUIOptions/updateReportUIOptionCompareModeEpic.js +54 -0
- package/lib/view/reportUIOptions/updateReportUIOptionIsCompareModeOnEpic.d.ts +11 -0
- package/lib/view/reportUIOptions/updateReportUIOptionIsCompareModeOnEpic.js +68 -0
- package/lib/view/reportUIOptions/updateReportUIOptionThisPeriodEpic.d.ts +42 -0
- package/lib/view/reportUIOptions/updateReportUIOptionThisPeriodEpic.js +30 -0
- package/lib/view/reportUIOptions/updateReportUIOptionTimeFrameEpic.d.ts +23 -0
- package/lib/view/reportUIOptions/updateReportUIOptionTimeFrameEpic.js +15 -0
- package/lib/view/reportsResync/reportsClassViewRefetchingEpic.d.ts +11 -0
- package/lib/view/reportsResync/reportsClassViewRefetchingEpic.js +38 -0
- package/lib/view/reportsResync/reportsResyncEpic.d.ts +8 -0
- package/lib/view/reportsResync/reportsResyncEpic.js +48 -0
- package/lib/view/reportsResync/reportsResyncReducer.d.ts +15 -0
- package/lib/view/reportsResync/reportsResyncReducer.js +53 -0
- package/lib/view/reportsResync/reportsResyncSelector.d.ts +7 -0
- package/lib/view/reportsResync/reportsResyncSelector.js +10 -0
- package/lib/view/reportsResync/reportsResyncState.d.ts +5 -0
- package/lib/view/reportsResync/reportsResyncState.js +2 -0
- package/lib/view/revenue/fetchRevenueWithForecastEpic.d.ts +21 -0
- package/lib/view/revenue/fetchRevenueWithForecastEpic.js +111 -0
- package/lib/view/revenue/revenueEpic.d.ts +6 -0
- package/lib/view/revenue/revenueEpic.js +35 -0
- package/lib/view/revenue/revenueForTimeframeEpic.d.ts +11 -0
- package/lib/view/revenue/revenueForTimeframeEpic.js +55 -0
- package/lib/view/revenue/revenueHelper.d.ts +9 -0
- package/lib/view/revenue/revenueHelper.js +37 -0
- package/lib/view/revenue/revenuePayload.d.ts +13 -0
- package/lib/view/revenue/revenuePayload.js +2 -0
- package/lib/view/revenue/revenueReducer.d.ts +65 -0
- package/lib/view/revenue/revenueReducer.js +417 -0
- package/lib/view/revenue/revenueSelector.d.ts +15 -0
- package/lib/view/revenue/revenueSelector.js +208 -0
- package/lib/view/revenue/revenueSelectorTypes.d.ts +29 -0
- package/lib/view/revenue/revenueSelectorTypes.js +15 -0
- package/lib/view/revenue/revenueState.d.ts +31 -0
- package/lib/view/revenue/revenueState.js +2 -0
- package/lib/view/revenueClassesView/revenueClassesViewEpic.d.ts +6 -0
- package/lib/view/revenueClassesView/revenueClassesViewEpic.js +34 -0
- package/lib/view/revenueClassesView/revenueClassesViewPayload.d.ts +9 -0
- package/lib/view/revenueClassesView/revenueClassesViewPayload.js +2 -0
- package/lib/view/revenueClassesView/revenueClassesViewReducer.d.ts +35 -0
- package/lib/view/revenueClassesView/revenueClassesViewReducer.js +118 -0
- package/lib/view/revenueClassesView/revenueClassesViewSelector.d.ts +12 -0
- package/lib/view/revenueClassesView/revenueClassesViewSelector.js +94 -0
- package/lib/view/revenueClassesView/revenueClassesViewSelectorTypes.d.ts +15 -0
- package/lib/view/revenueClassesView/revenueClassesViewSelectorTypes.js +16 -0
- package/lib/view/revenueClassesView/revenueClassesViewState.d.ts +21 -0
- package/lib/view/revenueClassesView/revenueClassesViewState.js +2 -0
- package/lib/view/revenueClassesView/revenueForTimeframeClassesViewEpic.d.ts +8 -0
- package/lib/view/revenueClassesView/revenueForTimeframeClassesViewEpic.js +34 -0
- package/lib/view/reviewCompanyView/fetchReviewCompanyViewEpic.d.ts +8 -0
- package/lib/view/reviewCompanyView/fetchReviewCompanyViewEpic.js +47 -0
- package/lib/view/reviewCompanyView/retryBankAccountConnectionEpic.d.ts +8 -0
- package/lib/view/reviewCompanyView/retryBankAccountConnectionEpic.js +79 -0
- package/lib/view/reviewCompanyView/reviewCompanyPayload.d.ts +48 -0
- package/lib/view/reviewCompanyView/reviewCompanyPayload.js +2 -0
- package/lib/view/reviewCompanyView/reviewCompanyViewReducer.d.ts +27 -0
- package/lib/view/reviewCompanyView/reviewCompanyViewReducer.js +131 -0
- package/lib/view/reviewCompanyView/reviewCompanyViewSelector.d.ts +19 -0
- package/lib/view/reviewCompanyView/reviewCompanyViewSelector.js +155 -0
- package/lib/view/reviewCompanyView/reviewCompanyViewState.d.ts +40 -0
- package/lib/view/reviewCompanyView/reviewCompanyViewState.js +62 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/LinkBillExpenseView/linkBillExpense.d.ts +3 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/LinkBillExpenseView/linkBillExpense.js +13 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/cancelScheduleAccruedJournalEntryEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/cancelScheduleAccruedJournalEntryEpic.js +82 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/createNewSchedulesAccruedEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/createNewSchedulesAccruedEpic.js +34 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/deleteScheduleAccruedDetailEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/deleteScheduleAccruedDetailEpic.js +81 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/fetchRecommendedTransactionRowIndexEpic.d.ts +7 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/fetchRecommendedTransactionRowIndexEpic.js +72 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/fetchScheduleAccruedDetailsEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/fetchScheduleAccruedDetailsEpic.js +52 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/fetchScheduleAccruedDetailsPageEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/fetchScheduleAccruedDetailsPageEpic.js +28 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/initializeScheduleAccruedDetailLocalDataEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/initializeScheduleAccruedDetailLocalDataEpic.js +42 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/saveScheduleAccruedDetailsEpic.d.ts +12 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/saveScheduleAccruedDetailsEpic.js +130 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/updateAmountsInScheduleAccruedDetailEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/epics/updateAmountsInScheduleAccruedDetailEpic.js +33 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailLocalDataHelper.d.ts +18 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailLocalDataHelper.js +123 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailPayload.d.ts +61 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailPayload.js +320 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailReducer.d.ts +83 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailReducer.js +394 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailSelector.d.ts +36 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailSelector.js +144 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailState.d.ts +45 -0
- package/lib/view/scheduleView/scheduleAccruedDetailView/scheduleAccruedDetailState.js +2 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/createNewSchedulesEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/createNewSchedulesEpic.js +37 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/deleteScheduleDetailEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/deleteScheduleDetailEpic.js +81 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/fetchScheduleDetailsEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/fetchScheduleDetailsEpic.js +82 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/fetchScheduleDetailsPageEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/fetchScheduleDetailsPageEpic.js +28 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/initializeScheduleDetailLocalDataEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/initializeScheduleDetailLocalDataEpic.js +40 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/markAsCompleteScheduleDetailEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/markAsCompleteScheduleDetailEpic.js +76 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/saveScheduleDetailsEpic.d.ts +11 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/saveScheduleDetailsEpic.js +104 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/updateAmountsInScheduleDetailEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleDetailView/epics/updateAmountsInScheduleDetailEpic.js +38 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailLocalDataHelper.d.ts +28 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailLocalDataHelper.js +269 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailPayload.d.ts +69 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailPayload.js +345 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailReducer.d.ts +77 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailReducer.js +380 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailSelector.d.ts +35 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailSelector.js +131 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailState.d.ts +66 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailState.js +2 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailTypes.d.ts +3 -0
- package/lib/view/scheduleView/scheduleDetailView/scheduleDetailTypes.js +13 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchAccruedScheduleListEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchAccruedScheduleListEpic.js +52 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchDownloadSchedulesEpic.d.ts +8 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchDownloadSchedulesEpic.js +59 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchScheduleListEpic.d.ts +17 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchScheduleListEpic.js +72 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchSchedulesAccountEpic.d.ts +6 -0
- package/lib/view/scheduleView/scheduleListView/epics/fetchSchedulesAccountEpic.js +15 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListHelper.d.ts +103 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListHelper.js +403 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListPayload.d.ts +13 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListPayload.js +2 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListReducer.d.ts +105 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListReducer.js +434 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListSelector.d.ts +58 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListSelector.js +393 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListState.d.ts +43 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListState.js +2 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListTypes.d.ts +20 -0
- package/lib/view/scheduleView/scheduleListView/scheduleListTypes.js +35 -0
- package/lib/view/settingsView/epic/fetchBankAccountsListEpic.d.ts +22 -0
- package/lib/view/settingsView/epic/fetchBankAccountsListEpic.js +30 -0
- package/lib/view/settingsView/epic/fetchBankConnectionsViewEpic.d.ts +8 -0
- package/lib/view/settingsView/epic/fetchBankConnectionsViewEpic.js +43 -0
- package/lib/view/settingsView/epic/fetchBillingAccountsViewEpic.d.ts +7 -0
- package/lib/view/settingsView/epic/fetchBillingAccountsViewEpic.js +17 -0
- package/lib/view/settingsView/epic/fetchCompanyBillingAddressEpic.d.ts +11 -0
- package/lib/view/settingsView/epic/fetchCompanyBillingAddressEpic.js +57 -0
- package/lib/view/settingsView/epic/fetchMyProfileEpic.d.ts +50 -0
- package/lib/view/settingsView/epic/fetchMyProfileEpic.js +56 -0
- package/lib/view/settingsView/epic/fetchMyProfileViewEpic.d.ts +7 -0
- package/lib/view/settingsView/epic/fetchMyProfileViewEpic.js +20 -0
- package/lib/view/settingsView/epic/fetchNotificationSettingsEpic.d.ts +18 -0
- package/lib/view/settingsView/epic/fetchNotificationSettingsEpic.js +28 -0
- package/lib/view/settingsView/epic/fetchNotificationSettingsViewEpic.d.ts +8 -0
- package/lib/view/settingsView/epic/fetchNotificationSettingsViewEpic.js +18 -0
- package/lib/view/settingsView/epic/initializeMyProfileLocalDataEpic.d.ts +7 -0
- package/lib/view/settingsView/epic/initializeMyProfileLocalDataEpic.js +49 -0
- package/lib/view/settingsView/epic/refreshIntegrationsDataEpic.d.ts +8 -0
- package/lib/view/settingsView/epic/refreshIntegrationsDataEpic.js +32 -0
- package/lib/view/settingsView/epic/saveCompanyBillingAddressEpic.d.ts +10 -0
- package/lib/view/settingsView/epic/saveCompanyBillingAddressEpic.js +61 -0
- package/lib/view/settingsView/epic/saveNotificationSettingsEpic.d.ts +31 -0
- package/lib/view/settingsView/epic/saveNotificationSettingsEpic.js +84 -0
- package/lib/view/settingsView/epic/updateMyProfileEpic.d.ts +13 -0
- package/lib/view/settingsView/epic/updateMyProfileEpic.js +112 -0
- package/lib/view/settingsView/settingsViewHelpers.d.ts +17 -0
- package/lib/view/settingsView/settingsViewHelpers.js +174 -0
- package/lib/view/settingsView/settingsViewPayload.d.ts +50 -0
- package/lib/view/settingsView/settingsViewPayload.js +2 -0
- package/lib/view/settingsView/settingsViewReducer.d.ts +48 -0
- package/lib/view/settingsView/settingsViewReducer.js +416 -0
- package/lib/view/settingsView/settingsViewSelector.d.ts +12 -0
- package/lib/view/settingsView/settingsViewSelector.js +292 -0
- package/lib/view/settingsView/settingsViewState.d.ts +77 -0
- package/lib/view/settingsView/settingsViewState.js +18 -0
- package/lib/view/settingsView/types/settingsViewSelectorTypes.d.ts +73 -0
- package/lib/view/settingsView/types/settingsViewSelectorTypes.js +2 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesPayload.d.ts +75 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesPayload.js +30 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesReducer.d.ts +50 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesReducer.js +206 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesSelector.d.ts +31 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesSelector.js +81 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesState.d.ts +60 -0
- package/lib/view/spendManagement/autotransferRules/autoTransferRulesState.js +2 -0
- package/lib/view/spendManagement/autotransferRules/epics/createAutoTransferRuleEpic.d.ts +12 -0
- package/lib/view/spendManagement/autotransferRules/epics/createAutoTransferRuleEpic.js +106 -0
- package/lib/view/spendManagement/autotransferRules/epics/deleteAutoTransferRuleEpic.d.ts +8 -0
- package/lib/view/spendManagement/autotransferRules/epics/deleteAutoTransferRuleEpic.js +52 -0
- package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferReviewDetailEpic.d.ts +7 -0
- package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferReviewDetailEpic.js +40 -0
- package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRuleHistory.d.ts +7 -0
- package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRuleHistory.js +52 -0
- package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRulesEpic.d.ts +10 -0
- package/lib/view/spendManagement/autotransferRules/epics/fetchAutoTransferRulesEpic.js +54 -0
- package/lib/view/spendManagement/autotransferRules/epics/updateAutoTransferRuleEpic.d.ts +8 -0
- package/lib/view/spendManagement/autotransferRules/epics/updateAutoTransferRuleEpic.js +73 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewPayload.d.ts +67 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewPayload.js +2 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewReducer.d.ts +73 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewReducer.js +470 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewSelector.d.ts +88 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewSelector.js +368 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewState.d.ts +30 -0
- package/lib/view/spendManagement/billPay/billDetailView/billDetailViewState.js +55 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/approveOrRejectBillEpic.d.ts +11 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/approveOrRejectBillEpic.js +53 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/cancelAndDeleteBillEpic.d.ts +13 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/cancelAndDeleteBillEpic.js +76 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/deleteBillEpic.d.ts +10 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/deleteBillEpic.js +65 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/fetchBillDetailEpic.d.ts +42 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/fetchBillDetailEpic.js +172 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/fetchEligibleActionsForBillEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/fetchEligibleActionsForBillEpic.js +43 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/retryOrRefundBillEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/billDetailView/epics/retryOrRefundBillEpic.js +89 -0
- package/lib/view/spendManagement/billPay/billList/billListDownloadSelector.d.ts +12 -0
- package/lib/view/spendManagement/billPay/billList/billListDownloadSelector.js +65 -0
- package/lib/view/spendManagement/billPay/billList/billListPayload.d.ts +31 -0
- package/lib/view/spendManagement/billPay/billList/billListPayload.js +2 -0
- package/lib/view/spendManagement/billPay/billList/billListReducer.d.ts +36 -0
- package/lib/view/spendManagement/billPay/billList/billListReducer.js +186 -0
- package/lib/view/spendManagement/billPay/billList/billListSelector.d.ts +55 -0
- package/lib/view/spendManagement/billPay/billList/billListSelector.js +692 -0
- package/lib/view/spendManagement/billPay/billList/billListState.d.ts +55 -0
- package/lib/view/spendManagement/billPay/billList/billListState.js +68 -0
- package/lib/view/spendManagement/billPay/billList/fetchBillListEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/billList/fetchBillListEpic.js +64 -0
- package/lib/view/spendManagement/billPay/billList/fetchBillListPerTabEpic.d.ts +11 -0
- package/lib/view/spendManagement/billPay/billList/fetchBillListPerTabEpic.js +44 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigPayload.d.ts +117 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigPayload.js +270 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigReducer.d.ts +12 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigReducer.js +137 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigSelector.d.ts +14 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigSelector.js +39 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigState.d.ts +109 -0
- package/lib/view/spendManagement/billPay/billPayConfig/billPayConfigState.js +105 -0
- package/lib/view/spendManagement/billPay/billPayConfig/fetchBillPayConfigEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/billPayConfig/fetchBillPayConfigEpic.js +32 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewPayload.d.ts +19 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewPayload.js +2 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewReducer.d.ts +21 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewReducer.js +109 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewSelector.d.ts +45 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewSelector.js +204 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewState.d.ts +12 -0
- package/lib/view/spendManagement/billPay/billPayReview/billPayReviewState.js +11 -0
- package/lib/view/spendManagement/billPay/billPayReview/fetchDuplicateBillEpic.d.ts +8 -0
- package/lib/view/spendManagement/billPay/billPayReview/fetchDuplicateBillEpic.js +53 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewPayload.d.ts +13 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewPayload.js +2 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewReducer.d.ts +52 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewReducer.js +345 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelector.d.ts +4 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelector.js +110 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelectorTypes.d.ts +34 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewSelectorTypes.js +2 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewState.d.ts +32 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/billPaySetupApproverViewState.js +2 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/deleteBillPayApprovalRuleEpic.d.ts +10 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/deleteBillPayApprovalRuleEpic.js +48 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversDetailsEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversDetailsEpic.js +34 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversListEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPayApproversListEpic.js +40 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPaySetupApproverViewEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/fetchBillPaySetupApproverViewEpic.js +46 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/initializeBillPaySetupApproverViewUpdateDataEpic.d.ts +5 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/initializeBillPaySetupApproverViewUpdateDataEpic.js +41 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/reorderBillPayApprovalRulesEpic.d.ts +23 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/reorderBillPayApprovalRulesEpic.js +58 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/saveBillPaySetupApproverViewUpdatesEpic.d.ts +10 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/epic/saveBillPaySetupApproverViewUpdatesEpic.js +78 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/types/commonPayload.d.ts +80 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/types/commonPayload.js +179 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/types/commonState.d.ts +45 -0
- package/lib/view/spendManagement/billPay/billPaySetupApproverView/types/commonState.js +2 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewPayload.d.ts +5 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewPayload.js +2 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewReducer.d.ts +14 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewReducer.js +106 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewSelector.d.ts +16 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewSelector.js +37 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewState.d.ts +9 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/billPaySetupViewState.js +2 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/epic/billPaySetup/fetchBillPaySetupViewEpic.d.ts +20 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/epic/billPaySetup/fetchBillPaySetupViewEpic.js +81 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/epic/billPayTerms/acceptBillPayTermsEpic.d.ts +11 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/epic/billPayTerms/acceptBillPayTermsEpic.js +44 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/epic/billPayTerms/acceptBillPayUpdatedTermsEpic.d.ts +11 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/epic/billPayTerms/acceptBillPayUpdatedTermsEpic.js +44 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/types/billPayTerms.d.ts +11 -0
- package/lib/view/spendManagement/billPay/billPaySetupView/types/billPayTerms.js +2 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewPayload.d.ts +34 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewPayload.js +2 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewReducer.d.ts +18 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewReducer.js +183 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewSelector.d.ts +31 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewSelector.js +76 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewState.d.ts +29 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/billsBulkActionViewState.js +26 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/approveOrRejectBillsBulkActionEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/approveOrRejectBillsBulkActionEpic.js +79 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/cancelOrDeleteBillsBulkActionEpic.d.ts +8 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/cancelOrDeleteBillsBulkActionEpic.js +80 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/submitDraftBillsBulkActionEpic.d.ts +8 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/submitDraftBillsBulkActionEpic.js +88 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/validateBillsBulkActionEpic.ts.d.ts +7 -0
- package/lib/view/spendManagement/billPay/billsBulkActionView/epics/validateBillsBulkActionEpic.ts.js +32 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewPayload.d.ts +66 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewPayload.js +19 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewReducer.d.ts +112 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewReducer.js +508 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewSelector.d.ts +167 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewSelector.js +776 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewState.d.ts +122 -0
- package/lib/view/spendManagement/billPay/editBillView/editBillViewState.js +75 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/convertAmountToHomeCurrencyEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/convertAmountToHomeCurrencyEpic.js +90 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchBillAndInitializeLocalStoreEpic.d.ts +13 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchBillAndInitializeLocalStoreEpic.js +56 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchEditBillDetailPageEpic.d.ts +14 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchEditBillDetailPageEpic.js +98 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchVendorAndUpdateBillLocalDataEpic.d.ts +10 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchVendorAndUpdateBillLocalDataEpic.js +175 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchVendorByNameAndParseInvoice.d.ts +15 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/fetchVendorByNameAndParseInvoice.js +41 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/initializeBillToLocalStoreEpic.d.ts +14 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/initializeBillToLocalStoreEpic.js +249 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/parseInvoiceToBillEpic.d.ts +15 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/parseInvoiceToBillEpic.js +491 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/saveBillDetailEpic.d.ts +89 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/saveBillDetailEpic.js +269 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/updateVendorContactEpic.d.ts +11 -0
- package/lib/view/spendManagement/billPay/editBillView/epics/updateVendorContactEpic.js +122 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/createInternationalPaymentInstrumentEpic.d.ts +10 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/createInternationalPaymentInstrumentEpic.js +121 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/deletePaymentInstrumentEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/deletePaymentInstrumentEpic.js +59 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/fetchInternationalWireDynamicFormEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/fetchInternationalWireDynamicFormEpic.js +54 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/initializeDynamicFormEpic.d.ts +8 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/initializeDynamicFormEpic.js +43 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/initializeInternationalWireLocalDataEpic.d.ts +6 -0
- package/lib/view/spendManagement/billPay/internationalWire/epics/initializeInternationalWireLocalDataEpic.js +53 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWire.d.ts +52 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWire.js +14 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWirePayload.d.ts +44 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWirePayload.js +55 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWireReducer.d.ts +44 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWireReducer.js +166 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWireSelector.d.ts +14 -0
- package/lib/view/spendManagement/billPay/internationalWire/internationalWireSelector.js +50 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/epics/fetchIntlVerificationFormEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/epics/fetchIntlVerificationFormEpic.js +36 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/epics/initializeIntlVerificationFormEpic.d.ts +6 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/epics/initializeIntlVerificationFormEpic.js +43 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/epics/submitIntlVerificationEpic.d.ts +9 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/epics/submitIntlVerificationEpic.js +66 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationPayload.d.ts +26 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationPayload.js +19 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationReducer.d.ts +22 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationReducer.js +91 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationSelector.d.ts +15 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationSelector.js +33 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationState.d.ts +20 -0
- package/lib/view/spendManagement/billPay/internationalWireVerification/internationalWireVerificationState.js +2 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBankNameByRoutingEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBankNameByRoutingEpic.js +42 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBankNameBySwiftEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBankNameBySwiftEpic.js +42 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBillEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkBillEpic.js +41 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkTenantEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/fetchMagicLinkTenantEpic.js +34 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/saveMagicLinkBankAccountEpic.d.ts +8 -0
- package/lib/view/spendManagement/billPay/magicLinkView/epics/saveMagicLinkBankAccountEpic.js +97 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewPayload.d.ts +42 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewPayload.js +2 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewReducer.d.ts +64 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewReducer.js +277 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewSelector.d.ts +15 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewSelector.js +57 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewState.d.ts +15 -0
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewState.js +2 -0
- package/lib/view/spendManagement/billPay/previousBills/fetchPreviousBillsEpic.d.ts +8 -0
- package/lib/view/spendManagement/billPay/previousBills/fetchPreviousBillsEpic.js +65 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsPayload.d.ts +24 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsPayload.js +2 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsReducer.d.ts +18 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsReducer.js +54 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsSelector.d.ts +8 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsSelector.js +25 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsState.d.ts +11 -0
- package/lib/view/spendManagement/billPay/previousBills/previousBillsState.js +13 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectEpic.d.ts +7 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectEpic.js +32 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectReducer.d.ts +14 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectReducer.js +39 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectSelector.d.ts +3 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectSelector.js +12 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectState.d.ts +5 -0
- package/lib/view/spendManagement/billPay/wiseRedirectView/wiseRedirectState.js +2 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowPayload.d.ts +47 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowPayload.js +34 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowReducer.d.ts +23 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowReducer.js +82 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowSelector.d.ts +40 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowSelector.js +53 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowState.d.ts +37 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/autoSweepFlowState.js +53 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/epics/fetchCashManagementSettingsEpic.d.ts +14 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/epics/fetchCashManagementSettingsEpic.js +36 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/epics/saveAutoSweepSettingsEpic.d.ts +7 -0
- package/lib/view/spendManagement/cashManagement/autoSweepFlow/epics/saveAutoSweepSettingsEpic.js +36 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewPayload.d.ts +56 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewPayload.js +60 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewReducer.d.ts +22 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewReducer.js +96 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewSelector.d.ts +59 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewSelector.js +217 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewState.d.ts +122 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/cashManagementOverviewState.js +13 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementBannerEpic.d.ts +7 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementBannerEpic.js +27 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementOverviewPageEpic.d.ts +9 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementOverviewPageEpic.js +40 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementRecommendationEpic.d.ts +7 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchCashManagementRecommendationEpic.js +31 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchRecentTransferEpic.d.ts +15 -0
- package/lib/view/spendManagement/cashManagement/cashManagementOverview/epics/fetchRecentTransferEpic.js +32 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailReducer.d.ts +14 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailReducer.js +56 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailSelector.d.ts +15 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailSelector.js +28 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailState.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/cardPolicyDetailState.js +2 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/fetchCardPolicyDetailEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/fetchCardPolicyDetailEpic.js +40 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/updateCardPolicyEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyDetail/updateCardPolicyEpic.js +43 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/archiveCardPolicyEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/archiveCardPolicyEpic.js +38 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListReducer.d.ts +15 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListReducer.js +75 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListSelector.d.ts +15 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListSelector.js +27 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListState.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/cardPolicyListState.js +2 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/fetchCardPolicyListEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/cardPolicyList/fetchCardPolicyListEpic.js +42 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyAiCardPolicyFormDraftUpdate.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyAiCardPolicyFormDraftUpdate.js +294 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToAiCardPolicyDraft.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToAiCardPolicyDraft.js +113 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToDraftEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToDraftEpic.js +48 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToManualCardPolicyDraft.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyExtractedPolicyToManualCardPolicyDraft.js +115 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyUploadPlanToAiCardPolicyDraft.d.ts +13 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/applyUploadPlanToAiCardPolicyDraft.js +29 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/buildAiCardPolicyFormDraftSeed.d.ts +14 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/buildAiCardPolicyFormDraftSeed.js +369 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/buildManualCardPolicyFormDraftSeed.d.ts +6 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/buildManualCardPolicyFormDraftSeed.js +40 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyChipIds.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyChipIds.js +26 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyFormDraftTypes.d.ts +116 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyFormDraftTypes.js +10 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyRequestParts.d.ts +33 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/cardPolicyRequestParts.js +126 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyReducer.d.ts +52 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyReducer.js +158 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicySelector.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicySelector.js +31 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyState.d.ts +12 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyState.js +2 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyTemplateEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/createCardPolicyTemplateEpic.js +53 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/deriveAiPolicyReviewRowsFromInputs.d.ts +10 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/deriveAiPolicyReviewRowsFromInputs.js +144 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/fetchCardPolicyMccCategoriesEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/fetchCardPolicyMccCategoriesEpic.js +24 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/seedAiCardPolicyFormDraftEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/seedAiCardPolicyFormDraftEpic.js +104 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toBulkCardPolicyTemplateRequestsFromDraft.d.ts +22 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toBulkCardPolicyTemplateRequestsFromDraft.js +100 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toCardPolicyTemplateRequestFromDraft.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toCardPolicyTemplateRequestFromDraft.js +63 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toManualCardPolicyTemplateRequestFromDraft.d.ts +3 -0
- package/lib/view/spendManagement/chargeCards/cardPolicy/createCardPolicy/toManualCardPolicyTemplateRequestFromDraft.js +28 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingReducer.d.ts +15 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingReducer.js +98 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingSelector.d.ts +17 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingSelector.js +34 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingState.d.ts +18 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/cardUserOnboardingState.js +2 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/epics/initializeCardUserOnboardingLocalDataEpic.d.ts +6 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/epics/initializeCardUserOnboardingLocalDataEpic.js +34 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/epics/saveCardOnboardingUserDetailsEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/cardUserOnboarding/epics/saveCardOnboardingUserDetailsEpic.js +14 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailPayload.d.ts +31 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailReducer.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailReducer.js +87 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailSelector.d.ts +19 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailSelector.js +55 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailState.d.ts +31 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/cashbackDetailState.js +13 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/fetchCashbackDetailEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/cashbackDetail/fetchCashbackDetailEpic.js +24 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigPayload.d.ts +33 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigPayload.js +22 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigReducer.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigReducer.js +71 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigState.d.ts +30 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/chargeCardConfigState.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/fetchChargeCardConfigEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardConfig/fetchChargeCardConfigEpic.js +23 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetail.d.ts +86 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetail.js +152 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailPayload.d.ts +58 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailReducer.d.ts +172 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailReducer.js +678 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailSelector.d.ts +73 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/chargeCardDetailSelector.js +339 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/closeChargeCardEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/closeChargeCardEpic.js +71 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardDetailEpic.d.ts +12 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardDetailEpic.js +82 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardDetailPageEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardDetailPageEpic.js +67 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionAttachmentsEpic.d.ts +10 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionAttachmentsEpic.js +42 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionListEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionListEpic.js +47 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionStatisticsEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardTransactionStatisticsEpic.js +39 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardsRecurringExpensesEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchChargeCardsRecurringExpensesEpic.js +44 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchDepositAccountLimitEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/fetchDepositAccountLimitEpic.js +40 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/lockChargeCardEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/lockChargeCardEpic.js +77 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/unlockChargeCardEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/unlockChargeCardEpic.js +74 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardDetailEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardDetailEpic.js +60 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardLimitEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardLimitEpic.js +74 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardNameEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateChargeCardNameEpic.js +82 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateDebitCardPinAttemptEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updateDebitCardPinAttemptEpic.js +42 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updatePhysicalChargeCardAttemptEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardDetail/updatePhysicalChargeCardAttemptEpic.js +42 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardList.d.ts +70 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardList.js +93 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListPayload.d.ts +72 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListReducer.d.ts +74 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListReducer.js +372 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector.d.ts +129 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector.js +463 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/closeChargeCardsEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/closeChargeCardsEpic.js +69 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchChargeCardListEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchChargeCardListEpic.js +35 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchChargeCardListPageEpic.d.ts +12 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchChargeCardListPageEpic.js +107 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchCreditAccountEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchCreditAccountEpic.js +23 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchCreditAccountRepaymentEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchCreditAccountRepaymentEpic.js +23 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchDebitCardSummaryEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/fetchDebitCardSummaryEpic.js +23 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/lockChargeCardsEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/lockChargeCardsEpic.js +69 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/resendCardInviteEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/resendCardInviteEpic.js +31 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/revokeCardInviteEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/revokeCardInviteEpic.js +29 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/revokeChargeCardsInviteEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/revokeChargeCardsInviteEpic.js +71 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/unlockChargeCardsEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/unlockChargeCardsEpic.js +68 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/updateChargeCardsLimitEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardList/updateChargeCardsLimitEpic.js +76 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory.d.ts +50 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory.js +35 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector.js +26 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers.js +87 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryPayload.d.ts +13 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer.d.ts +21 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer.js +88 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector.d.ts +24 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector.js +107 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/fetchChargeCardPaymentHistoryEpic.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/fetchChargeCardPaymentHistoryEpic.js +35 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/fetchChargeCardPaymentPageEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/fetchChargeCardPaymentPageEpic.js +35 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer.d.ts +15 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer.js +53 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector.js +41 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailState.d.ts +12 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailState.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentPayload.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.js +25 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.js +91 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewPayload.d.ts +6 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewReducer.d.ts +21 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewReducer.js +162 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewSelector.d.ts +21 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewSelector.js +46 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewState.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewState.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/acceptChargeCardTermsEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/acceptChargeCardTermsEpic.js +80 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/enableChargeCardAutoPayEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/enableChargeCardAutoPayEpic.js +54 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/expressInterestChargeCardEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/expressInterestChargeCardEpic.js +48 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/fetchChargeCardSetupViewEpic.d.ts +20 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/epic/fetchChargeCardSetupViewEpic.js +81 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/types/chargeCardTerms.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/chargeCardSetUp/types/chargeCardTerms.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementList.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementList.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListPayload.d.ts +10 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListReducer.d.ts +15 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListReducer.js +53 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListSelector.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListSelector.js +13 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/fetchChargeCardStatementListEpic.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/chargeCardStatementList/fetchChargeCardStatementListEpic.js +32 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/aiCardCreationFormDraftTypes.d.ts +34 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/aiCardCreationFormDraftTypes.js +2 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/applyAiCardCreationFormDraftUpdate.d.ts +7 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/applyAiCardCreationFormDraftUpdate.js +38 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/buildAiCardCreationFormDraftSeed.d.ts +12 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/buildAiCardCreationFormDraftSeed.js +61 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/depositAccountWithLimitPayload.d.ts +6 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/depositAccountWithLimitPayload.js +2 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/deriveAiCardRowsFromTeams.d.ts +9 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/deriveAiCardRowsFromTeams.js +39 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/fetchDepositAccountListForCardsEpic.d.ts +8 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/fetchDepositAccountListForCardsEpic.js +30 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/fetchIssueCardPageEpic.d.ts +10 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/fetchIssueCardPageEpic.js +61 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardEpic.d.ts +13 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardEpic.js +148 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardReducer.d.ts +34 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardReducer.js +175 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardSelector.d.ts +34 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardSelector.js +140 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardState.d.ts +72 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/issueChargeCardState.js +2 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/seedAiCardCreationFormDraftEpic.d.ts +11 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/seedAiCardCreationFormDraftEpic.js +66 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/toIssueChargeCardLocalDataFromDraft.d.ts +3 -0
- package/lib/view/spendManagement/chargeCards/issueChargeCard/toIssueChargeCardLocalDataFromDraft.js +48 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistory.d.ts +30 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistory.js +33 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistoryPayload.d.ts +27 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistoryPayload.js +24 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistoryReducer.d.ts +23 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistoryReducer.js +65 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistorySelector.d.ts +8 -0
- package/lib/view/spendManagement/commonHistoryView/commonHistorySelector.js +19 -0
- package/lib/view/spendManagement/commonHistoryView/fetchEntityHistoryEpic.d.ts +7 -0
- package/lib/view/spendManagement/commonHistoryView/fetchEntityHistoryEpic.js +63 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/enableSetupEpic.d.ts +10 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/enableSetupEpic.js +61 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/parseUploadedKybDocumentEpic.d.ts +28 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/parseUploadedKybDocumentEpic.js +62 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/parseUploadedKycDocumentEpic.d.ts +9 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/parseUploadedKycDocumentEpic.js +81 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.d.ts +21 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +344 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.d.ts +14 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +156 -0
- package/lib/view/spendManagement/commonSetup/kycKybAutofillActions.d.ts +24 -0
- package/lib/view/spendManagement/commonSetup/kycKybAutofillActions.js +17 -0
- package/lib/view/spendManagement/commonSetup/kycKybParseMapper.d.ts +29 -0
- package/lib/view/spendManagement/commonSetup/kycKybParseMapper.js +229 -0
- package/lib/view/spendManagement/commonSetup/setupViewPayload.d.ts +23 -0
- package/lib/view/spendManagement/commonSetup/setupViewPayload.js +2 -0
- package/lib/view/spendManagement/commonSetup/setupViewReducer.d.ts +60 -0
- package/lib/view/spendManagement/commonSetup/setupViewReducer.js +361 -0
- package/lib/view/spendManagement/commonSetup/setupViewSelector.d.ts +118 -0
- package/lib/view/spendManagement/commonSetup/setupViewSelector.js +287 -0
- package/lib/view/spendManagement/commonSetup/setupViewState.d.ts +117 -0
- package/lib/view/spendManagement/commonSetup/setupViewState.js +19 -0
- package/lib/view/spendManagement/commonSetup/types/businessVerification.d.ts +116 -0
- package/lib/view/spendManagement/commonSetup/types/businessVerification.js +152 -0
- package/lib/view/spendManagement/commonSetup/types/kycKybAutofill.d.ts +154 -0
- package/lib/view/spendManagement/commonSetup/types/kycKybAutofill.js +46 -0
- package/lib/view/spendManagement/helpers.d.ts +56 -0
- package/lib/view/spendManagement/helpers.js +400 -0
- package/lib/view/spendManagement/merchantList/fetchMerchantListEpic.d.ts +10 -0
- package/lib/view/spendManagement/merchantList/fetchMerchantListEpic.js +30 -0
- package/lib/view/spendManagement/merchantList/merchantListPayload.d.ts +11 -0
- package/lib/view/spendManagement/merchantList/merchantListPayload.js +2 -0
- package/lib/view/spendManagement/merchantList/merchantListReducer.d.ts +8 -0
- package/lib/view/spendManagement/merchantList/merchantListReducer.js +47 -0
- package/lib/view/spendManagement/merchantList/merchantListSelector.d.ts +7 -0
- package/lib/view/spendManagement/merchantList/merchantListSelector.js +13 -0
- package/lib/view/spendManagement/merchantList/merchantListState.d.ts +4 -0
- package/lib/view/spendManagement/merchantList/merchantListState.js +2 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/getPaymentAccountsEpic.d.ts +9 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/getPaymentAccountsEpic.js +41 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updateMappedCashAccountEpic.d.ts +9 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updateMappedCashAccountEpic.js +29 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountEpic.d.ts +9 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountEpic.js +31 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountLoginStatusEpic.d.ts +10 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountLoginStatusEpic.js +38 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountStatusEpic.d.ts +10 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePaymentAccountStatusEpic.js +37 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePrimaryFundingAccountEpic.d.ts +9 -0
- package/lib/view/spendManagement/plaidAccount/epic/paymentAccounts/updatePrimaryFundingAccountEpic.js +93 -0
- package/lib/view/spendManagement/plaidAccount/epic/plaidConnection/establishPlaidConnectionEpic.d.ts +17 -0
- package/lib/view/spendManagement/plaidAccount/epic/plaidConnection/establishPlaidConnectionEpic.js +148 -0
- package/lib/view/spendManagement/plaidAccount/epic/plaidConnection/getPlaidLinkTokenEpic.d.ts +15 -0
- package/lib/view/spendManagement/plaidAccount/epic/plaidConnection/getPlaidLinkTokenEpic.js +52 -0
- package/lib/view/spendManagement/plaidAccount/plaidAccountViewReducer.d.ts +102 -0
- package/lib/view/spendManagement/plaidAccount/plaidAccountViewReducer.js +456 -0
- package/lib/view/spendManagement/plaidAccount/plaidAccountViewSelector.d.ts +2 -0
- package/lib/view/spendManagement/plaidAccount/plaidAccountViewSelector.js +6 -0
- package/lib/view/spendManagement/plaidAccount/plaidAccountViewState.d.ts +22 -0
- package/lib/view/spendManagement/plaidAccount/plaidAccountViewState.js +33 -0
- package/lib/view/spendManagement/plaidAccount/types/paymentAccount.d.ts +10 -0
- package/lib/view/spendManagement/plaidAccount/types/paymentAccount.js +2 -0
- package/lib/view/spendManagement/plaidAccount/types/plaidConnection.d.ts +7 -0
- package/lib/view/spendManagement/plaidAccount/types/plaidConnection.js +2 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalPayload.d.ts +9 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalPayload.js +2 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalReducer.d.ts +22 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalReducer.js +68 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalSelector.d.ts +8 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalSelector.js +19 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalState.d.ts +27 -0
- package/lib/view/spendManagement/realTimeApprovalView/realTimeApprovalState.js +14 -0
- package/lib/view/spendManagement/realTimeApprovalView/saveRealTimeApprovalEpic.d.ts +11 -0
- package/lib/view/spendManagement/realTimeApprovalView/saveRealTimeApprovalEpic.js +126 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewPayload.d.ts +46 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewPayload.js +52 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewReducer.d.ts +100 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewReducer.js +484 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewSelector.d.ts +73 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewSelector.js +203 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewState.d.ts +65 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/editRemiViewState.js +24 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchCurrencyConversionValueEpic.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchCurrencyConversionValueEpic.js +63 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchEditRemiDetailPageEpic.d.ts +13 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchEditRemiDetailPageEpic.js +79 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchRecommendationsAndUpdateMerchantRecommendationsEpic.d.ts +16 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchRecommendationsAndUpdateMerchantRecommendationsEpic.js +122 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchRemiAndInitializeLocalStoreEpic.d.ts +6 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchRemiAndInitializeLocalStoreEpic.js +44 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/initializeRemiToLocalStoreEpic.d.ts +13 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/initializeRemiToLocalStoreEpic.js +132 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/parseReceiptsToRemiEpic.d.ts +11 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/parseReceiptsToRemiEpic.js +195 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/saveRemiDetailEpic.d.ts +15 -0
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/saveRemiDetailEpic.js +120 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/fetchReimbursementConfigEpic.d.ts +8 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/fetchReimbursementConfigEpic.js +25 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigPayload.d.ts +19 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigPayload.js +19 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigReducer.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigReducer.js +56 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigSelector.d.ts +3 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigSelector.js +14 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigState.d.ts +20 -0
- package/lib/view/spendManagement/reimbursement/reimbursementConfig/reimbursementConfigState.js +10 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/approveOrRejectRemiEpic.d.ts +11 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/approveOrRejectRemiEpic.js +56 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/cancelAndDeleteRemiEpic.d.ts +9 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/cancelAndDeleteRemiEpic.js +65 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/deleteRemiEpic.d.ts +9 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/deleteRemiEpic.js +55 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/fetchDuplicateReimbursementEpic.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/fetchDuplicateReimbursementEpic.js +71 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/fetchRemiDetailEpic.d.ts +19 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/epics/fetchRemiDetailEpic.js +115 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewPayload.d.ts +39 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewPayload.js +2 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewReducer.d.ts +53 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewReducer.js +316 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewSelector.d.ts +72 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewSelector.js +293 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewState.d.ts +28 -0
- package/lib/view/spendManagement/reimbursement/remiDetailView/remiDetailViewState.js +39 -0
- package/lib/view/spendManagement/reimbursement/remiListView/fetchRemiListEpic.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/remiListView/fetchRemiListEpic.js +42 -0
- package/lib/view/spendManagement/reimbursement/remiListView/fetchRemiListPerTabEpic.d.ts +10 -0
- package/lib/view/spendManagement/reimbursement/remiListView/fetchRemiListPerTabEpic.js +52 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListDownloadSelector.d.ts +14 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListDownloadSelector.js +72 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListPayload.d.ts +24 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListPayload.js +2 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListReducer.d.ts +39 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListReducer.js +201 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListSelector.d.ts +50 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListSelector.js +572 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListState.d.ts +57 -0
- package/lib/view/spendManagement/reimbursement/remiListView/remiListState.js +86 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/deleteRemiApprovalRuleEpic.d.ts +10 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/deleteRemiApprovalRuleEpic.js +48 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiApproversDetailsEpic.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiApproversDetailsEpic.js +29 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiApproversListEpic.d.ts +10 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiApproversListEpic.js +40 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiSetupApproverViewEpic.d.ts +9 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/fetchRemiSetupApproverViewEpic.js +48 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/initializeRemiSetupApproverViewUpdateDataEpic.d.ts +5 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/initializeRemiSetupApproverViewUpdateDataEpic.js +41 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/reorderRemiApprovalRulesEpic.d.ts +14 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/reorderRemiApprovalRulesEpic.js +65 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/saveRemiSetupApproverViewUpdatesEpic.d.ts +10 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/epic/saveRemiSetupApproverViewUpdatesEpic.js +78 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewPayload.d.ts +15 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewPayload.js +2 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewReducer.d.ts +58 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewReducer.js +339 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewSelector.d.ts +4 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewSelector.js +128 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewSelectorTypes.d.ts +34 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewSelectorTypes.js +2 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewState.d.ts +29 -0
- package/lib/view/spendManagement/reimbursement/remiSetupApproverView/remiSetupApproverViewState.js +2 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/fetchRemiSetupViewEpic.d.ts +20 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/fetchRemiSetupViewEpic.js +83 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/updateMileageDetailsEpic.d.ts +17 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/updateMileageDetailsEpic.js +80 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/updateRemiSetupViewLocalStoreDataEpic.d.ts +5 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiSetup/updateRemiSetupViewLocalStoreDataEpic.js +39 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiTerms/acceptEmployeeRemiTermsEpic.d.ts +9 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiTerms/acceptEmployeeRemiTermsEpic.js +38 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiTerms/acceptRemiTermsEpic.d.ts +11 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/epic/remiTerms/acceptRemiTermsEpic.js +44 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewPayload.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewPayload.js +2 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewReducer.d.ts +19 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewReducer.js +164 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewSelector.d.ts +26 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewSelector.js +54 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewState.d.ts +28 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/remiSetupViewState.js +7 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/types/remiTerms.d.ts +15 -0
- package/lib/view/spendManagement/reimbursement/remiSetupView/types/remiTerms.js +2 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/approveOrRejectRemisBulkActionEpic.d.ts +9 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/approveOrRejectRemisBulkActionEpic.js +79 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/cancelOrDeleteRemisBulkActionEpic.d.ts +8 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/cancelOrDeleteRemisBulkActionEpic.js +80 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/reviewDraftRemisBulkActionEpic.ts.d.ts +7 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/reviewDraftRemisBulkActionEpic.ts.js +28 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/submitDraftRemisBulkActionEpic.d.ts +8 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/epics/submitDraftRemisBulkActionEpic.js +73 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewPayload.d.ts +14 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewPayload.js +2 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewReducer.d.ts +18 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewReducer.js +170 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewSelector.d.ts +25 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewSelector.js +50 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewState.d.ts +30 -0
- package/lib/view/spendManagement/reimbursement/remisBulkActionView/remisBulkActionViewState.js +24 -0
- package/lib/view/spendManagement/spendManagementFilterHelpers.d.ts +50 -0
- package/lib/view/spendManagement/spendManagementFilterHelpers.js +352 -0
- package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryDetailEpic.d.ts +10 -0
- package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryDetailEpic.js +76 -0
- package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryHistoryEpic.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryHistoryEpic.js +31 -0
- package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryTransactionListEpic.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasuryList/epics/fetchTreasuryTransactionListEpic.js +39 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailPayload.d.ts +56 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailPayload.js +15 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailReducer.d.ts +32 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailReducer.js +178 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailSelector.d.ts +14 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailSelector.js +52 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailState.d.ts +47 -0
- package/lib/view/spendManagement/treasury/treasuryList/treasuryDetailState.js +12 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/acceptTreasuryTermsEpic.d.ts +11 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/acceptTreasuryTermsEpic.js +44 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/fetchPortfolioAllocationEpic.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/fetchPortfolioAllocationEpic.js +21 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/fetchTreasuryFundsEpic.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/fetchTreasuryFundsEpic.js +28 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/fetchTreasurySetupViewEpic.d.ts +20 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/fetchTreasurySetupViewEpic.js +81 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updatePortfolioAllocationEpic.d.ts +8 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updatePortfolioAllocationEpic.js +44 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryPromoIntroClosedByOutsideClickEpic.d.ts +8 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryPromoIntroClosedByOutsideClickEpic.js +22 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryPromoRemindMeLaterClickedEpic.d.ts +8 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryPromoRemindMeLaterClickedEpic.js +22 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryVideoViewedEpic.d.ts +8 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/epic/updateTreasuryVideoViewedEpic.js +22 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewPayload.d.ts +57 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewPayload.js +2 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewReducer.d.ts +20 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewReducer.js +373 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewSelector.d.ts +25 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewSelector.js +52 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewState.d.ts +55 -0
- package/lib/view/spendManagement/treasury/treasurySetUp/treasurySetupViewState.js +21 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/fetchTreasuryStatementListEpic.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/fetchTreasuryStatementListEpic.js +42 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementList.d.ts +10 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementList.js +11 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListPayload.d.ts +10 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListPayload.js +2 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListReducer.d.ts +15 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListReducer.js +57 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListSelector.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasuryStatementList/treasuryStatementListSelector.js +17 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/fetchTreasuryTaxLetterListEpic.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/fetchTreasuryTaxLetterListEpic.js +41 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListReducer.d.ts +15 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListReducer.js +57 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListSelector.d.ts +7 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListSelector.js +17 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListState.d.ts +6 -0
- package/lib/view/spendManagement/treasury/treasuryTaxLetterList/treasuryTaxLetterListState.js +11 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyEpic.d.ts +9 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyEpic.js +91 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyPayload.d.ts +36 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyPayload.js +15 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyReducer.d.ts +10 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyReducer.js +48 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneySelector.d.ts +17 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneySelector.js +64 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyState.d.ts +19 -0
- package/lib/view/spendManagement/treasury/treasuryTransferMoney/treasuryTransferMoneyState.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositEpic.d.ts +8 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositEpic.js +48 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositReducer.d.ts +11 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositReducer.js +43 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositSelector.d.ts +15 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositSelector.js +32 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositState.d.ts +12 -0
- package/lib/view/spendManagement/zeniAccounts/checkDeposit/checkDepositState.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailPayload.d.ts +13 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailPayload.js +15 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailReducer.d.ts +39 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailReducer.js +196 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailSelector.d.ts +26 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailSelector.js +86 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailState.d.ts +26 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/depositAccountDetailState.js +30 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountDetailEpic.d.ts +11 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountDetailEpic.js +58 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountEpic.d.ts +8 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountEpic.js +35 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountHistoryEpic.d.ts +7 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/fetchDepositAccountHistoryEpic.js +38 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/updateDepositAccountEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountDetail/updateDepositAccountEpic.js +67 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountList.d.ts +10 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountList.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListPayload.d.ts +17 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListPayload.js +14 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListReducer.d.ts +14 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListReducer.js +42 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListSelector.d.ts +7 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/depositAccountListSelector.js +13 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/fetchDepositAccountListEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountList/fetchDepositAccountListEpic.js +38 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListPayload.d.ts +18 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListPayload.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListReducer.d.ts +19 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListReducer.js +62 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListSelector.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListSelector.js +25 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListState.d.ts +10 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/depositAccountTransactionListState.js +9 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/fetchDepositAccountTransactionListEpic.d.ts +8 -0
- package/lib/view/spendManagement/zeniAccounts/depositAccountTransactionList/fetchDepositAccountTransactionListEpic.js +57 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/epics/fetchExpressPayInitialDetailsEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/epics/fetchExpressPayInitialDetailsEpic.js +39 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/epics/submitExpressPayEpic.d.ts +8 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/epics/submitExpressPayEpic.js +66 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/expressPayReducer.d.ts +15 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/expressPayReducer.js +61 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/expressPaySelector.d.ts +27 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/expressPaySelector.js +82 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/expressPayState.d.ts +19 -0
- package/lib/view/spendManagement/zeniAccounts/expressPay/expressPayState.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/fetchPaymentAccountBalanceEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/fetchPaymentAccountBalanceEpic.js +52 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/fetchPaymentAccountListEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/fetchPaymentAccountListEpic.js +41 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountList.d.ts +6 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountList.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListPayload.d.ts +3 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListPayload.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListReducer.d.ts +28 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListReducer.js +96 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListSelector.d.ts +11 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/paymentAccountListSelector.js +20 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/unlinkPaymentAccountEpic.d.ts +8 -0
- package/lib/view/spendManagement/zeniAccounts/paymentAccountList/unlinkPaymentAccountEpic.js +54 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/fetchReviewTransferDetailEpic.d.ts +7 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/fetchReviewTransferDetailEpic.js +40 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailPayload.d.ts +25 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailPayload.js +19 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailReducer.d.ts +14 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailReducer.js +111 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailSelector.d.ts +14 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailSelector.js +34 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailState.d.ts +25 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferDetailState.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferMoneyEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/transferDetail/transferMoneyEpic.js +58 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/createCheckingAccountEpic.d.ts +10 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/createCheckingAccountEpic.js +68 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/fetchZeniAccountListPageEpic.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/fetchZeniAccountListPageEpic.js +40 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListPayload.d.ts +4 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListPayload.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListReducer.d.ts +20 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListReducer.js +84 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListSelector.d.ts +26 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListSelector.js +60 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListState.d.ts +14 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountList/zeniAccountListState.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/epic/acceptZeniAccountTermsEpic.d.ts +11 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/epic/acceptZeniAccountTermsEpic.js +45 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/epic/fetchZeniAccountSetupViewEpic.d.ts +20 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/epic/fetchZeniAccountSetupViewEpic.js +81 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/types/zeniAccountTerms.d.ts +11 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/types/zeniAccountTerms.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewPayload.d.ts +6 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewPayload.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewReducer.d.ts +12 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewReducer.js +93 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewSelector.d.ts +18 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewSelector.js +41 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewState.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountSetUp/zeniAccountSetupViewState.js +2 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/fetchZeniAccountsConfigEpic.d.ts +8 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/fetchZeniAccountsConfigEpic.js +33 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigPayload.d.ts +34 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigPayload.js +99 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigReducer.d.ts +9 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigReducer.js +55 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigSelector.d.ts +15 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigSelector.js +24 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigState.d.ts +28 -0
- package/lib/view/spendManagement/zeniAccounts/zeniAccountsConfig/zeniAccountsConfigState.js +2 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionAddOnsEpic.d.ts +8 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionAddOnsEpic.js +39 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionCouponsEpic.d.ts +8 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionCouponsEpic.js +39 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionCreateEstimateEpic.d.ts +7 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionCreateEstimateEpic.js +49 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionDetailsEpic.d.ts +12 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionDetailsEpic.js +73 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionListEpic.d.ts +22 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionListEpic.js +86 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionPlansEpic.d.ts +8 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionPlansEpic.js +38 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionUpdateEstimateEpic.d.ts +7 -0
- package/lib/view/subscriptionView/epic/fetchSubscriptionUpdateEstimateEpic.js +52 -0
- package/lib/view/subscriptionView/epic/initializeSubscriptionLocalDataEpic.d.ts +5 -0
- package/lib/view/subscriptionView/epic/initializeSubscriptionLocalDataEpic.js +44 -0
- package/lib/view/subscriptionView/epic/saveSubscriptionNotesUpdatesEpic.d.ts +7 -0
- package/lib/view/subscriptionView/epic/saveSubscriptionNotesUpdatesEpic.js +36 -0
- package/lib/view/subscriptionView/epic/saveSubscriptionUpdatesEpic.d.ts +11 -0
- package/lib/view/subscriptionView/epic/saveSubscriptionUpdatesEpic.js +92 -0
- package/lib/view/subscriptionView/reduceSubscriptionViewFetchState.d.ts +3 -0
- package/lib/view/subscriptionView/reduceSubscriptionViewFetchState.js +49 -0
- package/lib/view/subscriptionView/selectorHelpers.d.ts +4 -0
- package/lib/view/subscriptionView/selectorHelpers.js +32 -0
- package/lib/view/subscriptionView/subscriptionEstmiatePayload.d.ts +48 -0
- package/lib/view/subscriptionView/subscriptionEstmiatePayload.js +44 -0
- package/lib/view/subscriptionView/subscriptionViewPayload.d.ts +79 -0
- package/lib/view/subscriptionView/subscriptionViewPayload.js +42 -0
- package/lib/view/subscriptionView/subscriptionViewReducer.d.ts +93 -0
- package/lib/view/subscriptionView/subscriptionViewReducer.js +359 -0
- package/lib/view/subscriptionView/subscriptionViewSelector.d.ts +7 -0
- package/lib/view/subscriptionView/subscriptionViewSelector.js +430 -0
- package/lib/view/subscriptionView/subscriptionViewSelectorTypes.d.ts +56 -0
- package/lib/view/subscriptionView/subscriptionViewSelectorTypes.js +2 -0
- package/lib/view/subscriptionView/subscriptionViewState.d.ts +65 -0
- package/lib/view/subscriptionView/subscriptionViewState.js +2 -0
- package/lib/view/subscriptionView/types/subscriptionEstmiate.d.ts +33 -0
- package/lib/view/subscriptionView/types/subscriptionEstmiate.js +2 -0
- package/lib/view/subscriptionView/types/subscriptionTypes.d.ts +6 -0
- package/lib/view/subscriptionView/types/subscriptionTypes.js +29 -0
- package/lib/view/subscriptionView/types/subscriptionView.d.ts +10 -0
- package/lib/view/subscriptionView/types/subscriptionView.js +2 -0
- package/lib/view/tagView/epics/createTagEpic.d.ts +37 -0
- package/lib/view/tagView/epics/createTagEpic.js +69 -0
- package/lib/view/tagView/epics/deleteTagEpic.d.ts +35 -0
- package/lib/view/tagView/epics/deleteTagEpic.js +53 -0
- package/lib/view/tagView/epics/fetchAllTagsEpic.d.ts +8 -0
- package/lib/view/tagView/epics/fetchAllTagsEpic.js +33 -0
- package/lib/view/tagView/tagViewPayload.d.ts +7 -0
- package/lib/view/tagView/tagViewPayload.js +2 -0
- package/lib/view/tagView/tagViewReducer.d.ts +27 -0
- package/lib/view/tagView/tagViewReducer.js +96 -0
- package/lib/view/tagView/tagViewSelector.d.ts +10 -0
- package/lib/view/tagView/tagViewSelector.js +17 -0
- package/lib/view/tagView/tagViewState.d.ts +6 -0
- package/lib/view/tagView/tagViewState.js +2 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponses.d.ts +19 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponses.js +2 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponsesPayload.d.ts +21 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponsesPayload.js +15 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponsesReducer.d.ts +30 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponsesReducer.js +68 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponsesSelector.d.ts +3 -0
- package/lib/view/taskManager/cannedResponsesView/cannedResponsesSelector.js +6 -0
- package/lib/view/taskManager/cannedResponsesView/epics/deleteCannedResponseEpic.d.ts +7 -0
- package/lib/view/taskManager/cannedResponsesView/epics/deleteCannedResponseEpic.js +21 -0
- package/lib/view/taskManager/cannedResponsesView/epics/fetchCannedResponsesEpic.d.ts +7 -0
- package/lib/view/taskManager/cannedResponsesView/epics/fetchCannedResponsesEpic.js +25 -0
- package/lib/view/taskManager/cannedResponsesView/epics/saveCannedResponseEpic.d.ts +7 -0
- package/lib/view/taskManager/cannedResponsesView/epics/saveCannedResponseEpic.js +33 -0
- package/lib/view/taskManager/taskDetailView/epics/archiveTaskEpic.d.ts +9 -0
- package/lib/view/taskManager/taskDetailView/epics/archiveTaskEpic.js +71 -0
- package/lib/view/taskManager/taskDetailView/epics/deleteTaskEpic.d.ts +8 -0
- package/lib/view/taskManager/taskDetailView/epics/deleteTaskEpic.js +51 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchTaskDetailEpic.d.ts +11 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchTaskDetailEpic.js +100 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchTaskDetailPageEpic.d.ts +8 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchTaskDetailPageEpic.js +38 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchTaskHistoryEpic.d.ts +7 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchTaskHistoryEpic.js +54 -0
- package/lib/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.d.ts +6 -0
- package/lib/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.js +49 -0
- package/lib/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.d.ts +9 -0
- package/lib/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.js +116 -0
- package/lib/view/taskManager/taskDetailView/epics/sendCommentMentionNotificationEpic.d.ts +20 -0
- package/lib/view/taskManager/taskDetailView/epics/sendCommentMentionNotificationEpic.js +48 -0
- package/lib/view/taskManager/taskDetailView/epics/snoozeTaskEpic.d.ts +9 -0
- package/lib/view/taskManager/taskDetailView/epics/snoozeTaskEpic.js +70 -0
- package/lib/view/taskManager/taskDetailView/epics/unsnoozeTaskEpic.d.ts +9 -0
- package/lib/view/taskManager/taskDetailView/epics/unsnoozeTaskEpic.js +61 -0
- package/lib/view/taskManager/taskDetailView/taskDetail.d.ts +46 -0
- package/lib/view/taskManager/taskDetailView/taskDetail.js +43 -0
- package/lib/view/taskManager/taskDetailView/taskDetailReducer.d.ts +70 -0
- package/lib/view/taskManager/taskDetailView/taskDetailReducer.js +334 -0
- package/lib/view/taskManager/taskDetailView/taskDetailSelector.d.ts +30 -0
- package/lib/view/taskManager/taskDetailView/taskDetailSelector.js +166 -0
- package/lib/view/taskManager/taskGroupTemplateView/epics/createTaskFromTaskGroupTemplateEpic.d.ts +12 -0
- package/lib/view/taskManager/taskGroupTemplateView/epics/createTaskFromTaskGroupTemplateEpic.js +54 -0
- package/lib/view/taskManager/taskGroupTemplateView/epics/fetchTaskGroupTemplatesEpic.d.ts +8 -0
- package/lib/view/taskManager/taskGroupTemplateView/epics/fetchTaskGroupTemplatesEpic.js +34 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewPayload.d.ts +14 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewPayload.js +2 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewReducer.d.ts +10 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewReducer.js +59 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewSelector.d.ts +7 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewSelector.js +10 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewState.d.ts +5 -0
- package/lib/view/taskManager/taskGroupTemplateView/taskGroupTemplateViewState.js +2 -0
- package/lib/view/taskManager/taskGroupView/epics/createNewTaskGroupEpic.d.ts +10 -0
- package/lib/view/taskManager/taskGroupView/epics/createNewTaskGroupEpic.js +59 -0
- package/lib/view/taskManager/taskGroupView/epics/deleteTaskGroupEpic.d.ts +10 -0
- package/lib/view/taskManager/taskGroupView/epics/deleteTaskGroupEpic.js +41 -0
- package/lib/view/taskManager/taskGroupView/epics/fetchAllTaskGroupsEpic.d.ts +8 -0
- package/lib/view/taskManager/taskGroupView/epics/fetchAllTaskGroupsEpic.js +33 -0
- package/lib/view/taskManager/taskGroupView/epics/updateTaskGroupNameEpic.d.ts +10 -0
- package/lib/view/taskManager/taskGroupView/epics/updateTaskGroupNameEpic.js +51 -0
- package/lib/view/taskManager/taskGroupView/taskGroupViewPayload.d.ts +7 -0
- package/lib/view/taskManager/taskGroupView/taskGroupViewPayload.js +2 -0
- package/lib/view/taskManager/taskGroupView/taskGroupViewReducer.d.ts +34 -0
- package/lib/view/taskManager/taskGroupView/taskGroupViewReducer.js +123 -0
- package/lib/view/taskManager/taskGroupView/taskGroupViewState.d.ts +7 -0
- package/lib/view/taskManager/taskGroupView/taskGroupViewState.js +2 -0
- package/lib/view/taskManager/taskListView/epics/bulkUpdateTaskListEpic.d.ts +33 -0
- package/lib/view/taskManager/taskListView/epics/bulkUpdateTaskListEpic.js +136 -0
- package/lib/view/taskManager/taskListView/epics/dragNDropTasksEpic.d.ts +6 -0
- package/lib/view/taskManager/taskListView/epics/dragNDropTasksEpic.js +23 -0
- package/lib/view/taskManager/taskListView/epics/fetchTaskListEpic.d.ts +9 -0
- package/lib/view/taskManager/taskListView/epics/fetchTaskListEpic.js +43 -0
- package/lib/view/taskManager/taskListView/epics/fetchTaskListPageEpic.d.ts +11 -0
- package/lib/view/taskManager/taskListView/epics/fetchTaskListPageEpic.js +52 -0
- package/lib/view/taskManager/taskListView/epics/updateTaskFromListViewEpic.d.ts +8 -0
- package/lib/view/taskManager/taskListView/epics/updateTaskFromListViewEpic.js +37 -0
- package/lib/view/taskManager/taskListView/taskList.d.ts +73 -0
- package/lib/view/taskManager/taskListView/taskList.js +68 -0
- package/lib/view/taskManager/taskListView/taskListPayload.d.ts +10 -0
- package/lib/view/taskManager/taskListView/taskListPayload.js +2 -0
- package/lib/view/taskManager/taskListView/taskListReducer.d.ts +63 -0
- package/lib/view/taskManager/taskListView/taskListReducer.js +654 -0
- package/lib/view/taskManager/taskListView/taskListSelector.d.ts +69 -0
- package/lib/view/taskManager/taskListView/taskListSelector.js +368 -0
- package/lib/view/taskManager/taskListView/taskListViewHelpers.d.ts +5 -0
- package/lib/view/taskManager/taskListView/taskListViewHelpers.js +55 -0
- package/lib/view/tasksCard/fetchTasksCardEpic.d.ts +14 -0
- package/lib/view/tasksCard/fetchTasksCardEpic.js +18 -0
- package/lib/view/tasksCard/tasksCardPayload.d.ts +11 -0
- package/lib/view/tasksCard/tasksCardPayload.js +2 -0
- package/lib/view/tasksCard/tasksCardReducer.d.ts +7 -0
- package/lib/view/tasksCard/tasksCardReducer.js +64 -0
- package/lib/view/tasksCard/tasksCardSelector.d.ts +20 -0
- package/lib/view/tasksCard/tasksCardSelector.js +54 -0
- package/lib/view/tasksCard/tasksCardState.d.ts +13 -0
- package/lib/view/tasksCard/tasksCardState.js +2 -0
- package/lib/view/topEx/topExEpic.d.ts +17 -0
- package/lib/view/topEx/topExEpic.js +20 -0
- package/lib/view/topEx/topExPayload.d.ts +23 -0
- package/lib/view/topEx/topExPayload.js +2 -0
- package/lib/view/topEx/topExReducer.d.ts +8 -0
- package/lib/view/topEx/topExReducer.js +84 -0
- package/lib/view/topEx/topExSelector.d.ts +37 -0
- package/lib/view/topEx/topExSelector.js +68 -0
- package/lib/view/topEx/topExSelectorTypes.d.ts +35 -0
- package/lib/view/topEx/topExSelectorTypes.js +2 -0
- package/lib/view/topEx/topExState.d.ts +25 -0
- package/lib/view/topEx/topExState.js +17 -0
- package/lib/view/transactionActivityLogView/fetchTransactionActivityLogEpic.d.ts +9 -0
- package/lib/view/transactionActivityLogView/fetchTransactionActivityLogEpic.js +47 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewPayload.d.ts +8 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewPayload.js +2 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewReducer.d.ts +17 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewReducer.js +51 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewSelector.d.ts +8 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewSelector.js +37 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewState.d.ts +5 -0
- package/lib/view/transactionActivityLogView/transactionActivityLogViewState.js +2 -0
- package/lib/view/transactionDetail/epics/deleteTransactionAttachmentEpic.d.ts +9 -0
- package/lib/view/transactionDetail/epics/deleteTransactionAttachmentEpic.js +45 -0
- package/lib/view/transactionDetail/epics/downloadAccountingProviderAttachmentEpic.d.ts +7 -0
- package/lib/view/transactionDetail/epics/downloadAccountingProviderAttachmentEpic.js +26 -0
- package/lib/view/transactionDetail/epics/initializeTransactionDetailLocalDataEpic.d.ts +5 -0
- package/lib/view/transactionDetail/epics/initializeTransactionDetailLocalDataEpic.js +28 -0
- package/lib/view/transactionDetail/epics/markTransactionAsNotMiscategorizedEpic.d.ts +9 -0
- package/lib/view/transactionDetail/epics/markTransactionAsNotMiscategorizedEpic.js +91 -0
- package/lib/view/transactionDetail/epics/saveTransactionDetailEpic.d.ts +5 -0
- package/lib/view/transactionDetail/epics/saveTransactionDetailEpic.js +30 -0
- package/lib/view/transactionDetail/epics/saveTransactionHelper.d.ts +28 -0
- package/lib/view/transactionDetail/epics/saveTransactionHelper.js +313 -0
- package/lib/view/transactionDetail/epics/transactionDetailEpic.d.ts +15 -0
- package/lib/view/transactionDetail/epics/transactionDetailEpic.js +141 -0
- package/lib/view/transactionDetail/epics/updateTransactionDetailEpic.d.ts +10 -0
- package/lib/view/transactionDetail/epics/updateTransactionDetailEpic.js +300 -0
- package/lib/view/transactionDetail/epics/uploadMissingAttachmentSuccessEpic.d.ts +23 -0
- package/lib/view/transactionDetail/epics/uploadMissingAttachmentSuccessEpic.js +20 -0
- package/lib/view/transactionDetail/filePayload.d.ts +2 -0
- package/lib/view/transactionDetail/filePayload.js +2 -0
- package/lib/view/transactionDetail/getAccountingProviderAttachmentSelector.d.ts +7 -0
- package/lib/view/transactionDetail/getAccountingProviderAttachmentSelector.js +12 -0
- package/lib/view/transactionDetail/journalEntryLinesViewModel.d.ts +102 -0
- package/lib/view/transactionDetail/journalEntryLinesViewModel.js +160 -0
- package/lib/view/transactionDetail/transactionDetailLocalDataHelper.d.ts +47 -0
- package/lib/view/transactionDetail/transactionDetailLocalDataHelper.js +1107 -0
- package/lib/view/transactionDetail/transactionDetailPayload.d.ts +41 -0
- package/lib/view/transactionDetail/transactionDetailPayload.js +2 -0
- package/lib/view/transactionDetail/transactionDetailReducer.d.ts +171 -0
- package/lib/view/transactionDetail/transactionDetailReducer.js +823 -0
- package/lib/view/transactionDetail/transactionDetailSelector.d.ts +46 -0
- package/lib/view/transactionDetail/transactionDetailSelector.js +223 -0
- package/lib/view/transactionDetail/transactionDetailState.d.ts +81 -0
- package/lib/view/transactionDetail/transactionDetailState.js +77 -0
- package/lib/view/transactionDetail/transactionDetailTypes.d.ts +70 -0
- package/lib/view/transactionDetail/transactionDetailTypes.js +2 -0
- package/lib/view/transactionList/fetchTransactionListByAccountEpic.d.ts +8 -0
- package/lib/view/transactionList/fetchTransactionListByAccountEpic.js +58 -0
- package/lib/view/transactionList/fetchTransactionListByClassEpic.d.ts +8 -0
- package/lib/view/transactionList/fetchTransactionListByClassEpic.js +53 -0
- package/lib/view/transactionList/fetchTransactionListByEntityEpic.d.ts +8 -0
- package/lib/view/transactionList/fetchTransactionListByEntityEpic.js +53 -0
- package/lib/view/transactionList/fetchTransactionListByProjectEpic.d.ts +8 -0
- package/lib/view/transactionList/fetchTransactionListByProjectEpic.js +52 -0
- package/lib/view/transactionList/fetchTransactionsListByCategoryTypeEpic.d.ts +8 -0
- package/lib/view/transactionList/fetchTransactionsListByCategoryTypeEpic.js +71 -0
- package/lib/view/transactionList/parallelFetchAccountTransactionListEpic.d.ts +12 -0
- package/lib/view/transactionList/parallelFetchAccountTransactionListEpic.js +84 -0
- package/lib/view/transactionList/parallelFetchClassTransactionListEpic.d.ts +12 -0
- package/lib/view/transactionList/parallelFetchClassTransactionListEpic.js +84 -0
- package/lib/view/transactionList/parallelFetchEntityTransactionListEpic.d.ts +6 -0
- package/lib/view/transactionList/parallelFetchEntityTransactionListEpic.js +92 -0
- package/lib/view/transactionList/parallelFetchProjectTransactionListEpic.d.ts +6 -0
- package/lib/view/transactionList/parallelFetchProjectTransactionListEpic.js +36 -0
- package/lib/view/transactionList/parallelFetchTransactionListByCategoryTypeEpic.d.ts +6 -0
- package/lib/view/transactionList/parallelFetchTransactionListByCategoryTypeEpic.js +36 -0
- package/lib/view/transactionList/reduceTransactionListFetchState.d.ts +3 -0
- package/lib/view/transactionList/reduceTransactionListFetchState.js +56 -0
- package/lib/view/transactionList/transactionListByAccountSelector.d.ts +21 -0
- package/lib/view/transactionList/transactionListByAccountSelector.js +65 -0
- package/lib/view/transactionList/transactionListByCategoryTypeSelector.d.ts +15 -0
- package/lib/view/transactionList/transactionListByCategoryTypeSelector.js +54 -0
- package/lib/view/transactionList/transactionListByClassSelector.d.ts +22 -0
- package/lib/view/transactionList/transactionListByClassSelector.js +66 -0
- package/lib/view/transactionList/transactionListByEntitySelector.d.ts +14 -0
- package/lib/view/transactionList/transactionListByEntitySelector.js +105 -0
- package/lib/view/transactionList/transactionListByProjectSelector.d.ts +22 -0
- package/lib/view/transactionList/transactionListByProjectSelector.js +66 -0
- package/lib/view/transactionList/transactionListPayload.d.ts +74 -0
- package/lib/view/transactionList/transactionListPayload.js +2 -0
- package/lib/view/transactionList/transactionListReducer.d.ts +118 -0
- package/lib/view/transactionList/transactionListReducer.js +477 -0
- package/lib/view/transactionList/transactionListState.d.ts +84 -0
- package/lib/view/transactionList/transactionListState.js +62 -0
- package/lib/view/trend/fetchExpenseTrendEpic.d.ts +8 -0
- package/lib/view/trend/fetchExpenseTrendEpic.js +58 -0
- package/lib/view/trend/fetchIncomeTrendEpic.d.ts +7 -0
- package/lib/view/trend/fetchIncomeTrendEpic.js +55 -0
- package/lib/view/trend/trendPayload.d.ts +30 -0
- package/lib/view/trend/trendPayload.js +2 -0
- package/lib/view/trend/trendReducer.d.ts +17 -0
- package/lib/view/trend/trendReducer.js +70 -0
- package/lib/view/trend/trendSelector.d.ts +38 -0
- package/lib/view/trend/trendSelector.js +139 -0
- package/lib/view/trend/trendState.d.ts +7 -0
- package/lib/view/trend/trendState.js +2 -0
- package/lib/view/trendWithTransactions/fetchTransactionsForEntityEpic.d.ts +7 -0
- package/lib/view/trendWithTransactions/fetchTransactionsForEntityEpic.js +18 -0
- package/lib/view/trendWithTransactions/fetchTrendForEntityEpic.d.ts +7 -0
- package/lib/view/trendWithTransactions/fetchTrendForEntityEpic.js +20 -0
- package/lib/view/trendWithTransactions/reduceTrendWithTransactionsState.d.ts +10 -0
- package/lib/view/trendWithTransactions/reduceTrendWithTransactionsState.js +55 -0
- package/lib/view/trendWithTransactions/trendWithTransactionsReducer.d.ts +32 -0
- package/lib/view/trendWithTransactions/trendWithTransactionsReducer.js +65 -0
- package/lib/view/trendWithTransactions/trendWithTransactionsSelector.d.ts +23 -0
- package/lib/view/trendWithTransactions/trendWithTransactionsSelector.js +60 -0
- package/lib/view/trendWithTransactions/trendWithTransactionsState.d.ts +15 -0
- package/lib/view/trendWithTransactions/trendWithTransactionsState.js +5 -0
- package/lib/view/twoFactorAuthentication/resendOtpEpic.d.ts +13 -0
- package/lib/view/twoFactorAuthentication/resendOtpEpic.js +172 -0
- package/lib/view/twoFactorAuthentication/sendOtpEpic.d.ts +14 -0
- package/lib/view/twoFactorAuthentication/sendOtpEpic.js +173 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthentication.d.ts +28 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthentication.js +38 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthenticationPayload.d.ts +20 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthenticationPayload.js +11 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthenticationReducer.d.ts +37 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthenticationReducer.js +242 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthenticationSelector.d.ts +14 -0
- package/lib/view/twoFactorAuthentication/twoFactorAuthenticationSelector.js +20 -0
- package/lib/view/twoFactorAuthentication/verifyOtpEpic.d.ts +15 -0
- package/lib/view/twoFactorAuthentication/verifyOtpEpic.js +157 -0
- package/lib/view/userFinancialAccount/fetchUserFinancialAccountEpic.d.ts +10 -0
- package/lib/view/userFinancialAccount/fetchUserFinancialAccountEpic.js +52 -0
- package/lib/view/userFinancialAccount/userFinancialAccountPayload.d.ts +12 -0
- package/lib/view/userFinancialAccount/userFinancialAccountPayload.js +2 -0
- package/lib/view/userFinancialAccount/userFinancialAccountReducer.d.ts +22 -0
- package/lib/view/userFinancialAccount/userFinancialAccountReducer.js +93 -0
- package/lib/view/userFinancialAccount/userFinancialAccountSelector.d.ts +13 -0
- package/lib/view/userFinancialAccount/userFinancialAccountSelector.js +34 -0
- package/lib/view/userFinancialAccount/userFinancialAccountState.d.ts +12 -0
- package/lib/view/userFinancialAccount/userFinancialAccountState.js +2 -0
- package/lib/view/userGroupListView/userGroupListViewReducer.d.ts +23 -0
- package/lib/view/userGroupListView/userGroupListViewReducer.js +69 -0
- package/lib/view/userGroupListView/userGroupListViewSelector.d.ts +7 -0
- package/lib/view/userGroupListView/userGroupListViewSelector.js +20 -0
- package/lib/view/userGroupListView/userGroupListViewState.d.ts +8 -0
- package/lib/view/userGroupListView/userGroupListViewState.js +2 -0
- package/lib/view/userListView/fetchUserListByTypeEpic.d.ts +12 -0
- package/lib/view/userListView/fetchUserListByTypeEpic.js +82 -0
- package/lib/view/userListView/userListViewPayload.d.ts +30 -0
- package/lib/view/userListView/userListViewPayload.js +2 -0
- package/lib/view/userListView/userListViewReducer.d.ts +23 -0
- package/lib/view/userListView/userListViewReducer.js +76 -0
- package/lib/view/userListView/userListViewSelector.d.ts +9 -0
- package/lib/view/userListView/userListViewSelector.js +38 -0
- package/lib/view/userListView/userListViewState.d.ts +14 -0
- package/lib/view/userListView/userListViewState.js +2 -0
- package/lib/view/userRoleConfigView/userRoleConfigEpic.d.ts +8 -0
- package/lib/view/userRoleConfigView/userRoleConfigEpic.js +36 -0
- package/lib/view/userRoleConfigView/userRoleConfigPayload.d.ts +9 -0
- package/lib/view/userRoleConfigView/userRoleConfigPayload.js +2 -0
- package/lib/view/userRoleConfigView/userRoleConfigReducer.d.ts +9 -0
- package/lib/view/userRoleConfigView/userRoleConfigReducer.js +44 -0
- package/lib/view/userRoleConfigView/userRoleConfigSelector.d.ts +12 -0
- package/lib/view/userRoleConfigView/userRoleConfigSelector.js +12 -0
- package/lib/view/userRoleConfigView/userRoleConfigState.d.ts +5 -0
- package/lib/view/userRoleConfigView/userRoleConfigState.js +2 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListEpic.d.ts +7 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListEpic.js +23 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListPayload.d.ts +15 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListPayload.js +2 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListReducer.d.ts +7 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListReducer.js +51 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListState.d.ts +9 -0
- package/lib/view/vendor1099TypeList/vendor1099TypeListState.js +2 -0
- package/lib/view/vendorFiling1099/__mock__/json/vendorFiling1099DownloadSuccess.json +574 -0
- package/lib/view/vendorFiling1099/__mock__/json/vendorFiling1099ListSuccess.json +94 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099DownloadMock.d.ts +7 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099DownloadMock.js +95 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099ListMock.d.ts +11 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099ListMock.js +209 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099ListSelectorMock.d.ts +2 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099ListSelectorMock.js +46 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099UploadDetailsMock.d.ts +136 -0
- package/lib/view/vendorFiling1099/__mock__/vendorFiling1099UploadDetailsMock.js +158 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099AllEpic.d.ts +8 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099AllEpic.js +30 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099DownloadEpic.d.ts +7 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099DownloadEpic.js +49 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099ListEpic.d.ts +10 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/fetchVendorsFiling1099ListEpic.js +41 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListPayload.d.ts +26 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListPayload.js +2 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListReducer.d.ts +29 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListReducer.js +129 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListSelector.d.ts +19 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListSelector.js +88 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListState.d.ts +26 -0
- package/lib/view/vendorFiling1099/vendorFiling1099List/vendorFiling1099ListState.js +13 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsPayload.d.ts +26 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsPayload.js +55 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsReducer.d.ts +28 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsReducer.js +215 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsSaveEpic.d.ts +11 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsSaveEpic.js +58 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsSelector.d.ts +14 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsSelector.js +16 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsState.d.ts +27 -0
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsState.js +2 -0
- package/lib/view/vendorList/fetchVendorsListEpic.d.ts +17 -0
- package/lib/view/vendorList/fetchVendorsListEpic.js +97 -0
- package/lib/view/vendorList/vendorListPayload.d.ts +20 -0
- package/lib/view/vendorList/vendorListPayload.js +2 -0
- package/lib/view/vendorList/vendorListReducer.d.ts +40 -0
- package/lib/view/vendorList/vendorListReducer.js +152 -0
- package/lib/view/vendorList/vendorListSelector.d.ts +28 -0
- package/lib/view/vendorList/vendorListSelector.js +91 -0
- package/lib/view/vendorList/vendorListState.d.ts +32 -0
- package/lib/view/vendorList/vendorListState.js +2 -0
- package/lib/view/vendorReviewView/common/payload/commonTypes.d.ts +20 -0
- package/lib/view/vendorReviewView/common/payload/commonTypes.js +94 -0
- package/lib/view/vendorReviewView/common/state/commonTypes.d.ts +28 -0
- package/lib/view/vendorReviewView/common/state/commonTypes.js +90 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/fetchVendorFirstReviewAttachmentsEpic.d.ts +7 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/fetchVendorFirstReviewAttachmentsEpic.js +37 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/fetchVendorFirstReviewViewEpic.d.ts +17 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/fetchVendorFirstReviewViewEpic.js +94 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/saveVendorDetailsViewEpic.d.ts +8 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/saveVendorDetailsViewEpic.js +61 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/saveVendorFirstReviewViewEpic.d.ts +10 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/epics/saveVendorFirstReviewViewEpic.js +254 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewPayload.d.ts +80 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewPayload.js +29 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewReducer.d.ts +69 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewReducer.js +343 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewSelector.d.ts +57 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewSelector.js +126 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewState.d.ts +69 -0
- package/lib/view/vendorReviewView/vendorFirstReviewView/vendorFirstReviewViewState.js +15 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/epics/approveVendorGlobalReviewEpic.d.ts +7 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/epics/approveVendorGlobalReviewEpic.js +149 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/epics/fetchVendorGlobalReviewViewEpic.d.ts +17 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/epics/fetchVendorGlobalReviewViewEpic.js +96 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/epics/rejectVendorGlobalReviewEpic.d.ts +7 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/epics/rejectVendorGlobalReviewEpic.js +94 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewPayload.d.ts +52 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewPayload.js +12 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewReducer.d.ts +39 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewReducer.js +263 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewSelector.d.ts +24 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewSelector.js +60 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewState.d.ts +39 -0
- package/lib/view/vendorReviewView/vendorGlobalReviewView/vendorGlobalReviewViewState.js +12 -0
- package/lib/view/vendorTabView/fetchVendorTabViewEpic.d.ts +10 -0
- package/lib/view/vendorTabView/fetchVendorTabViewEpic.js +75 -0
- package/lib/view/vendorTabView/vendorTabViewReducer.d.ts +21 -0
- package/lib/view/vendorTabView/vendorTabViewReducer.js +52 -0
- package/lib/view/vendorTabView/vendorTabViewSelector.d.ts +8 -0
- package/lib/view/vendorTabView/vendorTabViewSelector.js +15 -0
- package/lib/view/vendorTabView/vendorTabViewState.d.ts +8 -0
- package/lib/view/vendorTabView/vendorTabViewState.js +14 -0
- package/lib/view/vendorTypeList/vendorTypeListEpic.d.ts +7 -0
- package/lib/view/vendorTypeList/vendorTypeListEpic.js +23 -0
- package/lib/view/vendorTypeList/vendorTypeListPayload.d.ts +10 -0
- package/lib/view/vendorTypeList/vendorTypeListPayload.js +2 -0
- package/lib/view/vendorTypeList/vendorTypeListReducer.d.ts +7 -0
- package/lib/view/vendorTypeList/vendorTypeListReducer.js +37 -0
- package/lib/view/vendorTypeList/vendorTypeListState.d.ts +5 -0
- package/lib/view/vendorTypeList/vendorTypeListState.js +2 -0
- package/lib/view/vendorTypeList/vendorTypeSelector.d.ts +0 -0
- package/lib/view/vendorTypeList/vendorTypeSelector.js +1 -0
- package/lib/view/zeniAccStatementList/fetchZeniAccStatementListEpic.d.ts +7 -0
- package/lib/view/zeniAccStatementList/fetchZeniAccStatementListEpic.js +36 -0
- package/lib/view/zeniAccStatementList/fetchZeniAccStatementPageEpic.d.ts +7 -0
- package/lib/view/zeniAccStatementList/fetchZeniAccStatementPageEpic.js +37 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementList.d.ts +14 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementList.js +11 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementListPayload.d.ts +10 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementListPayload.js +2 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementListReducer.d.ts +20 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementListReducer.js +82 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementListSelector.d.ts +10 -0
- package/lib/view/zeniAccStatementList/zeniAccStatementListSelector.js +39 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic.d.ts +13 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardEpic.js +20 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardPayload.d.ts +11 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardPayload.js +2 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardReducer.d.ts +7 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardReducer.js +58 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardSelector.d.ts +12 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardSelector.js +15 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardState.d.ts +9 -0
- package/lib/view/zeniAccountsPromoCard/zeniAccountsPromoCardState.js +2 -0
- package/lib/view/zeniOAuthView/epics/approveOAuthConsentEpic.d.ts +27 -0
- package/lib/view/zeniOAuthView/epics/approveOAuthConsentEpic.js +69 -0
- package/lib/view/zeniOAuthView/zeniOAuthParamsParser.d.ts +16 -0
- package/lib/view/zeniOAuthView/zeniOAuthParamsParser.js +44 -0
- package/lib/view/zeniOAuthView/zeniOAuthReducer.d.ts +29 -0
- package/lib/view/zeniOAuthView/zeniOAuthReducer.js +53 -0
- package/lib/view/zeniOAuthView/zeniOAuthSelector.d.ts +5 -0
- package/lib/view/zeniOAuthView/zeniOAuthSelector.js +9 -0
- package/lib/view/zeniOAuthView/zeniOAuthState.d.ts +4 -0
- package/lib/view/zeniOAuthView/zeniOAuthState.js +2 -0
- package/lib/zeniAPI.d.ts +71 -0
- package/lib/zeniAPI.js +156 -0
- package/lib/zeniDayJS.d.ts +40 -0
- package/lib/zeniDayJS.js +169 -0
- package/lib/zeniUrl.d.ts +6 -0
- package/lib/zeniUrl.js +19 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4659 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.accountMappingStateAccountListComplete = exports.accountMappingStateRecommendationComplete = exports.accountMappingStateAccountListInProgress = exports.accountMappingStateRecommendationInProgress = exports.accountStateForMapping = exports.accountMappingState = exports.accountMappingViewMock = void 0;
|
|
4
|
+
const accountMappingReducer_1 = require("../accountMappingReducer");
|
|
5
|
+
const accountMappingState = {
|
|
6
|
+
data: {
|
|
7
|
+
selectedIncomeAccountId: 'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
8
|
+
selectedExpenseAccountId: undefined,
|
|
9
|
+
isExpenseRecommendationChecked: false,
|
|
10
|
+
isIncomeRecommendationChecked: true,
|
|
11
|
+
previousExpenseAccount: undefined,
|
|
12
|
+
previousIncomeAccount: undefined,
|
|
13
|
+
selectedBillPayAccountId: undefined,
|
|
14
|
+
selectedReimbursementsAccountId: undefined,
|
|
15
|
+
selectedFixedAssetsAccountIds: [],
|
|
16
|
+
selectedPrepaidExpensesAccountIds: [],
|
|
17
|
+
selectedAccruedExpensesAccountIds: [],
|
|
18
|
+
selectedBankAccounts1099FilingAccountIds: [],
|
|
19
|
+
selectedExpenseAccounts1099FilingAccountIds: [],
|
|
20
|
+
isBillPayRecommendationChecked: false,
|
|
21
|
+
isReimbursementsRecommendationChecked: false,
|
|
22
|
+
previousBillPayAccount: undefined,
|
|
23
|
+
previousReimbursementsAccount: undefined,
|
|
24
|
+
previousPrepaidExpensesAccount: [],
|
|
25
|
+
previousFixedAssetsAccount: [],
|
|
26
|
+
previousAccruedExpensesAccount: [],
|
|
27
|
+
previousBankAccounts1099FilingAccount: [],
|
|
28
|
+
previousExpenseAccounts1099FilingAccount: [],
|
|
29
|
+
},
|
|
30
|
+
accountListFetchState: {
|
|
31
|
+
fetchState: 'Completed',
|
|
32
|
+
},
|
|
33
|
+
recommendationFetchState: {
|
|
34
|
+
fetchState: 'Completed',
|
|
35
|
+
},
|
|
36
|
+
updateFetchState: {
|
|
37
|
+
fetchState: 'Not-Started',
|
|
38
|
+
},
|
|
39
|
+
incomeAccountIdList: [
|
|
40
|
+
'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
41
|
+
'account_b8e28eec-5694-4707-8354-2b04037be7d3',
|
|
42
|
+
'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d',
|
|
43
|
+
'account_38a7fa62-3d05-480e-a4cd-4d50c52c138f',
|
|
44
|
+
'account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381',
|
|
45
|
+
'account_eb71b745-07c3-4927-b183-6b47df718963',
|
|
46
|
+
'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb',
|
|
47
|
+
'account_5ff04548-d012-4487-bfa4-bd1396dfc11f',
|
|
48
|
+
'account_6ec41085-0455-40bd-9d07-c10209d5c8ce',
|
|
49
|
+
'account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1',
|
|
50
|
+
'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa',
|
|
51
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
52
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
53
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
54
|
+
'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce',
|
|
55
|
+
'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb',
|
|
56
|
+
'account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a',
|
|
57
|
+
'account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2',
|
|
58
|
+
'account_293e8b54-55ff-4a33-8671-258f892f581a',
|
|
59
|
+
'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d',
|
|
60
|
+
'account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b',
|
|
61
|
+
],
|
|
62
|
+
incomeNestedAccountListHierarchy: [
|
|
63
|
+
{
|
|
64
|
+
accountId: ['account_06cecff6-33b8-4677-b586-9663dcacd944'],
|
|
65
|
+
accountName: 'Uncategorized Income',
|
|
66
|
+
qboId: '30',
|
|
67
|
+
children: [],
|
|
68
|
+
hasSiblings: true,
|
|
69
|
+
coaId: '49999',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
accountId: ['account_b8e28eec-5694-4707-8354-2b04037be7d3'],
|
|
73
|
+
accountName: 'Unapplied Cash Payment Income',
|
|
74
|
+
qboId: '87',
|
|
75
|
+
children: [],
|
|
76
|
+
hasSiblings: true,
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
accountId: ['account_38a7fa62-3d05-480e-a4cd-4d50c52c138f'],
|
|
80
|
+
accountName: 'Services',
|
|
81
|
+
qboId: '1',
|
|
82
|
+
children: [],
|
|
83
|
+
hasSiblings: true,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
accountId: ['account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381'],
|
|
87
|
+
accountName: 'Sales of Product Income',
|
|
88
|
+
qboId: '79',
|
|
89
|
+
children: [],
|
|
90
|
+
hasSiblings: true,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
accountId: ['account_eb71b745-07c3-4927-b183-6b47df718963'],
|
|
94
|
+
accountName: 'Refunds-Allowances',
|
|
95
|
+
qboId: '6',
|
|
96
|
+
children: [],
|
|
97
|
+
hasSiblings: true,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
accountId: ['account_5ff04548-d012-4487-bfa4-bd1396dfc11f'],
|
|
101
|
+
accountName: 'Pest Control Services',
|
|
102
|
+
qboId: '54',
|
|
103
|
+
children: [],
|
|
104
|
+
hasSiblings: true,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
accountId: ['account_6ec41085-0455-40bd-9d07-c10209d5c8ce'],
|
|
108
|
+
accountName: 'Other Income',
|
|
109
|
+
qboId: '83',
|
|
110
|
+
children: [],
|
|
111
|
+
hasSiblings: true,
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
accountId: ['account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1'],
|
|
115
|
+
accountName: 'Non-Profit Income random',
|
|
116
|
+
qboId: '99',
|
|
117
|
+
children: [],
|
|
118
|
+
hasSiblings: true,
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
accountId: ['account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1'],
|
|
122
|
+
accountName: 'Landscaping Services',
|
|
123
|
+
qboId: '45',
|
|
124
|
+
children: [
|
|
125
|
+
{
|
|
126
|
+
accountId: [
|
|
127
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
128
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
129
|
+
],
|
|
130
|
+
accountName: 'Labor',
|
|
131
|
+
qboId: '51',
|
|
132
|
+
children: [
|
|
133
|
+
{
|
|
134
|
+
accountId: [
|
|
135
|
+
'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa',
|
|
136
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
137
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
138
|
+
],
|
|
139
|
+
accountName: 'Maintenance and Repair',
|
|
140
|
+
qboId: '53',
|
|
141
|
+
children: [],
|
|
142
|
+
hasSiblings: true,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
accountId: [
|
|
146
|
+
'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce',
|
|
147
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
148
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
149
|
+
],
|
|
150
|
+
accountName: 'Installation',
|
|
151
|
+
qboId: '52',
|
|
152
|
+
children: [],
|
|
153
|
+
hasSiblings: true,
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
hasSiblings: true,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
accountId: [
|
|
160
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
161
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
162
|
+
],
|
|
163
|
+
accountName: 'Job Materials',
|
|
164
|
+
qboId: '46',
|
|
165
|
+
children: [
|
|
166
|
+
{
|
|
167
|
+
accountId: [
|
|
168
|
+
'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d',
|
|
169
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
170
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
171
|
+
],
|
|
172
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
173
|
+
qboId: '50',
|
|
174
|
+
children: [],
|
|
175
|
+
hasSiblings: true,
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
accountId: [
|
|
179
|
+
'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb',
|
|
180
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
181
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
182
|
+
],
|
|
183
|
+
accountName: 'Plants and Soil',
|
|
184
|
+
qboId: '49',
|
|
185
|
+
children: [],
|
|
186
|
+
hasSiblings: true,
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
accountId: [
|
|
190
|
+
'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb',
|
|
191
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
192
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
193
|
+
],
|
|
194
|
+
accountName: 'Fountains and Garden Lighting',
|
|
195
|
+
qboId: '48',
|
|
196
|
+
children: [],
|
|
197
|
+
hasSiblings: true,
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
accountId: [
|
|
201
|
+
'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d',
|
|
202
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
203
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
204
|
+
],
|
|
205
|
+
accountName: 'Decks and Patios',
|
|
206
|
+
qboId: '47',
|
|
207
|
+
children: [],
|
|
208
|
+
hasSiblings: true,
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
hasSiblings: true,
|
|
212
|
+
},
|
|
213
|
+
],
|
|
214
|
+
hasSiblings: true,
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
accountId: ['account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a'],
|
|
218
|
+
accountName: 'Fees Billed',
|
|
219
|
+
qboId: '5',
|
|
220
|
+
children: [],
|
|
221
|
+
hasSiblings: true,
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
accountId: ['account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2'],
|
|
225
|
+
accountName: 'Discounts given',
|
|
226
|
+
qboId: '86',
|
|
227
|
+
children: [],
|
|
228
|
+
hasSiblings: true,
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
accountId: ['account_293e8b54-55ff-4a33-8671-258f892f581a'],
|
|
232
|
+
accountName: 'Design income',
|
|
233
|
+
qboId: '82',
|
|
234
|
+
children: [],
|
|
235
|
+
hasSiblings: true,
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
accountId: ['account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b'],
|
|
239
|
+
accountName: 'Billable Expense Income',
|
|
240
|
+
qboId: '85',
|
|
241
|
+
children: [],
|
|
242
|
+
hasSiblings: true,
|
|
243
|
+
},
|
|
244
|
+
],
|
|
245
|
+
incomeRecommendations: [
|
|
246
|
+
{
|
|
247
|
+
account: {
|
|
248
|
+
accountId: 'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
249
|
+
accountName: 'Uncategorized Income',
|
|
250
|
+
accountType: 'income',
|
|
251
|
+
accountDescription: '',
|
|
252
|
+
qboId: '30',
|
|
253
|
+
coaId: '49999',
|
|
254
|
+
labels: [],
|
|
255
|
+
tax1099Config: undefined,
|
|
256
|
+
max: 0,
|
|
257
|
+
min: 0,
|
|
258
|
+
reason: 'Based on Zeni AI recommendation.',
|
|
259
|
+
type: 'zeni_bot',
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
],
|
|
263
|
+
expenseAccountIdList: [
|
|
264
|
+
'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
265
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
266
|
+
'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
267
|
+
'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
268
|
+
'account_d4e64547-3541-4b77-8273-0c0f1e3f195c',
|
|
269
|
+
'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a',
|
|
270
|
+
'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
271
|
+
'account_b21f9130-2c8c-4a6e-959e-a0cca0933092',
|
|
272
|
+
'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314',
|
|
273
|
+
'account_cf920797-ff3d-499c-9c4d-5cbb321146ca',
|
|
274
|
+
'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
275
|
+
'account_686005dd-6835-4781-a4a9-83b3c74b2e4d',
|
|
276
|
+
'account_3d4568f6-b288-4d70-bda5-6813cc8177fa',
|
|
277
|
+
'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e',
|
|
278
|
+
'account_260ccba4-1582-4757-9880-40d2445e5784',
|
|
279
|
+
'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
280
|
+
'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
281
|
+
'account_e88d8637-ca35-41aa-b909-dbcc37851eff',
|
|
282
|
+
'account_5e8f5ff6-952b-417f-9315-e23552ccd780',
|
|
283
|
+
'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7',
|
|
284
|
+
'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
285
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
286
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
287
|
+
'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
288
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
289
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
290
|
+
'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
291
|
+
'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
292
|
+
'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
293
|
+
'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3',
|
|
294
|
+
'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
295
|
+
'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
296
|
+
'account_083cb73a-a2fb-4214-b5ba-8d289227ea12',
|
|
297
|
+
'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
298
|
+
'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42',
|
|
299
|
+
'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb',
|
|
300
|
+
'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042',
|
|
301
|
+
'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
302
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
303
|
+
'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
304
|
+
'account_041cf709-4537-4394-994f-ec3c64bbc877',
|
|
305
|
+
'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
306
|
+
'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
307
|
+
'account_d8a660ac-158c-4556-b92f-020d3afe0e34',
|
|
308
|
+
'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa',
|
|
309
|
+
'account_10053408-c131-468b-a1ab-2c289d84901c',
|
|
310
|
+
'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
311
|
+
],
|
|
312
|
+
expenseNestedAccountListHierarchy: [
|
|
313
|
+
{
|
|
314
|
+
accountId: ['account_1ecee77e-e382-4ab0-b182-70a33103039f'],
|
|
315
|
+
accountName: 'Utilities',
|
|
316
|
+
qboId: '24',
|
|
317
|
+
children: [
|
|
318
|
+
{
|
|
319
|
+
accountId: [
|
|
320
|
+
'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
321
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
322
|
+
],
|
|
323
|
+
accountName: 'Telephone',
|
|
324
|
+
qboId: '77',
|
|
325
|
+
children: [],
|
|
326
|
+
hasSiblings: true,
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
accountId: [
|
|
330
|
+
'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
331
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
332
|
+
],
|
|
333
|
+
accountName: 'Gas and Electric',
|
|
334
|
+
qboId: '76',
|
|
335
|
+
children: [],
|
|
336
|
+
hasSiblings: true,
|
|
337
|
+
},
|
|
338
|
+
],
|
|
339
|
+
hasSiblings: true,
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
accountId: ['account_37a82313-fc44-44f0-b3bb-f09434284e58'],
|
|
343
|
+
accountName: 'Uncategorized Expense',
|
|
344
|
+
qboId: '31',
|
|
345
|
+
children: [],
|
|
346
|
+
hasSiblings: true,
|
|
347
|
+
coaId: '69999',
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
accountId: ['account_f18000a3-d265-41dc-a16c-f63b250b64b9'],
|
|
351
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
352
|
+
qboId: '88',
|
|
353
|
+
children: [],
|
|
354
|
+
hasSiblings: true,
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
accountId: ['account_d4e64547-3541-4b77-8273-0c0f1e3f195c'],
|
|
358
|
+
accountName: 'Travel Meals',
|
|
359
|
+
qboId: '23',
|
|
360
|
+
children: [],
|
|
361
|
+
hasSiblings: true,
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
accountId: ['account_11bc3022-c5df-43aa-ab29-e450ddf9b75a'],
|
|
365
|
+
accountName: 'Travel',
|
|
366
|
+
qboId: '22',
|
|
367
|
+
children: [],
|
|
368
|
+
hasSiblings: true,
|
|
369
|
+
coaId: '62200',
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
accountId: ['account_b21f9130-2c8c-4a6e-959e-a0cca0933092'],
|
|
373
|
+
accountName: 'Taxes & Licenses',
|
|
374
|
+
qboId: '21',
|
|
375
|
+
children: [],
|
|
376
|
+
hasSiblings: true,
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
accountId: ['account_cae16d28-3bfd-40a2-b2d0-a9f76e419314'],
|
|
380
|
+
accountName: 'Supplies',
|
|
381
|
+
qboId: '20',
|
|
382
|
+
children: [],
|
|
383
|
+
hasSiblings: true,
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
accountId: ['account_cf920797-ff3d-499c-9c4d-5cbb321146ca'],
|
|
387
|
+
accountName: 'Stationery & Printing',
|
|
388
|
+
qboId: '19',
|
|
389
|
+
children: [],
|
|
390
|
+
hasSiblings: true,
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
accountId: ['account_686005dd-6835-4781-a4a9-83b3c74b2e4d'],
|
|
394
|
+
accountName: 'Salaries and Benefits',
|
|
395
|
+
qboId: '91',
|
|
396
|
+
children: [],
|
|
397
|
+
hasSiblings: true,
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
accountId: ['account_3d4568f6-b288-4d70-bda5-6813cc8177fa'],
|
|
401
|
+
accountName: 'Rent or Lease',
|
|
402
|
+
qboId: '17',
|
|
403
|
+
children: [],
|
|
404
|
+
hasSiblings: true,
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
accountId: ['account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e'],
|
|
408
|
+
accountName: 'Purchases',
|
|
409
|
+
qboId: '78',
|
|
410
|
+
children: [],
|
|
411
|
+
hasSiblings: true,
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
accountId: ['account_260ccba4-1582-4757-9880-40d2445e5784'],
|
|
415
|
+
accountName: 'Promotional',
|
|
416
|
+
qboId: '16',
|
|
417
|
+
children: [],
|
|
418
|
+
hasSiblings: true,
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
accountId: ['account_e88d8637-ca35-41aa-b909-dbcc37851eff'],
|
|
422
|
+
accountName: 'Payroll Expenses',
|
|
423
|
+
qboId: '113',
|
|
424
|
+
children: [],
|
|
425
|
+
hasSiblings: true,
|
|
426
|
+
coaId: '64300',
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
accountId: ['account_5e8f5ff6-952b-417f-9315-e23552ccd780'],
|
|
430
|
+
accountName: 'Office Expenses',
|
|
431
|
+
qboId: '15',
|
|
432
|
+
children: [],
|
|
433
|
+
hasSiblings: true,
|
|
434
|
+
coaId: '64100',
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
accountId: ['account_5667e789-c321-4b8c-a5b0-6f384c5a58d7'],
|
|
438
|
+
accountName: 'Meals and Entertainment',
|
|
439
|
+
qboId: '13',
|
|
440
|
+
children: [],
|
|
441
|
+
hasSiblings: true,
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
accountId: ['account_be9dd00d-70e6-4c5b-96d2-925b5ed42336'],
|
|
445
|
+
accountName: 'Maintenance and Repair',
|
|
446
|
+
qboId: '72',
|
|
447
|
+
children: [
|
|
448
|
+
{
|
|
449
|
+
accountId: [
|
|
450
|
+
'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
451
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
452
|
+
],
|
|
453
|
+
accountName: 'Equipment Repairs',
|
|
454
|
+
qboId: '75',
|
|
455
|
+
children: [],
|
|
456
|
+
hasSiblings: true,
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
accountId: [
|
|
460
|
+
'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
461
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
462
|
+
],
|
|
463
|
+
accountName: 'Computer Repairs',
|
|
464
|
+
qboId: '74',
|
|
465
|
+
children: [],
|
|
466
|
+
hasSiblings: true,
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
accountId: [
|
|
470
|
+
'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
471
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
472
|
+
],
|
|
473
|
+
accountName: 'Building Repairs',
|
|
474
|
+
qboId: '73',
|
|
475
|
+
children: [],
|
|
476
|
+
hasSiblings: true,
|
|
477
|
+
},
|
|
478
|
+
],
|
|
479
|
+
hasSiblings: true,
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
accountId: ['account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d'],
|
|
483
|
+
accountName: 'Legal & Professional Fees',
|
|
484
|
+
qboId: '12',
|
|
485
|
+
children: [
|
|
486
|
+
{
|
|
487
|
+
accountId: [
|
|
488
|
+
'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
489
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
490
|
+
],
|
|
491
|
+
accountName: 'Lawyer',
|
|
492
|
+
qboId: '71',
|
|
493
|
+
children: [],
|
|
494
|
+
hasSiblings: true,
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
accountId: [
|
|
498
|
+
'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
499
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
500
|
+
],
|
|
501
|
+
accountName: 'Bookkeeper',
|
|
502
|
+
qboId: '70',
|
|
503
|
+
children: [],
|
|
504
|
+
hasSiblings: true,
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
accountId: [
|
|
508
|
+
'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
509
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
510
|
+
],
|
|
511
|
+
accountName: 'Accounting',
|
|
512
|
+
qboId: '69',
|
|
513
|
+
children: [],
|
|
514
|
+
hasSiblings: true,
|
|
515
|
+
},
|
|
516
|
+
],
|
|
517
|
+
hasSiblings: true,
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
accountId: ['account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9'],
|
|
521
|
+
accountName: 'Job Expenses',
|
|
522
|
+
qboId: '58',
|
|
523
|
+
children: [
|
|
524
|
+
{
|
|
525
|
+
accountId: [
|
|
526
|
+
'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
527
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
528
|
+
],
|
|
529
|
+
accountName: 'Permits',
|
|
530
|
+
qboId: '68',
|
|
531
|
+
children: [],
|
|
532
|
+
hasSiblings: true,
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
accountId: [
|
|
536
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
537
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
538
|
+
],
|
|
539
|
+
accountName: 'Job Materials',
|
|
540
|
+
qboId: '63',
|
|
541
|
+
children: [
|
|
542
|
+
{
|
|
543
|
+
accountId: [
|
|
544
|
+
'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
545
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
546
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
547
|
+
],
|
|
548
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
549
|
+
qboId: '67',
|
|
550
|
+
children: [],
|
|
551
|
+
hasSiblings: true,
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
accountId: [
|
|
555
|
+
'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
556
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
557
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
558
|
+
],
|
|
559
|
+
accountName: 'Plants and Soil',
|
|
560
|
+
qboId: '66',
|
|
561
|
+
children: [],
|
|
562
|
+
hasSiblings: true,
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
accountId: [
|
|
566
|
+
'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
567
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
568
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
569
|
+
],
|
|
570
|
+
accountName: 'Fountain and Garden Lighting',
|
|
571
|
+
qboId: '65',
|
|
572
|
+
children: [],
|
|
573
|
+
hasSiblings: true,
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
accountId: [
|
|
577
|
+
'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
578
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
579
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
580
|
+
],
|
|
581
|
+
accountName: 'Decks and Patios',
|
|
582
|
+
qboId: '64',
|
|
583
|
+
children: [],
|
|
584
|
+
hasSiblings: true,
|
|
585
|
+
},
|
|
586
|
+
],
|
|
587
|
+
hasSiblings: true,
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
accountId: [
|
|
591
|
+
'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
592
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
593
|
+
],
|
|
594
|
+
accountName: 'Equipment Rental',
|
|
595
|
+
qboId: '62',
|
|
596
|
+
children: [],
|
|
597
|
+
hasSiblings: true,
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
accountId: [
|
|
601
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
602
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
603
|
+
],
|
|
604
|
+
accountName: 'Cost of Labor',
|
|
605
|
+
qboId: '59',
|
|
606
|
+
children: [
|
|
607
|
+
{
|
|
608
|
+
accountId: [
|
|
609
|
+
'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
610
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
611
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
612
|
+
],
|
|
613
|
+
accountName: 'Maintenance and Repairs',
|
|
614
|
+
qboId: '61',
|
|
615
|
+
children: [],
|
|
616
|
+
hasSiblings: true,
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
accountId: [
|
|
620
|
+
'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
621
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
622
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
623
|
+
],
|
|
624
|
+
accountName: 'Installation',
|
|
625
|
+
qboId: '60',
|
|
626
|
+
children: [],
|
|
627
|
+
hasSiblings: true,
|
|
628
|
+
},
|
|
629
|
+
],
|
|
630
|
+
hasSiblings: true,
|
|
631
|
+
},
|
|
632
|
+
],
|
|
633
|
+
hasSiblings: true,
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
accountId: ['account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8'],
|
|
637
|
+
accountName: 'Insurance',
|
|
638
|
+
qboId: '11',
|
|
639
|
+
children: [
|
|
640
|
+
{
|
|
641
|
+
accountId: [
|
|
642
|
+
'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
643
|
+
'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
644
|
+
],
|
|
645
|
+
accountName: 'Workers Compensation',
|
|
646
|
+
qboId: '57',
|
|
647
|
+
children: [],
|
|
648
|
+
hasSiblings: false,
|
|
649
|
+
},
|
|
650
|
+
],
|
|
651
|
+
hasSiblings: true,
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
accountId: ['account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3'],
|
|
655
|
+
accountName: 'Fuel',
|
|
656
|
+
qboId: '56',
|
|
657
|
+
children: [],
|
|
658
|
+
hasSiblings: true,
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
accountId: ['account_083cb73a-a2fb-4214-b5ba-8d289227ea12'],
|
|
662
|
+
accountName: 'Equipment Rental',
|
|
663
|
+
qboId: '29',
|
|
664
|
+
children: [],
|
|
665
|
+
hasSiblings: true,
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
accountId: ['account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42'],
|
|
669
|
+
accountName: 'Entertainment test 3',
|
|
670
|
+
qboId: '97',
|
|
671
|
+
children: [],
|
|
672
|
+
hasSiblings: true,
|
|
673
|
+
coaId: '77649',
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
accountId: ['account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb'],
|
|
677
|
+
accountName: 'Dues & Subscriptions',
|
|
678
|
+
qboId: '10',
|
|
679
|
+
children: [],
|
|
680
|
+
hasSiblings: true,
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
accountId: ['account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042'],
|
|
684
|
+
accountName: 'Disposal Fees',
|
|
685
|
+
qboId: '28',
|
|
686
|
+
children: [],
|
|
687
|
+
hasSiblings: true,
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
accountId: ['account_041cf709-4537-4394-994f-ec3c64bbc877'],
|
|
691
|
+
accountName: 'Commissions & fees',
|
|
692
|
+
qboId: '9',
|
|
693
|
+
children: [],
|
|
694
|
+
hasSiblings: true,
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
accountId: ['account_d8a660ac-158c-4556-b92f-020d3afe0e34'],
|
|
698
|
+
accountName: 'Bank Charges',
|
|
699
|
+
qboId: '8',
|
|
700
|
+
children: [],
|
|
701
|
+
hasSiblings: true,
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
accountId: ['account_c4f4a39e-dc67-4c65-b882-9da99070ebfa'],
|
|
705
|
+
accountName: 'Automobile',
|
|
706
|
+
qboId: '55',
|
|
707
|
+
children: [],
|
|
708
|
+
hasSiblings: true,
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
accountId: ['account_10053408-c131-468b-a1ab-2c289d84901c'],
|
|
712
|
+
accountName: 'Advertising',
|
|
713
|
+
qboId: '7',
|
|
714
|
+
children: [],
|
|
715
|
+
hasSiblings: true,
|
|
716
|
+
},
|
|
717
|
+
],
|
|
718
|
+
expenseRecommendations: [
|
|
719
|
+
{
|
|
720
|
+
account: {
|
|
721
|
+
accountId: 'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
722
|
+
accountName: 'Uncategorized Expense',
|
|
723
|
+
accountType: 'expenses',
|
|
724
|
+
accountDescription: '',
|
|
725
|
+
qboId: '31',
|
|
726
|
+
coaId: '69999',
|
|
727
|
+
labels: ['uncategorized_income'],
|
|
728
|
+
tax1099Config: undefined,
|
|
729
|
+
max: 0,
|
|
730
|
+
min: 0,
|
|
731
|
+
reason: 'Based on Zeni AI recommendation.',
|
|
732
|
+
type: 'zeni_bot',
|
|
733
|
+
},
|
|
734
|
+
},
|
|
735
|
+
],
|
|
736
|
+
billPayNestedAccountListHierarchy: [],
|
|
737
|
+
billPayRecommendations: [],
|
|
738
|
+
reimbursementsNestedAccountListHierarchy: [],
|
|
739
|
+
reimbursementsRecommendations: [],
|
|
740
|
+
prepaidExpensesAccountIdList: [],
|
|
741
|
+
prepaidExpensesNestedAccountListHierarchy: [],
|
|
742
|
+
prepaidExpensesRecommendations: [],
|
|
743
|
+
fixedAssetsAccountIdList: [],
|
|
744
|
+
fixedAssetsNestedAccountListHierarchy: [],
|
|
745
|
+
fixedAssetsRecommendations: [],
|
|
746
|
+
accruedExpensesAccountIdList: [],
|
|
747
|
+
accruedExpensesNestedAccountListHierarchy: [],
|
|
748
|
+
accruedExpensesRecommendations: [],
|
|
749
|
+
bankAccounts1099FilingAccountIdList: [],
|
|
750
|
+
bankAccounts1099FilingNestedAccountListHierarchy: [],
|
|
751
|
+
expenseAccounts1099FilingAccountIdList: [],
|
|
752
|
+
expenseAccounts1099FilingNestedAccountListHierarchy: [],
|
|
753
|
+
};
|
|
754
|
+
exports.accountMappingState = accountMappingState;
|
|
755
|
+
const accountMappingViewMock = {
|
|
756
|
+
incomeAccountList: [
|
|
757
|
+
{
|
|
758
|
+
accountId: 'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
759
|
+
accountName: 'Uncategorized Income',
|
|
760
|
+
accountType: 'income',
|
|
761
|
+
accountDescription: '',
|
|
762
|
+
qboId: '30',
|
|
763
|
+
coaId: '49999',
|
|
764
|
+
accountSubType: undefined,
|
|
765
|
+
last4Digits: undefined,
|
|
766
|
+
logo: undefined,
|
|
767
|
+
labels: [],
|
|
768
|
+
tax1099Config: undefined,
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
accountId: 'account_b8e28eec-5694-4707-8354-2b04037be7d3',
|
|
772
|
+
accountName: 'Unapplied Cash Payment Income',
|
|
773
|
+
accountType: 'income',
|
|
774
|
+
accountDescription: '',
|
|
775
|
+
qboId: '87',
|
|
776
|
+
accountSubType: undefined,
|
|
777
|
+
last4Digits: undefined,
|
|
778
|
+
logo: undefined,
|
|
779
|
+
coaId: undefined,
|
|
780
|
+
labels: [],
|
|
781
|
+
tax1099Config: undefined,
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
accountId: 'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d',
|
|
785
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
786
|
+
accountType: 'income',
|
|
787
|
+
accountSubType: undefined,
|
|
788
|
+
last4Digits: undefined,
|
|
789
|
+
logo: undefined,
|
|
790
|
+
coaId: undefined,
|
|
791
|
+
accountDescription: '',
|
|
792
|
+
qboId: '50',
|
|
793
|
+
labels: [],
|
|
794
|
+
tax1099Config: undefined,
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
accountId: 'account_38a7fa62-3d05-480e-a4cd-4d50c52c138f',
|
|
798
|
+
accountName: 'Services',
|
|
799
|
+
accountType: 'income',
|
|
800
|
+
accountSubType: undefined,
|
|
801
|
+
last4Digits: undefined,
|
|
802
|
+
logo: undefined,
|
|
803
|
+
coaId: undefined,
|
|
804
|
+
accountDescription: '',
|
|
805
|
+
qboId: '1',
|
|
806
|
+
labels: [],
|
|
807
|
+
tax1099Config: undefined,
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
accountId: 'account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381',
|
|
811
|
+
accountName: 'Sales of Product Income',
|
|
812
|
+
accountType: 'income',
|
|
813
|
+
accountSubType: undefined,
|
|
814
|
+
last4Digits: undefined,
|
|
815
|
+
logo: undefined,
|
|
816
|
+
coaId: undefined,
|
|
817
|
+
accountDescription: '',
|
|
818
|
+
qboId: '79',
|
|
819
|
+
labels: [],
|
|
820
|
+
tax1099Config: undefined,
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
accountId: 'account_eb71b745-07c3-4927-b183-6b47df718963',
|
|
824
|
+
accountName: 'Refunds-Allowances',
|
|
825
|
+
accountType: 'income',
|
|
826
|
+
accountSubType: undefined,
|
|
827
|
+
last4Digits: undefined,
|
|
828
|
+
logo: undefined,
|
|
829
|
+
coaId: undefined,
|
|
830
|
+
accountDescription: '',
|
|
831
|
+
qboId: '6',
|
|
832
|
+
labels: [],
|
|
833
|
+
tax1099Config: undefined,
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
accountId: 'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb',
|
|
837
|
+
accountName: 'Plants and Soil',
|
|
838
|
+
accountType: 'income',
|
|
839
|
+
accountSubType: undefined,
|
|
840
|
+
last4Digits: undefined,
|
|
841
|
+
logo: undefined,
|
|
842
|
+
coaId: undefined,
|
|
843
|
+
accountDescription: '',
|
|
844
|
+
qboId: '49',
|
|
845
|
+
labels: [],
|
|
846
|
+
tax1099Config: undefined,
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
accountId: 'account_5ff04548-d012-4487-bfa4-bd1396dfc11f',
|
|
850
|
+
accountName: 'Pest Control Services',
|
|
851
|
+
accountType: 'income',
|
|
852
|
+
accountSubType: undefined,
|
|
853
|
+
last4Digits: undefined,
|
|
854
|
+
logo: undefined,
|
|
855
|
+
coaId: undefined,
|
|
856
|
+
accountDescription: '',
|
|
857
|
+
qboId: '54',
|
|
858
|
+
labels: [],
|
|
859
|
+
tax1099Config: undefined,
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
accountId: 'account_6ec41085-0455-40bd-9d07-c10209d5c8ce',
|
|
863
|
+
accountName: 'Other Income',
|
|
864
|
+
accountType: 'income',
|
|
865
|
+
accountSubType: undefined,
|
|
866
|
+
last4Digits: undefined,
|
|
867
|
+
logo: undefined,
|
|
868
|
+
coaId: undefined,
|
|
869
|
+
accountDescription: '',
|
|
870
|
+
qboId: '83',
|
|
871
|
+
labels: [],
|
|
872
|
+
tax1099Config: undefined,
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
accountId: 'account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1',
|
|
876
|
+
accountName: 'Non-Profit Income random',
|
|
877
|
+
accountType: 'income',
|
|
878
|
+
accountSubType: undefined,
|
|
879
|
+
last4Digits: undefined,
|
|
880
|
+
logo: undefined,
|
|
881
|
+
coaId: undefined,
|
|
882
|
+
accountDescription: '',
|
|
883
|
+
qboId: '99',
|
|
884
|
+
labels: [],
|
|
885
|
+
tax1099Config: undefined,
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
accountId: 'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa',
|
|
889
|
+
accountName: 'Maintenance and Repair',
|
|
890
|
+
accountType: 'income',
|
|
891
|
+
accountSubType: undefined,
|
|
892
|
+
last4Digits: undefined,
|
|
893
|
+
logo: undefined,
|
|
894
|
+
coaId: undefined,
|
|
895
|
+
accountDescription: '',
|
|
896
|
+
qboId: '53',
|
|
897
|
+
labels: [],
|
|
898
|
+
tax1099Config: undefined,
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
accountId: 'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
902
|
+
accountName: 'Landscaping Services',
|
|
903
|
+
accountType: 'income',
|
|
904
|
+
accountSubType: undefined,
|
|
905
|
+
last4Digits: undefined,
|
|
906
|
+
logo: undefined,
|
|
907
|
+
coaId: undefined,
|
|
908
|
+
accountDescription: '',
|
|
909
|
+
qboId: '45',
|
|
910
|
+
labels: [],
|
|
911
|
+
tax1099Config: undefined,
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
accountId: 'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
915
|
+
accountName: 'Labor',
|
|
916
|
+
accountType: 'income',
|
|
917
|
+
accountSubType: undefined,
|
|
918
|
+
last4Digits: undefined,
|
|
919
|
+
logo: undefined,
|
|
920
|
+
coaId: undefined,
|
|
921
|
+
accountDescription: '',
|
|
922
|
+
qboId: '51',
|
|
923
|
+
labels: [],
|
|
924
|
+
tax1099Config: undefined,
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
accountId: 'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
928
|
+
accountName: 'Job Materials',
|
|
929
|
+
accountType: 'income',
|
|
930
|
+
accountSubType: undefined,
|
|
931
|
+
last4Digits: undefined,
|
|
932
|
+
logo: undefined,
|
|
933
|
+
coaId: undefined,
|
|
934
|
+
accountDescription: '',
|
|
935
|
+
qboId: '46',
|
|
936
|
+
labels: [],
|
|
937
|
+
tax1099Config: undefined,
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
accountId: 'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce',
|
|
941
|
+
accountName: 'Installation',
|
|
942
|
+
accountType: 'income',
|
|
943
|
+
accountSubType: undefined,
|
|
944
|
+
last4Digits: undefined,
|
|
945
|
+
logo: undefined,
|
|
946
|
+
coaId: undefined,
|
|
947
|
+
accountDescription: '',
|
|
948
|
+
qboId: '52',
|
|
949
|
+
labels: [],
|
|
950
|
+
tax1099Config: undefined,
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
accountId: 'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb',
|
|
954
|
+
accountName: 'Fountains and Garden Lighting',
|
|
955
|
+
accountType: 'income',
|
|
956
|
+
accountSubType: undefined,
|
|
957
|
+
last4Digits: undefined,
|
|
958
|
+
logo: undefined,
|
|
959
|
+
coaId: undefined,
|
|
960
|
+
accountDescription: '',
|
|
961
|
+
qboId: '48',
|
|
962
|
+
labels: [],
|
|
963
|
+
tax1099Config: undefined,
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
accountId: 'account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a',
|
|
967
|
+
accountName: 'Fees Billed',
|
|
968
|
+
accountType: 'income',
|
|
969
|
+
accountSubType: undefined,
|
|
970
|
+
last4Digits: undefined,
|
|
971
|
+
logo: undefined,
|
|
972
|
+
coaId: undefined,
|
|
973
|
+
accountDescription: '',
|
|
974
|
+
qboId: '5',
|
|
975
|
+
labels: [],
|
|
976
|
+
tax1099Config: undefined,
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
accountId: 'account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2',
|
|
980
|
+
accountName: 'Discounts given',
|
|
981
|
+
accountType: 'income',
|
|
982
|
+
accountSubType: undefined,
|
|
983
|
+
last4Digits: undefined,
|
|
984
|
+
logo: undefined,
|
|
985
|
+
coaId: undefined,
|
|
986
|
+
accountDescription: '',
|
|
987
|
+
qboId: '86',
|
|
988
|
+
labels: [],
|
|
989
|
+
tax1099Config: undefined,
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
accountId: 'account_293e8b54-55ff-4a33-8671-258f892f581a',
|
|
993
|
+
accountName: 'Design income',
|
|
994
|
+
accountType: 'income',
|
|
995
|
+
accountSubType: undefined,
|
|
996
|
+
last4Digits: undefined,
|
|
997
|
+
logo: undefined,
|
|
998
|
+
coaId: undefined,
|
|
999
|
+
accountDescription: '',
|
|
1000
|
+
qboId: '82',
|
|
1001
|
+
labels: [],
|
|
1002
|
+
tax1099Config: undefined,
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
accountId: 'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d',
|
|
1006
|
+
accountName: 'Decks and Patios',
|
|
1007
|
+
accountType: 'income',
|
|
1008
|
+
accountSubType: undefined,
|
|
1009
|
+
last4Digits: undefined,
|
|
1010
|
+
logo: undefined,
|
|
1011
|
+
coaId: undefined,
|
|
1012
|
+
accountDescription: '',
|
|
1013
|
+
qboId: '47',
|
|
1014
|
+
labels: [],
|
|
1015
|
+
tax1099Config: undefined,
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
accountId: 'account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b',
|
|
1019
|
+
accountName: 'Billable Expense Income',
|
|
1020
|
+
accountType: 'income',
|
|
1021
|
+
accountSubType: undefined,
|
|
1022
|
+
last4Digits: undefined,
|
|
1023
|
+
logo: undefined,
|
|
1024
|
+
coaId: undefined,
|
|
1025
|
+
accountDescription: '',
|
|
1026
|
+
qboId: '85',
|
|
1027
|
+
labels: [],
|
|
1028
|
+
tax1099Config: undefined,
|
|
1029
|
+
},
|
|
1030
|
+
],
|
|
1031
|
+
expenseAccountList: [
|
|
1032
|
+
{
|
|
1033
|
+
accountId: 'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
1034
|
+
accountName: 'Workers Compensation',
|
|
1035
|
+
accountType: 'expenses',
|
|
1036
|
+
accountSubType: undefined,
|
|
1037
|
+
last4Digits: undefined,
|
|
1038
|
+
logo: undefined,
|
|
1039
|
+
coaId: undefined,
|
|
1040
|
+
accountDescription: '',
|
|
1041
|
+
qboId: '57',
|
|
1042
|
+
labels: [],
|
|
1043
|
+
tax1099Config: undefined,
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
accountId: 'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
1047
|
+
accountName: 'Utilities',
|
|
1048
|
+
accountType: 'expenses',
|
|
1049
|
+
accountSubType: undefined,
|
|
1050
|
+
last4Digits: undefined,
|
|
1051
|
+
logo: undefined,
|
|
1052
|
+
coaId: undefined,
|
|
1053
|
+
accountDescription: '',
|
|
1054
|
+
qboId: '24',
|
|
1055
|
+
labels: [],
|
|
1056
|
+
tax1099Config: undefined,
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
accountId: 'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
1060
|
+
accountName: 'Uncategorized Expense',
|
|
1061
|
+
accountType: 'expenses',
|
|
1062
|
+
accountSubType: undefined,
|
|
1063
|
+
last4Digits: undefined,
|
|
1064
|
+
logo: undefined,
|
|
1065
|
+
accountDescription: '',
|
|
1066
|
+
qboId: '31',
|
|
1067
|
+
coaId: '69999',
|
|
1068
|
+
labels: ['uncategorized_income'],
|
|
1069
|
+
tax1099Config: undefined,
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
accountId: 'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
1073
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
1074
|
+
accountType: 'expenses',
|
|
1075
|
+
accountSubType: undefined,
|
|
1076
|
+
last4Digits: undefined,
|
|
1077
|
+
logo: undefined,
|
|
1078
|
+
coaId: undefined,
|
|
1079
|
+
accountDescription: '',
|
|
1080
|
+
qboId: '88',
|
|
1081
|
+
labels: [],
|
|
1082
|
+
tax1099Config: undefined,
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
accountId: 'account_d4e64547-3541-4b77-8273-0c0f1e3f195c',
|
|
1086
|
+
accountName: 'Travel Meals',
|
|
1087
|
+
accountType: 'expenses',
|
|
1088
|
+
accountSubType: undefined,
|
|
1089
|
+
last4Digits: undefined,
|
|
1090
|
+
logo: undefined,
|
|
1091
|
+
coaId: undefined,
|
|
1092
|
+
accountDescription: '',
|
|
1093
|
+
qboId: '23',
|
|
1094
|
+
labels: [],
|
|
1095
|
+
tax1099Config: undefined,
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
accountId: 'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a',
|
|
1099
|
+
accountName: 'Travel',
|
|
1100
|
+
accountType: 'expenses',
|
|
1101
|
+
accountSubType: undefined,
|
|
1102
|
+
last4Digits: undefined,
|
|
1103
|
+
logo: undefined,
|
|
1104
|
+
accountDescription: '',
|
|
1105
|
+
qboId: '22',
|
|
1106
|
+
coaId: '62200',
|
|
1107
|
+
labels: [],
|
|
1108
|
+
tax1099Config: undefined,
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
accountId: 'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
1112
|
+
accountName: 'Telephone',
|
|
1113
|
+
accountType: 'expenses',
|
|
1114
|
+
accountSubType: undefined,
|
|
1115
|
+
last4Digits: undefined,
|
|
1116
|
+
logo: undefined,
|
|
1117
|
+
coaId: undefined,
|
|
1118
|
+
accountDescription: '',
|
|
1119
|
+
qboId: '77',
|
|
1120
|
+
labels: [],
|
|
1121
|
+
tax1099Config: undefined,
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
accountId: 'account_b21f9130-2c8c-4a6e-959e-a0cca0933092',
|
|
1125
|
+
accountName: 'Taxes & Licenses',
|
|
1126
|
+
accountType: 'expenses',
|
|
1127
|
+
accountSubType: undefined,
|
|
1128
|
+
last4Digits: undefined,
|
|
1129
|
+
logo: undefined,
|
|
1130
|
+
coaId: undefined,
|
|
1131
|
+
accountDescription: '',
|
|
1132
|
+
qboId: '21',
|
|
1133
|
+
labels: [],
|
|
1134
|
+
tax1099Config: undefined,
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
accountId: 'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314',
|
|
1138
|
+
accountName: 'Supplies',
|
|
1139
|
+
accountType: 'expenses',
|
|
1140
|
+
accountSubType: undefined,
|
|
1141
|
+
last4Digits: undefined,
|
|
1142
|
+
logo: undefined,
|
|
1143
|
+
coaId: undefined,
|
|
1144
|
+
accountDescription: '',
|
|
1145
|
+
qboId: '20',
|
|
1146
|
+
labels: [],
|
|
1147
|
+
tax1099Config: undefined,
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
accountId: 'account_cf920797-ff3d-499c-9c4d-5cbb321146ca',
|
|
1151
|
+
accountName: 'Stationery & Printing',
|
|
1152
|
+
accountType: 'expenses',
|
|
1153
|
+
accountSubType: undefined,
|
|
1154
|
+
last4Digits: undefined,
|
|
1155
|
+
logo: undefined,
|
|
1156
|
+
coaId: undefined,
|
|
1157
|
+
accountDescription: '',
|
|
1158
|
+
qboId: '19',
|
|
1159
|
+
labels: [],
|
|
1160
|
+
tax1099Config: undefined,
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
accountId: 'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
1164
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
1165
|
+
accountType: 'expenses',
|
|
1166
|
+
accountSubType: undefined,
|
|
1167
|
+
last4Digits: undefined,
|
|
1168
|
+
logo: undefined,
|
|
1169
|
+
coaId: undefined,
|
|
1170
|
+
accountDescription: '',
|
|
1171
|
+
qboId: '67',
|
|
1172
|
+
labels: [],
|
|
1173
|
+
tax1099Config: undefined,
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
accountId: 'account_686005dd-6835-4781-a4a9-83b3c74b2e4d',
|
|
1177
|
+
accountName: 'Salaries and Benefits',
|
|
1178
|
+
accountType: 'expenses',
|
|
1179
|
+
accountSubType: undefined,
|
|
1180
|
+
last4Digits: undefined,
|
|
1181
|
+
logo: undefined,
|
|
1182
|
+
coaId: undefined,
|
|
1183
|
+
accountDescription: '',
|
|
1184
|
+
qboId: '91',
|
|
1185
|
+
labels: [],
|
|
1186
|
+
tax1099Config: undefined,
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
accountId: 'account_3d4568f6-b288-4d70-bda5-6813cc8177fa',
|
|
1190
|
+
accountName: 'Rent or Lease',
|
|
1191
|
+
accountType: 'expenses',
|
|
1192
|
+
accountSubType: undefined,
|
|
1193
|
+
last4Digits: undefined,
|
|
1194
|
+
logo: undefined,
|
|
1195
|
+
coaId: undefined,
|
|
1196
|
+
accountDescription: '',
|
|
1197
|
+
qboId: '17',
|
|
1198
|
+
labels: [],
|
|
1199
|
+
tax1099Config: undefined,
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
accountId: 'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e',
|
|
1203
|
+
accountName: 'Purchases',
|
|
1204
|
+
accountType: 'expenses',
|
|
1205
|
+
accountSubType: undefined,
|
|
1206
|
+
last4Digits: undefined,
|
|
1207
|
+
logo: undefined,
|
|
1208
|
+
coaId: undefined,
|
|
1209
|
+
accountDescription: '',
|
|
1210
|
+
qboId: '78',
|
|
1211
|
+
labels: [],
|
|
1212
|
+
tax1099Config: undefined,
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
accountId: 'account_260ccba4-1582-4757-9880-40d2445e5784',
|
|
1216
|
+
accountName: 'Promotional',
|
|
1217
|
+
accountType: 'expenses',
|
|
1218
|
+
accountSubType: undefined,
|
|
1219
|
+
last4Digits: undefined,
|
|
1220
|
+
logo: undefined,
|
|
1221
|
+
coaId: undefined,
|
|
1222
|
+
accountDescription: '',
|
|
1223
|
+
qboId: '16',
|
|
1224
|
+
labels: [],
|
|
1225
|
+
tax1099Config: undefined,
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
accountId: 'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
1229
|
+
accountName: 'Plants and Soil',
|
|
1230
|
+
accountType: 'expenses',
|
|
1231
|
+
accountSubType: undefined,
|
|
1232
|
+
last4Digits: undefined,
|
|
1233
|
+
logo: undefined,
|
|
1234
|
+
coaId: undefined,
|
|
1235
|
+
accountDescription: '',
|
|
1236
|
+
qboId: '66',
|
|
1237
|
+
labels: [],
|
|
1238
|
+
tax1099Config: undefined,
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
accountId: 'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
1242
|
+
accountName: 'Permits',
|
|
1243
|
+
accountType: 'expenses',
|
|
1244
|
+
accountSubType: undefined,
|
|
1245
|
+
last4Digits: undefined,
|
|
1246
|
+
logo: undefined,
|
|
1247
|
+
coaId: undefined,
|
|
1248
|
+
accountDescription: '',
|
|
1249
|
+
qboId: '68',
|
|
1250
|
+
labels: [],
|
|
1251
|
+
tax1099Config: undefined,
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
accountId: 'account_e88d8637-ca35-41aa-b909-dbcc37851eff',
|
|
1255
|
+
accountName: 'Payroll Expenses',
|
|
1256
|
+
accountType: 'expenses',
|
|
1257
|
+
accountSubType: undefined,
|
|
1258
|
+
last4Digits: undefined,
|
|
1259
|
+
logo: undefined,
|
|
1260
|
+
accountDescription: '',
|
|
1261
|
+
qboId: '113',
|
|
1262
|
+
coaId: '64300',
|
|
1263
|
+
labels: [],
|
|
1264
|
+
tax1099Config: undefined,
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
accountId: 'account_5e8f5ff6-952b-417f-9315-e23552ccd780',
|
|
1268
|
+
accountName: 'Office Expenses',
|
|
1269
|
+
accountType: 'expenses',
|
|
1270
|
+
accountSubType: undefined,
|
|
1271
|
+
last4Digits: undefined,
|
|
1272
|
+
logo: undefined,
|
|
1273
|
+
accountDescription: '',
|
|
1274
|
+
qboId: '15',
|
|
1275
|
+
coaId: '64100',
|
|
1276
|
+
labels: [],
|
|
1277
|
+
tax1099Config: undefined,
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
accountId: 'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7',
|
|
1281
|
+
accountName: 'Meals and Entertainment',
|
|
1282
|
+
accountType: 'expenses',
|
|
1283
|
+
accountSubType: undefined,
|
|
1284
|
+
last4Digits: undefined,
|
|
1285
|
+
logo: undefined,
|
|
1286
|
+
coaId: undefined,
|
|
1287
|
+
accountDescription: '',
|
|
1288
|
+
qboId: '13',
|
|
1289
|
+
labels: [],
|
|
1290
|
+
tax1099Config: undefined,
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
accountId: 'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
1294
|
+
accountName: 'Maintenance and Repairs',
|
|
1295
|
+
accountType: 'expenses',
|
|
1296
|
+
accountSubType: undefined,
|
|
1297
|
+
last4Digits: undefined,
|
|
1298
|
+
logo: undefined,
|
|
1299
|
+
coaId: undefined,
|
|
1300
|
+
accountDescription: '',
|
|
1301
|
+
qboId: '61',
|
|
1302
|
+
labels: [],
|
|
1303
|
+
tax1099Config: undefined,
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
accountId: 'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
1307
|
+
accountName: 'Maintenance and Repair',
|
|
1308
|
+
accountType: 'expenses',
|
|
1309
|
+
accountSubType: undefined,
|
|
1310
|
+
last4Digits: undefined,
|
|
1311
|
+
logo: undefined,
|
|
1312
|
+
coaId: undefined,
|
|
1313
|
+
accountDescription: '',
|
|
1314
|
+
qboId: '72',
|
|
1315
|
+
labels: [],
|
|
1316
|
+
tax1099Config: undefined,
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
accountId: 'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
1320
|
+
accountName: 'Legal & Professional Fees',
|
|
1321
|
+
accountType: 'expenses',
|
|
1322
|
+
accountSubType: undefined,
|
|
1323
|
+
last4Digits: undefined,
|
|
1324
|
+
logo: undefined,
|
|
1325
|
+
coaId: undefined,
|
|
1326
|
+
accountDescription: '',
|
|
1327
|
+
qboId: '12',
|
|
1328
|
+
labels: [],
|
|
1329
|
+
tax1099Config: undefined,
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
accountId: 'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
1333
|
+
accountName: 'Lawyer',
|
|
1334
|
+
accountType: 'expenses',
|
|
1335
|
+
accountSubType: undefined,
|
|
1336
|
+
last4Digits: undefined,
|
|
1337
|
+
logo: undefined,
|
|
1338
|
+
coaId: undefined,
|
|
1339
|
+
accountDescription: '',
|
|
1340
|
+
qboId: '71',
|
|
1341
|
+
labels: [],
|
|
1342
|
+
tax1099Config: undefined,
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
accountId: 'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
1346
|
+
accountName: 'Job Materials',
|
|
1347
|
+
accountType: 'expenses',
|
|
1348
|
+
accountSubType: undefined,
|
|
1349
|
+
last4Digits: undefined,
|
|
1350
|
+
logo: undefined,
|
|
1351
|
+
coaId: undefined,
|
|
1352
|
+
accountDescription: '',
|
|
1353
|
+
qboId: '63',
|
|
1354
|
+
labels: [],
|
|
1355
|
+
tax1099Config: undefined,
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
accountId: 'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
1359
|
+
accountName: 'Job Expenses',
|
|
1360
|
+
accountType: 'expenses',
|
|
1361
|
+
accountSubType: undefined,
|
|
1362
|
+
last4Digits: undefined,
|
|
1363
|
+
logo: undefined,
|
|
1364
|
+
coaId: undefined,
|
|
1365
|
+
accountDescription: '',
|
|
1366
|
+
qboId: '58',
|
|
1367
|
+
labels: [],
|
|
1368
|
+
tax1099Config: undefined,
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
accountId: 'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
1372
|
+
accountName: 'Insurance',
|
|
1373
|
+
accountType: 'expenses',
|
|
1374
|
+
accountSubType: undefined,
|
|
1375
|
+
last4Digits: undefined,
|
|
1376
|
+
logo: undefined,
|
|
1377
|
+
coaId: undefined,
|
|
1378
|
+
accountDescription: '',
|
|
1379
|
+
qboId: '11',
|
|
1380
|
+
labels: [],
|
|
1381
|
+
tax1099Config: undefined,
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
accountId: 'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
1385
|
+
accountName: 'Installation',
|
|
1386
|
+
accountType: 'expenses',
|
|
1387
|
+
accountSubType: undefined,
|
|
1388
|
+
last4Digits: undefined,
|
|
1389
|
+
logo: undefined,
|
|
1390
|
+
coaId: undefined,
|
|
1391
|
+
accountDescription: '',
|
|
1392
|
+
qboId: '60',
|
|
1393
|
+
labels: [],
|
|
1394
|
+
tax1099Config: undefined,
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
accountId: 'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
1398
|
+
accountName: 'Gas and Electric',
|
|
1399
|
+
accountType: 'expenses',
|
|
1400
|
+
accountSubType: undefined,
|
|
1401
|
+
last4Digits: undefined,
|
|
1402
|
+
logo: undefined,
|
|
1403
|
+
coaId: undefined,
|
|
1404
|
+
accountDescription: '',
|
|
1405
|
+
qboId: '76',
|
|
1406
|
+
labels: [],
|
|
1407
|
+
tax1099Config: undefined,
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
accountId: 'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3',
|
|
1411
|
+
accountName: 'Fuel',
|
|
1412
|
+
accountType: 'expenses',
|
|
1413
|
+
accountSubType: undefined,
|
|
1414
|
+
last4Digits: undefined,
|
|
1415
|
+
logo: undefined,
|
|
1416
|
+
coaId: undefined,
|
|
1417
|
+
accountDescription: '',
|
|
1418
|
+
qboId: '56',
|
|
1419
|
+
labels: [],
|
|
1420
|
+
tax1099Config: undefined,
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
accountId: 'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
1424
|
+
accountName: 'Fountain and Garden Lighting',
|
|
1425
|
+
accountType: 'expenses',
|
|
1426
|
+
accountSubType: undefined,
|
|
1427
|
+
last4Digits: undefined,
|
|
1428
|
+
logo: undefined,
|
|
1429
|
+
coaId: undefined,
|
|
1430
|
+
accountDescription: '',
|
|
1431
|
+
qboId: '65',
|
|
1432
|
+
labels: [],
|
|
1433
|
+
tax1099Config: undefined,
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
accountId: 'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
1437
|
+
accountName: 'Equipment Repairs',
|
|
1438
|
+
accountType: 'expenses',
|
|
1439
|
+
accountSubType: undefined,
|
|
1440
|
+
last4Digits: undefined,
|
|
1441
|
+
logo: undefined,
|
|
1442
|
+
coaId: undefined,
|
|
1443
|
+
accountDescription: '',
|
|
1444
|
+
qboId: '75',
|
|
1445
|
+
labels: [],
|
|
1446
|
+
tax1099Config: undefined,
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
accountId: 'account_083cb73a-a2fb-4214-b5ba-8d289227ea12',
|
|
1450
|
+
accountName: 'Equipment Rental',
|
|
1451
|
+
accountType: 'expenses',
|
|
1452
|
+
accountSubType: undefined,
|
|
1453
|
+
last4Digits: undefined,
|
|
1454
|
+
logo: undefined,
|
|
1455
|
+
coaId: undefined,
|
|
1456
|
+
accountDescription: '',
|
|
1457
|
+
qboId: '29',
|
|
1458
|
+
labels: [],
|
|
1459
|
+
tax1099Config: undefined,
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
accountId: 'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
1463
|
+
accountName: 'Equipment Rental',
|
|
1464
|
+
accountType: 'expenses',
|
|
1465
|
+
accountSubType: undefined,
|
|
1466
|
+
last4Digits: undefined,
|
|
1467
|
+
logo: undefined,
|
|
1468
|
+
coaId: undefined,
|
|
1469
|
+
accountDescription: '',
|
|
1470
|
+
qboId: '62',
|
|
1471
|
+
labels: [],
|
|
1472
|
+
tax1099Config: undefined,
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
accountId: 'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42',
|
|
1476
|
+
accountName: 'Entertainment test 3',
|
|
1477
|
+
accountType: 'expenses',
|
|
1478
|
+
accountSubType: undefined,
|
|
1479
|
+
last4Digits: undefined,
|
|
1480
|
+
logo: undefined,
|
|
1481
|
+
accountDescription: '',
|
|
1482
|
+
qboId: '97',
|
|
1483
|
+
coaId: '77649',
|
|
1484
|
+
labels: [],
|
|
1485
|
+
tax1099Config: undefined,
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
accountId: 'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb',
|
|
1489
|
+
accountName: 'Dues & Subscriptions',
|
|
1490
|
+
accountType: 'expenses',
|
|
1491
|
+
accountSubType: undefined,
|
|
1492
|
+
last4Digits: undefined,
|
|
1493
|
+
logo: undefined,
|
|
1494
|
+
coaId: undefined,
|
|
1495
|
+
accountDescription: '',
|
|
1496
|
+
qboId: '10',
|
|
1497
|
+
labels: [],
|
|
1498
|
+
tax1099Config: undefined,
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
accountId: 'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042',
|
|
1502
|
+
accountName: 'Disposal Fees',
|
|
1503
|
+
accountType: 'expenses',
|
|
1504
|
+
accountSubType: undefined,
|
|
1505
|
+
last4Digits: undefined,
|
|
1506
|
+
logo: undefined,
|
|
1507
|
+
coaId: undefined,
|
|
1508
|
+
accountDescription: '',
|
|
1509
|
+
qboId: '28',
|
|
1510
|
+
labels: [],
|
|
1511
|
+
tax1099Config: undefined,
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
accountId: 'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
1515
|
+
accountName: 'Decks and Patios',
|
|
1516
|
+
accountType: 'expenses',
|
|
1517
|
+
accountSubType: undefined,
|
|
1518
|
+
last4Digits: undefined,
|
|
1519
|
+
logo: undefined,
|
|
1520
|
+
coaId: undefined,
|
|
1521
|
+
accountDescription: '',
|
|
1522
|
+
qboId: '64',
|
|
1523
|
+
labels: [],
|
|
1524
|
+
tax1099Config: undefined,
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
accountId: 'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
1528
|
+
accountName: 'Cost of Labor',
|
|
1529
|
+
accountType: 'expenses',
|
|
1530
|
+
accountSubType: undefined,
|
|
1531
|
+
last4Digits: undefined,
|
|
1532
|
+
logo: undefined,
|
|
1533
|
+
coaId: undefined,
|
|
1534
|
+
accountDescription: '',
|
|
1535
|
+
qboId: '59',
|
|
1536
|
+
labels: [],
|
|
1537
|
+
tax1099Config: undefined,
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
accountId: 'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
1541
|
+
accountName: 'Computer Repairs',
|
|
1542
|
+
accountType: 'expenses',
|
|
1543
|
+
accountSubType: undefined,
|
|
1544
|
+
last4Digits: undefined,
|
|
1545
|
+
logo: undefined,
|
|
1546
|
+
coaId: undefined,
|
|
1547
|
+
accountDescription: '',
|
|
1548
|
+
qboId: '74',
|
|
1549
|
+
labels: [],
|
|
1550
|
+
tax1099Config: undefined,
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
accountId: 'account_041cf709-4537-4394-994f-ec3c64bbc877',
|
|
1554
|
+
accountName: 'Commissions & fees',
|
|
1555
|
+
accountType: 'expenses',
|
|
1556
|
+
accountSubType: undefined,
|
|
1557
|
+
last4Digits: undefined,
|
|
1558
|
+
logo: undefined,
|
|
1559
|
+
coaId: undefined,
|
|
1560
|
+
accountDescription: '',
|
|
1561
|
+
qboId: '9',
|
|
1562
|
+
labels: [],
|
|
1563
|
+
tax1099Config: undefined,
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
accountId: 'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
1567
|
+
accountName: 'Building Repairs',
|
|
1568
|
+
accountType: 'expenses',
|
|
1569
|
+
accountSubType: undefined,
|
|
1570
|
+
last4Digits: undefined,
|
|
1571
|
+
logo: undefined,
|
|
1572
|
+
coaId: undefined,
|
|
1573
|
+
accountDescription: '',
|
|
1574
|
+
qboId: '73',
|
|
1575
|
+
labels: [],
|
|
1576
|
+
tax1099Config: undefined,
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
accountId: 'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
1580
|
+
accountName: 'Bookkeeper',
|
|
1581
|
+
accountType: 'expenses',
|
|
1582
|
+
accountSubType: undefined,
|
|
1583
|
+
last4Digits: undefined,
|
|
1584
|
+
logo: undefined,
|
|
1585
|
+
coaId: undefined,
|
|
1586
|
+
accountDescription: '',
|
|
1587
|
+
qboId: '70',
|
|
1588
|
+
labels: [],
|
|
1589
|
+
tax1099Config: undefined,
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
accountId: 'account_d8a660ac-158c-4556-b92f-020d3afe0e34',
|
|
1593
|
+
accountName: 'Bank Charges',
|
|
1594
|
+
accountType: 'expenses',
|
|
1595
|
+
accountSubType: undefined,
|
|
1596
|
+
last4Digits: undefined,
|
|
1597
|
+
logo: undefined,
|
|
1598
|
+
coaId: undefined,
|
|
1599
|
+
accountDescription: '',
|
|
1600
|
+
qboId: '8',
|
|
1601
|
+
labels: [],
|
|
1602
|
+
tax1099Config: undefined,
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
accountId: 'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa',
|
|
1606
|
+
accountName: 'Automobile',
|
|
1607
|
+
accountType: 'expenses',
|
|
1608
|
+
accountSubType: undefined,
|
|
1609
|
+
last4Digits: undefined,
|
|
1610
|
+
logo: undefined,
|
|
1611
|
+
coaId: undefined,
|
|
1612
|
+
accountDescription: '',
|
|
1613
|
+
qboId: '55',
|
|
1614
|
+
labels: [],
|
|
1615
|
+
tax1099Config: undefined,
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
accountId: 'account_10053408-c131-468b-a1ab-2c289d84901c',
|
|
1619
|
+
accountName: 'Advertising',
|
|
1620
|
+
accountType: 'expenses',
|
|
1621
|
+
accountSubType: undefined,
|
|
1622
|
+
last4Digits: undefined,
|
|
1623
|
+
logo: undefined,
|
|
1624
|
+
coaId: undefined,
|
|
1625
|
+
accountDescription: '',
|
|
1626
|
+
qboId: '7',
|
|
1627
|
+
labels: [],
|
|
1628
|
+
tax1099Config: undefined,
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
accountId: 'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
1632
|
+
accountName: 'Accounting',
|
|
1633
|
+
accountType: 'expenses',
|
|
1634
|
+
accountSubType: undefined,
|
|
1635
|
+
last4Digits: undefined,
|
|
1636
|
+
logo: undefined,
|
|
1637
|
+
coaId: undefined,
|
|
1638
|
+
accountDescription: '',
|
|
1639
|
+
qboId: '69',
|
|
1640
|
+
labels: [],
|
|
1641
|
+
tax1099Config: undefined,
|
|
1642
|
+
},
|
|
1643
|
+
],
|
|
1644
|
+
incomeRecommendation: {
|
|
1645
|
+
account: {
|
|
1646
|
+
accountId: 'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
1647
|
+
accountName: 'Uncategorized Income',
|
|
1648
|
+
accountType: 'income',
|
|
1649
|
+
accountDescription: '',
|
|
1650
|
+
qboId: '30',
|
|
1651
|
+
coaId: '49999',
|
|
1652
|
+
labels: [],
|
|
1653
|
+
max: 0,
|
|
1654
|
+
min: 0,
|
|
1655
|
+
reason: 'Based on Zeni AI recommendation.',
|
|
1656
|
+
type: 'zeni_bot',
|
|
1657
|
+
tax1099Config: undefined,
|
|
1658
|
+
},
|
|
1659
|
+
},
|
|
1660
|
+
expenseRecommendation: {
|
|
1661
|
+
account: {
|
|
1662
|
+
accountId: 'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
1663
|
+
accountName: 'Uncategorized Expense',
|
|
1664
|
+
accountType: 'expenses',
|
|
1665
|
+
accountDescription: '',
|
|
1666
|
+
qboId: '31',
|
|
1667
|
+
coaId: '69999',
|
|
1668
|
+
labels: ['uncategorized_income'],
|
|
1669
|
+
max: 0,
|
|
1670
|
+
min: 0,
|
|
1671
|
+
reason: 'Based on Zeni AI recommendation.',
|
|
1672
|
+
type: 'zeni_bot',
|
|
1673
|
+
tax1099Config: undefined,
|
|
1674
|
+
},
|
|
1675
|
+
},
|
|
1676
|
+
billPayRecommendation: undefined,
|
|
1677
|
+
reimbursementsRecommendation: undefined,
|
|
1678
|
+
prepaidExpensesRecommendation: [],
|
|
1679
|
+
fixedAssetsRecommendation: [],
|
|
1680
|
+
accruedExpensesRecommendation: [],
|
|
1681
|
+
accountMappingLocalData: {
|
|
1682
|
+
previousIncomeAccount: undefined,
|
|
1683
|
+
previousExpenseAccount: undefined,
|
|
1684
|
+
previousBillPayAccount: undefined,
|
|
1685
|
+
previousReimbursementsAccount: undefined,
|
|
1686
|
+
previousPrepaidExpensesAccount: [],
|
|
1687
|
+
previousFixedAssetsAccount: [],
|
|
1688
|
+
previousAccruedExpensesAccount: [],
|
|
1689
|
+
previousBankAccounts1099FilingAccount: [],
|
|
1690
|
+
previousExpenseAccounts1099FilingAccount: [],
|
|
1691
|
+
selectedIncomeAccountId: 'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
1692
|
+
selectedExpenseAccountId: undefined,
|
|
1693
|
+
selectedBillPayAccountId: undefined,
|
|
1694
|
+
selectedReimbursementsAccountId: undefined,
|
|
1695
|
+
selectedFixedAssetsAccountIds: [],
|
|
1696
|
+
selectedPrepaidExpensesAccountIds: [],
|
|
1697
|
+
selectedAccruedExpensesAccountIds: [],
|
|
1698
|
+
selectedBankAccounts1099FilingAccountIds: [],
|
|
1699
|
+
selectedExpenseAccounts1099FilingAccountIds: [],
|
|
1700
|
+
isIncomeRecommendationChecked: true,
|
|
1701
|
+
isExpenseRecommendationChecked: false,
|
|
1702
|
+
isBillPayRecommendationChecked: false,
|
|
1703
|
+
isReimbursementsRecommendationChecked: false,
|
|
1704
|
+
},
|
|
1705
|
+
incomeAccountHierachy: [
|
|
1706
|
+
{
|
|
1707
|
+
accountId: ['account_06cecff6-33b8-4677-b586-9663dcacd944'],
|
|
1708
|
+
accountName: 'Uncategorized Income',
|
|
1709
|
+
qboId: '30',
|
|
1710
|
+
children: [],
|
|
1711
|
+
hasSiblings: true,
|
|
1712
|
+
coaId: '49999',
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
accountId: ['account_b8e28eec-5694-4707-8354-2b04037be7d3'],
|
|
1716
|
+
accountName: 'Unapplied Cash Payment Income',
|
|
1717
|
+
qboId: '87',
|
|
1718
|
+
children: [],
|
|
1719
|
+
hasSiblings: true,
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
accountId: ['account_38a7fa62-3d05-480e-a4cd-4d50c52c138f'],
|
|
1723
|
+
accountName: 'Services',
|
|
1724
|
+
qboId: '1',
|
|
1725
|
+
children: [],
|
|
1726
|
+
hasSiblings: true,
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
accountId: ['account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381'],
|
|
1730
|
+
accountName: 'Sales of Product Income',
|
|
1731
|
+
qboId: '79',
|
|
1732
|
+
children: [],
|
|
1733
|
+
hasSiblings: true,
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
accountId: ['account_eb71b745-07c3-4927-b183-6b47df718963'],
|
|
1737
|
+
accountName: 'Refunds-Allowances',
|
|
1738
|
+
qboId: '6',
|
|
1739
|
+
children: [],
|
|
1740
|
+
hasSiblings: true,
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
accountId: ['account_5ff04548-d012-4487-bfa4-bd1396dfc11f'],
|
|
1744
|
+
accountName: 'Pest Control Services',
|
|
1745
|
+
qboId: '54',
|
|
1746
|
+
children: [],
|
|
1747
|
+
hasSiblings: true,
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
accountId: ['account_6ec41085-0455-40bd-9d07-c10209d5c8ce'],
|
|
1751
|
+
accountName: 'Other Income',
|
|
1752
|
+
qboId: '83',
|
|
1753
|
+
children: [],
|
|
1754
|
+
hasSiblings: true,
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
accountId: ['account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1'],
|
|
1758
|
+
accountName: 'Non-Profit Income random',
|
|
1759
|
+
qboId: '99',
|
|
1760
|
+
children: [],
|
|
1761
|
+
hasSiblings: true,
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
accountId: ['account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1'],
|
|
1765
|
+
accountName: 'Landscaping Services',
|
|
1766
|
+
qboId: '45',
|
|
1767
|
+
children: [
|
|
1768
|
+
{
|
|
1769
|
+
accountId: [
|
|
1770
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
1771
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1772
|
+
],
|
|
1773
|
+
accountName: 'Labor',
|
|
1774
|
+
qboId: '51',
|
|
1775
|
+
children: [
|
|
1776
|
+
{
|
|
1777
|
+
accountId: [
|
|
1778
|
+
'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa',
|
|
1779
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
1780
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1781
|
+
],
|
|
1782
|
+
accountName: 'Maintenance and Repair',
|
|
1783
|
+
qboId: '53',
|
|
1784
|
+
children: [],
|
|
1785
|
+
hasSiblings: true,
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
accountId: [
|
|
1789
|
+
'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce',
|
|
1790
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
1791
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1792
|
+
],
|
|
1793
|
+
accountName: 'Installation',
|
|
1794
|
+
qboId: '52',
|
|
1795
|
+
children: [],
|
|
1796
|
+
hasSiblings: true,
|
|
1797
|
+
},
|
|
1798
|
+
],
|
|
1799
|
+
hasSiblings: true,
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
accountId: [
|
|
1803
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
1804
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1805
|
+
],
|
|
1806
|
+
accountName: 'Job Materials',
|
|
1807
|
+
qboId: '46',
|
|
1808
|
+
children: [
|
|
1809
|
+
{
|
|
1810
|
+
accountId: [
|
|
1811
|
+
'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d',
|
|
1812
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
1813
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1814
|
+
],
|
|
1815
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
1816
|
+
qboId: '50',
|
|
1817
|
+
children: [],
|
|
1818
|
+
hasSiblings: true,
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
accountId: [
|
|
1822
|
+
'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb',
|
|
1823
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
1824
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1825
|
+
],
|
|
1826
|
+
accountName: 'Plants and Soil',
|
|
1827
|
+
qboId: '49',
|
|
1828
|
+
children: [],
|
|
1829
|
+
hasSiblings: true,
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
accountId: [
|
|
1833
|
+
'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb',
|
|
1834
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
1835
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1836
|
+
],
|
|
1837
|
+
accountName: 'Fountains and Garden Lighting',
|
|
1838
|
+
qboId: '48',
|
|
1839
|
+
children: [],
|
|
1840
|
+
hasSiblings: true,
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
accountId: [
|
|
1844
|
+
'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d',
|
|
1845
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
1846
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
1847
|
+
],
|
|
1848
|
+
accountName: 'Decks and Patios',
|
|
1849
|
+
qboId: '47',
|
|
1850
|
+
children: [],
|
|
1851
|
+
hasSiblings: true,
|
|
1852
|
+
},
|
|
1853
|
+
],
|
|
1854
|
+
hasSiblings: true,
|
|
1855
|
+
},
|
|
1856
|
+
],
|
|
1857
|
+
hasSiblings: true,
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
accountId: ['account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a'],
|
|
1861
|
+
accountName: 'Fees Billed',
|
|
1862
|
+
qboId: '5',
|
|
1863
|
+
children: [],
|
|
1864
|
+
hasSiblings: true,
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
accountId: ['account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2'],
|
|
1868
|
+
accountName: 'Discounts given',
|
|
1869
|
+
qboId: '86',
|
|
1870
|
+
children: [],
|
|
1871
|
+
hasSiblings: true,
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
accountId: ['account_293e8b54-55ff-4a33-8671-258f892f581a'],
|
|
1875
|
+
accountName: 'Design income',
|
|
1876
|
+
qboId: '82',
|
|
1877
|
+
children: [],
|
|
1878
|
+
hasSiblings: true,
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
accountId: ['account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b'],
|
|
1882
|
+
accountName: 'Billable Expense Income',
|
|
1883
|
+
qboId: '85',
|
|
1884
|
+
children: [],
|
|
1885
|
+
hasSiblings: true,
|
|
1886
|
+
},
|
|
1887
|
+
],
|
|
1888
|
+
expenseAccountHierarchy: [
|
|
1889
|
+
{
|
|
1890
|
+
accountId: ['account_1ecee77e-e382-4ab0-b182-70a33103039f'],
|
|
1891
|
+
accountName: 'Utilities',
|
|
1892
|
+
qboId: '24',
|
|
1893
|
+
children: [
|
|
1894
|
+
{
|
|
1895
|
+
accountId: [
|
|
1896
|
+
'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
1897
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
1898
|
+
],
|
|
1899
|
+
accountName: 'Telephone',
|
|
1900
|
+
qboId: '77',
|
|
1901
|
+
children: [],
|
|
1902
|
+
hasSiblings: true,
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
accountId: [
|
|
1906
|
+
'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
1907
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
1908
|
+
],
|
|
1909
|
+
accountName: 'Gas and Electric',
|
|
1910
|
+
qboId: '76',
|
|
1911
|
+
children: [],
|
|
1912
|
+
hasSiblings: true,
|
|
1913
|
+
},
|
|
1914
|
+
],
|
|
1915
|
+
hasSiblings: true,
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
accountId: ['account_37a82313-fc44-44f0-b3bb-f09434284e58'],
|
|
1919
|
+
accountName: 'Uncategorized Expense',
|
|
1920
|
+
qboId: '31',
|
|
1921
|
+
children: [],
|
|
1922
|
+
hasSiblings: true,
|
|
1923
|
+
coaId: '69999',
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
accountId: ['account_f18000a3-d265-41dc-a16c-f63b250b64b9'],
|
|
1927
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
1928
|
+
qboId: '88',
|
|
1929
|
+
children: [],
|
|
1930
|
+
hasSiblings: true,
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
accountId: ['account_d4e64547-3541-4b77-8273-0c0f1e3f195c'],
|
|
1934
|
+
accountName: 'Travel Meals',
|
|
1935
|
+
qboId: '23',
|
|
1936
|
+
children: [],
|
|
1937
|
+
hasSiblings: true,
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
accountId: ['account_11bc3022-c5df-43aa-ab29-e450ddf9b75a'],
|
|
1941
|
+
accountName: 'Travel',
|
|
1942
|
+
qboId: '22',
|
|
1943
|
+
children: [],
|
|
1944
|
+
hasSiblings: true,
|
|
1945
|
+
coaId: '62200',
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
accountId: ['account_b21f9130-2c8c-4a6e-959e-a0cca0933092'],
|
|
1949
|
+
accountName: 'Taxes & Licenses',
|
|
1950
|
+
qboId: '21',
|
|
1951
|
+
children: [],
|
|
1952
|
+
hasSiblings: true,
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
accountId: ['account_cae16d28-3bfd-40a2-b2d0-a9f76e419314'],
|
|
1956
|
+
accountName: 'Supplies',
|
|
1957
|
+
qboId: '20',
|
|
1958
|
+
children: [],
|
|
1959
|
+
hasSiblings: true,
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
accountId: ['account_cf920797-ff3d-499c-9c4d-5cbb321146ca'],
|
|
1963
|
+
accountName: 'Stationery & Printing',
|
|
1964
|
+
qboId: '19',
|
|
1965
|
+
children: [],
|
|
1966
|
+
hasSiblings: true,
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
accountId: ['account_686005dd-6835-4781-a4a9-83b3c74b2e4d'],
|
|
1970
|
+
accountName: 'Salaries and Benefits',
|
|
1971
|
+
qboId: '91',
|
|
1972
|
+
children: [],
|
|
1973
|
+
hasSiblings: true,
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
accountId: ['account_3d4568f6-b288-4d70-bda5-6813cc8177fa'],
|
|
1977
|
+
accountName: 'Rent or Lease',
|
|
1978
|
+
qboId: '17',
|
|
1979
|
+
children: [],
|
|
1980
|
+
hasSiblings: true,
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
accountId: ['account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e'],
|
|
1984
|
+
accountName: 'Purchases',
|
|
1985
|
+
qboId: '78',
|
|
1986
|
+
children: [],
|
|
1987
|
+
hasSiblings: true,
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
accountId: ['account_260ccba4-1582-4757-9880-40d2445e5784'],
|
|
1991
|
+
accountName: 'Promotional',
|
|
1992
|
+
qboId: '16',
|
|
1993
|
+
children: [],
|
|
1994
|
+
hasSiblings: true,
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
accountId: ['account_e88d8637-ca35-41aa-b909-dbcc37851eff'],
|
|
1998
|
+
accountName: 'Payroll Expenses',
|
|
1999
|
+
qboId: '113',
|
|
2000
|
+
children: [],
|
|
2001
|
+
hasSiblings: true,
|
|
2002
|
+
coaId: '64300',
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
accountId: ['account_5e8f5ff6-952b-417f-9315-e23552ccd780'],
|
|
2006
|
+
accountName: 'Office Expenses',
|
|
2007
|
+
qboId: '15',
|
|
2008
|
+
children: [],
|
|
2009
|
+
hasSiblings: true,
|
|
2010
|
+
coaId: '64100',
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
accountId: ['account_5667e789-c321-4b8c-a5b0-6f384c5a58d7'],
|
|
2014
|
+
accountName: 'Meals and Entertainment',
|
|
2015
|
+
qboId: '13',
|
|
2016
|
+
children: [],
|
|
2017
|
+
hasSiblings: true,
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
accountId: ['account_be9dd00d-70e6-4c5b-96d2-925b5ed42336'],
|
|
2021
|
+
accountName: 'Maintenance and Repair',
|
|
2022
|
+
qboId: '72',
|
|
2023
|
+
children: [
|
|
2024
|
+
{
|
|
2025
|
+
accountId: [
|
|
2026
|
+
'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
2027
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
2028
|
+
],
|
|
2029
|
+
accountName: 'Equipment Repairs',
|
|
2030
|
+
qboId: '75',
|
|
2031
|
+
children: [],
|
|
2032
|
+
hasSiblings: true,
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
accountId: [
|
|
2036
|
+
'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
2037
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
2038
|
+
],
|
|
2039
|
+
accountName: 'Computer Repairs',
|
|
2040
|
+
qboId: '74',
|
|
2041
|
+
children: [],
|
|
2042
|
+
hasSiblings: true,
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
accountId: [
|
|
2046
|
+
'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
2047
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
2048
|
+
],
|
|
2049
|
+
accountName: 'Building Repairs',
|
|
2050
|
+
qboId: '73',
|
|
2051
|
+
children: [],
|
|
2052
|
+
hasSiblings: true,
|
|
2053
|
+
},
|
|
2054
|
+
],
|
|
2055
|
+
hasSiblings: true,
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
accountId: ['account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d'],
|
|
2059
|
+
accountName: 'Legal & Professional Fees',
|
|
2060
|
+
qboId: '12',
|
|
2061
|
+
children: [
|
|
2062
|
+
{
|
|
2063
|
+
accountId: [
|
|
2064
|
+
'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
2065
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
2066
|
+
],
|
|
2067
|
+
accountName: 'Lawyer',
|
|
2068
|
+
qboId: '71',
|
|
2069
|
+
children: [],
|
|
2070
|
+
hasSiblings: true,
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
accountId: [
|
|
2074
|
+
'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
2075
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
2076
|
+
],
|
|
2077
|
+
accountName: 'Bookkeeper',
|
|
2078
|
+
qboId: '70',
|
|
2079
|
+
children: [],
|
|
2080
|
+
hasSiblings: true,
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
accountId: [
|
|
2084
|
+
'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
2085
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
2086
|
+
],
|
|
2087
|
+
accountName: 'Accounting',
|
|
2088
|
+
qboId: '69',
|
|
2089
|
+
children: [],
|
|
2090
|
+
hasSiblings: true,
|
|
2091
|
+
},
|
|
2092
|
+
],
|
|
2093
|
+
hasSiblings: true,
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
accountId: ['account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9'],
|
|
2097
|
+
accountName: 'Job Expenses',
|
|
2098
|
+
qboId: '58',
|
|
2099
|
+
children: [
|
|
2100
|
+
{
|
|
2101
|
+
accountId: [
|
|
2102
|
+
'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
2103
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2104
|
+
],
|
|
2105
|
+
accountName: 'Permits',
|
|
2106
|
+
qboId: '68',
|
|
2107
|
+
children: [],
|
|
2108
|
+
hasSiblings: true,
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
accountId: [
|
|
2112
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
2113
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2114
|
+
],
|
|
2115
|
+
accountName: 'Job Materials',
|
|
2116
|
+
qboId: '63',
|
|
2117
|
+
children: [
|
|
2118
|
+
{
|
|
2119
|
+
accountId: [
|
|
2120
|
+
'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
2121
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
2122
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2123
|
+
],
|
|
2124
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
2125
|
+
qboId: '67',
|
|
2126
|
+
children: [],
|
|
2127
|
+
hasSiblings: true,
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
accountId: [
|
|
2131
|
+
'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
2132
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
2133
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2134
|
+
],
|
|
2135
|
+
accountName: 'Plants and Soil',
|
|
2136
|
+
qboId: '66',
|
|
2137
|
+
children: [],
|
|
2138
|
+
hasSiblings: true,
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
accountId: [
|
|
2142
|
+
'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
2143
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
2144
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2145
|
+
],
|
|
2146
|
+
accountName: 'Fountain and Garden Lighting',
|
|
2147
|
+
qboId: '65',
|
|
2148
|
+
children: [],
|
|
2149
|
+
hasSiblings: true,
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
accountId: [
|
|
2153
|
+
'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
2154
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
2155
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2156
|
+
],
|
|
2157
|
+
accountName: 'Decks and Patios',
|
|
2158
|
+
qboId: '64',
|
|
2159
|
+
children: [],
|
|
2160
|
+
hasSiblings: true,
|
|
2161
|
+
},
|
|
2162
|
+
],
|
|
2163
|
+
hasSiblings: true,
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
accountId: [
|
|
2167
|
+
'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
2168
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2169
|
+
],
|
|
2170
|
+
accountName: 'Equipment Rental',
|
|
2171
|
+
qboId: '62',
|
|
2172
|
+
children: [],
|
|
2173
|
+
hasSiblings: true,
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
accountId: [
|
|
2177
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
2178
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2179
|
+
],
|
|
2180
|
+
accountName: 'Cost of Labor',
|
|
2181
|
+
qboId: '59',
|
|
2182
|
+
children: [
|
|
2183
|
+
{
|
|
2184
|
+
accountId: [
|
|
2185
|
+
'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
2186
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
2187
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2188
|
+
],
|
|
2189
|
+
accountName: 'Maintenance and Repairs',
|
|
2190
|
+
qboId: '61',
|
|
2191
|
+
children: [],
|
|
2192
|
+
hasSiblings: true,
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
accountId: [
|
|
2196
|
+
'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
2197
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
2198
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2199
|
+
],
|
|
2200
|
+
accountName: 'Installation',
|
|
2201
|
+
qboId: '60',
|
|
2202
|
+
children: [],
|
|
2203
|
+
hasSiblings: true,
|
|
2204
|
+
},
|
|
2205
|
+
],
|
|
2206
|
+
hasSiblings: true,
|
|
2207
|
+
},
|
|
2208
|
+
],
|
|
2209
|
+
hasSiblings: true,
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
accountId: ['account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8'],
|
|
2213
|
+
accountName: 'Insurance',
|
|
2214
|
+
qboId: '11',
|
|
2215
|
+
children: [
|
|
2216
|
+
{
|
|
2217
|
+
accountId: [
|
|
2218
|
+
'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
2219
|
+
'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
2220
|
+
],
|
|
2221
|
+
accountName: 'Workers Compensation',
|
|
2222
|
+
qboId: '57',
|
|
2223
|
+
children: [],
|
|
2224
|
+
hasSiblings: false,
|
|
2225
|
+
},
|
|
2226
|
+
],
|
|
2227
|
+
hasSiblings: true,
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
accountId: ['account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3'],
|
|
2231
|
+
accountName: 'Fuel',
|
|
2232
|
+
qboId: '56',
|
|
2233
|
+
children: [],
|
|
2234
|
+
hasSiblings: true,
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
accountId: ['account_083cb73a-a2fb-4214-b5ba-8d289227ea12'],
|
|
2238
|
+
accountName: 'Equipment Rental',
|
|
2239
|
+
qboId: '29',
|
|
2240
|
+
children: [],
|
|
2241
|
+
hasSiblings: true,
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
accountId: ['account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42'],
|
|
2245
|
+
accountName: 'Entertainment test 3',
|
|
2246
|
+
qboId: '97',
|
|
2247
|
+
children: [],
|
|
2248
|
+
hasSiblings: true,
|
|
2249
|
+
coaId: '77649',
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
accountId: ['account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb'],
|
|
2253
|
+
accountName: 'Dues & Subscriptions',
|
|
2254
|
+
qboId: '10',
|
|
2255
|
+
children: [],
|
|
2256
|
+
hasSiblings: true,
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
accountId: ['account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042'],
|
|
2260
|
+
accountName: 'Disposal Fees',
|
|
2261
|
+
qboId: '28',
|
|
2262
|
+
children: [],
|
|
2263
|
+
hasSiblings: true,
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
accountId: ['account_041cf709-4537-4394-994f-ec3c64bbc877'],
|
|
2267
|
+
accountName: 'Commissions & fees',
|
|
2268
|
+
qboId: '9',
|
|
2269
|
+
children: [],
|
|
2270
|
+
hasSiblings: true,
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
accountId: ['account_d8a660ac-158c-4556-b92f-020d3afe0e34'],
|
|
2274
|
+
accountName: 'Bank Charges',
|
|
2275
|
+
qboId: '8',
|
|
2276
|
+
children: [],
|
|
2277
|
+
hasSiblings: true,
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
accountId: ['account_c4f4a39e-dc67-4c65-b882-9da99070ebfa'],
|
|
2281
|
+
accountName: 'Automobile',
|
|
2282
|
+
qboId: '55',
|
|
2283
|
+
children: [],
|
|
2284
|
+
hasSiblings: true,
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
accountId: ['account_10053408-c131-468b-a1ab-2c289d84901c'],
|
|
2288
|
+
accountName: 'Advertising',
|
|
2289
|
+
qboId: '7',
|
|
2290
|
+
children: [],
|
|
2291
|
+
hasSiblings: true,
|
|
2292
|
+
},
|
|
2293
|
+
],
|
|
2294
|
+
fetchState: 'Not-Started',
|
|
2295
|
+
saveState: {
|
|
2296
|
+
fetchState: 'Not-Started',
|
|
2297
|
+
},
|
|
2298
|
+
reimbursementsAccountList: [
|
|
2299
|
+
{
|
|
2300
|
+
accountId: 'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
2301
|
+
accountName: 'Workers Compensation',
|
|
2302
|
+
accountType: 'expenses',
|
|
2303
|
+
accountSubType: undefined,
|
|
2304
|
+
last4Digits: undefined,
|
|
2305
|
+
logo: undefined,
|
|
2306
|
+
coaId: undefined,
|
|
2307
|
+
accountDescription: '',
|
|
2308
|
+
qboId: '57',
|
|
2309
|
+
labels: [],
|
|
2310
|
+
tax1099Config: undefined,
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
accountId: 'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
2314
|
+
accountName: 'Utilities',
|
|
2315
|
+
accountType: 'expenses',
|
|
2316
|
+
accountSubType: undefined,
|
|
2317
|
+
last4Digits: undefined,
|
|
2318
|
+
logo: undefined,
|
|
2319
|
+
coaId: undefined,
|
|
2320
|
+
accountDescription: '',
|
|
2321
|
+
qboId: '24',
|
|
2322
|
+
labels: [],
|
|
2323
|
+
tax1099Config: undefined,
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
accountId: 'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
2327
|
+
accountName: 'Uncategorized Expense',
|
|
2328
|
+
accountType: 'expenses',
|
|
2329
|
+
accountSubType: undefined,
|
|
2330
|
+
last4Digits: undefined,
|
|
2331
|
+
logo: undefined,
|
|
2332
|
+
accountDescription: '',
|
|
2333
|
+
qboId: '31',
|
|
2334
|
+
coaId: '69999',
|
|
2335
|
+
labels: ['uncategorized_income'],
|
|
2336
|
+
tax1099Config: undefined,
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
accountId: 'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
2340
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
2341
|
+
accountType: 'expenses',
|
|
2342
|
+
accountSubType: undefined,
|
|
2343
|
+
last4Digits: undefined,
|
|
2344
|
+
logo: undefined,
|
|
2345
|
+
coaId: undefined,
|
|
2346
|
+
accountDescription: '',
|
|
2347
|
+
qboId: '88',
|
|
2348
|
+
labels: [],
|
|
2349
|
+
tax1099Config: undefined,
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
accountId: 'account_d4e64547-3541-4b77-8273-0c0f1e3f195c',
|
|
2353
|
+
accountName: 'Travel Meals',
|
|
2354
|
+
accountType: 'expenses',
|
|
2355
|
+
accountSubType: undefined,
|
|
2356
|
+
last4Digits: undefined,
|
|
2357
|
+
logo: undefined,
|
|
2358
|
+
coaId: undefined,
|
|
2359
|
+
accountDescription: '',
|
|
2360
|
+
qboId: '23',
|
|
2361
|
+
labels: [],
|
|
2362
|
+
tax1099Config: undefined,
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
accountId: 'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a',
|
|
2366
|
+
accountName: 'Travel',
|
|
2367
|
+
accountType: 'expenses',
|
|
2368
|
+
accountSubType: undefined,
|
|
2369
|
+
last4Digits: undefined,
|
|
2370
|
+
logo: undefined,
|
|
2371
|
+
accountDescription: '',
|
|
2372
|
+
qboId: '22',
|
|
2373
|
+
coaId: '62200',
|
|
2374
|
+
labels: [],
|
|
2375
|
+
tax1099Config: undefined,
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
accountId: 'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
2379
|
+
accountName: 'Telephone',
|
|
2380
|
+
accountType: 'expenses',
|
|
2381
|
+
accountSubType: undefined,
|
|
2382
|
+
last4Digits: undefined,
|
|
2383
|
+
logo: undefined,
|
|
2384
|
+
coaId: undefined,
|
|
2385
|
+
accountDescription: '',
|
|
2386
|
+
qboId: '77',
|
|
2387
|
+
labels: [],
|
|
2388
|
+
tax1099Config: undefined,
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
accountId: 'account_b21f9130-2c8c-4a6e-959e-a0cca0933092',
|
|
2392
|
+
accountName: 'Taxes & Licenses',
|
|
2393
|
+
accountType: 'expenses',
|
|
2394
|
+
accountSubType: undefined,
|
|
2395
|
+
last4Digits: undefined,
|
|
2396
|
+
logo: undefined,
|
|
2397
|
+
coaId: undefined,
|
|
2398
|
+
accountDescription: '',
|
|
2399
|
+
qboId: '21',
|
|
2400
|
+
labels: [],
|
|
2401
|
+
tax1099Config: undefined,
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
accountId: 'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314',
|
|
2405
|
+
accountName: 'Supplies',
|
|
2406
|
+
accountType: 'expenses',
|
|
2407
|
+
accountSubType: undefined,
|
|
2408
|
+
last4Digits: undefined,
|
|
2409
|
+
logo: undefined,
|
|
2410
|
+
coaId: undefined,
|
|
2411
|
+
accountDescription: '',
|
|
2412
|
+
qboId: '20',
|
|
2413
|
+
labels: [],
|
|
2414
|
+
tax1099Config: undefined,
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
accountId: 'account_cf920797-ff3d-499c-9c4d-5cbb321146ca',
|
|
2418
|
+
accountName: 'Stationery & Printing',
|
|
2419
|
+
accountType: 'expenses',
|
|
2420
|
+
accountSubType: undefined,
|
|
2421
|
+
last4Digits: undefined,
|
|
2422
|
+
logo: undefined,
|
|
2423
|
+
coaId: undefined,
|
|
2424
|
+
accountDescription: '',
|
|
2425
|
+
qboId: '19',
|
|
2426
|
+
labels: [],
|
|
2427
|
+
tax1099Config: undefined,
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
accountId: 'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
2431
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
2432
|
+
accountType: 'expenses',
|
|
2433
|
+
accountSubType: undefined,
|
|
2434
|
+
last4Digits: undefined,
|
|
2435
|
+
logo: undefined,
|
|
2436
|
+
coaId: undefined,
|
|
2437
|
+
accountDescription: '',
|
|
2438
|
+
qboId: '67',
|
|
2439
|
+
labels: [],
|
|
2440
|
+
tax1099Config: undefined,
|
|
2441
|
+
},
|
|
2442
|
+
{
|
|
2443
|
+
accountId: 'account_686005dd-6835-4781-a4a9-83b3c74b2e4d',
|
|
2444
|
+
accountName: 'Salaries and Benefits',
|
|
2445
|
+
accountType: 'expenses',
|
|
2446
|
+
accountSubType: undefined,
|
|
2447
|
+
last4Digits: undefined,
|
|
2448
|
+
logo: undefined,
|
|
2449
|
+
coaId: undefined,
|
|
2450
|
+
accountDescription: '',
|
|
2451
|
+
qboId: '91',
|
|
2452
|
+
labels: [],
|
|
2453
|
+
tax1099Config: undefined,
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
accountId: 'account_3d4568f6-b288-4d70-bda5-6813cc8177fa',
|
|
2457
|
+
accountName: 'Rent or Lease',
|
|
2458
|
+
accountType: 'expenses',
|
|
2459
|
+
accountSubType: undefined,
|
|
2460
|
+
last4Digits: undefined,
|
|
2461
|
+
logo: undefined,
|
|
2462
|
+
coaId: undefined,
|
|
2463
|
+
accountDescription: '',
|
|
2464
|
+
qboId: '17',
|
|
2465
|
+
labels: [],
|
|
2466
|
+
tax1099Config: undefined,
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
accountId: 'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e',
|
|
2470
|
+
accountName: 'Purchases',
|
|
2471
|
+
accountType: 'expenses',
|
|
2472
|
+
accountSubType: undefined,
|
|
2473
|
+
last4Digits: undefined,
|
|
2474
|
+
logo: undefined,
|
|
2475
|
+
coaId: undefined,
|
|
2476
|
+
accountDescription: '',
|
|
2477
|
+
qboId: '78',
|
|
2478
|
+
labels: [],
|
|
2479
|
+
tax1099Config: undefined,
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
accountId: 'account_260ccba4-1582-4757-9880-40d2445e5784',
|
|
2483
|
+
accountName: 'Promotional',
|
|
2484
|
+
accountType: 'expenses',
|
|
2485
|
+
accountSubType: undefined,
|
|
2486
|
+
last4Digits: undefined,
|
|
2487
|
+
logo: undefined,
|
|
2488
|
+
coaId: undefined,
|
|
2489
|
+
accountDescription: '',
|
|
2490
|
+
qboId: '16',
|
|
2491
|
+
labels: [],
|
|
2492
|
+
tax1099Config: undefined,
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
accountId: 'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
2496
|
+
accountName: 'Plants and Soil',
|
|
2497
|
+
accountType: 'expenses',
|
|
2498
|
+
accountSubType: undefined,
|
|
2499
|
+
last4Digits: undefined,
|
|
2500
|
+
logo: undefined,
|
|
2501
|
+
coaId: undefined,
|
|
2502
|
+
accountDescription: '',
|
|
2503
|
+
qboId: '66',
|
|
2504
|
+
labels: [],
|
|
2505
|
+
tax1099Config: undefined,
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
accountId: 'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
2509
|
+
accountName: 'Permits',
|
|
2510
|
+
accountType: 'expenses',
|
|
2511
|
+
accountSubType: undefined,
|
|
2512
|
+
last4Digits: undefined,
|
|
2513
|
+
logo: undefined,
|
|
2514
|
+
coaId: undefined,
|
|
2515
|
+
accountDescription: '',
|
|
2516
|
+
qboId: '68',
|
|
2517
|
+
labels: [],
|
|
2518
|
+
tax1099Config: undefined,
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
accountId: 'account_e88d8637-ca35-41aa-b909-dbcc37851eff',
|
|
2522
|
+
accountName: 'Payroll Expenses',
|
|
2523
|
+
accountType: 'expenses',
|
|
2524
|
+
accountSubType: undefined,
|
|
2525
|
+
last4Digits: undefined,
|
|
2526
|
+
logo: undefined,
|
|
2527
|
+
accountDescription: '',
|
|
2528
|
+
qboId: '113',
|
|
2529
|
+
coaId: '64300',
|
|
2530
|
+
labels: [],
|
|
2531
|
+
tax1099Config: undefined,
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
accountId: 'account_5e8f5ff6-952b-417f-9315-e23552ccd780',
|
|
2535
|
+
accountName: 'Office Expenses',
|
|
2536
|
+
accountType: 'expenses',
|
|
2537
|
+
accountSubType: undefined,
|
|
2538
|
+
last4Digits: undefined,
|
|
2539
|
+
logo: undefined,
|
|
2540
|
+
accountDescription: '',
|
|
2541
|
+
qboId: '15',
|
|
2542
|
+
coaId: '64100',
|
|
2543
|
+
labels: [],
|
|
2544
|
+
tax1099Config: undefined,
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
accountId: 'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7',
|
|
2548
|
+
accountName: 'Meals and Entertainment',
|
|
2549
|
+
accountType: 'expenses',
|
|
2550
|
+
accountSubType: undefined,
|
|
2551
|
+
last4Digits: undefined,
|
|
2552
|
+
logo: undefined,
|
|
2553
|
+
coaId: undefined,
|
|
2554
|
+
accountDescription: '',
|
|
2555
|
+
qboId: '13',
|
|
2556
|
+
labels: [],
|
|
2557
|
+
tax1099Config: undefined,
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
accountId: 'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
2561
|
+
accountName: 'Maintenance and Repairs',
|
|
2562
|
+
accountType: 'expenses',
|
|
2563
|
+
accountSubType: undefined,
|
|
2564
|
+
last4Digits: undefined,
|
|
2565
|
+
logo: undefined,
|
|
2566
|
+
coaId: undefined,
|
|
2567
|
+
accountDescription: '',
|
|
2568
|
+
qboId: '61',
|
|
2569
|
+
labels: [],
|
|
2570
|
+
tax1099Config: undefined,
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
accountId: 'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
2574
|
+
accountName: 'Maintenance and Repair',
|
|
2575
|
+
accountType: 'expenses',
|
|
2576
|
+
accountSubType: undefined,
|
|
2577
|
+
last4Digits: undefined,
|
|
2578
|
+
logo: undefined,
|
|
2579
|
+
coaId: undefined,
|
|
2580
|
+
accountDescription: '',
|
|
2581
|
+
qboId: '72',
|
|
2582
|
+
labels: [],
|
|
2583
|
+
tax1099Config: undefined,
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
accountId: 'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
2587
|
+
accountName: 'Legal & Professional Fees',
|
|
2588
|
+
accountType: 'expenses',
|
|
2589
|
+
accountSubType: undefined,
|
|
2590
|
+
last4Digits: undefined,
|
|
2591
|
+
logo: undefined,
|
|
2592
|
+
coaId: undefined,
|
|
2593
|
+
accountDescription: '',
|
|
2594
|
+
qboId: '12',
|
|
2595
|
+
labels: [],
|
|
2596
|
+
tax1099Config: undefined,
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
accountId: 'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
2600
|
+
accountName: 'Lawyer',
|
|
2601
|
+
accountType: 'expenses',
|
|
2602
|
+
accountSubType: undefined,
|
|
2603
|
+
last4Digits: undefined,
|
|
2604
|
+
logo: undefined,
|
|
2605
|
+
coaId: undefined,
|
|
2606
|
+
accountDescription: '',
|
|
2607
|
+
qboId: '71',
|
|
2608
|
+
labels: [],
|
|
2609
|
+
tax1099Config: undefined,
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
accountId: 'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
2613
|
+
accountName: 'Job Materials',
|
|
2614
|
+
accountType: 'expenses',
|
|
2615
|
+
accountSubType: undefined,
|
|
2616
|
+
last4Digits: undefined,
|
|
2617
|
+
logo: undefined,
|
|
2618
|
+
coaId: undefined,
|
|
2619
|
+
accountDescription: '',
|
|
2620
|
+
qboId: '63',
|
|
2621
|
+
labels: [],
|
|
2622
|
+
tax1099Config: undefined,
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
accountId: 'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
2626
|
+
accountName: 'Job Expenses',
|
|
2627
|
+
accountType: 'expenses',
|
|
2628
|
+
accountSubType: undefined,
|
|
2629
|
+
last4Digits: undefined,
|
|
2630
|
+
logo: undefined,
|
|
2631
|
+
coaId: undefined,
|
|
2632
|
+
accountDescription: '',
|
|
2633
|
+
qboId: '58',
|
|
2634
|
+
labels: [],
|
|
2635
|
+
tax1099Config: undefined,
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
accountId: 'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
2639
|
+
accountName: 'Insurance',
|
|
2640
|
+
accountType: 'expenses',
|
|
2641
|
+
accountSubType: undefined,
|
|
2642
|
+
last4Digits: undefined,
|
|
2643
|
+
logo: undefined,
|
|
2644
|
+
coaId: undefined,
|
|
2645
|
+
accountDescription: '',
|
|
2646
|
+
qboId: '11',
|
|
2647
|
+
labels: [],
|
|
2648
|
+
tax1099Config: undefined,
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
accountId: 'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
2652
|
+
accountName: 'Installation',
|
|
2653
|
+
accountType: 'expenses',
|
|
2654
|
+
accountSubType: undefined,
|
|
2655
|
+
last4Digits: undefined,
|
|
2656
|
+
logo: undefined,
|
|
2657
|
+
coaId: undefined,
|
|
2658
|
+
accountDescription: '',
|
|
2659
|
+
qboId: '60',
|
|
2660
|
+
labels: [],
|
|
2661
|
+
tax1099Config: undefined,
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
accountId: 'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
2665
|
+
accountName: 'Gas and Electric',
|
|
2666
|
+
accountType: 'expenses',
|
|
2667
|
+
accountSubType: undefined,
|
|
2668
|
+
last4Digits: undefined,
|
|
2669
|
+
logo: undefined,
|
|
2670
|
+
coaId: undefined,
|
|
2671
|
+
accountDescription: '',
|
|
2672
|
+
qboId: '76',
|
|
2673
|
+
labels: [],
|
|
2674
|
+
tax1099Config: undefined,
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
accountId: 'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3',
|
|
2678
|
+
accountName: 'Fuel',
|
|
2679
|
+
accountType: 'expenses',
|
|
2680
|
+
accountSubType: undefined,
|
|
2681
|
+
last4Digits: undefined,
|
|
2682
|
+
logo: undefined,
|
|
2683
|
+
coaId: undefined,
|
|
2684
|
+
accountDescription: '',
|
|
2685
|
+
qboId: '56',
|
|
2686
|
+
labels: [],
|
|
2687
|
+
tax1099Config: undefined,
|
|
2688
|
+
},
|
|
2689
|
+
{
|
|
2690
|
+
accountId: 'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
2691
|
+
accountName: 'Fountain and Garden Lighting',
|
|
2692
|
+
accountType: 'expenses',
|
|
2693
|
+
accountSubType: undefined,
|
|
2694
|
+
last4Digits: undefined,
|
|
2695
|
+
logo: undefined,
|
|
2696
|
+
coaId: undefined,
|
|
2697
|
+
accountDescription: '',
|
|
2698
|
+
qboId: '65',
|
|
2699
|
+
labels: [],
|
|
2700
|
+
tax1099Config: undefined,
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
accountId: 'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
2704
|
+
accountName: 'Equipment Repairs',
|
|
2705
|
+
accountType: 'expenses',
|
|
2706
|
+
accountSubType: undefined,
|
|
2707
|
+
last4Digits: undefined,
|
|
2708
|
+
logo: undefined,
|
|
2709
|
+
coaId: undefined,
|
|
2710
|
+
accountDescription: '',
|
|
2711
|
+
qboId: '75',
|
|
2712
|
+
labels: [],
|
|
2713
|
+
tax1099Config: undefined,
|
|
2714
|
+
},
|
|
2715
|
+
{
|
|
2716
|
+
accountId: 'account_083cb73a-a2fb-4214-b5ba-8d289227ea12',
|
|
2717
|
+
accountName: 'Equipment Rental',
|
|
2718
|
+
accountType: 'expenses',
|
|
2719
|
+
accountSubType: undefined,
|
|
2720
|
+
last4Digits: undefined,
|
|
2721
|
+
logo: undefined,
|
|
2722
|
+
coaId: undefined,
|
|
2723
|
+
accountDescription: '',
|
|
2724
|
+
qboId: '29',
|
|
2725
|
+
labels: [],
|
|
2726
|
+
tax1099Config: undefined,
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
accountId: 'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
2730
|
+
accountName: 'Equipment Rental',
|
|
2731
|
+
accountType: 'expenses',
|
|
2732
|
+
accountSubType: undefined,
|
|
2733
|
+
last4Digits: undefined,
|
|
2734
|
+
logo: undefined,
|
|
2735
|
+
coaId: undefined,
|
|
2736
|
+
accountDescription: '',
|
|
2737
|
+
qboId: '62',
|
|
2738
|
+
labels: [],
|
|
2739
|
+
tax1099Config: undefined,
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
accountId: 'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42',
|
|
2743
|
+
accountName: 'Entertainment test 3',
|
|
2744
|
+
accountType: 'expenses',
|
|
2745
|
+
accountSubType: undefined,
|
|
2746
|
+
last4Digits: undefined,
|
|
2747
|
+
logo: undefined,
|
|
2748
|
+
accountDescription: '',
|
|
2749
|
+
qboId: '97',
|
|
2750
|
+
coaId: '77649',
|
|
2751
|
+
labels: [],
|
|
2752
|
+
tax1099Config: undefined,
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
accountId: 'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb',
|
|
2756
|
+
accountName: 'Dues & Subscriptions',
|
|
2757
|
+
accountType: 'expenses',
|
|
2758
|
+
accountSubType: undefined,
|
|
2759
|
+
last4Digits: undefined,
|
|
2760
|
+
logo: undefined,
|
|
2761
|
+
coaId: undefined,
|
|
2762
|
+
accountDescription: '',
|
|
2763
|
+
qboId: '10',
|
|
2764
|
+
labels: [],
|
|
2765
|
+
tax1099Config: undefined,
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
accountId: 'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042',
|
|
2769
|
+
accountName: 'Disposal Fees',
|
|
2770
|
+
accountType: 'expenses',
|
|
2771
|
+
accountSubType: undefined,
|
|
2772
|
+
last4Digits: undefined,
|
|
2773
|
+
logo: undefined,
|
|
2774
|
+
coaId: undefined,
|
|
2775
|
+
accountDescription: '',
|
|
2776
|
+
qboId: '28',
|
|
2777
|
+
labels: [],
|
|
2778
|
+
tax1099Config: undefined,
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
accountId: 'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
2782
|
+
accountName: 'Decks and Patios',
|
|
2783
|
+
accountType: 'expenses',
|
|
2784
|
+
accountSubType: undefined,
|
|
2785
|
+
last4Digits: undefined,
|
|
2786
|
+
logo: undefined,
|
|
2787
|
+
coaId: undefined,
|
|
2788
|
+
accountDescription: '',
|
|
2789
|
+
qboId: '64',
|
|
2790
|
+
labels: [],
|
|
2791
|
+
tax1099Config: undefined,
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
2794
|
+
accountId: 'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
2795
|
+
accountName: 'Cost of Labor',
|
|
2796
|
+
accountType: 'expenses',
|
|
2797
|
+
accountSubType: undefined,
|
|
2798
|
+
last4Digits: undefined,
|
|
2799
|
+
logo: undefined,
|
|
2800
|
+
coaId: undefined,
|
|
2801
|
+
accountDescription: '',
|
|
2802
|
+
qboId: '59',
|
|
2803
|
+
labels: [],
|
|
2804
|
+
tax1099Config: undefined,
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
accountId: 'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
2808
|
+
accountName: 'Computer Repairs',
|
|
2809
|
+
accountType: 'expenses',
|
|
2810
|
+
accountSubType: undefined,
|
|
2811
|
+
last4Digits: undefined,
|
|
2812
|
+
logo: undefined,
|
|
2813
|
+
coaId: undefined,
|
|
2814
|
+
accountDescription: '',
|
|
2815
|
+
qboId: '74',
|
|
2816
|
+
labels: [],
|
|
2817
|
+
tax1099Config: undefined,
|
|
2818
|
+
},
|
|
2819
|
+
{
|
|
2820
|
+
accountId: 'account_041cf709-4537-4394-994f-ec3c64bbc877',
|
|
2821
|
+
accountName: 'Commissions & fees',
|
|
2822
|
+
accountType: 'expenses',
|
|
2823
|
+
accountSubType: undefined,
|
|
2824
|
+
last4Digits: undefined,
|
|
2825
|
+
logo: undefined,
|
|
2826
|
+
coaId: undefined,
|
|
2827
|
+
accountDescription: '',
|
|
2828
|
+
qboId: '9',
|
|
2829
|
+
labels: [],
|
|
2830
|
+
tax1099Config: undefined,
|
|
2831
|
+
},
|
|
2832
|
+
{
|
|
2833
|
+
accountId: 'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
2834
|
+
accountName: 'Building Repairs',
|
|
2835
|
+
accountType: 'expenses',
|
|
2836
|
+
accountSubType: undefined,
|
|
2837
|
+
last4Digits: undefined,
|
|
2838
|
+
logo: undefined,
|
|
2839
|
+
coaId: undefined,
|
|
2840
|
+
accountDescription: '',
|
|
2841
|
+
qboId: '73',
|
|
2842
|
+
labels: [],
|
|
2843
|
+
tax1099Config: undefined,
|
|
2844
|
+
},
|
|
2845
|
+
{
|
|
2846
|
+
accountId: 'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
2847
|
+
accountName: 'Bookkeeper',
|
|
2848
|
+
accountType: 'expenses',
|
|
2849
|
+
accountSubType: undefined,
|
|
2850
|
+
last4Digits: undefined,
|
|
2851
|
+
logo: undefined,
|
|
2852
|
+
coaId: undefined,
|
|
2853
|
+
accountDescription: '',
|
|
2854
|
+
qboId: '70',
|
|
2855
|
+
labels: [],
|
|
2856
|
+
tax1099Config: undefined,
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
accountId: 'account_d8a660ac-158c-4556-b92f-020d3afe0e34',
|
|
2860
|
+
accountName: 'Bank Charges',
|
|
2861
|
+
accountType: 'expenses',
|
|
2862
|
+
accountSubType: undefined,
|
|
2863
|
+
last4Digits: undefined,
|
|
2864
|
+
logo: undefined,
|
|
2865
|
+
coaId: undefined,
|
|
2866
|
+
accountDescription: '',
|
|
2867
|
+
qboId: '8',
|
|
2868
|
+
labels: [],
|
|
2869
|
+
tax1099Config: undefined,
|
|
2870
|
+
},
|
|
2871
|
+
{
|
|
2872
|
+
accountId: 'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa',
|
|
2873
|
+
accountName: 'Automobile',
|
|
2874
|
+
accountType: 'expenses',
|
|
2875
|
+
accountSubType: undefined,
|
|
2876
|
+
last4Digits: undefined,
|
|
2877
|
+
logo: undefined,
|
|
2878
|
+
coaId: undefined,
|
|
2879
|
+
accountDescription: '',
|
|
2880
|
+
qboId: '55',
|
|
2881
|
+
labels: [],
|
|
2882
|
+
tax1099Config: undefined,
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
accountId: 'account_10053408-c131-468b-a1ab-2c289d84901c',
|
|
2886
|
+
accountName: 'Advertising',
|
|
2887
|
+
accountType: 'expenses',
|
|
2888
|
+
accountSubType: undefined,
|
|
2889
|
+
last4Digits: undefined,
|
|
2890
|
+
logo: undefined,
|
|
2891
|
+
coaId: undefined,
|
|
2892
|
+
accountDescription: '',
|
|
2893
|
+
qboId: '7',
|
|
2894
|
+
labels: [],
|
|
2895
|
+
tax1099Config: undefined,
|
|
2896
|
+
},
|
|
2897
|
+
{
|
|
2898
|
+
accountId: 'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
2899
|
+
accountName: 'Accounting',
|
|
2900
|
+
accountType: 'expenses',
|
|
2901
|
+
accountSubType: undefined,
|
|
2902
|
+
last4Digits: undefined,
|
|
2903
|
+
logo: undefined,
|
|
2904
|
+
coaId: undefined,
|
|
2905
|
+
accountDescription: '',
|
|
2906
|
+
qboId: '69',
|
|
2907
|
+
labels: [],
|
|
2908
|
+
tax1099Config: undefined,
|
|
2909
|
+
},
|
|
2910
|
+
],
|
|
2911
|
+
billPayAccountList: [
|
|
2912
|
+
{
|
|
2913
|
+
accountId: 'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
2914
|
+
accountName: 'Workers Compensation',
|
|
2915
|
+
accountType: 'expenses',
|
|
2916
|
+
accountSubType: undefined,
|
|
2917
|
+
last4Digits: undefined,
|
|
2918
|
+
logo: undefined,
|
|
2919
|
+
coaId: undefined,
|
|
2920
|
+
accountDescription: '',
|
|
2921
|
+
qboId: '57',
|
|
2922
|
+
labels: [],
|
|
2923
|
+
tax1099Config: undefined,
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
accountId: 'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
2927
|
+
accountName: 'Utilities',
|
|
2928
|
+
accountType: 'expenses',
|
|
2929
|
+
accountSubType: undefined,
|
|
2930
|
+
last4Digits: undefined,
|
|
2931
|
+
logo: undefined,
|
|
2932
|
+
coaId: undefined,
|
|
2933
|
+
accountDescription: '',
|
|
2934
|
+
qboId: '24',
|
|
2935
|
+
labels: [],
|
|
2936
|
+
tax1099Config: undefined,
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
accountId: 'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
2940
|
+
accountName: 'Uncategorized Expense',
|
|
2941
|
+
accountType: 'expenses',
|
|
2942
|
+
accountSubType: undefined,
|
|
2943
|
+
last4Digits: undefined,
|
|
2944
|
+
logo: undefined,
|
|
2945
|
+
accountDescription: '',
|
|
2946
|
+
qboId: '31',
|
|
2947
|
+
coaId: '69999',
|
|
2948
|
+
labels: ['uncategorized_income'],
|
|
2949
|
+
tax1099Config: undefined,
|
|
2950
|
+
},
|
|
2951
|
+
{
|
|
2952
|
+
accountId: 'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
2953
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
2954
|
+
accountType: 'expenses',
|
|
2955
|
+
accountSubType: undefined,
|
|
2956
|
+
last4Digits: undefined,
|
|
2957
|
+
logo: undefined,
|
|
2958
|
+
coaId: undefined,
|
|
2959
|
+
accountDescription: '',
|
|
2960
|
+
qboId: '88',
|
|
2961
|
+
labels: [],
|
|
2962
|
+
tax1099Config: undefined,
|
|
2963
|
+
},
|
|
2964
|
+
{
|
|
2965
|
+
accountId: 'account_d4e64547-3541-4b77-8273-0c0f1e3f195c',
|
|
2966
|
+
accountName: 'Travel Meals',
|
|
2967
|
+
accountType: 'expenses',
|
|
2968
|
+
accountSubType: undefined,
|
|
2969
|
+
last4Digits: undefined,
|
|
2970
|
+
logo: undefined,
|
|
2971
|
+
coaId: undefined,
|
|
2972
|
+
accountDescription: '',
|
|
2973
|
+
qboId: '23',
|
|
2974
|
+
labels: [],
|
|
2975
|
+
tax1099Config: undefined,
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
accountId: 'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a',
|
|
2979
|
+
accountName: 'Travel',
|
|
2980
|
+
accountType: 'expenses',
|
|
2981
|
+
accountSubType: undefined,
|
|
2982
|
+
last4Digits: undefined,
|
|
2983
|
+
logo: undefined,
|
|
2984
|
+
accountDescription: '',
|
|
2985
|
+
qboId: '22',
|
|
2986
|
+
coaId: '62200',
|
|
2987
|
+
labels: [],
|
|
2988
|
+
tax1099Config: undefined,
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
accountId: 'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
2992
|
+
accountName: 'Telephone',
|
|
2993
|
+
accountType: 'expenses',
|
|
2994
|
+
accountSubType: undefined,
|
|
2995
|
+
last4Digits: undefined,
|
|
2996
|
+
logo: undefined,
|
|
2997
|
+
coaId: undefined,
|
|
2998
|
+
accountDescription: '',
|
|
2999
|
+
qboId: '77',
|
|
3000
|
+
labels: [],
|
|
3001
|
+
tax1099Config: undefined,
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
accountId: 'account_b21f9130-2c8c-4a6e-959e-a0cca0933092',
|
|
3005
|
+
accountName: 'Taxes & Licenses',
|
|
3006
|
+
accountType: 'expenses',
|
|
3007
|
+
accountSubType: undefined,
|
|
3008
|
+
last4Digits: undefined,
|
|
3009
|
+
logo: undefined,
|
|
3010
|
+
coaId: undefined,
|
|
3011
|
+
accountDescription: '',
|
|
3012
|
+
qboId: '21',
|
|
3013
|
+
labels: [],
|
|
3014
|
+
tax1099Config: undefined,
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
accountId: 'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314',
|
|
3018
|
+
accountName: 'Supplies',
|
|
3019
|
+
accountType: 'expenses',
|
|
3020
|
+
accountSubType: undefined,
|
|
3021
|
+
last4Digits: undefined,
|
|
3022
|
+
logo: undefined,
|
|
3023
|
+
coaId: undefined,
|
|
3024
|
+
accountDescription: '',
|
|
3025
|
+
qboId: '20',
|
|
3026
|
+
labels: [],
|
|
3027
|
+
tax1099Config: undefined,
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
accountId: 'account_cf920797-ff3d-499c-9c4d-5cbb321146ca',
|
|
3031
|
+
accountName: 'Stationery & Printing',
|
|
3032
|
+
accountType: 'expenses',
|
|
3033
|
+
accountSubType: undefined,
|
|
3034
|
+
last4Digits: undefined,
|
|
3035
|
+
logo: undefined,
|
|
3036
|
+
coaId: undefined,
|
|
3037
|
+
accountDescription: '',
|
|
3038
|
+
qboId: '19',
|
|
3039
|
+
labels: [],
|
|
3040
|
+
tax1099Config: undefined,
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
accountId: 'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
3044
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
3045
|
+
accountType: 'expenses',
|
|
3046
|
+
accountSubType: undefined,
|
|
3047
|
+
last4Digits: undefined,
|
|
3048
|
+
logo: undefined,
|
|
3049
|
+
coaId: undefined,
|
|
3050
|
+
accountDescription: '',
|
|
3051
|
+
qboId: '67',
|
|
3052
|
+
labels: [],
|
|
3053
|
+
tax1099Config: undefined,
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
accountId: 'account_686005dd-6835-4781-a4a9-83b3c74b2e4d',
|
|
3057
|
+
accountName: 'Salaries and Benefits',
|
|
3058
|
+
accountType: 'expenses',
|
|
3059
|
+
accountSubType: undefined,
|
|
3060
|
+
last4Digits: undefined,
|
|
3061
|
+
logo: undefined,
|
|
3062
|
+
coaId: undefined,
|
|
3063
|
+
accountDescription: '',
|
|
3064
|
+
qboId: '91',
|
|
3065
|
+
labels: [],
|
|
3066
|
+
tax1099Config: undefined,
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
accountId: 'account_3d4568f6-b288-4d70-bda5-6813cc8177fa',
|
|
3070
|
+
accountName: 'Rent or Lease',
|
|
3071
|
+
accountType: 'expenses',
|
|
3072
|
+
accountSubType: undefined,
|
|
3073
|
+
last4Digits: undefined,
|
|
3074
|
+
logo: undefined,
|
|
3075
|
+
coaId: undefined,
|
|
3076
|
+
accountDescription: '',
|
|
3077
|
+
qboId: '17',
|
|
3078
|
+
labels: [],
|
|
3079
|
+
tax1099Config: undefined,
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
accountId: 'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e',
|
|
3083
|
+
accountName: 'Purchases',
|
|
3084
|
+
accountType: 'expenses',
|
|
3085
|
+
accountSubType: undefined,
|
|
3086
|
+
last4Digits: undefined,
|
|
3087
|
+
logo: undefined,
|
|
3088
|
+
coaId: undefined,
|
|
3089
|
+
accountDescription: '',
|
|
3090
|
+
qboId: '78',
|
|
3091
|
+
labels: [],
|
|
3092
|
+
tax1099Config: undefined,
|
|
3093
|
+
},
|
|
3094
|
+
{
|
|
3095
|
+
accountId: 'account_260ccba4-1582-4757-9880-40d2445e5784',
|
|
3096
|
+
accountName: 'Promotional',
|
|
3097
|
+
accountType: 'expenses',
|
|
3098
|
+
accountSubType: undefined,
|
|
3099
|
+
last4Digits: undefined,
|
|
3100
|
+
logo: undefined,
|
|
3101
|
+
coaId: undefined,
|
|
3102
|
+
accountDescription: '',
|
|
3103
|
+
qboId: '16',
|
|
3104
|
+
labels: [],
|
|
3105
|
+
tax1099Config: undefined,
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
accountId: 'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
3109
|
+
accountName: 'Plants and Soil',
|
|
3110
|
+
accountType: 'expenses',
|
|
3111
|
+
accountSubType: undefined,
|
|
3112
|
+
last4Digits: undefined,
|
|
3113
|
+
logo: undefined,
|
|
3114
|
+
coaId: undefined,
|
|
3115
|
+
accountDescription: '',
|
|
3116
|
+
qboId: '66',
|
|
3117
|
+
labels: [],
|
|
3118
|
+
tax1099Config: undefined,
|
|
3119
|
+
},
|
|
3120
|
+
{
|
|
3121
|
+
accountId: 'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
3122
|
+
accountName: 'Permits',
|
|
3123
|
+
accountType: 'expenses',
|
|
3124
|
+
accountSubType: undefined,
|
|
3125
|
+
last4Digits: undefined,
|
|
3126
|
+
logo: undefined,
|
|
3127
|
+
coaId: undefined,
|
|
3128
|
+
accountDescription: '',
|
|
3129
|
+
qboId: '68',
|
|
3130
|
+
labels: [],
|
|
3131
|
+
tax1099Config: undefined,
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
accountId: 'account_e88d8637-ca35-41aa-b909-dbcc37851eff',
|
|
3135
|
+
accountName: 'Payroll Expenses',
|
|
3136
|
+
accountType: 'expenses',
|
|
3137
|
+
accountSubType: undefined,
|
|
3138
|
+
last4Digits: undefined,
|
|
3139
|
+
logo: undefined,
|
|
3140
|
+
accountDescription: '',
|
|
3141
|
+
qboId: '113',
|
|
3142
|
+
coaId: '64300',
|
|
3143
|
+
labels: [],
|
|
3144
|
+
tax1099Config: undefined,
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
accountId: 'account_5e8f5ff6-952b-417f-9315-e23552ccd780',
|
|
3148
|
+
accountName: 'Office Expenses',
|
|
3149
|
+
accountType: 'expenses',
|
|
3150
|
+
accountSubType: undefined,
|
|
3151
|
+
last4Digits: undefined,
|
|
3152
|
+
logo: undefined,
|
|
3153
|
+
accountDescription: '',
|
|
3154
|
+
qboId: '15',
|
|
3155
|
+
coaId: '64100',
|
|
3156
|
+
labels: [],
|
|
3157
|
+
tax1099Config: undefined,
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
accountId: 'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7',
|
|
3161
|
+
accountName: 'Meals and Entertainment',
|
|
3162
|
+
accountType: 'expenses',
|
|
3163
|
+
accountSubType: undefined,
|
|
3164
|
+
last4Digits: undefined,
|
|
3165
|
+
logo: undefined,
|
|
3166
|
+
coaId: undefined,
|
|
3167
|
+
accountDescription: '',
|
|
3168
|
+
qboId: '13',
|
|
3169
|
+
labels: [],
|
|
3170
|
+
tax1099Config: undefined,
|
|
3171
|
+
},
|
|
3172
|
+
{
|
|
3173
|
+
accountId: 'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
3174
|
+
accountName: 'Maintenance and Repairs',
|
|
3175
|
+
accountType: 'expenses',
|
|
3176
|
+
accountSubType: undefined,
|
|
3177
|
+
last4Digits: undefined,
|
|
3178
|
+
logo: undefined,
|
|
3179
|
+
coaId: undefined,
|
|
3180
|
+
accountDescription: '',
|
|
3181
|
+
qboId: '61',
|
|
3182
|
+
labels: [],
|
|
3183
|
+
tax1099Config: undefined,
|
|
3184
|
+
},
|
|
3185
|
+
{
|
|
3186
|
+
accountId: 'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
3187
|
+
accountName: 'Maintenance and Repair',
|
|
3188
|
+
accountType: 'expenses',
|
|
3189
|
+
accountSubType: undefined,
|
|
3190
|
+
last4Digits: undefined,
|
|
3191
|
+
logo: undefined,
|
|
3192
|
+
coaId: undefined,
|
|
3193
|
+
accountDescription: '',
|
|
3194
|
+
qboId: '72',
|
|
3195
|
+
labels: [],
|
|
3196
|
+
tax1099Config: undefined,
|
|
3197
|
+
},
|
|
3198
|
+
{
|
|
3199
|
+
accountId: 'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
3200
|
+
accountName: 'Legal & Professional Fees',
|
|
3201
|
+
accountType: 'expenses',
|
|
3202
|
+
accountSubType: undefined,
|
|
3203
|
+
last4Digits: undefined,
|
|
3204
|
+
logo: undefined,
|
|
3205
|
+
coaId: undefined,
|
|
3206
|
+
accountDescription: '',
|
|
3207
|
+
qboId: '12',
|
|
3208
|
+
labels: [],
|
|
3209
|
+
tax1099Config: undefined,
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
accountId: 'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
3213
|
+
accountName: 'Lawyer',
|
|
3214
|
+
accountType: 'expenses',
|
|
3215
|
+
accountSubType: undefined,
|
|
3216
|
+
last4Digits: undefined,
|
|
3217
|
+
logo: undefined,
|
|
3218
|
+
coaId: undefined,
|
|
3219
|
+
accountDescription: '',
|
|
3220
|
+
qboId: '71',
|
|
3221
|
+
labels: [],
|
|
3222
|
+
tax1099Config: undefined,
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
accountId: 'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
3226
|
+
accountName: 'Job Materials',
|
|
3227
|
+
accountType: 'expenses',
|
|
3228
|
+
accountSubType: undefined,
|
|
3229
|
+
last4Digits: undefined,
|
|
3230
|
+
logo: undefined,
|
|
3231
|
+
coaId: undefined,
|
|
3232
|
+
accountDescription: '',
|
|
3233
|
+
qboId: '63',
|
|
3234
|
+
labels: [],
|
|
3235
|
+
tax1099Config: undefined,
|
|
3236
|
+
},
|
|
3237
|
+
{
|
|
3238
|
+
accountId: 'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
3239
|
+
accountName: 'Job Expenses',
|
|
3240
|
+
accountType: 'expenses',
|
|
3241
|
+
accountSubType: undefined,
|
|
3242
|
+
last4Digits: undefined,
|
|
3243
|
+
logo: undefined,
|
|
3244
|
+
coaId: undefined,
|
|
3245
|
+
accountDescription: '',
|
|
3246
|
+
qboId: '58',
|
|
3247
|
+
labels: [],
|
|
3248
|
+
tax1099Config: undefined,
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
accountId: 'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
3252
|
+
accountName: 'Insurance',
|
|
3253
|
+
accountType: 'expenses',
|
|
3254
|
+
accountSubType: undefined,
|
|
3255
|
+
last4Digits: undefined,
|
|
3256
|
+
logo: undefined,
|
|
3257
|
+
coaId: undefined,
|
|
3258
|
+
accountDescription: '',
|
|
3259
|
+
qboId: '11',
|
|
3260
|
+
labels: [],
|
|
3261
|
+
tax1099Config: undefined,
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
accountId: 'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
3265
|
+
accountName: 'Installation',
|
|
3266
|
+
accountType: 'expenses',
|
|
3267
|
+
accountSubType: undefined,
|
|
3268
|
+
last4Digits: undefined,
|
|
3269
|
+
logo: undefined,
|
|
3270
|
+
coaId: undefined,
|
|
3271
|
+
accountDescription: '',
|
|
3272
|
+
qboId: '60',
|
|
3273
|
+
labels: [],
|
|
3274
|
+
tax1099Config: undefined,
|
|
3275
|
+
},
|
|
3276
|
+
{
|
|
3277
|
+
accountId: 'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
3278
|
+
accountName: 'Gas and Electric',
|
|
3279
|
+
accountType: 'expenses',
|
|
3280
|
+
accountSubType: undefined,
|
|
3281
|
+
last4Digits: undefined,
|
|
3282
|
+
logo: undefined,
|
|
3283
|
+
coaId: undefined,
|
|
3284
|
+
accountDescription: '',
|
|
3285
|
+
qboId: '76',
|
|
3286
|
+
labels: [],
|
|
3287
|
+
tax1099Config: undefined,
|
|
3288
|
+
},
|
|
3289
|
+
{
|
|
3290
|
+
accountId: 'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3',
|
|
3291
|
+
accountName: 'Fuel',
|
|
3292
|
+
accountType: 'expenses',
|
|
3293
|
+
accountSubType: undefined,
|
|
3294
|
+
last4Digits: undefined,
|
|
3295
|
+
logo: undefined,
|
|
3296
|
+
coaId: undefined,
|
|
3297
|
+
accountDescription: '',
|
|
3298
|
+
qboId: '56',
|
|
3299
|
+
labels: [],
|
|
3300
|
+
tax1099Config: undefined,
|
|
3301
|
+
},
|
|
3302
|
+
{
|
|
3303
|
+
accountId: 'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
3304
|
+
accountName: 'Fountain and Garden Lighting',
|
|
3305
|
+
accountType: 'expenses',
|
|
3306
|
+
accountSubType: undefined,
|
|
3307
|
+
last4Digits: undefined,
|
|
3308
|
+
logo: undefined,
|
|
3309
|
+
coaId: undefined,
|
|
3310
|
+
accountDescription: '',
|
|
3311
|
+
qboId: '65',
|
|
3312
|
+
labels: [],
|
|
3313
|
+
tax1099Config: undefined,
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
accountId: 'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
3317
|
+
accountName: 'Equipment Repairs',
|
|
3318
|
+
accountType: 'expenses',
|
|
3319
|
+
accountSubType: undefined,
|
|
3320
|
+
last4Digits: undefined,
|
|
3321
|
+
logo: undefined,
|
|
3322
|
+
coaId: undefined,
|
|
3323
|
+
accountDescription: '',
|
|
3324
|
+
qboId: '75',
|
|
3325
|
+
labels: [],
|
|
3326
|
+
tax1099Config: undefined,
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
accountId: 'account_083cb73a-a2fb-4214-b5ba-8d289227ea12',
|
|
3330
|
+
accountName: 'Equipment Rental',
|
|
3331
|
+
accountType: 'expenses',
|
|
3332
|
+
accountSubType: undefined,
|
|
3333
|
+
last4Digits: undefined,
|
|
3334
|
+
logo: undefined,
|
|
3335
|
+
coaId: undefined,
|
|
3336
|
+
accountDescription: '',
|
|
3337
|
+
qboId: '29',
|
|
3338
|
+
labels: [],
|
|
3339
|
+
tax1099Config: undefined,
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
accountId: 'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
3343
|
+
accountName: 'Equipment Rental',
|
|
3344
|
+
accountType: 'expenses',
|
|
3345
|
+
accountSubType: undefined,
|
|
3346
|
+
last4Digits: undefined,
|
|
3347
|
+
logo: undefined,
|
|
3348
|
+
coaId: undefined,
|
|
3349
|
+
accountDescription: '',
|
|
3350
|
+
qboId: '62',
|
|
3351
|
+
labels: [],
|
|
3352
|
+
tax1099Config: undefined,
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
accountId: 'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42',
|
|
3356
|
+
accountName: 'Entertainment test 3',
|
|
3357
|
+
accountType: 'expenses',
|
|
3358
|
+
accountSubType: undefined,
|
|
3359
|
+
last4Digits: undefined,
|
|
3360
|
+
logo: undefined,
|
|
3361
|
+
accountDescription: '',
|
|
3362
|
+
qboId: '97',
|
|
3363
|
+
coaId: '77649',
|
|
3364
|
+
labels: [],
|
|
3365
|
+
tax1099Config: undefined,
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
accountId: 'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb',
|
|
3369
|
+
accountName: 'Dues & Subscriptions',
|
|
3370
|
+
accountType: 'expenses',
|
|
3371
|
+
accountSubType: undefined,
|
|
3372
|
+
last4Digits: undefined,
|
|
3373
|
+
logo: undefined,
|
|
3374
|
+
coaId: undefined,
|
|
3375
|
+
accountDescription: '',
|
|
3376
|
+
qboId: '10',
|
|
3377
|
+
labels: [],
|
|
3378
|
+
tax1099Config: undefined,
|
|
3379
|
+
},
|
|
3380
|
+
{
|
|
3381
|
+
accountId: 'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042',
|
|
3382
|
+
accountName: 'Disposal Fees',
|
|
3383
|
+
accountType: 'expenses',
|
|
3384
|
+
accountSubType: undefined,
|
|
3385
|
+
last4Digits: undefined,
|
|
3386
|
+
logo: undefined,
|
|
3387
|
+
coaId: undefined,
|
|
3388
|
+
accountDescription: '',
|
|
3389
|
+
qboId: '28',
|
|
3390
|
+
labels: [],
|
|
3391
|
+
tax1099Config: undefined,
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
accountId: 'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
3395
|
+
accountName: 'Decks and Patios',
|
|
3396
|
+
accountType: 'expenses',
|
|
3397
|
+
accountSubType: undefined,
|
|
3398
|
+
last4Digits: undefined,
|
|
3399
|
+
logo: undefined,
|
|
3400
|
+
coaId: undefined,
|
|
3401
|
+
accountDescription: '',
|
|
3402
|
+
qboId: '64',
|
|
3403
|
+
labels: [],
|
|
3404
|
+
tax1099Config: undefined,
|
|
3405
|
+
},
|
|
3406
|
+
{
|
|
3407
|
+
accountId: 'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
3408
|
+
accountName: 'Cost of Labor',
|
|
3409
|
+
accountType: 'expenses',
|
|
3410
|
+
accountSubType: undefined,
|
|
3411
|
+
last4Digits: undefined,
|
|
3412
|
+
logo: undefined,
|
|
3413
|
+
coaId: undefined,
|
|
3414
|
+
accountDescription: '',
|
|
3415
|
+
qboId: '59',
|
|
3416
|
+
labels: [],
|
|
3417
|
+
tax1099Config: undefined,
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
accountId: 'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
3421
|
+
accountName: 'Computer Repairs',
|
|
3422
|
+
accountType: 'expenses',
|
|
3423
|
+
accountSubType: undefined,
|
|
3424
|
+
last4Digits: undefined,
|
|
3425
|
+
logo: undefined,
|
|
3426
|
+
coaId: undefined,
|
|
3427
|
+
accountDescription: '',
|
|
3428
|
+
qboId: '74',
|
|
3429
|
+
labels: [],
|
|
3430
|
+
tax1099Config: undefined,
|
|
3431
|
+
},
|
|
3432
|
+
{
|
|
3433
|
+
accountId: 'account_041cf709-4537-4394-994f-ec3c64bbc877',
|
|
3434
|
+
accountName: 'Commissions & fees',
|
|
3435
|
+
accountType: 'expenses',
|
|
3436
|
+
accountSubType: undefined,
|
|
3437
|
+
last4Digits: undefined,
|
|
3438
|
+
logo: undefined,
|
|
3439
|
+
coaId: undefined,
|
|
3440
|
+
accountDescription: '',
|
|
3441
|
+
qboId: '9',
|
|
3442
|
+
labels: [],
|
|
3443
|
+
tax1099Config: undefined,
|
|
3444
|
+
},
|
|
3445
|
+
{
|
|
3446
|
+
accountId: 'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
3447
|
+
accountName: 'Building Repairs',
|
|
3448
|
+
accountType: 'expenses',
|
|
3449
|
+
accountSubType: undefined,
|
|
3450
|
+
last4Digits: undefined,
|
|
3451
|
+
logo: undefined,
|
|
3452
|
+
coaId: undefined,
|
|
3453
|
+
accountDescription: '',
|
|
3454
|
+
qboId: '73',
|
|
3455
|
+
labels: [],
|
|
3456
|
+
tax1099Config: undefined,
|
|
3457
|
+
},
|
|
3458
|
+
{
|
|
3459
|
+
accountId: 'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
3460
|
+
accountName: 'Bookkeeper',
|
|
3461
|
+
accountType: 'expenses',
|
|
3462
|
+
accountSubType: undefined,
|
|
3463
|
+
last4Digits: undefined,
|
|
3464
|
+
logo: undefined,
|
|
3465
|
+
coaId: undefined,
|
|
3466
|
+
accountDescription: '',
|
|
3467
|
+
qboId: '70',
|
|
3468
|
+
labels: [],
|
|
3469
|
+
tax1099Config: undefined,
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
accountId: 'account_d8a660ac-158c-4556-b92f-020d3afe0e34',
|
|
3473
|
+
accountName: 'Bank Charges',
|
|
3474
|
+
accountType: 'expenses',
|
|
3475
|
+
accountSubType: undefined,
|
|
3476
|
+
last4Digits: undefined,
|
|
3477
|
+
logo: undefined,
|
|
3478
|
+
coaId: undefined,
|
|
3479
|
+
accountDescription: '',
|
|
3480
|
+
qboId: '8',
|
|
3481
|
+
labels: [],
|
|
3482
|
+
tax1099Config: undefined,
|
|
3483
|
+
},
|
|
3484
|
+
{
|
|
3485
|
+
accountId: 'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa',
|
|
3486
|
+
accountName: 'Automobile',
|
|
3487
|
+
accountType: 'expenses',
|
|
3488
|
+
accountSubType: undefined,
|
|
3489
|
+
last4Digits: undefined,
|
|
3490
|
+
logo: undefined,
|
|
3491
|
+
coaId: undefined,
|
|
3492
|
+
accountDescription: '',
|
|
3493
|
+
qboId: '55',
|
|
3494
|
+
labels: [],
|
|
3495
|
+
tax1099Config: undefined,
|
|
3496
|
+
},
|
|
3497
|
+
{
|
|
3498
|
+
accountId: 'account_10053408-c131-468b-a1ab-2c289d84901c',
|
|
3499
|
+
accountName: 'Advertising',
|
|
3500
|
+
accountType: 'expenses',
|
|
3501
|
+
accountSubType: undefined,
|
|
3502
|
+
last4Digits: undefined,
|
|
3503
|
+
logo: undefined,
|
|
3504
|
+
coaId: undefined,
|
|
3505
|
+
accountDescription: '',
|
|
3506
|
+
qboId: '7',
|
|
3507
|
+
labels: [],
|
|
3508
|
+
tax1099Config: undefined,
|
|
3509
|
+
},
|
|
3510
|
+
{
|
|
3511
|
+
accountId: 'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
3512
|
+
accountName: 'Accounting',
|
|
3513
|
+
accountType: 'expenses',
|
|
3514
|
+
accountSubType: undefined,
|
|
3515
|
+
last4Digits: undefined,
|
|
3516
|
+
logo: undefined,
|
|
3517
|
+
coaId: undefined,
|
|
3518
|
+
accountDescription: '',
|
|
3519
|
+
qboId: '69',
|
|
3520
|
+
labels: [],
|
|
3521
|
+
tax1099Config: undefined,
|
|
3522
|
+
},
|
|
3523
|
+
],
|
|
3524
|
+
prepaidExpensesAccountList: [],
|
|
3525
|
+
fixedAssetsAccountList: [],
|
|
3526
|
+
accruedExpensesAccountList: [],
|
|
3527
|
+
billPayAccountHierarchy: [],
|
|
3528
|
+
reimbursementsAccountHierarchy: [],
|
|
3529
|
+
prepaidExpensesAccountHierarchy: [],
|
|
3530
|
+
fixedAssetsAccountHierarchy: [],
|
|
3531
|
+
accruedExpensesAccountHierarchy: [],
|
|
3532
|
+
bankAccounts1099FilingAccountList: [],
|
|
3533
|
+
bankAccounts1099FilingAccountHierarchy: [],
|
|
3534
|
+
expenseAccounts1099FilingAccountList: [],
|
|
3535
|
+
expenseAccounts1099FilingAccountHierarchy: [],
|
|
3536
|
+
expenseTypeList: [],
|
|
3537
|
+
expense1099TypeList: [],
|
|
3538
|
+
boxTypesList: {
|
|
3539
|
+
int: [],
|
|
3540
|
+
misc: [],
|
|
3541
|
+
nec: [],
|
|
3542
|
+
},
|
|
3543
|
+
};
|
|
3544
|
+
exports.accountMappingViewMock = accountMappingViewMock;
|
|
3545
|
+
const accountStateForMapping = {
|
|
3546
|
+
accountsByKey: {
|
|
3547
|
+
'account_06cecff6-33b8-4677-b586-9663dcacd944-account_list_by_type': {
|
|
3548
|
+
accountId: 'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
3549
|
+
accountName: 'Uncategorized Income',
|
|
3550
|
+
accountType: 'income',
|
|
3551
|
+
accountDescription: '',
|
|
3552
|
+
qboId: '30',
|
|
3553
|
+
coaId: '49999',
|
|
3554
|
+
labels: [],
|
|
3555
|
+
key: 'account_06cecff6-33b8-4677-b586-9663dcacd944-account_list_by_type',
|
|
3556
|
+
},
|
|
3557
|
+
'account_b8e28eec-5694-4707-8354-2b04037be7d3-account_list_by_type': {
|
|
3558
|
+
accountId: 'account_b8e28eec-5694-4707-8354-2b04037be7d3',
|
|
3559
|
+
accountName: 'Unapplied Cash Payment Income',
|
|
3560
|
+
accountType: 'income',
|
|
3561
|
+
accountDescription: '',
|
|
3562
|
+
qboId: '87',
|
|
3563
|
+
labels: [],
|
|
3564
|
+
key: 'account_b8e28eec-5694-4707-8354-2b04037be7d3-account_list_by_type',
|
|
3565
|
+
},
|
|
3566
|
+
'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d-account_list_by_type': {
|
|
3567
|
+
accountId: 'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d',
|
|
3568
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
3569
|
+
accountType: 'income',
|
|
3570
|
+
accountDescription: '',
|
|
3571
|
+
qboId: '50',
|
|
3572
|
+
labels: [],
|
|
3573
|
+
key: 'account_3110b2c1-6985-4db6-a1f0-399b6f5e435d-account_list_by_type',
|
|
3574
|
+
},
|
|
3575
|
+
'account_38a7fa62-3d05-480e-a4cd-4d50c52c138f-account_list_by_type': {
|
|
3576
|
+
accountId: 'account_38a7fa62-3d05-480e-a4cd-4d50c52c138f',
|
|
3577
|
+
accountName: 'Services',
|
|
3578
|
+
accountType: 'income',
|
|
3579
|
+
accountDescription: '',
|
|
3580
|
+
qboId: '1',
|
|
3581
|
+
labels: [],
|
|
3582
|
+
key: 'account_38a7fa62-3d05-480e-a4cd-4d50c52c138f-account_list_by_type',
|
|
3583
|
+
},
|
|
3584
|
+
'account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381-account_list_by_type': {
|
|
3585
|
+
accountId: 'account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381',
|
|
3586
|
+
accountName: 'Sales of Product Income',
|
|
3587
|
+
accountType: 'income',
|
|
3588
|
+
accountDescription: '',
|
|
3589
|
+
qboId: '79',
|
|
3590
|
+
labels: [],
|
|
3591
|
+
key: 'account_8e0e960d-64b1-4f16-8ada-f4c9c88e3381-account_list_by_type',
|
|
3592
|
+
},
|
|
3593
|
+
'account_eb71b745-07c3-4927-b183-6b47df718963-account_list_by_type': {
|
|
3594
|
+
accountId: 'account_eb71b745-07c3-4927-b183-6b47df718963',
|
|
3595
|
+
accountName: 'Refunds-Allowances',
|
|
3596
|
+
accountType: 'income',
|
|
3597
|
+
accountDescription: '',
|
|
3598
|
+
qboId: '6',
|
|
3599
|
+
labels: [],
|
|
3600
|
+
key: 'account_eb71b745-07c3-4927-b183-6b47df718963-account_list_by_type',
|
|
3601
|
+
},
|
|
3602
|
+
'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb-account_list_by_type': {
|
|
3603
|
+
accountId: 'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb',
|
|
3604
|
+
accountName: 'Plants and Soil',
|
|
3605
|
+
accountType: 'income',
|
|
3606
|
+
accountDescription: '',
|
|
3607
|
+
qboId: '49',
|
|
3608
|
+
labels: [],
|
|
3609
|
+
key: 'account_57d549b5-a08e-4652-b3bf-e68d9915c4bb-account_list_by_type',
|
|
3610
|
+
},
|
|
3611
|
+
'account_5ff04548-d012-4487-bfa4-bd1396dfc11f-account_list_by_type': {
|
|
3612
|
+
accountId: 'account_5ff04548-d012-4487-bfa4-bd1396dfc11f',
|
|
3613
|
+
accountName: 'Pest Control Services',
|
|
3614
|
+
accountType: 'income',
|
|
3615
|
+
accountDescription: '',
|
|
3616
|
+
qboId: '54',
|
|
3617
|
+
labels: [],
|
|
3618
|
+
key: 'account_5ff04548-d012-4487-bfa4-bd1396dfc11f-account_list_by_type',
|
|
3619
|
+
},
|
|
3620
|
+
'account_6ec41085-0455-40bd-9d07-c10209d5c8ce-account_list_by_type': {
|
|
3621
|
+
accountId: 'account_6ec41085-0455-40bd-9d07-c10209d5c8ce',
|
|
3622
|
+
accountName: 'Other Income',
|
|
3623
|
+
accountType: 'income',
|
|
3624
|
+
accountDescription: '',
|
|
3625
|
+
qboId: '83',
|
|
3626
|
+
labels: [],
|
|
3627
|
+
key: 'account_6ec41085-0455-40bd-9d07-c10209d5c8ce-account_list_by_type',
|
|
3628
|
+
},
|
|
3629
|
+
'account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1-account_list_by_type': {
|
|
3630
|
+
accountId: 'account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1',
|
|
3631
|
+
accountName: 'Non-Profit Income random',
|
|
3632
|
+
accountType: 'income',
|
|
3633
|
+
accountDescription: '',
|
|
3634
|
+
qboId: '99',
|
|
3635
|
+
labels: [],
|
|
3636
|
+
key: 'account_b3d8bd27-2c0b-4866-b0a6-f0c8274099e1-account_list_by_type',
|
|
3637
|
+
},
|
|
3638
|
+
'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa-account_list_by_type': {
|
|
3639
|
+
accountId: 'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa',
|
|
3640
|
+
accountName: 'Maintenance and Repair',
|
|
3641
|
+
accountType: 'income',
|
|
3642
|
+
accountDescription: '',
|
|
3643
|
+
qboId: '53',
|
|
3644
|
+
labels: [],
|
|
3645
|
+
key: 'account_47da86c4-86b7-4d57-b8a8-1c202df9b8fa-account_list_by_type',
|
|
3646
|
+
},
|
|
3647
|
+
'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1-account_list_by_type': {
|
|
3648
|
+
accountId: 'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1',
|
|
3649
|
+
accountName: 'Landscaping Services',
|
|
3650
|
+
accountType: 'income',
|
|
3651
|
+
accountDescription: '',
|
|
3652
|
+
qboId: '45',
|
|
3653
|
+
labels: [],
|
|
3654
|
+
key: 'account_586047ac-1ad1-4ce2-962b-7feb1c0fc8f1-account_list_by_type',
|
|
3655
|
+
},
|
|
3656
|
+
'account_a5250679-dd16-4e89-89ec-15c49ad91751-account_list_by_type': {
|
|
3657
|
+
accountId: 'account_a5250679-dd16-4e89-89ec-15c49ad91751',
|
|
3658
|
+
accountName: 'Labor',
|
|
3659
|
+
accountType: 'income',
|
|
3660
|
+
accountDescription: '',
|
|
3661
|
+
qboId: '51',
|
|
3662
|
+
labels: [],
|
|
3663
|
+
key: 'account_a5250679-dd16-4e89-89ec-15c49ad91751-account_list_by_type',
|
|
3664
|
+
},
|
|
3665
|
+
'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc-account_list_by_type': {
|
|
3666
|
+
accountId: 'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc',
|
|
3667
|
+
accountName: 'Job Materials',
|
|
3668
|
+
accountType: 'income',
|
|
3669
|
+
accountDescription: '',
|
|
3670
|
+
qboId: '46',
|
|
3671
|
+
labels: [],
|
|
3672
|
+
key: 'account_3cb2667d-c4d4-4e77-82b8-1ce5ad7764bc-account_list_by_type',
|
|
3673
|
+
},
|
|
3674
|
+
'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce-account_list_by_type': {
|
|
3675
|
+
accountId: 'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce',
|
|
3676
|
+
accountName: 'Installation',
|
|
3677
|
+
accountType: 'income',
|
|
3678
|
+
accountDescription: '',
|
|
3679
|
+
qboId: '52',
|
|
3680
|
+
labels: [],
|
|
3681
|
+
key: 'account_0bd1d8ec-876e-48d6-aed2-b45f3009c3ce-account_list_by_type',
|
|
3682
|
+
},
|
|
3683
|
+
'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb-account_list_by_type': {
|
|
3684
|
+
accountId: 'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb',
|
|
3685
|
+
accountName: 'Fountains and Garden Lighting',
|
|
3686
|
+
accountType: 'income',
|
|
3687
|
+
accountDescription: '',
|
|
3688
|
+
qboId: '48',
|
|
3689
|
+
labels: [],
|
|
3690
|
+
key: 'account_88a3fc1a-fd1b-495c-b1a8-69c0f2d306bb-account_list_by_type',
|
|
3691
|
+
},
|
|
3692
|
+
'account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a-account_list_by_type': {
|
|
3693
|
+
accountId: 'account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a',
|
|
3694
|
+
accountName: 'Fees Billed',
|
|
3695
|
+
accountType: 'income',
|
|
3696
|
+
accountDescription: '',
|
|
3697
|
+
qboId: '5',
|
|
3698
|
+
labels: [],
|
|
3699
|
+
key: 'account_477a9b4a-0605-4c5d-b540-3171f2fb9e5a-account_list_by_type',
|
|
3700
|
+
},
|
|
3701
|
+
'account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2-account_list_by_type': {
|
|
3702
|
+
accountId: 'account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2',
|
|
3703
|
+
accountName: 'Discounts given',
|
|
3704
|
+
accountType: 'income',
|
|
3705
|
+
accountDescription: '',
|
|
3706
|
+
qboId: '86',
|
|
3707
|
+
labels: [],
|
|
3708
|
+
key: 'account_a91daab9-ffb1-4267-b9a5-09e7ac3126f2-account_list_by_type',
|
|
3709
|
+
},
|
|
3710
|
+
'account_293e8b54-55ff-4a33-8671-258f892f581a-account_list_by_type': {
|
|
3711
|
+
accountId: 'account_293e8b54-55ff-4a33-8671-258f892f581a',
|
|
3712
|
+
accountName: 'Design income',
|
|
3713
|
+
accountType: 'income',
|
|
3714
|
+
accountDescription: '',
|
|
3715
|
+
qboId: '82',
|
|
3716
|
+
labels: [],
|
|
3717
|
+
key: 'account_293e8b54-55ff-4a33-8671-258f892f581a-account_list_by_type',
|
|
3718
|
+
},
|
|
3719
|
+
'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d-account_list_by_type': {
|
|
3720
|
+
accountId: 'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d',
|
|
3721
|
+
accountName: 'Decks and Patios',
|
|
3722
|
+
accountType: 'income',
|
|
3723
|
+
accountDescription: '',
|
|
3724
|
+
qboId: '47',
|
|
3725
|
+
labels: [],
|
|
3726
|
+
key: 'account_f2d6b33f-dd63-49fe-a275-43c2422d7a6d-account_list_by_type',
|
|
3727
|
+
},
|
|
3728
|
+
'account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b-account_list_by_type': {
|
|
3729
|
+
accountId: 'account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b',
|
|
3730
|
+
accountName: 'Billable Expense Income',
|
|
3731
|
+
accountType: 'income',
|
|
3732
|
+
accountDescription: '',
|
|
3733
|
+
qboId: '85',
|
|
3734
|
+
labels: [],
|
|
3735
|
+
key: 'account_ea610f1d-ac59-4136-9e2a-690a0bcf5a8b-account_list_by_type',
|
|
3736
|
+
},
|
|
3737
|
+
'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b-account_list_by_type': {
|
|
3738
|
+
accountId: 'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b',
|
|
3739
|
+
accountName: 'Workers Compensation',
|
|
3740
|
+
accountType: 'expenses',
|
|
3741
|
+
accountDescription: '',
|
|
3742
|
+
qboId: '57',
|
|
3743
|
+
labels: [],
|
|
3744
|
+
key: 'account_1ad62cc1-272d-456d-9d73-60d88f4ed34b-account_list_by_type',
|
|
3745
|
+
},
|
|
3746
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f-account_list_by_type': {
|
|
3747
|
+
accountId: 'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
3748
|
+
accountName: 'Utilities',
|
|
3749
|
+
accountType: 'expenses',
|
|
3750
|
+
accountDescription: '',
|
|
3751
|
+
qboId: '24',
|
|
3752
|
+
labels: [],
|
|
3753
|
+
key: 'account_1ecee77e-e382-4ab0-b182-70a33103039f-account_list_by_type',
|
|
3754
|
+
},
|
|
3755
|
+
'account_37a82313-fc44-44f0-b3bb-f09434284e58-account_list_by_type': {
|
|
3756
|
+
accountId: 'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
3757
|
+
accountName: 'Uncategorized Expense',
|
|
3758
|
+
accountType: 'expenses',
|
|
3759
|
+
accountDescription: '',
|
|
3760
|
+
qboId: '31',
|
|
3761
|
+
coaId: '69999',
|
|
3762
|
+
labels: ['uncategorized_income'],
|
|
3763
|
+
key: 'account_37a82313-fc44-44f0-b3bb-f09434284e58-account_list_by_type',
|
|
3764
|
+
},
|
|
3765
|
+
'account_f18000a3-d265-41dc-a16c-f63b250b64b9-account_list_by_type': {
|
|
3766
|
+
accountId: 'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
3767
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
3768
|
+
accountType: 'expenses',
|
|
3769
|
+
accountDescription: '',
|
|
3770
|
+
qboId: '88',
|
|
3771
|
+
labels: [],
|
|
3772
|
+
key: 'account_f18000a3-d265-41dc-a16c-f63b250b64b9-account_list_by_type',
|
|
3773
|
+
},
|
|
3774
|
+
'account_d4e64547-3541-4b77-8273-0c0f1e3f195c-account_list_by_type': {
|
|
3775
|
+
accountId: 'account_d4e64547-3541-4b77-8273-0c0f1e3f195c',
|
|
3776
|
+
accountName: 'Travel Meals',
|
|
3777
|
+
accountType: 'expenses',
|
|
3778
|
+
accountDescription: '',
|
|
3779
|
+
qboId: '23',
|
|
3780
|
+
labels: [],
|
|
3781
|
+
key: 'account_d4e64547-3541-4b77-8273-0c0f1e3f195c-account_list_by_type',
|
|
3782
|
+
},
|
|
3783
|
+
'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a-account_list_by_type': {
|
|
3784
|
+
accountId: 'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a',
|
|
3785
|
+
accountName: 'Travel',
|
|
3786
|
+
accountType: 'expenses',
|
|
3787
|
+
accountDescription: '',
|
|
3788
|
+
qboId: '22',
|
|
3789
|
+
coaId: '62200',
|
|
3790
|
+
labels: [],
|
|
3791
|
+
key: 'account_11bc3022-c5df-43aa-ab29-e450ddf9b75a-account_list_by_type',
|
|
3792
|
+
},
|
|
3793
|
+
'account_98706fbe-d29f-4cb2-a994-82fb04383104-account_list_by_type': {
|
|
3794
|
+
accountId: 'account_98706fbe-d29f-4cb2-a994-82fb04383104',
|
|
3795
|
+
accountName: 'Telephone',
|
|
3796
|
+
accountType: 'expenses',
|
|
3797
|
+
accountDescription: '',
|
|
3798
|
+
qboId: '77',
|
|
3799
|
+
labels: [],
|
|
3800
|
+
key: 'account_98706fbe-d29f-4cb2-a994-82fb04383104-account_list_by_type',
|
|
3801
|
+
},
|
|
3802
|
+
'account_b21f9130-2c8c-4a6e-959e-a0cca0933092-account_list_by_type': {
|
|
3803
|
+
accountId: 'account_b21f9130-2c8c-4a6e-959e-a0cca0933092',
|
|
3804
|
+
accountName: 'Taxes & Licenses',
|
|
3805
|
+
accountType: 'expenses',
|
|
3806
|
+
accountDescription: '',
|
|
3807
|
+
qboId: '21',
|
|
3808
|
+
labels: [],
|
|
3809
|
+
key: 'account_b21f9130-2c8c-4a6e-959e-a0cca0933092-account_list_by_type',
|
|
3810
|
+
},
|
|
3811
|
+
'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314-account_list_by_type': {
|
|
3812
|
+
accountId: 'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314',
|
|
3813
|
+
accountName: 'Supplies',
|
|
3814
|
+
accountType: 'expenses',
|
|
3815
|
+
accountDescription: '',
|
|
3816
|
+
qboId: '20',
|
|
3817
|
+
labels: [],
|
|
3818
|
+
key: 'account_cae16d28-3bfd-40a2-b2d0-a9f76e419314-account_list_by_type',
|
|
3819
|
+
},
|
|
3820
|
+
'account_cf920797-ff3d-499c-9c4d-5cbb321146ca-account_list_by_type': {
|
|
3821
|
+
accountId: 'account_cf920797-ff3d-499c-9c4d-5cbb321146ca',
|
|
3822
|
+
accountName: 'Stationery & Printing',
|
|
3823
|
+
accountType: 'expenses',
|
|
3824
|
+
accountDescription: '',
|
|
3825
|
+
qboId: '19',
|
|
3826
|
+
labels: [],
|
|
3827
|
+
key: 'account_cf920797-ff3d-499c-9c4d-5cbb321146ca-account_list_by_type',
|
|
3828
|
+
},
|
|
3829
|
+
'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4-account_list_by_type': {
|
|
3830
|
+
accountId: 'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4',
|
|
3831
|
+
accountName: 'Sprinklers and Drip Systems',
|
|
3832
|
+
accountType: 'expenses',
|
|
3833
|
+
accountDescription: '',
|
|
3834
|
+
qboId: '67',
|
|
3835
|
+
labels: [],
|
|
3836
|
+
key: 'account_f39a3d37-8f58-4520-8bf2-e934b2e7e0e4-account_list_by_type',
|
|
3837
|
+
},
|
|
3838
|
+
'account_686005dd-6835-4781-a4a9-83b3c74b2e4d-account_list_by_type': {
|
|
3839
|
+
accountId: 'account_686005dd-6835-4781-a4a9-83b3c74b2e4d',
|
|
3840
|
+
accountName: 'Salaries and Benefits',
|
|
3841
|
+
accountType: 'expenses',
|
|
3842
|
+
accountDescription: '',
|
|
3843
|
+
qboId: '91',
|
|
3844
|
+
labels: [],
|
|
3845
|
+
key: 'account_686005dd-6835-4781-a4a9-83b3c74b2e4d-account_list_by_type',
|
|
3846
|
+
},
|
|
3847
|
+
'account_3d4568f6-b288-4d70-bda5-6813cc8177fa-account_list_by_type': {
|
|
3848
|
+
accountId: 'account_3d4568f6-b288-4d70-bda5-6813cc8177fa',
|
|
3849
|
+
accountName: 'Rent or Lease',
|
|
3850
|
+
accountType: 'expenses',
|
|
3851
|
+
accountDescription: '',
|
|
3852
|
+
qboId: '17',
|
|
3853
|
+
labels: [],
|
|
3854
|
+
key: 'account_3d4568f6-b288-4d70-bda5-6813cc8177fa-account_list_by_type',
|
|
3855
|
+
},
|
|
3856
|
+
'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e-account_list_by_type': {
|
|
3857
|
+
accountId: 'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e',
|
|
3858
|
+
accountName: 'Purchases',
|
|
3859
|
+
accountType: 'expenses',
|
|
3860
|
+
accountDescription: '',
|
|
3861
|
+
qboId: '78',
|
|
3862
|
+
labels: [],
|
|
3863
|
+
key: 'account_ffa8417c-d4f4-4cb7-82be-f5ec4804a68e-account_list_by_type',
|
|
3864
|
+
},
|
|
3865
|
+
'account_260ccba4-1582-4757-9880-40d2445e5784-account_list_by_type': {
|
|
3866
|
+
accountId: 'account_260ccba4-1582-4757-9880-40d2445e5784',
|
|
3867
|
+
accountName: 'Promotional',
|
|
3868
|
+
accountType: 'expenses',
|
|
3869
|
+
accountDescription: '',
|
|
3870
|
+
qboId: '16',
|
|
3871
|
+
labels: [],
|
|
3872
|
+
key: 'account_260ccba4-1582-4757-9880-40d2445e5784-account_list_by_type',
|
|
3873
|
+
},
|
|
3874
|
+
'account_c0a764dc-1064-4be2-85bb-f0f474d1679c-account_list_by_type': {
|
|
3875
|
+
accountId: 'account_c0a764dc-1064-4be2-85bb-f0f474d1679c',
|
|
3876
|
+
accountName: 'Plants and Soil',
|
|
3877
|
+
accountType: 'expenses',
|
|
3878
|
+
accountDescription: '',
|
|
3879
|
+
qboId: '66',
|
|
3880
|
+
labels: [],
|
|
3881
|
+
key: 'account_c0a764dc-1064-4be2-85bb-f0f474d1679c-account_list_by_type',
|
|
3882
|
+
},
|
|
3883
|
+
'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a-account_list_by_type': {
|
|
3884
|
+
accountId: 'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a',
|
|
3885
|
+
accountName: 'Permits',
|
|
3886
|
+
accountType: 'expenses',
|
|
3887
|
+
accountDescription: '',
|
|
3888
|
+
qboId: '68',
|
|
3889
|
+
labels: [],
|
|
3890
|
+
key: 'account_a9b96b97-2827-4f24-863d-1ab7a0cf272a-account_list_by_type',
|
|
3891
|
+
},
|
|
3892
|
+
'account_e88d8637-ca35-41aa-b909-dbcc37851eff-account_list_by_type': {
|
|
3893
|
+
accountId: 'account_e88d8637-ca35-41aa-b909-dbcc37851eff',
|
|
3894
|
+
accountName: 'Payroll Expenses',
|
|
3895
|
+
accountType: 'expenses',
|
|
3896
|
+
accountDescription: '',
|
|
3897
|
+
qboId: '113',
|
|
3898
|
+
coaId: '64300',
|
|
3899
|
+
labels: [],
|
|
3900
|
+
key: 'account_e88d8637-ca35-41aa-b909-dbcc37851eff-account_list_by_type',
|
|
3901
|
+
},
|
|
3902
|
+
'account_5e8f5ff6-952b-417f-9315-e23552ccd780-account_list_by_type': {
|
|
3903
|
+
accountId: 'account_5e8f5ff6-952b-417f-9315-e23552ccd780',
|
|
3904
|
+
accountName: 'Office Expenses',
|
|
3905
|
+
accountType: 'expenses',
|
|
3906
|
+
accountDescription: '',
|
|
3907
|
+
qboId: '15',
|
|
3908
|
+
coaId: '64100',
|
|
3909
|
+
labels: [],
|
|
3910
|
+
key: 'account_5e8f5ff6-952b-417f-9315-e23552ccd780-account_list_by_type',
|
|
3911
|
+
},
|
|
3912
|
+
'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7-account_list_by_type': {
|
|
3913
|
+
accountId: 'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7',
|
|
3914
|
+
accountName: 'Meals and Entertainment',
|
|
3915
|
+
accountType: 'expenses',
|
|
3916
|
+
accountDescription: '',
|
|
3917
|
+
qboId: '13',
|
|
3918
|
+
labels: [],
|
|
3919
|
+
key: 'account_5667e789-c321-4b8c-a5b0-6f384c5a58d7-account_list_by_type',
|
|
3920
|
+
},
|
|
3921
|
+
'account_ee721342-692e-46ed-9c78-363e94654a6d-account_list_by_type': {
|
|
3922
|
+
accountId: 'account_ee721342-692e-46ed-9c78-363e94654a6d',
|
|
3923
|
+
accountName: 'Maintenance and Repairs',
|
|
3924
|
+
accountType: 'expenses',
|
|
3925
|
+
accountDescription: '',
|
|
3926
|
+
qboId: '61',
|
|
3927
|
+
labels: [],
|
|
3928
|
+
key: 'account_ee721342-692e-46ed-9c78-363e94654a6d-account_list_by_type',
|
|
3929
|
+
},
|
|
3930
|
+
'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336-account_list_by_type': {
|
|
3931
|
+
accountId: 'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336',
|
|
3932
|
+
accountName: 'Maintenance and Repair',
|
|
3933
|
+
accountType: 'expenses',
|
|
3934
|
+
accountDescription: '',
|
|
3935
|
+
qboId: '72',
|
|
3936
|
+
labels: [],
|
|
3937
|
+
key: 'account_be9dd00d-70e6-4c5b-96d2-925b5ed42336-account_list_by_type',
|
|
3938
|
+
},
|
|
3939
|
+
'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d-account_list_by_type': {
|
|
3940
|
+
accountId: 'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d',
|
|
3941
|
+
accountName: 'Legal & Professional Fees',
|
|
3942
|
+
accountType: 'expenses',
|
|
3943
|
+
accountDescription: '',
|
|
3944
|
+
qboId: '12',
|
|
3945
|
+
labels: [],
|
|
3946
|
+
key: 'account_905c8ca8-b84a-4cf9-b18d-e9eec81bec4d-account_list_by_type',
|
|
3947
|
+
},
|
|
3948
|
+
'account_a16a92ff-0510-47ea-aafc-4e73557aec1f-account_list_by_type': {
|
|
3949
|
+
accountId: 'account_a16a92ff-0510-47ea-aafc-4e73557aec1f',
|
|
3950
|
+
accountName: 'Lawyer',
|
|
3951
|
+
accountType: 'expenses',
|
|
3952
|
+
accountDescription: '',
|
|
3953
|
+
qboId: '71',
|
|
3954
|
+
labels: [],
|
|
3955
|
+
key: 'account_a16a92ff-0510-47ea-aafc-4e73557aec1f-account_list_by_type',
|
|
3956
|
+
},
|
|
3957
|
+
'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807-account_list_by_type': {
|
|
3958
|
+
accountId: 'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807',
|
|
3959
|
+
accountName: 'Job Materials',
|
|
3960
|
+
accountType: 'expenses',
|
|
3961
|
+
accountDescription: '',
|
|
3962
|
+
qboId: '63',
|
|
3963
|
+
labels: [],
|
|
3964
|
+
key: 'account_dfac8d27-1a1b-43b5-b4e1-41e72b2ed807-account_list_by_type',
|
|
3965
|
+
},
|
|
3966
|
+
'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9-account_list_by_type': {
|
|
3967
|
+
accountId: 'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9',
|
|
3968
|
+
accountName: 'Job Expenses',
|
|
3969
|
+
accountType: 'expenses',
|
|
3970
|
+
accountDescription: '',
|
|
3971
|
+
qboId: '58',
|
|
3972
|
+
labels: [],
|
|
3973
|
+
key: 'account_a1843563-60a2-4e5c-b5a0-88bd2f7486e9-account_list_by_type',
|
|
3974
|
+
},
|
|
3975
|
+
'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8-account_list_by_type': {
|
|
3976
|
+
accountId: 'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8',
|
|
3977
|
+
accountName: 'Insurance',
|
|
3978
|
+
accountType: 'expenses',
|
|
3979
|
+
accountDescription: '',
|
|
3980
|
+
qboId: '11',
|
|
3981
|
+
labels: [],
|
|
3982
|
+
key: 'account_4fc0dd1a-dd04-4352-a7f3-59fbd5f731a8-account_list_by_type',
|
|
3983
|
+
},
|
|
3984
|
+
'account_505a2721-5ed0-4700-9638-954268e31fae-account_list_by_type': {
|
|
3985
|
+
accountId: 'account_505a2721-5ed0-4700-9638-954268e31fae',
|
|
3986
|
+
accountName: 'Installation',
|
|
3987
|
+
accountType: 'expenses',
|
|
3988
|
+
accountDescription: '',
|
|
3989
|
+
qboId: '60',
|
|
3990
|
+
labels: [],
|
|
3991
|
+
key: 'account_505a2721-5ed0-4700-9638-954268e31fae-account_list_by_type',
|
|
3992
|
+
},
|
|
3993
|
+
'account_57244d1e-8908-42d5-bff7-4cc71a8419e7-account_list_by_type': {
|
|
3994
|
+
accountId: 'account_57244d1e-8908-42d5-bff7-4cc71a8419e7',
|
|
3995
|
+
accountName: 'Gas and Electric',
|
|
3996
|
+
accountType: 'expenses',
|
|
3997
|
+
accountDescription: '',
|
|
3998
|
+
qboId: '76',
|
|
3999
|
+
labels: [],
|
|
4000
|
+
key: 'account_57244d1e-8908-42d5-bff7-4cc71a8419e7-account_list_by_type',
|
|
4001
|
+
},
|
|
4002
|
+
'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3-account_list_by_type': {
|
|
4003
|
+
accountId: 'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3',
|
|
4004
|
+
accountName: 'Fuel',
|
|
4005
|
+
accountType: 'expenses',
|
|
4006
|
+
accountDescription: '',
|
|
4007
|
+
qboId: '56',
|
|
4008
|
+
labels: [],
|
|
4009
|
+
key: 'account_714b8cfb-9dc2-4c63-b464-7a6958f2e7e3-account_list_by_type',
|
|
4010
|
+
},
|
|
4011
|
+
'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a-account_list_by_type': {
|
|
4012
|
+
accountId: 'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a',
|
|
4013
|
+
accountName: 'Fountain and Garden Lighting',
|
|
4014
|
+
accountType: 'expenses',
|
|
4015
|
+
accountDescription: '',
|
|
4016
|
+
qboId: '65',
|
|
4017
|
+
labels: [],
|
|
4018
|
+
key: 'account_da7f3237-19b9-4067-b7c2-6fcdd30bb88a-account_list_by_type',
|
|
4019
|
+
},
|
|
4020
|
+
'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad-account_list_by_type': {
|
|
4021
|
+
accountId: 'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad',
|
|
4022
|
+
accountName: 'Equipment Repairs',
|
|
4023
|
+
accountType: 'expenses',
|
|
4024
|
+
accountDescription: '',
|
|
4025
|
+
qboId: '75',
|
|
4026
|
+
labels: [],
|
|
4027
|
+
key: 'account_fdb8afe7-3efa-46c5-bacb-664959cae1ad-account_list_by_type',
|
|
4028
|
+
},
|
|
4029
|
+
'account_083cb73a-a2fb-4214-b5ba-8d289227ea12-account_list_by_type': {
|
|
4030
|
+
accountId: 'account_083cb73a-a2fb-4214-b5ba-8d289227ea12',
|
|
4031
|
+
accountName: 'Equipment Rental',
|
|
4032
|
+
accountType: 'expenses',
|
|
4033
|
+
accountDescription: '',
|
|
4034
|
+
qboId: '29',
|
|
4035
|
+
labels: [],
|
|
4036
|
+
key: 'account_083cb73a-a2fb-4214-b5ba-8d289227ea12-account_list_by_type',
|
|
4037
|
+
},
|
|
4038
|
+
'account_8995429e-7650-49ed-a7fb-6198b513b84e-account_list_by_type': {
|
|
4039
|
+
accountId: 'account_8995429e-7650-49ed-a7fb-6198b513b84e',
|
|
4040
|
+
accountName: 'Equipment Rental',
|
|
4041
|
+
accountType: 'expenses',
|
|
4042
|
+
accountDescription: '',
|
|
4043
|
+
qboId: '62',
|
|
4044
|
+
labels: [],
|
|
4045
|
+
key: 'account_8995429e-7650-49ed-a7fb-6198b513b84e-account_list_by_type',
|
|
4046
|
+
},
|
|
4047
|
+
'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42-account_list_by_type': {
|
|
4048
|
+
accountId: 'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42',
|
|
4049
|
+
accountName: 'Entertainment test 3',
|
|
4050
|
+
accountType: 'expenses',
|
|
4051
|
+
accountDescription: '',
|
|
4052
|
+
qboId: '97',
|
|
4053
|
+
coaId: '77649',
|
|
4054
|
+
labels: [],
|
|
4055
|
+
key: 'account_46928e6a-c6fd-4b39-8a84-6a4c2454bb42-account_list_by_type',
|
|
4056
|
+
},
|
|
4057
|
+
'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb-account_list_by_type': {
|
|
4058
|
+
accountId: 'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb',
|
|
4059
|
+
accountName: 'Dues & Subscriptions',
|
|
4060
|
+
accountType: 'expenses',
|
|
4061
|
+
accountDescription: '',
|
|
4062
|
+
qboId: '10',
|
|
4063
|
+
labels: [],
|
|
4064
|
+
key: 'account_c5f36c58-0d84-4c42-97f4-26c2db2d9eeb-account_list_by_type',
|
|
4065
|
+
},
|
|
4066
|
+
'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042-account_list_by_type': {
|
|
4067
|
+
accountId: 'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042',
|
|
4068
|
+
accountName: 'Disposal Fees',
|
|
4069
|
+
accountType: 'expenses',
|
|
4070
|
+
accountDescription: '',
|
|
4071
|
+
qboId: '28',
|
|
4072
|
+
labels: [],
|
|
4073
|
+
key: 'account_6fd49fae-c386-4900-b1d3-4d8d8e6c9042-account_list_by_type',
|
|
4074
|
+
},
|
|
4075
|
+
'account_9af910d3-5ac5-4015-834b-77f675e67981-account_list_by_type': {
|
|
4076
|
+
accountId: 'account_9af910d3-5ac5-4015-834b-77f675e67981',
|
|
4077
|
+
accountName: 'Decks and Patios',
|
|
4078
|
+
accountType: 'expenses',
|
|
4079
|
+
accountDescription: '',
|
|
4080
|
+
qboId: '64',
|
|
4081
|
+
labels: [],
|
|
4082
|
+
key: 'account_9af910d3-5ac5-4015-834b-77f675e67981-account_list_by_type',
|
|
4083
|
+
},
|
|
4084
|
+
'account_02c487d1-5a66-463d-95f7-85682e15e99a-account_list_by_type': {
|
|
4085
|
+
accountId: 'account_02c487d1-5a66-463d-95f7-85682e15e99a',
|
|
4086
|
+
accountName: 'Cost of Labor',
|
|
4087
|
+
accountType: 'expenses',
|
|
4088
|
+
accountDescription: '',
|
|
4089
|
+
qboId: '59',
|
|
4090
|
+
labels: [],
|
|
4091
|
+
key: 'account_02c487d1-5a66-463d-95f7-85682e15e99a-account_list_by_type',
|
|
4092
|
+
},
|
|
4093
|
+
'account_610bd68d-3b6b-44df-92fc-24d18f8f095b-account_list_by_type': {
|
|
4094
|
+
accountId: 'account_610bd68d-3b6b-44df-92fc-24d18f8f095b',
|
|
4095
|
+
accountName: 'Computer Repairs',
|
|
4096
|
+
accountType: 'expenses',
|
|
4097
|
+
accountDescription: '',
|
|
4098
|
+
qboId: '74',
|
|
4099
|
+
labels: [],
|
|
4100
|
+
key: 'account_610bd68d-3b6b-44df-92fc-24d18f8f095b-account_list_by_type',
|
|
4101
|
+
},
|
|
4102
|
+
'account_041cf709-4537-4394-994f-ec3c64bbc877-account_list_by_type': {
|
|
4103
|
+
accountId: 'account_041cf709-4537-4394-994f-ec3c64bbc877',
|
|
4104
|
+
accountName: 'Commissions & fees',
|
|
4105
|
+
accountType: 'expenses',
|
|
4106
|
+
accountDescription: '',
|
|
4107
|
+
qboId: '9',
|
|
4108
|
+
labels: [],
|
|
4109
|
+
key: 'account_041cf709-4537-4394-994f-ec3c64bbc877-account_list_by_type',
|
|
4110
|
+
},
|
|
4111
|
+
'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f-account_list_by_type': {
|
|
4112
|
+
accountId: 'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f',
|
|
4113
|
+
accountName: 'Building Repairs',
|
|
4114
|
+
accountType: 'expenses',
|
|
4115
|
+
accountDescription: '',
|
|
4116
|
+
qboId: '73',
|
|
4117
|
+
labels: [],
|
|
4118
|
+
key: 'account_f77218fa-ea40-4004-9f66-9b8f4eaab93f-account_list_by_type',
|
|
4119
|
+
},
|
|
4120
|
+
'account_4bf94810-b77e-4014-a18c-f876c2854971-account_list_by_type': {
|
|
4121
|
+
accountId: 'account_4bf94810-b77e-4014-a18c-f876c2854971',
|
|
4122
|
+
accountName: 'Bookkeeper',
|
|
4123
|
+
accountType: 'expenses',
|
|
4124
|
+
accountDescription: '',
|
|
4125
|
+
qboId: '70',
|
|
4126
|
+
labels: [],
|
|
4127
|
+
key: 'account_4bf94810-b77e-4014-a18c-f876c2854971-account_list_by_type',
|
|
4128
|
+
},
|
|
4129
|
+
'account_d8a660ac-158c-4556-b92f-020d3afe0e34-account_list_by_type': {
|
|
4130
|
+
accountId: 'account_d8a660ac-158c-4556-b92f-020d3afe0e34',
|
|
4131
|
+
accountName: 'Bank Charges',
|
|
4132
|
+
accountType: 'expenses',
|
|
4133
|
+
accountDescription: '',
|
|
4134
|
+
qboId: '8',
|
|
4135
|
+
labels: [],
|
|
4136
|
+
key: 'account_d8a660ac-158c-4556-b92f-020d3afe0e34-account_list_by_type',
|
|
4137
|
+
},
|
|
4138
|
+
'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa-account_list_by_type': {
|
|
4139
|
+
accountId: 'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa',
|
|
4140
|
+
accountName: 'Automobile',
|
|
4141
|
+
accountType: 'expenses',
|
|
4142
|
+
accountDescription: '',
|
|
4143
|
+
qboId: '55',
|
|
4144
|
+
labels: [],
|
|
4145
|
+
key: 'account_c4f4a39e-dc67-4c65-b882-9da99070ebfa-account_list_by_type',
|
|
4146
|
+
},
|
|
4147
|
+
'account_10053408-c131-468b-a1ab-2c289d84901c-account_list_by_type': {
|
|
4148
|
+
accountId: 'account_10053408-c131-468b-a1ab-2c289d84901c',
|
|
4149
|
+
accountName: 'Advertising',
|
|
4150
|
+
accountType: 'expenses',
|
|
4151
|
+
accountDescription: '',
|
|
4152
|
+
qboId: '7',
|
|
4153
|
+
labels: [],
|
|
4154
|
+
key: 'account_10053408-c131-468b-a1ab-2c289d84901c-account_list_by_type',
|
|
4155
|
+
},
|
|
4156
|
+
'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae-account_list_by_type': {
|
|
4157
|
+
accountId: 'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae',
|
|
4158
|
+
accountName: 'Accounting',
|
|
4159
|
+
accountType: 'expenses',
|
|
4160
|
+
accountDescription: '',
|
|
4161
|
+
qboId: '69',
|
|
4162
|
+
labels: [],
|
|
4163
|
+
key: 'account_d70ac0b8-c4c0-4287-ac7c-779af64931ae-account_list_by_type',
|
|
4164
|
+
},
|
|
4165
|
+
},
|
|
4166
|
+
};
|
|
4167
|
+
exports.accountStateForMapping = accountStateForMapping;
|
|
4168
|
+
const accountMappingStateRecommendationInProgress = {
|
|
4169
|
+
...accountMappingReducer_1.initialState,
|
|
4170
|
+
recommendationFetchState: {
|
|
4171
|
+
fetchState: 'In-Progress',
|
|
4172
|
+
error: undefined,
|
|
4173
|
+
},
|
|
4174
|
+
};
|
|
4175
|
+
exports.accountMappingStateRecommendationInProgress = accountMappingStateRecommendationInProgress;
|
|
4176
|
+
const accountMappingStateAccountListInProgress = {
|
|
4177
|
+
...accountMappingReducer_1.initialState,
|
|
4178
|
+
accountListFetchState: {
|
|
4179
|
+
fetchState: 'In-Progress',
|
|
4180
|
+
error: undefined,
|
|
4181
|
+
},
|
|
4182
|
+
};
|
|
4183
|
+
exports.accountMappingStateAccountListInProgress = accountMappingStateAccountListInProgress;
|
|
4184
|
+
const accountMappingStateAccountListComplete = {
|
|
4185
|
+
accountListFetchState: { error: undefined, fetchState: 'Completed' },
|
|
4186
|
+
data: {
|
|
4187
|
+
...accountMappingReducer_1.initialState.data,
|
|
4188
|
+
selectedExpenseAccounts1099FilingAccountIds: [
|
|
4189
|
+
{
|
|
4190
|
+
accountId: '',
|
|
4191
|
+
expenseType: '',
|
|
4192
|
+
type1099: '',
|
|
4193
|
+
boxType: '',
|
|
4194
|
+
},
|
|
4195
|
+
],
|
|
4196
|
+
previousExpenseAccounts1099FilingAccount: [
|
|
4197
|
+
{
|
|
4198
|
+
accountId: '',
|
|
4199
|
+
expenseType: '',
|
|
4200
|
+
type1099: '',
|
|
4201
|
+
boxType: '',
|
|
4202
|
+
},
|
|
4203
|
+
],
|
|
4204
|
+
},
|
|
4205
|
+
expenseAccountIdList: [
|
|
4206
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
4207
|
+
'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
4208
|
+
'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
4209
|
+
],
|
|
4210
|
+
expenseNestedAccountListHierarchy: [
|
|
4211
|
+
{
|
|
4212
|
+
accountId: ['account_1ecee77e-e382-4ab0-b182-70a33103039f'],
|
|
4213
|
+
accountName: 'Utilities',
|
|
4214
|
+
children: [],
|
|
4215
|
+
coaId: undefined,
|
|
4216
|
+
isDeleted: false,
|
|
4217
|
+
hasSiblings: true,
|
|
4218
|
+
qboId: '24',
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
accountId: ['account_37a82313-fc44-44f0-b3bb-f09434284e58'],
|
|
4222
|
+
accountName: 'Uncategorized Expense',
|
|
4223
|
+
children: [],
|
|
4224
|
+
coaId: '69999',
|
|
4225
|
+
isDeleted: false,
|
|
4226
|
+
hasSiblings: true,
|
|
4227
|
+
qboId: '31',
|
|
4228
|
+
},
|
|
4229
|
+
{
|
|
4230
|
+
accountId: ['account_f18000a3-d265-41dc-a16c-f63b250b64b9'],
|
|
4231
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
4232
|
+
children: [],
|
|
4233
|
+
coaId: undefined,
|
|
4234
|
+
isDeleted: false,
|
|
4235
|
+
hasSiblings: true,
|
|
4236
|
+
qboId: '88',
|
|
4237
|
+
},
|
|
4238
|
+
],
|
|
4239
|
+
expenseRecommendations: [],
|
|
4240
|
+
incomeAccountIdList: [
|
|
4241
|
+
'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
4242
|
+
'account_b8e28eec-5694-4707-8354-2b04037be7d3',
|
|
4243
|
+
],
|
|
4244
|
+
incomeNestedAccountListHierarchy: [
|
|
4245
|
+
{
|
|
4246
|
+
accountId: ['account_06cecff6-33b8-4677-b586-9663dcacd944'],
|
|
4247
|
+
accountName: 'Uncategorized Income',
|
|
4248
|
+
children: [],
|
|
4249
|
+
coaId: '49999',
|
|
4250
|
+
isDeleted: false,
|
|
4251
|
+
hasSiblings: true,
|
|
4252
|
+
qboId: '30',
|
|
4253
|
+
},
|
|
4254
|
+
{
|
|
4255
|
+
accountId: ['account_b8e28eec-5694-4707-8354-2b04037be7d3'],
|
|
4256
|
+
accountName: 'Unapplied Cash Payment Income',
|
|
4257
|
+
children: [],
|
|
4258
|
+
coaId: undefined,
|
|
4259
|
+
isDeleted: false,
|
|
4260
|
+
hasSiblings: true,
|
|
4261
|
+
qboId: '87',
|
|
4262
|
+
},
|
|
4263
|
+
],
|
|
4264
|
+
incomeRecommendations: [],
|
|
4265
|
+
recommendationFetchState: { error: undefined, fetchState: 'Not-Started' },
|
|
4266
|
+
updateFetchState: { error: undefined, fetchState: 'Not-Started' },
|
|
4267
|
+
billPayNestedAccountListHierarchy: [
|
|
4268
|
+
{
|
|
4269
|
+
accountId: ['account_1ecee77e-e382-4ab0-b182-70a33103039f'],
|
|
4270
|
+
accountName: 'Utilities',
|
|
4271
|
+
children: [],
|
|
4272
|
+
coaId: undefined,
|
|
4273
|
+
isDeleted: false,
|
|
4274
|
+
hasSiblings: true,
|
|
4275
|
+
qboId: '24',
|
|
4276
|
+
},
|
|
4277
|
+
{
|
|
4278
|
+
accountId: ['account_37a82313-fc44-44f0-b3bb-f09434284e58'],
|
|
4279
|
+
accountName: 'Uncategorized Expense',
|
|
4280
|
+
children: [],
|
|
4281
|
+
coaId: '69999',
|
|
4282
|
+
isDeleted: false,
|
|
4283
|
+
hasSiblings: true,
|
|
4284
|
+
qboId: '31',
|
|
4285
|
+
},
|
|
4286
|
+
{
|
|
4287
|
+
accountId: ['account_f18000a3-d265-41dc-a16c-f63b250b64b9'],
|
|
4288
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
4289
|
+
children: [],
|
|
4290
|
+
coaId: undefined,
|
|
4291
|
+
isDeleted: false,
|
|
4292
|
+
hasSiblings: true,
|
|
4293
|
+
qboId: '88',
|
|
4294
|
+
},
|
|
4295
|
+
],
|
|
4296
|
+
billPayRecommendations: [],
|
|
4297
|
+
reimbursementsNestedAccountListHierarchy: [
|
|
4298
|
+
{
|
|
4299
|
+
accountId: ['account_1ecee77e-e382-4ab0-b182-70a33103039f'],
|
|
4300
|
+
accountName: 'Utilities',
|
|
4301
|
+
children: [],
|
|
4302
|
+
coaId: undefined,
|
|
4303
|
+
isDeleted: false,
|
|
4304
|
+
hasSiblings: true,
|
|
4305
|
+
qboId: '24',
|
|
4306
|
+
},
|
|
4307
|
+
{
|
|
4308
|
+
accountId: ['account_37a82313-fc44-44f0-b3bb-f09434284e58'],
|
|
4309
|
+
accountName: 'Uncategorized Expense',
|
|
4310
|
+
children: [],
|
|
4311
|
+
coaId: '69999',
|
|
4312
|
+
isDeleted: false,
|
|
4313
|
+
hasSiblings: true,
|
|
4314
|
+
qboId: '31',
|
|
4315
|
+
},
|
|
4316
|
+
{
|
|
4317
|
+
accountId: ['account_f18000a3-d265-41dc-a16c-f63b250b64b9'],
|
|
4318
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
4319
|
+
children: [],
|
|
4320
|
+
coaId: undefined,
|
|
4321
|
+
isDeleted: false,
|
|
4322
|
+
hasSiblings: true,
|
|
4323
|
+
qboId: '88',
|
|
4324
|
+
},
|
|
4325
|
+
],
|
|
4326
|
+
reimbursementsRecommendations: [],
|
|
4327
|
+
prepaidExpensesAccountIdList: [
|
|
4328
|
+
'account_8307c229-2daf-4853-9d46-1da722cb8152',
|
|
4329
|
+
'account_45883f28-e414-40f6-b84d-9dd54a47b878',
|
|
4330
|
+
],
|
|
4331
|
+
prepaidExpensesNestedAccountListHierarchy: [
|
|
4332
|
+
{
|
|
4333
|
+
accountId: ['account_8307c229-2daf-4853-9d46-1da722cb8152'],
|
|
4334
|
+
accountName: 'Undeposited Funds',
|
|
4335
|
+
children: [],
|
|
4336
|
+
coaId: undefined,
|
|
4337
|
+
isDeleted: false,
|
|
4338
|
+
hasSiblings: true,
|
|
4339
|
+
qboId: '4',
|
|
4340
|
+
},
|
|
4341
|
+
{
|
|
4342
|
+
accountId: ['account_45883f28-e414-40f6-b84d-9dd54a47b878'],
|
|
4343
|
+
accountName: 'Uncategorized Asset',
|
|
4344
|
+
children: [],
|
|
4345
|
+
coaId: undefined,
|
|
4346
|
+
isDeleted: false,
|
|
4347
|
+
hasSiblings: true,
|
|
4348
|
+
qboId: '32',
|
|
4349
|
+
},
|
|
4350
|
+
],
|
|
4351
|
+
prepaidExpensesRecommendations: [],
|
|
4352
|
+
fixedAssetsAccountIdList: ['account_4f81968a-8bc8-469b-b86f-0de2e2e9460b'],
|
|
4353
|
+
fixedAssetsNestedAccountListHierarchy: [
|
|
4354
|
+
{
|
|
4355
|
+
accountId: ['account_4f81968a-8bc8-469b-b86f-0de2e2e9460b'],
|
|
4356
|
+
accountName: 'Truck',
|
|
4357
|
+
children: [],
|
|
4358
|
+
coaId: undefined,
|
|
4359
|
+
isDeleted: false,
|
|
4360
|
+
hasSiblings: false,
|
|
4361
|
+
qboId: '37',
|
|
4362
|
+
},
|
|
4363
|
+
],
|
|
4364
|
+
fixedAssetsRecommendations: [],
|
|
4365
|
+
accruedExpensesAccountIdList: [],
|
|
4366
|
+
accruedExpensesNestedAccountListHierarchy: [],
|
|
4367
|
+
accruedExpensesRecommendations: [],
|
|
4368
|
+
bankAccounts1099FilingAccountIdList: [
|
|
4369
|
+
'account_facf78ab-1ecd-42d4-a619-8c896c50837e',
|
|
4370
|
+
'account_dca0d107-7300-4347-8695-b63d6354a0b4',
|
|
4371
|
+
'account_4fb3e78e-f1e2-41e8-9926-defd729d3e23',
|
|
4372
|
+
],
|
|
4373
|
+
bankAccounts1099FilingNestedAccountListHierarchy: [
|
|
4374
|
+
{
|
|
4375
|
+
accountId: ['account_facf78ab-1ecd-42d4-a619-8c896c50837e'],
|
|
4376
|
+
accountName: 'Zeni Clearing Account',
|
|
4377
|
+
children: [],
|
|
4378
|
+
coaId: '11999',
|
|
4379
|
+
isDeleted: false,
|
|
4380
|
+
hasSiblings: true,
|
|
4381
|
+
qboId: '114',
|
|
4382
|
+
},
|
|
4383
|
+
{
|
|
4384
|
+
accountId: ['account_dca0d107-7300-4347-8695-b63d6354a0b4'],
|
|
4385
|
+
accountName: 'Trust account',
|
|
4386
|
+
children: [],
|
|
4387
|
+
coaId: undefined,
|
|
4388
|
+
isDeleted: false,
|
|
4389
|
+
hasSiblings: true,
|
|
4390
|
+
qboId: '93',
|
|
4391
|
+
},
|
|
4392
|
+
{
|
|
4393
|
+
accountId: ['account_4fb3e78e-f1e2-41e8-9926-defd729d3e23'],
|
|
4394
|
+
accountName: 'Test Bank',
|
|
4395
|
+
children: [],
|
|
4396
|
+
coaId: undefined,
|
|
4397
|
+
isDeleted: false,
|
|
4398
|
+
hasSiblings: true,
|
|
4399
|
+
qboId: '112',
|
|
4400
|
+
},
|
|
4401
|
+
],
|
|
4402
|
+
expenseAccounts1099FilingAccountIdList: [
|
|
4403
|
+
'account_facf78ab-1ecd-42d4-a619-8c896c50837e',
|
|
4404
|
+
'account_374e846e-84de-4fa4-bb88-d448db7fd7c9',
|
|
4405
|
+
'account_1ecee77e-e382-4ab0-b182-70a33103039f',
|
|
4406
|
+
'account_8307c229-2daf-4853-9d46-1da722cb8152',
|
|
4407
|
+
'account_06cecff6-33b8-4677-b586-9663dcacd944',
|
|
4408
|
+
'account_37a82313-fc44-44f0-b3bb-f09434284e58',
|
|
4409
|
+
'account_45883f28-e414-40f6-b84d-9dd54a47b878',
|
|
4410
|
+
'account_b8e28eec-5694-4707-8354-2b04037be7d3',
|
|
4411
|
+
'account_f18000a3-d265-41dc-a16c-f63b250b64b9',
|
|
4412
|
+
'account_dca0d107-7300-4347-8695-b63d6354a0b4',
|
|
4413
|
+
'account_4f81968a-8bc8-469b-b86f-0de2e2e9460b',
|
|
4414
|
+
'account_4fb3e78e-f1e2-41e8-9926-defd729d3e23',
|
|
4415
|
+
],
|
|
4416
|
+
expenseAccounts1099FilingNestedAccountListHierarchy: [
|
|
4417
|
+
{
|
|
4418
|
+
accountId: ['account_facf78ab-1ecd-42d4-a619-8c896c50837e'],
|
|
4419
|
+
accountName: 'Zeni Clearing Account',
|
|
4420
|
+
children: [],
|
|
4421
|
+
coaId: '11999',
|
|
4422
|
+
isDeleted: false,
|
|
4423
|
+
hasSiblings: true,
|
|
4424
|
+
qboId: '114',
|
|
4425
|
+
},
|
|
4426
|
+
{
|
|
4427
|
+
accountId: ['account_374e846e-84de-4fa4-bb88-d448db7fd7c9'],
|
|
4428
|
+
accountName: 'Visa',
|
|
4429
|
+
children: [],
|
|
4430
|
+
coaId: undefined,
|
|
4431
|
+
isDeleted: false,
|
|
4432
|
+
hasSiblings: true,
|
|
4433
|
+
qboId: '42',
|
|
4434
|
+
},
|
|
4435
|
+
{
|
|
4436
|
+
accountId: ['account_1ecee77e-e382-4ab0-b182-70a33103039f'],
|
|
4437
|
+
accountName: 'Utilities',
|
|
4438
|
+
children: [],
|
|
4439
|
+
coaId: undefined,
|
|
4440
|
+
isDeleted: false,
|
|
4441
|
+
hasSiblings: true,
|
|
4442
|
+
qboId: '24',
|
|
4443
|
+
},
|
|
4444
|
+
{
|
|
4445
|
+
accountId: ['account_8307c229-2daf-4853-9d46-1da722cb8152'],
|
|
4446
|
+
accountName: 'Undeposited Funds',
|
|
4447
|
+
children: [],
|
|
4448
|
+
coaId: undefined,
|
|
4449
|
+
isDeleted: false,
|
|
4450
|
+
hasSiblings: true,
|
|
4451
|
+
qboId: '4',
|
|
4452
|
+
},
|
|
4453
|
+
{
|
|
4454
|
+
accountId: ['account_06cecff6-33b8-4677-b586-9663dcacd944'],
|
|
4455
|
+
accountName: 'Uncategorized Income',
|
|
4456
|
+
children: [],
|
|
4457
|
+
coaId: '49999',
|
|
4458
|
+
isDeleted: false,
|
|
4459
|
+
hasSiblings: true,
|
|
4460
|
+
qboId: '30',
|
|
4461
|
+
},
|
|
4462
|
+
{
|
|
4463
|
+
accountId: ['account_37a82313-fc44-44f0-b3bb-f09434284e58'],
|
|
4464
|
+
accountName: 'Uncategorized Expense',
|
|
4465
|
+
children: [],
|
|
4466
|
+
coaId: '69999',
|
|
4467
|
+
isDeleted: false,
|
|
4468
|
+
hasSiblings: true,
|
|
4469
|
+
qboId: '31',
|
|
4470
|
+
},
|
|
4471
|
+
{
|
|
4472
|
+
accountId: ['account_45883f28-e414-40f6-b84d-9dd54a47b878'],
|
|
4473
|
+
accountName: 'Uncategorized Asset',
|
|
4474
|
+
children: [],
|
|
4475
|
+
coaId: undefined,
|
|
4476
|
+
isDeleted: false,
|
|
4477
|
+
hasSiblings: true,
|
|
4478
|
+
qboId: '32',
|
|
4479
|
+
},
|
|
4480
|
+
{
|
|
4481
|
+
accountId: ['account_b8e28eec-5694-4707-8354-2b04037be7d3'],
|
|
4482
|
+
accountName: 'Unapplied Cash Payment Income',
|
|
4483
|
+
children: [],
|
|
4484
|
+
coaId: undefined,
|
|
4485
|
+
isDeleted: false,
|
|
4486
|
+
hasSiblings: true,
|
|
4487
|
+
qboId: '87',
|
|
4488
|
+
},
|
|
4489
|
+
{
|
|
4490
|
+
accountId: ['account_f18000a3-d265-41dc-a16c-f63b250b64b9'],
|
|
4491
|
+
accountName: 'Unapplied Cash Bill Payment Expense',
|
|
4492
|
+
children: [],
|
|
4493
|
+
coaId: undefined,
|
|
4494
|
+
isDeleted: false,
|
|
4495
|
+
hasSiblings: true,
|
|
4496
|
+
qboId: '88',
|
|
4497
|
+
},
|
|
4498
|
+
{
|
|
4499
|
+
accountId: ['account_dca0d107-7300-4347-8695-b63d6354a0b4'],
|
|
4500
|
+
accountName: 'Trust account',
|
|
4501
|
+
children: [],
|
|
4502
|
+
coaId: undefined,
|
|
4503
|
+
isDeleted: false,
|
|
4504
|
+
hasSiblings: true,
|
|
4505
|
+
qboId: '93',
|
|
4506
|
+
},
|
|
4507
|
+
{
|
|
4508
|
+
accountId: ['account_4f81968a-8bc8-469b-b86f-0de2e2e9460b'],
|
|
4509
|
+
accountName: 'Truck',
|
|
4510
|
+
children: [],
|
|
4511
|
+
coaId: undefined,
|
|
4512
|
+
isDeleted: false,
|
|
4513
|
+
hasSiblings: true,
|
|
4514
|
+
qboId: '37',
|
|
4515
|
+
},
|
|
4516
|
+
{
|
|
4517
|
+
accountId: ['account_4fb3e78e-f1e2-41e8-9926-defd729d3e23'],
|
|
4518
|
+
accountName: 'Test Bank',
|
|
4519
|
+
children: [],
|
|
4520
|
+
coaId: undefined,
|
|
4521
|
+
isDeleted: false,
|
|
4522
|
+
hasSiblings: true,
|
|
4523
|
+
qboId: '112',
|
|
4524
|
+
},
|
|
4525
|
+
],
|
|
4526
|
+
};
|
|
4527
|
+
exports.accountMappingStateAccountListComplete = accountMappingStateAccountListComplete;
|
|
4528
|
+
const accountMappingStateRecommendationComplete = {
|
|
4529
|
+
...accountMappingStateRecommendationInProgress,
|
|
4530
|
+
recommendationFetchState: {
|
|
4531
|
+
fetchState: 'Completed',
|
|
4532
|
+
error: undefined,
|
|
4533
|
+
},
|
|
4534
|
+
expenseRecommendations: [
|
|
4535
|
+
{
|
|
4536
|
+
account: {
|
|
4537
|
+
accountDescription: '',
|
|
4538
|
+
accountId: 'account_4923fb55-6062-4da0-b5fd-bf9432c3e4c0',
|
|
4539
|
+
accountName: 'Uncategorized Expense',
|
|
4540
|
+
accountSubType: undefined,
|
|
4541
|
+
accountType: 'expenses',
|
|
4542
|
+
coaId: '69999',
|
|
4543
|
+
labels: ['uncategorized_expense'],
|
|
4544
|
+
last4Digits: undefined,
|
|
4545
|
+
logo: undefined,
|
|
4546
|
+
max: 0,
|
|
4547
|
+
min: 0,
|
|
4548
|
+
qboId: '31',
|
|
4549
|
+
reason: 'Based on Zeni GPT recommendation.',
|
|
4550
|
+
type: 'zeni_bot',
|
|
4551
|
+
},
|
|
4552
|
+
},
|
|
4553
|
+
],
|
|
4554
|
+
incomeRecommendations: [
|
|
4555
|
+
{
|
|
4556
|
+
account: {
|
|
4557
|
+
accountDescription: '',
|
|
4558
|
+
accountId: 'account_f6f0c641-92ee-4809-88c6-191465d7fc6c',
|
|
4559
|
+
accountName: 'Uncategorized Income',
|
|
4560
|
+
accountSubType: undefined,
|
|
4561
|
+
accountType: 'income',
|
|
4562
|
+
coaId: '500000',
|
|
4563
|
+
labels: [],
|
|
4564
|
+
last4Digits: undefined,
|
|
4565
|
+
logo: undefined,
|
|
4566
|
+
max: 0,
|
|
4567
|
+
min: 0,
|
|
4568
|
+
qboId: '30',
|
|
4569
|
+
reason: 'Based on Zeni GPT recommendation.',
|
|
4570
|
+
type: 'zeni_bot',
|
|
4571
|
+
},
|
|
4572
|
+
},
|
|
4573
|
+
],
|
|
4574
|
+
billPayRecommendations: [
|
|
4575
|
+
{
|
|
4576
|
+
account: {
|
|
4577
|
+
accountId: 'account_b70f86a3-a058-4153-aab7-e65d1a6d0cc3',
|
|
4578
|
+
accountName: 'Bank Charges',
|
|
4579
|
+
accountType: 'expenses',
|
|
4580
|
+
accountDescription: '',
|
|
4581
|
+
qboId: '8',
|
|
4582
|
+
coaId: '',
|
|
4583
|
+
logo: undefined,
|
|
4584
|
+
last4Digits: undefined,
|
|
4585
|
+
accountSubType: undefined,
|
|
4586
|
+
labels: [],
|
|
4587
|
+
max: 0,
|
|
4588
|
+
min: 0,
|
|
4589
|
+
reason: 'Based on Zeni GPT recommendation.',
|
|
4590
|
+
type: 'zeni_bot',
|
|
4591
|
+
},
|
|
4592
|
+
},
|
|
4593
|
+
],
|
|
4594
|
+
reimbursementsRecommendations: [
|
|
4595
|
+
{
|
|
4596
|
+
account: {
|
|
4597
|
+
accountDescription: '',
|
|
4598
|
+
accountId: 'account_4b37d9d8-35c3-4be8-a280-d52a94c61ffe',
|
|
4599
|
+
accountName: 'Travel',
|
|
4600
|
+
accountSubType: undefined,
|
|
4601
|
+
accountType: 'expenses',
|
|
4602
|
+
coaId: '62200',
|
|
4603
|
+
labels: ['travel_transportation'],
|
|
4604
|
+
last4Digits: undefined,
|
|
4605
|
+
logo: undefined,
|
|
4606
|
+
max: 0,
|
|
4607
|
+
min: 0,
|
|
4608
|
+
qboId: '22',
|
|
4609
|
+
reason: 'Based on Zeni GPT recommendation.',
|
|
4610
|
+
type: 'zeni_bot',
|
|
4611
|
+
},
|
|
4612
|
+
},
|
|
4613
|
+
],
|
|
4614
|
+
prepaidExpensesRecommendations: [
|
|
4615
|
+
{
|
|
4616
|
+
account: {
|
|
4617
|
+
accountDescription: '',
|
|
4618
|
+
accountId: 'account_b2f93ece-35bf-4a0c-ad6c-618494a753e7',
|
|
4619
|
+
accountName: 'Prepaid Expenses',
|
|
4620
|
+
accountSubType: undefined,
|
|
4621
|
+
accountType: 'other_current_assets',
|
|
4622
|
+
coaId: '',
|
|
4623
|
+
labels: ['prepaid_expenses'],
|
|
4624
|
+
last4Digits: undefined,
|
|
4625
|
+
logo: undefined,
|
|
4626
|
+
max: 0,
|
|
4627
|
+
min: 0,
|
|
4628
|
+
qboId: '3',
|
|
4629
|
+
reason: 'Based on Zeni GPT recommendation.',
|
|
4630
|
+
type: 'zeni_bot',
|
|
4631
|
+
},
|
|
4632
|
+
},
|
|
4633
|
+
],
|
|
4634
|
+
accruedExpensesRecommendations: [
|
|
4635
|
+
{
|
|
4636
|
+
account: {
|
|
4637
|
+
accountDescription: '',
|
|
4638
|
+
accountId: 'account_b2f93ece-35bf-4a0c-ad6c-618494a753e7',
|
|
4639
|
+
accountName: 'Prepaid Expenses',
|
|
4640
|
+
accountSubType: undefined,
|
|
4641
|
+
accountType: 'other_current_assets',
|
|
4642
|
+
coaId: '',
|
|
4643
|
+
labels: ['prepaid_expenses'],
|
|
4644
|
+
last4Digits: undefined,
|
|
4645
|
+
logo: undefined,
|
|
4646
|
+
max: 0,
|
|
4647
|
+
min: 0,
|
|
4648
|
+
qboId: '3',
|
|
4649
|
+
reason: 'Based on Zeni GPT recommendation.',
|
|
4650
|
+
type: 'zeni_bot',
|
|
4651
|
+
},
|
|
4652
|
+
},
|
|
4653
|
+
],
|
|
4654
|
+
bankAccounts1099FilingAccountIdList: [],
|
|
4655
|
+
bankAccounts1099FilingNestedAccountListHierarchy: [],
|
|
4656
|
+
expenseAccounts1099FilingAccountIdList: [],
|
|
4657
|
+
expenseAccounts1099FilingNestedAccountListHierarchy: [],
|
|
4658
|
+
};
|
|
4659
|
+
exports.accountMappingStateRecommendationComplete = accountMappingStateRecommendationComplete;
|