@zeniai/client-epic-state 5.1.41-beta0ND → 5.1.41-betaDI3
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/commonStateTypes/selectorTypes/pickAndMergeForecastCalculatedSection.d.ts +1 -1
- package/lib/entity/account/accountSelector.d.ts +6 -6
- package/lib/entity/account/pickAndMergeForecastAccountReport.d.ts +18 -18
- package/lib/entity/accountGroup/accountGroupSelector.d.ts +44 -44
- package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
- package/lib/entity/snackbar/snackbarTypes.js +1 -1
- package/lib/entity/task/taskPayload.d.ts +2 -1
- package/lib/entity/task/taskPayload.js +8 -1
- package/lib/entity/task/taskReducer.d.ts +8 -1
- package/lib/entity/task/taskReducer.js +29 -4
- package/lib/entity/task/taskState.d.ts +1 -0
- package/lib/entity/tenant/epic/saveExternalConnectionEpic.js +7 -15
- package/lib/entity/toastNotification/epic/pushToastNotificationEpic.d.ts +3 -3
- package/lib/epic.d.ts +5 -3
- package/lib/epic.js +5 -3
- package/lib/esm/entity/snackbar/snackbarTypes.js +1 -1
- package/lib/esm/entity/task/taskPayload.js +8 -1
- package/lib/esm/entity/task/taskReducer.js +28 -3
- package/lib/esm/entity/tenant/epic/saveExternalConnectionEpic.js +7 -15
- package/lib/esm/epic.js +5 -3
- package/lib/esm/index.js +711 -0
- package/lib/esm/view/companyTaskManagerView/epics/fetchCompanyTaskManagerViewEpic.js +3 -0
- package/lib/esm/view/companyTaskManagerView/epics/fetchTaskManagerMetricsEpic.js +7 -1
- package/lib/esm/view/taskManager/taskDetailView/epics/createSubTaskEpic.js +96 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/fetchSubTasksEpic.js +53 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.js +1 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.js +70 -9
- package/lib/esm/view/taskManager/taskDetailView/taskDetailReducer.js +56 -2
- package/lib/esm/view/taskManager/taskDetailView/taskDetailSelector.js +32 -9
- package/lib/esm/view/taskManager/taskListView/epics/fetchTaskListEpic.js +3 -1
- package/lib/esm/view/taskManager/taskListView/taskList.js +1 -0
- package/lib/esm/view/taskManager/taskListView/taskListReducer.js +240 -12
- package/lib/esm/view/taskManager/taskListView/taskListSelector.js +1 -0
- package/lib/esm/view/taskManager/taskListView/taskListViewHelpers.js +58 -0
- package/lib/index.d.ts +995 -0
- package/lib/index.js +2612 -0
- package/lib/view/addressView/epic/fetchAddressEpic.d.ts +1 -1
- package/lib/view/addressView/epic/updateAddressEpic.d.ts +1 -1
- package/lib/view/aiAccountantView/epics/cancelAiAccountantOnboardingEpic.d.ts +3 -3
- package/lib/view/aiAccountantView/epics/fetchAiAccountantCustomersEpic.d.ts +2 -2
- package/lib/view/aiAccountantView/epics/fetchAiAccountantJobsEpic.d.ts +3 -3
- package/lib/view/aiAccountantView/epics/triggerAiAccountantJobEpic.d.ts +3 -3
- package/lib/view/aiCfoView/epics/deleteChatSessionEpic.d.ts +5 -5
- package/lib/view/auditReportView/auditReportViewSelector.d.ts +1 -1
- package/lib/view/billPayCard/billPayCardSelector.d.ts +3 -3
- package/lib/view/cardBalance/cardBalanceEpic.d.ts +2 -2
- package/lib/view/cardBalance/cardBalanceSelector.d.ts +8 -8
- package/lib/view/cardBalance/statementCloseDayEpic.d.ts +3 -3
- package/lib/view/cardPayment/epic/addCardPaymentSourceEpic.d.ts +4 -4
- package/lib/view/cardPayment/epic/confirmCardSetupIntentEpic.d.ts +4 -4
- package/lib/view/cardPayment/epic/createCardSetupIntentEpic.d.ts +5 -5
- package/lib/view/cardPayment/epic/fetchPaymentSourcesEpic.d.ts +5 -5
- package/lib/view/cashBalance/cashBalanceEpic.d.ts +2 -2
- package/lib/view/cashBalance/cashBalanceSelector.d.ts +8 -8
- package/lib/view/cashInCashOut/cashInCashOutEpic.d.ts +5 -5
- package/lib/view/cashInCashOut/cashInCashOutSelector.d.ts +5 -5
- package/lib/view/cashPosition/cashPositionEpic.d.ts +3 -3
- package/lib/view/cashPosition/cashPositionSelector.d.ts +5 -5
- package/lib/view/companyConfigView/companyConfigSelector.d.ts +2 -2
- package/lib/view/companyTaskManagerView/epics/fetchCompanyTaskManagerViewEpic.js +3 -0
- package/lib/view/companyTaskManagerView/epics/fetchTaskManagerMetricsEpic.js +7 -1
- package/lib/view/companyView/epic/companyPassport/saveCompanyPassportDetailsEpic.d.ts +1 -1
- package/lib/view/companyView/types/cockpitTypes.d.ts +3 -0
- package/lib/view/createTransferEntry/createTransferEntrySelector.d.ts +1 -1
- package/lib/view/creditAgentView/epics/saveCreditAgentMacroEpic.d.ts +3 -3
- package/lib/view/creditAgentView/epics/scheduleTenantCreditScoreCronEpic.d.ts +3 -3
- package/lib/view/creditAgentView/epics/updateCardProfileEpic.d.ts +3 -3
- package/lib/view/expenseAutomationView/epics/accountRecon/reparseStatementEpic.d.ts +4 -4
- package/lib/view/expenseAutomationView/epics/accountRecon/updateStatementInfoEpic.d.ts +3 -3
- package/lib/view/expenseAutomationView/epics/accountRecon/uploadAccountStatementEpic.d.ts +1 -1
- package/lib/view/expenseAutomationView/epics/missingReceipts/bulkUploadReceiptsEpic.d.ts +1 -1
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
- package/lib/view/forecastList/forecastListSelector.d.ts +4 -4
- package/lib/view/insightsCard/insightsCardEpic.d.ts +1 -1
- package/lib/view/people/changeZeniPersonRolesEpic.d.ts +5 -5
- package/lib/view/people/deletePersonEpic.d.ts +4 -4
- package/lib/view/people/fetchPeopleEpic.d.ts +2 -2
- package/lib/view/people/invitePeopleEpic.d.ts +7 -7
- package/lib/view/people/inviteZeniPeopleEpic.d.ts +7 -7
- package/lib/view/people/resendInviteEpic.d.ts +3 -3
- package/lib/view/reimbursementCard/reimbursementCardSelector.d.ts +3 -3
- package/lib/view/reportUIOptions/updateReportUIOptionCOABalancesRangeEpic.d.ts +11 -11
- package/lib/view/reportUIOptions/updateReportUIOptionCompareModeEpic.d.ts +8 -8
- package/lib/view/reportUIOptions/updateReportUIOptionThisPeriodEpic.d.ts +8 -8
- package/lib/view/settingsView/epic/fetchBankAccountsListEpic.d.ts +3 -3
- package/lib/view/settingsView/epic/saveNotificationSettingsEpic.d.ts +3 -3
- package/lib/view/spendManagement/billPay/magicLinkView/magicLinkViewSelector.d.ts +2 -2
- package/lib/view/spendManagement/commonSetup/epic/setup/parseUploadedKybDocumentEpic.d.ts +4 -4
- package/lib/view/spendManagement/helpers.d.ts +1 -1
- package/lib/view/spendManagement/reimbursement/editRemiView/epics/fetchRecommendationsAndUpdateMerchantRecommendationsEpic.d.ts +3 -3
- package/lib/view/tagView/epics/createTagEpic.d.ts +3 -3
- package/lib/view/tagView/epics/deleteTagEpic.d.ts +7 -7
- package/lib/view/taskManager/taskDetailView/epics/createSubTaskEpic.d.ts +9 -0
- package/lib/view/taskManager/taskDetailView/epics/createSubTaskEpic.js +100 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchSubTasksEpic.d.ts +8 -0
- package/lib/view/taskManager/taskDetailView/epics/fetchSubTasksEpic.js +57 -0
- package/lib/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.js +1 -0
- package/lib/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.d.ts +2 -2
- package/lib/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.js +69 -8
- package/lib/view/taskManager/taskDetailView/taskDetail.d.ts +15 -0
- package/lib/view/taskManager/taskDetailView/taskDetailReducer.d.ts +14 -2
- package/lib/view/taskManager/taskDetailView/taskDetailReducer.js +57 -3
- package/lib/view/taskManager/taskDetailView/taskDetailSelector.d.ts +2 -1
- package/lib/view/taskManager/taskDetailView/taskDetailSelector.js +30 -7
- package/lib/view/taskManager/taskListView/epics/fetchTaskListEpic.js +3 -1
- package/lib/view/taskManager/taskListView/taskList.d.ts +1 -1
- package/lib/view/taskManager/taskListView/taskList.js +1 -0
- package/lib/view/taskManager/taskListView/taskListPayload.d.ts +4 -0
- package/lib/view/taskManager/taskListView/taskListReducer.d.ts +6 -2
- package/lib/view/taskManager/taskListView/taskListReducer.js +241 -13
- package/lib/view/taskManager/taskListView/taskListSelector.js +1 -0
- package/lib/view/taskManager/taskListView/taskListViewHelpers.d.ts +11 -0
- package/lib/view/taskManager/taskListView/taskListViewHelpers.js +60 -1
- package/lib/view/tasksCard/tasksCardSelector.d.ts +2 -2
- package/lib/view/topEx/topExEpic.d.ts +2 -2
- package/lib/view/topEx/topExSelector.d.ts +7 -7
- package/lib/view/transactionDetail/epics/uploadMissingAttachmentSuccessEpic.d.ts +5 -5
- package/lib/view/transactionDetail/transactionDetailLocalDataHelper.d.ts +1 -1
- package/lib/view/userRoleConfigView/userRoleConfigSelector.d.ts +2 -2
- package/lib/view/zeniOAuthView/epics/approveOAuthConsentEpic.d.ts +3 -3
- package/package.json +1 -1
|
@@ -6,15 +6,15 @@ import { reparseStatement, reparseStatementFailure, reparseStatementSuccess } fr
|
|
|
6
6
|
export type ActionType = ReturnType<typeof reparseStatement> | ReturnType<typeof reparseStatementSuccess> | ReturnType<typeof reparseStatementFailure> | ReturnType<typeof updateAccountReconReparseStatement>;
|
|
7
7
|
export declare const reparseStatementEpic: (actions$: ActionsObservable<ActionType>, _state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
8
8
|
payload: {
|
|
9
|
-
accountId: import("
|
|
10
|
-
selectedPeriod: import("
|
|
9
|
+
accountId: import("../../../..").ID;
|
|
10
|
+
selectedPeriod: import("../../../..").MonthYearPeriod;
|
|
11
11
|
};
|
|
12
12
|
type: "expenseAutomationReconciliationView/reparseStatementSuccess";
|
|
13
13
|
} | {
|
|
14
14
|
payload: {
|
|
15
|
-
accountId: import("
|
|
15
|
+
accountId: import("../../../..").ID;
|
|
16
16
|
error: import("../../../../responsePayload").ZeniAPIStatus;
|
|
17
|
-
selectedPeriod: import("
|
|
17
|
+
selectedPeriod: import("../../../..").MonthYearPeriod;
|
|
18
18
|
};
|
|
19
19
|
type: "expenseAutomationReconciliationView/reparseStatementFailure";
|
|
20
20
|
} | {
|
|
@@ -5,20 +5,20 @@ import { submitStatementUpdate, submitStatementUpdateFailure, submitStatementUpd
|
|
|
5
5
|
export type ActionType = ReturnType<typeof submitStatementUpdate> | ReturnType<typeof submitStatementUpdateSuccess> | ReturnType<typeof submitStatementUpdateFailure> | ReturnType<typeof updateParsedStatementData>;
|
|
6
6
|
export declare const updateStatementInfoEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
7
7
|
payload: {
|
|
8
|
-
accountId: import("
|
|
8
|
+
accountId: import("../../../..").ID;
|
|
9
9
|
parsedStatementData: import("../../types/reconciliationViewState").ParsedStatementData;
|
|
10
10
|
selectedPeriod: import("../../../../commonStateTypes/timePeriod").MonthYearPeriod;
|
|
11
11
|
};
|
|
12
12
|
type: "expenseAutomationReconciliationView/updateParsedStatementData";
|
|
13
13
|
} | {
|
|
14
14
|
payload: {
|
|
15
|
-
accountId: import("
|
|
15
|
+
accountId: import("../../../..").ID;
|
|
16
16
|
selectedPeriod: import("../../../../commonStateTypes/timePeriod").MonthYearPeriod;
|
|
17
17
|
};
|
|
18
18
|
type: "expenseAutomationReconciliationView/submitStatementUpdateSuccess";
|
|
19
19
|
} | {
|
|
20
20
|
payload: {
|
|
21
|
-
accountId: import("
|
|
21
|
+
accountId: import("../../../..").ID;
|
|
22
22
|
error: import("../../../../responsePayload").ZeniAPIStatus;
|
|
23
23
|
selectedPeriod: import("../../../../commonStateTypes/timePeriod").MonthYearPeriod;
|
|
24
24
|
dateConflict?: import("../../types/reconciliationViewState").StatementDateConflict | null;
|
|
@@ -7,7 +7,7 @@ import { uploadAccountStatement, uploadAccountStatementSuccess } from '../../red
|
|
|
7
7
|
export type ActionType = ReturnType<typeof uploadAccountStatement> | ReturnType<typeof updateAccountReconUploadStatement> | ReturnType<typeof uploadAccountStatementSuccess> | ReturnType<typeof updateFiles>;
|
|
8
8
|
export declare const uploadAccountStatementEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<ActionType | {
|
|
9
9
|
payload: {
|
|
10
|
-
accountId: import("
|
|
10
|
+
accountId: import("../../../..").ID;
|
|
11
11
|
error: import("../../../../responsePayload").ZeniAPIStatus;
|
|
12
12
|
selectedPeriod: import("../../../../commonStateTypes/timePeriod").MonthYearPeriod;
|
|
13
13
|
};
|
|
@@ -4,7 +4,7 @@ import { bulkUploadReceipts, bulkUploadReceiptsFailure, bulkUploadReceiptsSucces
|
|
|
4
4
|
export type ActionType = ReturnType<typeof bulkUploadReceipts> | ReturnType<typeof bulkUploadReceiptsSuccess> | ReturnType<typeof bulkUploadReceiptsFailure>;
|
|
5
5
|
export declare const bulkUploadReceiptsEpic: (actions$: ActionsObservable<ActionType>, _state$: unknown, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
6
6
|
payload: {
|
|
7
|
-
batchId: import("
|
|
7
|
+
batchId: import("../../../..").ID;
|
|
8
8
|
};
|
|
9
9
|
type: "expenseAutomationMissingReceiptsView/bulkUploadReceiptsSuccess";
|
|
10
10
|
} | {
|
package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export declare const getLineItemsByTransactionsIdsFromResponse: (transactions: S
|
|
|
39
39
|
export declare const getLineItemsByTransactionIdsFromLocalData: (transactionLocalData: TransactionReviewLocalDataSelectorView[], selectedTab: TransactionsTab) => Record<ID, string[]>;
|
|
40
40
|
export declare const mergeTabSpecificLineItems: (currentTabSpecificLineItems: TabSpecificLineItems, selectedTab: TransactionsTab, newLineItems: TabSpecificLineItems) => TabSpecificLineItems;
|
|
41
41
|
export declare const getSnackbarMessageForTransactionReview: (updatedCount: number, failedCount: number, categorizedCount: number) => {
|
|
42
|
-
messageSection: "common" | "transactionDetails_updatingPastTransactions" | "transactionDetails_transactionUpdated" | "cockpit_month_end_email_sent" | "cockpit_month_end_email_save" | "cockpit_month_end_email_attachment_upload" | "je_bill_link" | "je_posted" | "audit_score_updated" | "people_invite_people" | "people_invite_multiple_people" | "people_delete_person" | "people_update_person" | "reimbursement_updated" | "reimbursement_deleted" | "reimbursement_cancelled_deleted" | "reimbursement_cancelled" | "reimbursement_approved" | "reimbursement_rejected" | "reimbursement_sent_for_approval" | "account_added" | "business_verification_save" | "business_verification_submit" | "business_verification_from_bills_submit" | "plaid_connection" | "unlink_deposit_account" | "reimbursement_setup" | "reimbursement_approval_create" | "reimbursement_duplicate_approval_create" | "reimbursement_approval_update" | "reimbursement_duplicate_approval_update" | "reimbursement_approval_delete" | "reimbursement_approval_reorder" | "reimbursement_create_mileage" | "reimbursement_update_mileage" | "reimbursement_accept_term" | "reimbursement_accept_employee_term" | "reimbursement_bulk_submit" | "reimbursement_bulk_processed" | "bill_pay_setup" | "zeni_accounts_setup" | "bill_pay_approval_create" | "bill_pay_duplicate_approval_create" | "bill_pay_approval_update" | "bill_pay_duplicate_approval_update" | "bill_pay_approval_delete" | "bill_pay_approval_reorder" | "bill_pay_updated" | "bill_pay_deleted" | "bill_pay_cancelled_deleted" | "bill_pay_cancelled" | "bill_pay_approved" | "real_time_approver_added" | "bill_pay_rejected" | "bill_pay_sent_for_approval" | "bill_pay_accept_term" | "bill_pay_bulk_submit" | "bill_pay_bulk_processed" | "bill_pay_refund" | "bill_pay_retry" | "bill_pay_marked_as_paid" | "zeni_account_accept_term" | "update_vendor" | "data_refresh_update" | "delete_bank_account" | "create_bank_account" | "create_bank_account_ach" | "create_bank_account_wire" | "create_bank_account_international" | "transfer_money" | "update_zeni_account_nickname" | "create_checking_account" | "deposit_check" | "create_vendor" | "onboarding_customer_view" | "onboarding_customer_view_complete" | "onboarding_customer_identity_verification_save" | "onboarding_customer_identity_verification_submit" | "onboarding_customer_business_verification_save" | "onboarding_customer_business_verification_submit" | "retry_bank_account_connection" | "dashboard_invite_sent" | "onboarding_info_saved" | "approve_original_merchant" | "approve_global_merchant" | "reject_global_merchant" | "create_global_merchant" | "fetch_global_merchant_no_recommendation" | "save_vendor_renamed" | "save_vendor_sent_for_review" | "save_vendor_marked_as_employee" | "save_vendor_marked_as_local_contractor" | "charge_card_setup" | "charge_card_accept_term" | "charge_card_receipt_upload" | "charge_card_resend_invite" | "charge_card_revoke_invite" | "card_policy_created" | "card_policy_updated" | "card_policy_deleted" | "charge_card_update_limit" | "charge_cards_update_limit" | "close_charge_card" | "lock_charge_card" | "lock_charge_card_card_user" | "lock_charge_cards" | "unlock_charge_card" | "unlock_charge_card_card_user" | "unlock_charge_cards" | "close_charge_cards" | "revoke_invite_charge_cards" | "charge_card_express_interest" | "create_schedule" | "save_schedule" | "delete_schedule" | "ignore_schedule" | "save_task_detail" | "fetch_task_detail" | "delete_task" | "archive_task" | "snooze_task" | "unsnooze_task" | "create_tag" | "delete_tag" | "update_charge_card" | "update_charge_card_name" | "update_charge_card_name_card_user" | "issue_charge_card" | "issue_charge_cards" | "notification_settings_saved" | "referral_invite_sent" | "notification_mark_as_read" | "mark_as_complete_schedule" | "cancel_journal_entry" | "settings_accounting_accounts_updated" | "create_card_setup" | "confirm_card_setup" | "add_card_payment_source" | "fetch_payment_sources" | "task_assigned_toast_notification" | "task_due_tomorrow_toast_notification" | "task_deleted_toast_notification" | "task_archived_toast_notification" | "task_overdue_toast_notification" | "task_overdue_toast_notification_creator" | "task_notification_count" | "task_activities_toast_notification" | "task_created_toast_notification" | "task_group_creation_success" | "task_group_deletion_success" | "task_group_update_success" | "primary_funding_account_updated" | "task_time_spent_validation" | "missing_receipts_attachment" | "flux_analysis_unreviewed" | "flux_analysis_reviewed" | "receipt_match" | "receipts_upload" | "receipts_bulk_match" | "billing_address_view" | "express_pay_submit" | "exclude_transaction" | "reconcile" | "save_reconcile_for_later" | "recon_transaction_categorize" | "recon_transaction_match" | "update_debit_card_pin_attempt" | "set_debit_card_pin" | "ai_cfo_create_session_and_submit" | "ai_cfo_chat_session_deleted" | "charge_card_auto_pay_enable" | "charge_card_auto_pay_disable" | "treasury_setup" | "treasury_accept_term" | "treasury_transfer_money" | "treasury_transfer_money_failed" | "auto_transfer_rule_create" | "auto_transfer_rule_update" | "auto_transfer_rule_delete" | "auto_transfer_rule_pause" | "auto_transfer_rule_resume" | "treasury_update_portfolio_allocation" | "send_email_magic_link_to_user" | "complete_profile_done" | "create_transfer_entry" | "reports_resync" | "invalid_phone_number" | "transactions_categorized_updated_failed" | "transaction_categorized_updated_failed" | "transactionsCategorized_transactionsUpdated" | "transactionsCategorized_transactionUpdated" | "transactionCategorized_transactionsUpdated" | "transactionCategorized_transactionUpdated" | "transactionsCategorized_transactionsFailed" | "transactionsCategorized_transactionFailed" | "transactionCategorized_transactionsFailed" | "transactionCategorized_transactionFailed" | "transactionsUpdated_transactionsFailed" | "transactionsUpdated_transactionFailed" | "transactionUpdated_transactionsFailed" | "transactionUpdated_transactionFailed" | "transactionsCategorized_transactionsUpdated_transactionsFailed" | "transactionsCategorized_transactionsUpdated_transactionFailed" | "transactionsCategorized_transactionUpdated_transactionsFailed" | "transactionCategorized_transactionsUpdated_transactionsFailed" | "transactionsCategorized_transactionUpdated_transactionFailed" | "transactionCategorized_transactionsUpdated_transactionFailed" | "transactionCategorized_transactionUpdated_transactionsFailed" | "transactionCategorized_transactionUpdated_transactionFailed" | "accounting_classes_enabled_update" | "capitalization_threshold_update" | "account_excluded_from_reconciliation" | "account_included_in_reconciliation" | "statement_parsing_in_progress" | "statement_parsing_complete" | "ai_accountant_trigger_job" | "oauth_consent_approve" | "oauth_consent_invalid_request" | "credit_agent_update_profile" | "credit_agent_save_macro" | "credit_agent_schedule_cron" | "
|
|
42
|
+
messageSection: "common" | "transactionDetails_updatingPastTransactions" | "transactionDetails_transactionUpdated" | "cockpit_month_end_email_sent" | "cockpit_month_end_email_save" | "cockpit_month_end_email_attachment_upload" | "je_bill_link" | "je_posted" | "audit_score_updated" | "people_invite_people" | "people_invite_multiple_people" | "people_delete_person" | "people_update_person" | "reimbursement_updated" | "reimbursement_deleted" | "reimbursement_cancelled_deleted" | "reimbursement_cancelled" | "reimbursement_approved" | "reimbursement_rejected" | "reimbursement_sent_for_approval" | "account_added" | "business_verification_save" | "business_verification_submit" | "business_verification_from_bills_submit" | "plaid_connection" | "unlink_deposit_account" | "reimbursement_setup" | "reimbursement_approval_create" | "reimbursement_duplicate_approval_create" | "reimbursement_approval_update" | "reimbursement_duplicate_approval_update" | "reimbursement_approval_delete" | "reimbursement_approval_reorder" | "reimbursement_create_mileage" | "reimbursement_update_mileage" | "reimbursement_accept_term" | "reimbursement_accept_employee_term" | "reimbursement_bulk_submit" | "reimbursement_bulk_processed" | "bill_pay_setup" | "zeni_accounts_setup" | "bill_pay_approval_create" | "bill_pay_duplicate_approval_create" | "bill_pay_approval_update" | "bill_pay_duplicate_approval_update" | "bill_pay_approval_delete" | "bill_pay_approval_reorder" | "bill_pay_updated" | "bill_pay_deleted" | "bill_pay_cancelled_deleted" | "bill_pay_cancelled" | "bill_pay_approved" | "real_time_approver_added" | "bill_pay_rejected" | "bill_pay_sent_for_approval" | "bill_pay_accept_term" | "bill_pay_bulk_submit" | "bill_pay_bulk_processed" | "bill_pay_refund" | "bill_pay_retry" | "bill_pay_marked_as_paid" | "zeni_account_accept_term" | "update_vendor" | "data_refresh_update" | "delete_bank_account" | "create_bank_account" | "create_bank_account_ach" | "create_bank_account_wire" | "create_bank_account_international" | "transfer_money" | "update_zeni_account_nickname" | "create_checking_account" | "deposit_check" | "create_vendor" | "onboarding_customer_view" | "onboarding_customer_view_complete" | "onboarding_customer_identity_verification_save" | "onboarding_customer_identity_verification_submit" | "onboarding_customer_business_verification_save" | "onboarding_customer_business_verification_submit" | "retry_bank_account_connection" | "dashboard_invite_sent" | "onboarding_info_saved" | "approve_original_merchant" | "approve_global_merchant" | "reject_global_merchant" | "create_global_merchant" | "fetch_global_merchant_no_recommendation" | "save_vendor_renamed" | "save_vendor_sent_for_review" | "save_vendor_marked_as_employee" | "save_vendor_marked_as_local_contractor" | "charge_card_setup" | "charge_card_accept_term" | "charge_card_receipt_upload" | "charge_card_resend_invite" | "charge_card_revoke_invite" | "card_policy_created" | "card_policy_updated" | "card_policy_deleted" | "charge_card_update_limit" | "charge_cards_update_limit" | "close_charge_card" | "lock_charge_card" | "lock_charge_card_card_user" | "lock_charge_cards" | "unlock_charge_card" | "unlock_charge_card_card_user" | "unlock_charge_cards" | "close_charge_cards" | "revoke_invite_charge_cards" | "charge_card_express_interest" | "create_schedule" | "save_schedule" | "delete_schedule" | "ignore_schedule" | "save_task_detail" | "fetch_task_detail" | "delete_task" | "archive_task" | "snooze_task" | "unsnooze_task" | "create_tag" | "delete_tag" | "update_charge_card" | "update_charge_card_name" | "update_charge_card_name_card_user" | "issue_charge_card" | "issue_charge_cards" | "notification_settings_saved" | "referral_invite_sent" | "notification_mark_as_read" | "mark_as_complete_schedule" | "cancel_journal_entry" | "settings_accounting_accounts_updated" | "create_card_setup" | "confirm_card_setup" | "add_card_payment_source" | "fetch_payment_sources" | "task_assigned_toast_notification" | "task_due_tomorrow_toast_notification" | "task_deleted_toast_notification" | "task_archived_toast_notification" | "task_overdue_toast_notification" | "task_overdue_toast_notification_creator" | "task_notification_count" | "task_activities_toast_notification" | "task_created_toast_notification" | "task_group_creation_success" | "task_group_deletion_success" | "task_group_update_success" | "primary_funding_account_updated" | "task_time_spent_validation" | "missing_receipts_attachment" | "flux_analysis_unreviewed" | "flux_analysis_reviewed" | "receipt_match" | "receipts_upload" | "receipts_bulk_match" | "billing_address_view" | "express_pay_submit" | "exclude_transaction" | "reconcile" | "save_reconcile_for_later" | "recon_transaction_categorize" | "recon_transaction_match" | "update_debit_card_pin_attempt" | "set_debit_card_pin" | "ai_cfo_create_session_and_submit" | "ai_cfo_chat_session_deleted" | "charge_card_auto_pay_enable" | "charge_card_auto_pay_disable" | "treasury_setup" | "treasury_accept_term" | "treasury_transfer_money" | "treasury_transfer_money_failed" | "auto_transfer_rule_create" | "auto_transfer_rule_update" | "auto_transfer_rule_delete" | "auto_transfer_rule_pause" | "auto_transfer_rule_resume" | "treasury_update_portfolio_allocation" | "send_email_magic_link_to_user" | "complete_profile_done" | "create_transfer_entry" | "reports_resync" | "invalid_phone_number" | "transactions_categorized_updated_failed" | "transaction_categorized_updated_failed" | "transactionsCategorized_transactionsUpdated" | "transactionsCategorized_transactionUpdated" | "transactionCategorized_transactionsUpdated" | "transactionCategorized_transactionUpdated" | "transactionsCategorized_transactionsFailed" | "transactionsCategorized_transactionFailed" | "transactionCategorized_transactionsFailed" | "transactionCategorized_transactionFailed" | "transactionsUpdated_transactionsFailed" | "transactionsUpdated_transactionFailed" | "transactionUpdated_transactionsFailed" | "transactionUpdated_transactionFailed" | "transactionsCategorized_transactionsUpdated_transactionsFailed" | "transactionsCategorized_transactionsUpdated_transactionFailed" | "transactionsCategorized_transactionUpdated_transactionsFailed" | "transactionCategorized_transactionsUpdated_transactionsFailed" | "transactionsCategorized_transactionUpdated_transactionFailed" | "transactionCategorized_transactionsUpdated_transactionFailed" | "transactionCategorized_transactionUpdated_transactionsFailed" | "transactionCategorized_transactionUpdated_transactionFailed" | "accounting_classes_enabled_update" | "capitalization_threshold_update" | "account_excluded_from_reconciliation" | "account_included_in_reconciliation" | "statement_parsing_in_progress" | "statement_parsing_complete" | "ai_accountant_trigger_job" | "oauth_consent_approve" | "oauth_consent_invalid_request" | "credit_agent_update_profile" | "credit_agent_save_macro" | "credit_agent_schedule_cron" | "create_sub_task" | "qbo_connection_already_linked";
|
|
43
43
|
messageText: "notification" | "failed" | "success";
|
|
44
44
|
type: "error" | "success" | "info";
|
|
45
45
|
variables: {
|
|
@@ -7,13 +7,13 @@ export interface ForecastListSelectorView extends SelectorView {
|
|
|
7
7
|
}
|
|
8
8
|
export declare const getForecastList: (forecastState: ForecastState, forecastListState: ForecastListState) => {
|
|
9
9
|
forecasts: Forecast[];
|
|
10
|
-
fetchState: import("
|
|
11
|
-
error: import("
|
|
10
|
+
fetchState: import("../..").FetchState;
|
|
11
|
+
error: import("../..").ZeniAPIStatus<Record<string, unknown>> | undefined;
|
|
12
12
|
version: number;
|
|
13
13
|
};
|
|
14
14
|
export declare const getValidForecastList: (forecastState: ForecastState, forecastListState: ForecastListState, dataAvailable: DataAvailable | undefined) => {
|
|
15
15
|
forecasts: Forecast[];
|
|
16
|
-
fetchState: import("
|
|
17
|
-
error: import("
|
|
16
|
+
fetchState: import("../..").FetchState;
|
|
17
|
+
error: import("../..").ZeniAPIStatus<Record<string, unknown>> | undefined;
|
|
18
18
|
version: number;
|
|
19
19
|
};
|
|
@@ -5,7 +5,7 @@ import { ZeniAPI } from '../../zeniAPI';
|
|
|
5
5
|
import { clearInsightsCard, fetchInsightsCard, updateInsightsCard, updateInsightsCardFailure } from './insightsCardReducer';
|
|
6
6
|
export type ActionType = ReturnType<typeof fetchInsightsCard> | ReturnType<typeof updateInsightsCard> | ReturnType<typeof updateInsightsCardFailure> | ReturnType<typeof clearInsightsCard> | ReturnType<typeof updateInsights>;
|
|
7
7
|
export declare const fetchInsightsCardEpic: (actions$: ActionsObservable<ActionType>, _: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<import("@reduxjs/toolkit").PayloadAction<import("../../entity/insights/insightPayload").InsightPayload[], "insights/updateInsights", {
|
|
8
|
-
updateType: import("
|
|
8
|
+
updateType: import("../..").UpdateType;
|
|
9
9
|
}, never> | {
|
|
10
10
|
payload: import("../../responsePayload").ZeniAPIResponse<import("./insightsCardPayload").InsightsCardPayload, Record<string, unknown>>;
|
|
11
11
|
type: "insightsCard/updateInsightsCard";
|
|
@@ -5,9 +5,9 @@ import { ZeniAPI } from '../../zeniAPI';
|
|
|
5
5
|
import { ChangeZeniPersonRolesActionType as ActionType } from './helpers/updateManagersListOnRoleChange';
|
|
6
6
|
export declare const changeZeniPersonRolesEpic: (actions$: ActionsObservable<ActionType>, state: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
7
7
|
payload: {
|
|
8
|
-
messageSection: import("
|
|
9
|
-
messageText: import("
|
|
10
|
-
type: import("
|
|
8
|
+
messageSection: import("../..").SnackbarMessageSections;
|
|
9
|
+
messageText: import("../..").SnackbarMessageSectionTexts;
|
|
10
|
+
type: import("../..").SnackbarMessageType;
|
|
11
11
|
showStatusIcon?: boolean;
|
|
12
12
|
variables?: {
|
|
13
13
|
variableName: string;
|
|
@@ -25,13 +25,13 @@ export declare const changeZeniPersonRolesEpic: (actions$: ActionsObservable<Act
|
|
|
25
25
|
type: "people/changeZeniPersonRoles";
|
|
26
26
|
} | {
|
|
27
27
|
payload: {
|
|
28
|
-
id: import("
|
|
28
|
+
id: import("../..").ID;
|
|
29
29
|
userType: import("../userListView/userListViewState").UserListType;
|
|
30
30
|
};
|
|
31
31
|
type: "userListView/addUserId";
|
|
32
32
|
} | {
|
|
33
33
|
payload: {
|
|
34
|
-
id: import("
|
|
34
|
+
id: import("../..").ID;
|
|
35
35
|
userType: import("../userListView/userListViewState").UserListType;
|
|
36
36
|
};
|
|
37
37
|
type: "userListView/removeUserId";
|
|
@@ -9,9 +9,9 @@ import { deletePerson, deletePersonFailure, deletePersonSuccess } from './people
|
|
|
9
9
|
export type ActionType = ReturnType<typeof deletePerson> | ReturnType<typeof removeUser> | ReturnType<typeof removeUserRole> | ReturnType<typeof removeUserId> | ReturnType<typeof deletePersonSuccess> | ReturnType<typeof openSnackbar> | ReturnType<typeof deletePersonFailure>;
|
|
10
10
|
export declare const deletePersonEpic: (actions$: ActionsObservable<ActionType>, _: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
11
11
|
payload: {
|
|
12
|
-
messageSection: import("
|
|
13
|
-
messageText: import("
|
|
14
|
-
type: import("
|
|
12
|
+
messageSection: import("../..").SnackbarMessageSections;
|
|
13
|
+
messageText: import("../..").SnackbarMessageSectionTexts;
|
|
14
|
+
type: import("../..").SnackbarMessageType;
|
|
15
15
|
showStatusIcon?: boolean;
|
|
16
16
|
variables?: {
|
|
17
17
|
variableName: string;
|
|
@@ -21,7 +21,7 @@ export declare const deletePersonEpic: (actions$: ActionsObservable<ActionType>,
|
|
|
21
21
|
type: "snackbar/openSnackbar";
|
|
22
22
|
} | {
|
|
23
23
|
payload: {
|
|
24
|
-
id: import("
|
|
24
|
+
id: import("../..").ID;
|
|
25
25
|
userType: import("../userListView/userListViewState").UserListType;
|
|
26
26
|
};
|
|
27
27
|
type: "userListView/removeUserId";
|
|
@@ -7,8 +7,8 @@ import { fetchPeople, updatePeopleFailure, updatePersonUserIds } from './peopleR
|
|
|
7
7
|
export type ActionType = ReturnType<typeof fetchPeople> | ReturnType<typeof updateUserRoles> | ReturnType<typeof updateAllUsers> | ReturnType<typeof updatePersonUserIds> | ReturnType<typeof updatePeopleFailure>;
|
|
8
8
|
export declare const fetchPeopleEpic: (actions$: ActionsObservable<ActionType>, state: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
9
9
|
payload: {
|
|
10
|
-
users: import("
|
|
11
|
-
updateType?: import("
|
|
10
|
+
users: import("../..").UserPayload[];
|
|
11
|
+
updateType?: import("../..").UpdateType;
|
|
12
12
|
};
|
|
13
13
|
type: "user/updateAllUsers";
|
|
14
14
|
} | {
|
|
@@ -5,9 +5,9 @@ import { ZeniAPI } from '../../zeniAPI';
|
|
|
5
5
|
import { InvitePeopleActionType as ActionType } from './helpers/updateManagersListOnRoleChange';
|
|
6
6
|
export declare const invitePeopleEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
7
7
|
payload: {
|
|
8
|
-
messageSection: import("
|
|
9
|
-
messageText: import("
|
|
10
|
-
type: import("
|
|
8
|
+
messageSection: import("../..").SnackbarMessageSections;
|
|
9
|
+
messageText: import("../..").SnackbarMessageSectionTexts;
|
|
10
|
+
type: import("../..").SnackbarMessageType;
|
|
11
11
|
showStatusIcon?: boolean;
|
|
12
12
|
variables?: {
|
|
13
13
|
variableName: string;
|
|
@@ -17,8 +17,8 @@ export declare const invitePeopleEpic: (actions$: ActionsObservable<ActionType>,
|
|
|
17
17
|
type: "snackbar/openSnackbar";
|
|
18
18
|
} | {
|
|
19
19
|
payload: {
|
|
20
|
-
users: import("
|
|
21
|
-
updateType?: import("
|
|
20
|
+
users: import("../..").UserPayload[];
|
|
21
|
+
updateType?: import("../..").UpdateType;
|
|
22
22
|
};
|
|
23
23
|
type: "user/updateAllUsers";
|
|
24
24
|
} | {
|
|
@@ -26,13 +26,13 @@ export declare const invitePeopleEpic: (actions$: ActionsObservable<ActionType>,
|
|
|
26
26
|
type: "userRole/updateUserRoles";
|
|
27
27
|
} | {
|
|
28
28
|
payload: {
|
|
29
|
-
id: import("
|
|
29
|
+
id: import("../..").ID;
|
|
30
30
|
userType: import("../userListView/userListViewState").UserListType;
|
|
31
31
|
};
|
|
32
32
|
type: "userListView/addUserId";
|
|
33
33
|
} | {
|
|
34
34
|
payload: {
|
|
35
|
-
id: import("
|
|
35
|
+
id: import("../..").ID;
|
|
36
36
|
userType: import("../userListView/userListViewState").UserListType;
|
|
37
37
|
};
|
|
38
38
|
type: "userListView/removeUserId";
|
|
@@ -5,9 +5,9 @@ import { ZeniAPI } from '../../zeniAPI';
|
|
|
5
5
|
import { InviteZeniPeopleActionType as ActionType } from './helpers/updateManagersListOnRoleChange';
|
|
6
6
|
export declare const inviteZeniPeopleEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
7
7
|
payload: {
|
|
8
|
-
messageSection: import("
|
|
9
|
-
messageText: import("
|
|
10
|
-
type: import("
|
|
8
|
+
messageSection: import("../..").SnackbarMessageSections;
|
|
9
|
+
messageText: import("../..").SnackbarMessageSectionTexts;
|
|
10
|
+
type: import("../..").SnackbarMessageType;
|
|
11
11
|
showStatusIcon?: boolean;
|
|
12
12
|
variables?: {
|
|
13
13
|
variableName: string;
|
|
@@ -17,8 +17,8 @@ export declare const inviteZeniPeopleEpic: (actions$: ActionsObservable<ActionTy
|
|
|
17
17
|
type: "snackbar/openSnackbar";
|
|
18
18
|
} | {
|
|
19
19
|
payload: {
|
|
20
|
-
users: import("
|
|
21
|
-
updateType?: import("
|
|
20
|
+
users: import("../..").UserPayload[];
|
|
21
|
+
updateType?: import("../..").UpdateType;
|
|
22
22
|
};
|
|
23
23
|
type: "user/updateAllUsers";
|
|
24
24
|
} | {
|
|
@@ -26,13 +26,13 @@ export declare const inviteZeniPeopleEpic: (actions$: ActionsObservable<ActionTy
|
|
|
26
26
|
type: "userRole/updateUserRoles";
|
|
27
27
|
} | {
|
|
28
28
|
payload: {
|
|
29
|
-
id: import("
|
|
29
|
+
id: import("../..").ID;
|
|
30
30
|
userType: import("../userListView/userListViewState").UserListType;
|
|
31
31
|
};
|
|
32
32
|
type: "userListView/addUserId";
|
|
33
33
|
} | {
|
|
34
34
|
payload: {
|
|
35
|
-
id: import("
|
|
35
|
+
id: import("../..").ID;
|
|
36
36
|
userType: import("../userListView/userListViewState").UserListType;
|
|
37
37
|
};
|
|
38
38
|
type: "userListView/removeUserId";
|
|
@@ -7,9 +7,9 @@ import { resendInvite, resendInviteFailure, resendInviteSuccess } from './people
|
|
|
7
7
|
export type ActionType = ReturnType<typeof resendInvite> | ReturnType<typeof openSnackbar> | ReturnType<typeof updateUserRoles> | ReturnType<typeof resendInviteSuccess> | ReturnType<typeof resendInviteFailure>;
|
|
8
8
|
export declare const resendInviteEpic: (actions$: ActionsObservable<ActionType>, _: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
9
9
|
payload: {
|
|
10
|
-
messageSection: import("
|
|
11
|
-
messageText: import("
|
|
12
|
-
type: import("
|
|
10
|
+
messageSection: import("../..").SnackbarMessageSections;
|
|
11
|
+
messageText: import("../..").SnackbarMessageSectionTexts;
|
|
12
|
+
type: import("../..").SnackbarMessageType;
|
|
13
13
|
showStatusIcon?: boolean;
|
|
14
14
|
variables?: {
|
|
15
15
|
variableName: string;
|
|
@@ -3,9 +3,9 @@ export declare const getReimbursementCardReport: (state: RootState) => {
|
|
|
3
3
|
reportId: "cash_balance" | "card_balance" | "expense_automation_card" | "operating_expenses" | "operating_expenses_by_classes" | "revenue" | "revenue_by_classes" | "net_burn_or_income" | "net_burn_or_income_story_card" | "net_burn_or_income_by_classes" | "cash_position" | "top_expenses" | "profit_and_loss" | "profit_and_loss_by_classes" | "profit_and_loss_by_projects" | "balance_sheet" | "cash_flow" | "dashboard" | "finance_statement" | "transaction_list_of_account" | "transaction_list_missing_receipt" | "transaction_list_of_account_by_class" | "transaction_list_of_account_by_project" | "transaction_detail" | "cash_in_cash_out" | "insights_dashboard" | "company_details" | "class_list" | "account_list" | "account_list_by_type" | "vendor" | "task_card" | "bill_pay" | "reimbursement" | "bill_pay_card" | "reimbursement_card" | "bill_pay_promo_card" | "zeni_accounts" | "zeni_accounts_promo_card" | "zeni_treasury" | "charge_cards" | "other_connection" | "reimbursement_promo_card" | "onboarding" | "operating_expenses_by_vendor" | "operating_expenses_by_vendor_summary" | "vendors_tab" | "accounts_payable_aging" | "accounts_receivable_aging" | "vendor_global_review" | "prepaid_expenses" | "fixed_assets" | "notification" | "rewards_card" | "billing" | "flux_analysis_operating_expense" | "account_reconciliation" | "zeni_credit_promo_card" | "treasury_promo_card" | "excluded_account_reconciliation" | "transfer_accounts" | "credit_card_transfer_accounts";
|
|
4
4
|
reportTitle: string;
|
|
5
5
|
version: string | number | undefined;
|
|
6
|
-
fetchState: import("
|
|
7
|
-
reimbursementAmountByKey: Record<string, import("
|
|
8
|
-
error: import("
|
|
6
|
+
fetchState: import("../..").FetchState;
|
|
7
|
+
reimbursementAmountByKey: Record<string, import("../..").Amount>;
|
|
8
|
+
error: import("../..").ZeniAPIStatus<Record<string, unknown>> | undefined;
|
|
9
9
|
transactionCount: number;
|
|
10
10
|
firstMonthOfFY: 1 | 3 | 12 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
11
11
|
};
|
|
@@ -9,35 +9,35 @@ import { updateReportUIOptionCOABalancesRange } from './reportUIOptionsReducer';
|
|
|
9
9
|
export type ActionType = ReturnType<typeof updateReportUIOptionCOABalancesRange> | ReturnType<typeof updateNetBurnOrIncomeCOABalancesRange> | ReturnType<typeof updateOpExCOABalancesRange> | ReturnType<typeof updateRevenueCOABalancesRange> | ReturnType<typeof updateCashPositionCOABalancesRange> | ReturnType<typeof updateCOABalancesRange>;
|
|
10
10
|
export declare const updateReportUIOptionCOABalancesRangeEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>) => import("rxjs").Observable<{
|
|
11
11
|
payload: {
|
|
12
|
-
selectedCOABalancesRange: import("
|
|
13
|
-
highlightedCOABalancesRange?: import("
|
|
12
|
+
selectedCOABalancesRange: import("../..").COABalancesRange;
|
|
13
|
+
highlightedCOABalancesRange?: import("../..").COABalancesRangeWithThisPeriod;
|
|
14
14
|
};
|
|
15
15
|
type: "net_burn_or_income/updateNetBurnOrIncomeCOABalancesRange";
|
|
16
16
|
} | {
|
|
17
17
|
payload: {
|
|
18
|
-
selectedCOABalancesRange: import("
|
|
19
|
-
highlightedCOABalancesRange?: import("
|
|
18
|
+
selectedCOABalancesRange: import("../..").COABalancesRange;
|
|
19
|
+
highlightedCOABalancesRange?: import("../..").COABalancesRangeWithThisPeriod;
|
|
20
20
|
};
|
|
21
21
|
type: "operatingExpenses/updateOpExCOABalancesRange";
|
|
22
22
|
} | {
|
|
23
23
|
payload: {
|
|
24
|
-
selectedCOABalancesRange: import("
|
|
25
|
-
highlightedCOABalancesRange?: import("
|
|
24
|
+
selectedCOABalancesRange: import("../..").COABalancesRange;
|
|
25
|
+
highlightedCOABalancesRange?: import("../..").COABalancesRangeWithThisPeriod;
|
|
26
26
|
};
|
|
27
27
|
type: "revenue/updateRevenueCOABalancesRange";
|
|
28
28
|
} | {
|
|
29
29
|
payload: {
|
|
30
|
-
selectedCOABalancesRange: import("
|
|
31
|
-
highlightedCOABalancesRange?: import("
|
|
30
|
+
selectedCOABalancesRange: import("../..").COABalancesRange;
|
|
31
|
+
highlightedCOABalancesRange?: import("../..").COABalancesRangeWithThisPeriod;
|
|
32
32
|
};
|
|
33
33
|
type: "cashPosition/updateCashPositionCOABalancesRange";
|
|
34
34
|
} | {
|
|
35
|
-
payload: import("
|
|
35
|
+
payload: import("../..").COABalancesRange;
|
|
36
36
|
type: "financeStatement/updateCOABalancesRange";
|
|
37
37
|
} | {
|
|
38
38
|
payload: {
|
|
39
|
-
selectedCOABalancesRange: import("
|
|
40
|
-
highlightedCOABalancesRange?: import("
|
|
39
|
+
selectedCOABalancesRange: import("../..").COABalancesRange;
|
|
40
|
+
highlightedCOABalancesRange?: import("../..").COABalancesRangeWithThisPeriod;
|
|
41
41
|
};
|
|
42
42
|
type: "cashInCashOut/updateCashInCashOutCOABalancesRange";
|
|
43
43
|
}>;
|
|
@@ -9,44 +9,44 @@ import { updateReportUIOptionCompareMode } from './reportUIOptionsReducer';
|
|
|
9
9
|
export type ActionType = ReturnType<typeof updateReportUIOptionCompareMode> | ReturnType<typeof updateNetBurnOrIncomeAdditionalBalancesSelection> | ReturnType<typeof updateOpExAdditionalBalancesSelection> | ReturnType<typeof updateRevenueAdditionalBalancesSelection> | ReturnType<typeof updateCashInCashOutAdditionalBalancesSelection> | ReturnType<typeof updateCashPositionAdditionalBalancesSelection>;
|
|
10
10
|
export declare const updateReportUIOptionIsCompareModeEpic: (actions$: ActionsObservable<ActionType>, state: StateObservable<RootState>) => import("rxjs").Observable<{
|
|
11
11
|
payload: {
|
|
12
|
-
additionalBalances: import("
|
|
12
|
+
additionalBalances: import("../..").COABalanceType[];
|
|
13
13
|
isCompareModeOn: boolean;
|
|
14
14
|
maxNumOfPeriodsToHighlight: number;
|
|
15
15
|
};
|
|
16
16
|
type: "net_burn_or_income/updateNetBurnOrIncomeAdditionalBalancesSelection";
|
|
17
17
|
} | {
|
|
18
18
|
payload: {
|
|
19
|
-
additionalBalances: import("
|
|
19
|
+
additionalBalances: import("../..").COABalanceType[];
|
|
20
20
|
isCompareModeOn: boolean;
|
|
21
21
|
maxNumOfPeriodsToHighlight: number;
|
|
22
22
|
};
|
|
23
23
|
type: "operatingExpenses/updateOpExAdditionalBalancesSelection";
|
|
24
24
|
} | {
|
|
25
25
|
payload: {
|
|
26
|
-
additionalBalances: import("
|
|
26
|
+
additionalBalances: import("../..").COABalanceType[];
|
|
27
27
|
isCompareModeOn: boolean;
|
|
28
28
|
maxNumOfPeriodsToHighlight: number;
|
|
29
29
|
};
|
|
30
30
|
type: "revenue/updateRevenueAdditionalBalancesSelection";
|
|
31
31
|
} | {
|
|
32
32
|
payload: {
|
|
33
|
-
additionalBalances: import("
|
|
33
|
+
additionalBalances: import("../..").COABalanceType[];
|
|
34
34
|
isCompareModeOn: boolean;
|
|
35
35
|
maxNumOfPeriodsToHighlight: number;
|
|
36
36
|
};
|
|
37
37
|
type: "cashInCashOut/updateCashInCashOutAdditionalBalancesSelection";
|
|
38
38
|
} | {
|
|
39
39
|
payload: {
|
|
40
|
-
additionalBalances: import("
|
|
40
|
+
additionalBalances: import("../..").COABalanceType[];
|
|
41
41
|
isCompareModeOn: boolean;
|
|
42
42
|
maxNumOfPeriodsToHighlight: number;
|
|
43
43
|
};
|
|
44
44
|
type: "cashPosition/updateCashPositionAdditionalBalancesSelection";
|
|
45
45
|
} | {
|
|
46
46
|
payload: {
|
|
47
|
-
additionalBalances: import("
|
|
48
|
-
coaBalances: import("
|
|
49
|
-
firstMonthOfFY: import("
|
|
47
|
+
additionalBalances: import("../..").COABalanceType[];
|
|
48
|
+
coaBalances: import("../..").COABalance[];
|
|
49
|
+
firstMonthOfFY: import("../..").Month;
|
|
50
50
|
isCompareModeOn: boolean;
|
|
51
51
|
maxNumOfPeriodsToHighlight: number;
|
|
52
52
|
};
|
|
@@ -8,35 +8,35 @@ import { updateReportUIOptionThisPeriod } from './reportUIOptionsReducer';
|
|
|
8
8
|
export type ActionType = ReturnType<typeof updateReportUIOptionThisPeriod> | ReturnType<typeof updateNetBurnOrIncomeThisPeriod> | ReturnType<typeof updateOpExThisPeriod> | ReturnType<typeof updateRevenueThisPeriod> | ReturnType<typeof updateCashPositionThisPeriod>;
|
|
9
9
|
export declare const updateReportUIOptionThisPeriodEpic: (actions$: ActionsObservable<ActionType>, state: StateObservable<RootState>) => import("rxjs").Observable<{
|
|
10
10
|
payload: {
|
|
11
|
-
thisPeriod: import("
|
|
11
|
+
thisPeriod: import("../..").TimeframeTick | undefined;
|
|
12
12
|
};
|
|
13
13
|
type: "net_burn_or_income/updateNetBurnOrIncomeThisPeriod";
|
|
14
14
|
} | {
|
|
15
15
|
payload: {
|
|
16
|
-
thisPeriod?: import("
|
|
16
|
+
thisPeriod?: import("../..").TimeframeTick;
|
|
17
17
|
};
|
|
18
18
|
type: "operatingExpenses/updateOpExThisPeriod";
|
|
19
19
|
} | {
|
|
20
20
|
payload: {
|
|
21
|
-
thisPeriod: import("
|
|
21
|
+
thisPeriod: import("../..").TimeframeTick | undefined;
|
|
22
22
|
};
|
|
23
23
|
type: "revenue/updateRevenueThisPeriod";
|
|
24
24
|
} | {
|
|
25
25
|
payload: {
|
|
26
|
-
thisPeriod: import("
|
|
26
|
+
thisPeriod: import("../..").TimeframeTick | undefined;
|
|
27
27
|
};
|
|
28
28
|
type: "cashPosition/updateCashPositionThisPeriod";
|
|
29
29
|
} | {
|
|
30
30
|
payload: {
|
|
31
|
-
thisPeriod: import("
|
|
31
|
+
thisPeriod: import("../..").TimeframeTick | undefined;
|
|
32
32
|
};
|
|
33
33
|
type: "cashInCashOut/updateCashInCashOutThisPeriod";
|
|
34
34
|
} | {
|
|
35
35
|
payload: {
|
|
36
|
-
coaBalances: import("
|
|
37
|
-
firstMonthOfFY: import("
|
|
36
|
+
coaBalances: import("../..").COABalance[];
|
|
37
|
+
firstMonthOfFY: import("../..").Month;
|
|
38
38
|
maxNumOfPeriodsToHighlight: number;
|
|
39
|
-
thisPeriod: import("
|
|
39
|
+
thisPeriod: import("../..").TimeframeTick;
|
|
40
40
|
};
|
|
41
41
|
type: "financeStatement/updateFinanceStatementThisPeriod";
|
|
42
42
|
}>;
|
|
@@ -5,15 +5,15 @@ import { ZeniAPI } from '../../../zeniAPI';
|
|
|
5
5
|
import { fetchBankAccountsList, updateBankConnectionOnFailure, updateBankConnectionOnSuccess } from '../settingsViewReducer';
|
|
6
6
|
export type ActionType = ReturnType<typeof fetchBankAccountsList> | ReturnType<typeof updateBankConnectionOnSuccess> | ReturnType<typeof updateBankConnectionOnFailure> | ReturnType<typeof updateAccounts>;
|
|
7
7
|
export declare const fetchBankAccountsListEpic: (actions$: ActionsObservable<ActionType>, _state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<import("@reduxjs/toolkit").PayloadAction<import("../../../entity/account/accountPayload").AccountPayload[], "account/updateAccounts", {
|
|
8
|
-
reportId: import("
|
|
8
|
+
reportId: import("../../..").ReportIDPlusForecastID;
|
|
9
9
|
classesViewParentId: import("../../../commonStateTypes/classesView/nestedClassID").ClassesViewParentID | undefined;
|
|
10
|
-
updateType: import("
|
|
10
|
+
updateType: import("../../..").UpdateType;
|
|
11
11
|
}, never> | {
|
|
12
12
|
payload: undefined;
|
|
13
13
|
type: "settings/fetchBankAccountsList";
|
|
14
14
|
} | {
|
|
15
15
|
payload: {
|
|
16
|
-
bankAccountIds: import("
|
|
16
|
+
bankAccountIds: import("../../..").ID[];
|
|
17
17
|
};
|
|
18
18
|
type: "settings/updateBankConnectionOnSuccess";
|
|
19
19
|
} | {
|
|
@@ -7,9 +7,9 @@ import { saveNotificationSettings, updateNotificationSettingsOnSaveFailure, upda
|
|
|
7
7
|
export type ActionType = ReturnType<typeof saveNotificationSettings> | ReturnType<typeof openSnackbar> | ReturnType<typeof updateNotificationSettingsOnSaveSuccess> | ReturnType<typeof updateNotificationSettingsOnSaveFailure>;
|
|
8
8
|
export declare const saveNotificationSettingsEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
9
9
|
payload: {
|
|
10
|
-
messageSection: import("
|
|
11
|
-
messageText: import("
|
|
12
|
-
type: import("
|
|
10
|
+
messageSection: import("../../..").SnackbarMessageSections;
|
|
11
|
+
messageText: import("../../..").SnackbarMessageSectionTexts;
|
|
12
|
+
type: import("../../..").SnackbarMessageType;
|
|
13
13
|
showStatusIcon?: boolean;
|
|
14
14
|
variables?: {
|
|
15
15
|
variableName: string;
|
|
@@ -2,9 +2,9 @@ import { RootState } from '../../../../reducer';
|
|
|
2
2
|
import { AddressUpdatableInfo } from '../../../addressView/addressViewState';
|
|
3
3
|
import { BankAccountSelectorView } from '../../../bankAccountView/bankAccountViewSelector';
|
|
4
4
|
export declare const getMagicLinkView: (rootState: RootState) => {
|
|
5
|
-
authParams: import("
|
|
5
|
+
authParams: import("../../../..").AuthParams;
|
|
6
6
|
companyName: string;
|
|
7
|
-
billAttachment: import("
|
|
7
|
+
billAttachment: import("../../../..").Attachment | undefined;
|
|
8
8
|
currencySymbol: string;
|
|
9
9
|
amount: number;
|
|
10
10
|
billFetchState: import("../../../../commonStateTypes/common").FetchState;
|
|
@@ -12,16 +12,16 @@ export declare const parseUploadedKybDocumentEpic: (actions$: ActionsObservable<
|
|
|
12
12
|
} | {
|
|
13
13
|
payload: {
|
|
14
14
|
autoFilledFieldNames: string[];
|
|
15
|
-
companyId: import("
|
|
16
|
-
fileId: import("
|
|
15
|
+
companyId: import("../../../../..").ID;
|
|
16
|
+
fileId: import("../../../../..").ID;
|
|
17
17
|
values: Partial<CompanyDetailsLocalData>;
|
|
18
18
|
};
|
|
19
19
|
type: "onboardingCustomerView/applyKybDocumentAutofillForOnboarding";
|
|
20
20
|
} | {
|
|
21
21
|
payload: {
|
|
22
22
|
autoFilledFieldNames: string[];
|
|
23
|
-
companyId: import("
|
|
24
|
-
fileId: import("
|
|
23
|
+
companyId: import("../../../../..").ID;
|
|
24
|
+
fileId: import("../../../../..").ID;
|
|
25
25
|
values: Partial<CompanyDetailsLocalData>;
|
|
26
26
|
};
|
|
27
27
|
type: "setupView/applyKybDocumentAutofillForSetup";
|
|
@@ -14,7 +14,7 @@ import { BusinessVerificationDetails, CompanyOfficersDetails } from './commonSet
|
|
|
14
14
|
import { SetupViewType } from './commonSetup/setupViewState';
|
|
15
15
|
import { RemiActivity } from './reimbursement/remiDetailView/remiDetailViewSelector';
|
|
16
16
|
export declare const getLatestApprovalDate: (allActivities: BillActivity[] | RemiActivity[]) => ZeniDate | undefined;
|
|
17
|
-
export declare function getSpendManagementEffectiveListPeriod(): import("
|
|
17
|
+
export declare function getSpendManagementEffectiveListPeriod(): import("../..").TimePeriod;
|
|
18
18
|
export declare const getSelectedCompanyOfficer: (verificationDetails: BusinessVerificationDetails) => CompanyOfficersDetails | undefined;
|
|
19
19
|
export declare const getPaymentDateFromVendorReceiveDate: (vendorReceiveDate: ZeniDate, maxPaymentProcessingDays: number) => ZeniDate;
|
|
20
20
|
export declare const updateRecurringBillDetails: (currentRecurringConfig: RecurringBillConfigLocalData, prevRecurringConfig?: RecurringBillConfigLocalData, currentInstances?: RecurringBillInstance[], currentBillAmount?: number) => {
|
|
@@ -7,10 +7,10 @@ export declare const fetchRecommendationsAndUpdateMerchantRecommendationsEpic: (
|
|
|
7
7
|
export declare const waitForMerchantRecommendationFetchThenUpdateRecommendationInMerchantEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>) => import("rxjs").Observable<{
|
|
8
8
|
payload: {
|
|
9
9
|
lineId: string;
|
|
10
|
-
recommendations: import("
|
|
10
|
+
recommendations: import("../../../../..").Recommendation[];
|
|
11
11
|
shouldAutofill: boolean;
|
|
12
|
-
reimbursementId?: import("
|
|
13
|
-
reimbursementStageCode?: import("
|
|
12
|
+
reimbursementId?: import("../../../../..").ID;
|
|
13
|
+
reimbursementStageCode?: import("../../../../..").BillStage["code"];
|
|
14
14
|
};
|
|
15
15
|
type: "editRemiView/updateRecommendationInMerchant";
|
|
16
16
|
}>;
|
|
@@ -9,9 +9,9 @@ import { createTag, updateTagCreateStatus } from '../tagViewReducer';
|
|
|
9
9
|
export type ActionType = ReturnType<typeof createTag> | ReturnType<typeof updateTagCreateStatus> | ReturnType<typeof openSnackbar> | ReturnType<typeof updateCreatedTagToLocalStore> | ReturnType<typeof updateTags>;
|
|
10
10
|
export declare const createTagEpic: (actions$: ActionsObservable<ActionType>, _state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => import("rxjs").Observable<{
|
|
11
11
|
payload: {
|
|
12
|
-
messageSection: import("
|
|
13
|
-
messageText: import("
|
|
14
|
-
type: import("
|
|
12
|
+
messageSection: import("../../..").SnackbarMessageSections;
|
|
13
|
+
messageText: import("../../..").SnackbarMessageSectionTexts;
|
|
14
|
+
type: import("../../..").SnackbarMessageType;
|
|
15
15
|
showStatusIcon?: boolean;
|
|
16
16
|
variables?: {
|
|
17
17
|
variableName: string;
|