@zeniai/client-epic-state 4.19.78 → 4.19.79
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/entity/company/companyPayload.d.ts +0 -12
- package/lib/entity/company/companyPayload.js +0 -20
- package/lib/entity/company/companyStateTypes.d.ts +0 -12
- package/lib/esm/entity/chargeCardTransaction/chargeCardTransactionPayload.js +2 -2
- package/lib/esm/entity/company/companyPayload.js +0 -20
- package/lib/esm/index.js +5 -5
- package/lib/esm/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +0 -3
- package/lib/esm/view/companyView/types/companyPassport/companyPassportLocalData.js +0 -12
- package/lib/esm/view/companyView/types/companyPassportViewPayload.js +12 -55
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.js +3 -2
- package/lib/esm/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +2 -2
- package/lib/esm/view/onboardingView/customerView/onboardingCustomerViewSelector.js +4 -22
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector.js +2 -2
- package/lib/esm/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector.js +2 -2
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector.js +1 -4
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.js +1 -2
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.js +1 -1
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +1 -64
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +2 -15
- package/lib/esm/view/spendManagement/commonSetup/setupViewSelector.js +1 -14
- package/lib/index.d.ts +5 -5
- package/lib/index.js +13 -13
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -1
- package/lib/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +0 -3
- package/lib/view/companyView/types/companyPassport/companyDetailsLocalData.d.ts +0 -12
- package/lib/view/companyView/types/companyPassport/companyPassportLocalData.js +0 -12
- package/lib/view/companyView/types/companyPassportViewPayload.d.ts +1 -1
- package/lib/view/companyView/types/companyPassportViewPayload.js +12 -55
- package/lib/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.js +3 -2
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +2 -2
- package/lib/view/onboardingView/customerView/onboardingCustomerViewSelector.d.ts +0 -1
- package/lib/view/onboardingView/customerView/onboardingCustomerViewSelector.js +3 -22
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector.js +2 -2
- package/lib/view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector.js +2 -2
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector.js +1 -4
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.js +1 -2
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.d.ts +1 -1
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.js +1 -1
- package/lib/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +1 -64
- package/lib/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +2 -15
- package/lib/view/spendManagement/commonSetup/setupViewSelector.d.ts +0 -13
- package/lib/view/spendManagement/commonSetup/setupViewSelector.js +1 -14
- package/lib/view/spendManagement/commonSetup/setupViewState.d.ts +0 -13
- package/lib/view/spendManagement/commonSetup/types/businessVerification.d.ts +0 -13
- package/package.json +1 -1
|
@@ -18,17 +18,6 @@ export interface CompanyInfoPayload {
|
|
|
18
18
|
primary_email_domain: string;
|
|
19
19
|
source_of_funds: string | null;
|
|
20
20
|
update_time: string;
|
|
21
|
-
company_countries_of_operations?: string[] | null;
|
|
22
|
-
company_purpose_of_account?: string | null;
|
|
23
|
-
company_purpose_of_account_desc?: string | null;
|
|
24
|
-
company_regulated_states?: boolean | null;
|
|
25
|
-
company_regulated_states_desc?: string | null;
|
|
26
|
-
company_source_of_funds?: string | null;
|
|
27
|
-
company_source_of_funds_desc?: string | null;
|
|
28
|
-
company_transaction_vol_expectations?: string | null;
|
|
29
|
-
company_transaction_vol_expectations_desc?: string | null;
|
|
30
|
-
company_us_nexus?: boolean | null;
|
|
31
|
-
company_us_nexus_desc?: string[] | null;
|
|
32
21
|
first_month_of_fiscal_year?: string | undefined;
|
|
33
22
|
sync_token?: string | null;
|
|
34
23
|
}
|
|
@@ -47,7 +36,6 @@ export interface CompanyIncInfoPayload {
|
|
|
47
36
|
company_inc_state: string | null;
|
|
48
37
|
company_inc_state_code: string | null;
|
|
49
38
|
company_inc_type: string | null;
|
|
50
|
-
company_industry_sub_type?: string | null;
|
|
51
39
|
file_ids?: ID[] | null;
|
|
52
40
|
}
|
|
53
41
|
export interface CompanyTaxInfoPayload {
|
|
@@ -36,25 +36,6 @@ const toCompanyInfo = (payload, companyIdTenantIdMapping, companyInStore) => {
|
|
|
36
36
|
phone: payload.phone ?? undefined,
|
|
37
37
|
firstMonthOfFY: (0, timePeriod_1.getMonthFromMonthName)(payload.first_month_of_fiscal_year) ?? 1,
|
|
38
38
|
sourceOfFunds: payload.source_of_funds ?? undefined,
|
|
39
|
-
companySourceOfFunds: payload.company_source_of_funds ?? undefined,
|
|
40
|
-
companySourceOfFundsDescription: payload.company_source_of_funds_desc ?? undefined,
|
|
41
|
-
countriesOfOperations: payload.company_countries_of_operations ?? undefined,
|
|
42
|
-
transactionVolume: payload.company_transaction_vol_expectations ?? undefined,
|
|
43
|
-
transactionVolumeDescription: payload.company_transaction_vol_expectations_desc ?? undefined,
|
|
44
|
-
purposeOfAccount: payload.company_purpose_of_account ?? undefined,
|
|
45
|
-
purposeOfAccountDescription: payload.company_purpose_of_account_desc ?? undefined,
|
|
46
|
-
regulatedStatus: payload.company_regulated_states == null
|
|
47
|
-
? undefined
|
|
48
|
-
: payload.company_regulated_states
|
|
49
|
-
? 'yes'
|
|
50
|
-
: 'no',
|
|
51
|
-
regulatedStatusDescription: payload.company_regulated_states_desc ?? undefined,
|
|
52
|
-
usNexus: payload.company_us_nexus == null
|
|
53
|
-
? undefined
|
|
54
|
-
: payload.company_us_nexus
|
|
55
|
-
? 'yes'
|
|
56
|
-
: 'no',
|
|
57
|
-
usNexusTypes: payload.company_us_nexus_desc ?? undefined,
|
|
58
39
|
};
|
|
59
40
|
};
|
|
60
41
|
const toCompanyLocaleInfo = (payload) => ({
|
|
@@ -75,7 +56,6 @@ const toCompanyIncInfo = (payload) => ({
|
|
|
75
56
|
companyIncStateCode: payload.company_inc_state_code ?? undefined,
|
|
76
57
|
companyIncCountryCode: payload.company_inc_country_code ?? undefined,
|
|
77
58
|
fileIds: payload.file_ids ?? [],
|
|
78
|
-
companySubIndustry: payload.company_industry_sub_type ?? undefined,
|
|
79
59
|
});
|
|
80
60
|
const toCompanyTaxInfo = (payload) => ({
|
|
81
61
|
taxesFiledDate: payload.taxes_filed_date != null
|
|
@@ -27,23 +27,12 @@ export interface CompanyInfo {
|
|
|
27
27
|
bookCloseDate?: ZeniDate;
|
|
28
28
|
companyDescription?: string;
|
|
29
29
|
companyLegalName?: string;
|
|
30
|
-
companySourceOfFunds?: string;
|
|
31
|
-
companySourceOfFundsDescription?: string;
|
|
32
30
|
companyUrl?: ZeniUrl;
|
|
33
|
-
countriesOfOperations?: string[];
|
|
34
31
|
meetingUrl?: ZeniUrl;
|
|
35
32
|
phone?: string;
|
|
36
|
-
purposeOfAccount?: string;
|
|
37
|
-
purposeOfAccountDescription?: string;
|
|
38
|
-
regulatedStatus?: string;
|
|
39
|
-
regulatedStatusDescription?: string;
|
|
40
33
|
sourceOfFunds?: string;
|
|
41
34
|
syncToken?: string;
|
|
42
35
|
tenantId?: ID;
|
|
43
|
-
transactionVolume?: string;
|
|
44
|
-
transactionVolumeDescription?: string;
|
|
45
|
-
usNexus?: string;
|
|
46
|
-
usNexusTypes?: string[];
|
|
47
36
|
}
|
|
48
37
|
export interface CompanyLocaleInfo {
|
|
49
38
|
companyIncCountryCode: string;
|
|
@@ -61,7 +50,6 @@ export interface CompanyIncInfo {
|
|
|
61
50
|
companyIncState?: string;
|
|
62
51
|
companyIncStateCode?: string;
|
|
63
52
|
companyIncType?: string;
|
|
64
|
-
companySubIndustry?: string;
|
|
65
53
|
}
|
|
66
54
|
export interface CompanyTaxInfo {
|
|
67
55
|
taxesFiledYears: number[];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { toURL } from '../../commonPayloadTypes/urlPayload';
|
|
2
2
|
import { toAmount } from '../../commonStateTypes/amount';
|
|
3
|
-
import {
|
|
3
|
+
import { dateNow, dateLocal } from '../../zeniDayJS';
|
|
4
4
|
import { toZeniUrl } from '../../zeniUrl';
|
|
5
|
-
import { toContentType } from '../transaction/stateTypes/attachment';
|
|
5
|
+
import { toContentType, } from '../transaction/stateTypes/attachment';
|
|
6
6
|
import { toTransactionCategory } from '../transaction/stateTypes/transactionType';
|
|
7
7
|
import { toCardTransactionStatusCode, toCardTransactionTypeCode, } from './chargeCardTransaction';
|
|
8
8
|
const EXTENSION_TO_CONTENT_TYPE = {
|
|
@@ -33,25 +33,6 @@ const toCompanyInfo = (payload, companyIdTenantIdMapping, companyInStore) => {
|
|
|
33
33
|
phone: payload.phone ?? undefined,
|
|
34
34
|
firstMonthOfFY: getMonthFromMonthName(payload.first_month_of_fiscal_year) ?? 1,
|
|
35
35
|
sourceOfFunds: payload.source_of_funds ?? undefined,
|
|
36
|
-
companySourceOfFunds: payload.company_source_of_funds ?? undefined,
|
|
37
|
-
companySourceOfFundsDescription: payload.company_source_of_funds_desc ?? undefined,
|
|
38
|
-
countriesOfOperations: payload.company_countries_of_operations ?? undefined,
|
|
39
|
-
transactionVolume: payload.company_transaction_vol_expectations ?? undefined,
|
|
40
|
-
transactionVolumeDescription: payload.company_transaction_vol_expectations_desc ?? undefined,
|
|
41
|
-
purposeOfAccount: payload.company_purpose_of_account ?? undefined,
|
|
42
|
-
purposeOfAccountDescription: payload.company_purpose_of_account_desc ?? undefined,
|
|
43
|
-
regulatedStatus: payload.company_regulated_states == null
|
|
44
|
-
? undefined
|
|
45
|
-
: payload.company_regulated_states
|
|
46
|
-
? 'yes'
|
|
47
|
-
: 'no',
|
|
48
|
-
regulatedStatusDescription: payload.company_regulated_states_desc ?? undefined,
|
|
49
|
-
usNexus: payload.company_us_nexus == null
|
|
50
|
-
? undefined
|
|
51
|
-
: payload.company_us_nexus
|
|
52
|
-
? 'yes'
|
|
53
|
-
: 'no',
|
|
54
|
-
usNexusTypes: payload.company_us_nexus_desc ?? undefined,
|
|
55
36
|
};
|
|
56
37
|
};
|
|
57
38
|
const toCompanyLocaleInfo = (payload) => ({
|
|
@@ -72,7 +53,6 @@ const toCompanyIncInfo = (payload) => ({
|
|
|
72
53
|
companyIncStateCode: payload.company_inc_state_code ?? undefined,
|
|
73
54
|
companyIncCountryCode: payload.company_inc_country_code ?? undefined,
|
|
74
55
|
fileIds: payload.file_ids ?? [],
|
|
75
|
-
companySubIndustry: payload.company_industry_sub_type ?? undefined,
|
|
76
56
|
});
|
|
77
57
|
const toCompanyTaxInfo = (payload) => ({
|
|
78
58
|
taxesFiledDate: payload.taxes_filed_date != null
|
package/lib/esm/index.js
CHANGED
|
@@ -285,13 +285,13 @@ import { getChargeCardCVVActivateView, getChargeCardControlDetailView, getCharge
|
|
|
285
285
|
import { toChargeCardSortKeyType, } from './view/spendManagement/chargeCards/chargeCardList/chargeCardList';
|
|
286
286
|
import { closeChargeCards, fetchChargeCardList, fetchChargeCardListPage, fetchCreditAccount, fetchCreditAccountRepayment, fetchDebitCardSummary, lockChargeCards, resendCardInvite, revokeCardInvite, revokeChargeCardsInvite, unlockChargeCards, updateBulkActionCardIds, updateSearchText as updateChargeCardListSearchText, updateChargeCardListUIState, updateChargeCardsSpendLimit, updateRowActionCardId, } from './view/spendManagement/chargeCards/chargeCardList/chargeCardListReducer';
|
|
287
287
|
import { anyCardOnHold, getChargeCardBulkActionView, getChargeCardListView, getChargeCardRecurringExpensesByCardIds, getChargeCardRowActionView, getCreditAccountDetails, getDebitCardList, getDebitCardSummary, getDepositAccountListWithDebitCardIssued, getMyPendingActivationChargeCardListView, getMyRequestOnHoldChargeCardListWithShippingAddress, } from './view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector';
|
|
288
|
-
import { PAYMENT_HISTORY_FILTER_CATEGORIES, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory';
|
|
289
|
-
import { getChargeCardPaymentHistoryDownloadReport, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector';
|
|
290
|
-
import { getPaymentHistorySourceAccountName, getPaymentStatusDisplayText, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers';
|
|
291
|
-
import { fetchChargeCardPaymentHistory, fetchChargeCardPaymentPage, updatePaymentHistoryDownloadUIState, updatePaymentHistoryFilters, updatePaymentHistorySearchText, updatePaymentHistoryUIState, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
292
|
-
import { getChargeCardPaymentHistoryView, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector';
|
|
293
288
|
import { clearChargeCardRepaymentDetail, fetchChargeCardRepaymentDetail, initiateChargeCardRepayment, updateChargeCardRepaymentLocalStore, } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer';
|
|
294
289
|
import { getChargeCardRepaymentDetail, } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector';
|
|
290
|
+
import { getChargeCardPaymentHistoryDownloadReport, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector';
|
|
291
|
+
import { fetchChargeCardPaymentPage, fetchChargeCardPaymentHistory, updatePaymentHistoryDownloadUIState, updatePaymentHistoryFilters, updatePaymentHistorySearchText, updatePaymentHistoryUIState, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
292
|
+
import { getChargeCardPaymentHistoryView, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector';
|
|
293
|
+
import { PAYMENT_HISTORY_FILTER_CATEGORIES, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory';
|
|
294
|
+
import { getPaymentHistorySourceAccountName, getPaymentStatusDisplayText, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers';
|
|
295
295
|
import { acceptChargeCardTerms, enableChargeCardAutoPay, expressInterestInChargeCard, fetchChargeCardSetupView, } from './view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewReducer';
|
|
296
296
|
import { getChargeCardBusinessVerificationDetails, getChargeCardSetupViewDetails, } from './view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewSelector';
|
|
297
297
|
import { fetchChargeCardStatementList } from './view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementListReducer';
|
|
@@ -12,9 +12,6 @@ export const updateCompanyDetailsEpic = (actions$, state$, zeniAPI) => actions$.
|
|
|
12
12
|
...toCompanyIncInfoUpdatableInfoPayload(companyDetails.incInfo),
|
|
13
13
|
...toCompanyTaxInfoUpdatableInfoPayload(companyDetails.taxDetails),
|
|
14
14
|
...toCompanyFileInfoPayload(companyDetails.incInfo, companyDetails.taxDetails),
|
|
15
|
-
...(companyDetails.companyInfo.companySubIndustry != null && {
|
|
16
|
-
company_industry_sub_type: companyDetails.companyInfo.companySubIndustry,
|
|
17
|
-
}),
|
|
18
15
|
};
|
|
19
16
|
const { newAddressState } = state$.value.addressViewState;
|
|
20
17
|
const addressToCreate = newAddressState?.company_address?.addressToCreate;
|
|
@@ -10,21 +10,9 @@ export function toCompanyPassportLocalData(companyView, companyFiles) {
|
|
|
10
10
|
website: companyInfo.companyUrl,
|
|
11
11
|
meetingLink: companyInfo.meetingUrl,
|
|
12
12
|
industry: companyQuestionaire.companyIndustry,
|
|
13
|
-
companySubIndustry: incInfo.companySubIndustry,
|
|
14
13
|
businessModel: companyQuestionaire.companyBusinessModel ?? '',
|
|
15
14
|
phone: companyInfo.phone ?? '',
|
|
16
15
|
firstMonthOfFY: companyInfo.firstMonthOfFY,
|
|
17
|
-
companySourceOfFunds: companyInfo.companySourceOfFunds,
|
|
18
|
-
companySourceOfFundsDescription: companyInfo.companySourceOfFundsDescription,
|
|
19
|
-
countriesOfOperations: companyInfo.countriesOfOperations,
|
|
20
|
-
transactionVolume: companyInfo.transactionVolume,
|
|
21
|
-
transactionVolumeDescription: companyInfo.transactionVolumeDescription,
|
|
22
|
-
purposeOfAccount: companyInfo.purposeOfAccount,
|
|
23
|
-
purposeOfAccountDescription: companyInfo.purposeOfAccountDescription,
|
|
24
|
-
regulatedStatus: companyInfo.regulatedStatus,
|
|
25
|
-
regulatedStatusDescription: companyInfo.regulatedStatusDescription,
|
|
26
|
-
usNexus: companyInfo.usNexus,
|
|
27
|
-
usNexusTypes: companyInfo.usNexusTypes,
|
|
28
16
|
},
|
|
29
17
|
incInfo: {
|
|
30
18
|
typeOfInc: incInfo.companyIncType ?? '',
|
|
@@ -1,59 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
export const toCompanyUpdatableInfoPayload = (info) => {
|
|
2
|
+
const payload = {
|
|
3
|
+
name: info.companyName,
|
|
4
|
+
company_legal_name: info.legalName,
|
|
5
|
+
phone: info.phone,
|
|
6
|
+
company_industry: info.industry,
|
|
7
|
+
company_business_model: info.businessModel,
|
|
8
|
+
company_url: info.website != null ? info.website.toString() : null,
|
|
9
|
+
meeting_url: info.meetingLink != null ? info.meetingLink.toString() : null,
|
|
10
|
+
is_new_company_industry_verified: true,
|
|
11
|
+
};
|
|
12
|
+
return payload;
|
|
7
13
|
};
|
|
8
|
-
function toUsNexusTypeKey(value) {
|
|
9
|
-
const key = US_NEXUS_LABEL_TO_KEY[value];
|
|
10
|
-
return key ?? value;
|
|
11
|
-
}
|
|
12
|
-
export const toCompanyUpdatableInfoPayload = (info) => ({
|
|
13
|
-
name: info.companyName,
|
|
14
|
-
company_legal_name: info.legalName,
|
|
15
|
-
phone: info.phone,
|
|
16
|
-
company_industry: info.industry,
|
|
17
|
-
company_business_model: info.businessModel,
|
|
18
|
-
company_url: info.website != null ? info.website.toString() : null,
|
|
19
|
-
meeting_url: info.meetingLink != null ? info.meetingLink.toString() : null,
|
|
20
|
-
is_new_company_industry_verified: true,
|
|
21
|
-
...(info.companySourceOfFunds != null && {
|
|
22
|
-
company_source_of_funds: info.companySourceOfFunds,
|
|
23
|
-
}),
|
|
24
|
-
...(info.companySourceOfFundsDescription != null && {
|
|
25
|
-
company_source_of_funds_desc: info.companySourceOfFundsDescription,
|
|
26
|
-
}),
|
|
27
|
-
...(info.countriesOfOperations != null &&
|
|
28
|
-
info.countriesOfOperations.length > 0 && {
|
|
29
|
-
company_countries_of_operations: info.countriesOfOperations,
|
|
30
|
-
}),
|
|
31
|
-
...(info.transactionVolume != null && {
|
|
32
|
-
company_transaction_vol_expectations: info.transactionVolume,
|
|
33
|
-
}),
|
|
34
|
-
...(info.transactionVolumeDescription != null && {
|
|
35
|
-
company_transaction_vol_expectations_desc: info.transactionVolumeDescription,
|
|
36
|
-
}),
|
|
37
|
-
...(info.purposeOfAccount != null && {
|
|
38
|
-
company_purpose_of_account: info.purposeOfAccount,
|
|
39
|
-
}),
|
|
40
|
-
...(info.purposeOfAccountDescription != null && {
|
|
41
|
-
company_purpose_of_account_desc: info.purposeOfAccountDescription,
|
|
42
|
-
}),
|
|
43
|
-
...(info.regulatedStatus != null && {
|
|
44
|
-
company_regulated_states: info.regulatedStatus === 'yes',
|
|
45
|
-
}),
|
|
46
|
-
...(info.regulatedStatusDescription != null && {
|
|
47
|
-
company_regulated_states_desc: info.regulatedStatusDescription,
|
|
48
|
-
}),
|
|
49
|
-
...(info.usNexus != null && {
|
|
50
|
-
company_us_nexus: info.usNexus === 'yes',
|
|
51
|
-
}),
|
|
52
|
-
...(info.usNexusTypes != null &&
|
|
53
|
-
info.usNexusTypes.length > 0 && {
|
|
54
|
-
company_us_nexus_desc: info.usNexusTypes.map(toUsNexusTypeKey),
|
|
55
|
-
}),
|
|
56
|
-
});
|
|
57
14
|
export const toCompanyIncInfoUpdatableInfoPayload = (info) => {
|
|
58
15
|
const payload = {
|
|
59
16
|
company_inc_type: info.typeOfInc,
|
|
@@ -4,14 +4,15 @@ import { convertToPeriod, toAbsoluteDay, } from '../../../../commonStateTypes/ti
|
|
|
4
4
|
import { getCurrentTenant } from '../../../../entity/tenant/tenantSelector';
|
|
5
5
|
import { backgroundRefetchReviewTab, syncTransactionCategorizationFromDetailSave, } from '../../reducers/transactionsViewReducer';
|
|
6
6
|
export const triggerReviewTabRefetchEpic = (actions$, state$) => actions$.pipe(filter(syncTransactionCategorizationFromDetailSave.match), mergeMap((action) => {
|
|
7
|
-
const { pendingReviewLineIds, transactionId, isUncategorizedExpenseCategoryEnabled
|
|
7
|
+
const { pendingReviewLineIds, transactionId, isUncategorizedExpenseCategoryEnabled } = action.payload;
|
|
8
8
|
if (pendingReviewLineIds.length === 0) {
|
|
9
9
|
return EMPTY;
|
|
10
10
|
}
|
|
11
11
|
const state = state$.value;
|
|
12
12
|
// Only trigger when the transaction was auto-only (not in review tab after reducer ran)
|
|
13
13
|
const reviewLocalData = state.expenseAutomationTransactionsViewState
|
|
14
|
-
.transactionCategorizationView.review
|
|
14
|
+
.transactionCategorizationView.review
|
|
15
|
+
.transactionReviewLocalDataById[transactionId.id];
|
|
15
16
|
if (reviewLocalData != null) {
|
|
16
17
|
return EMPTY;
|
|
17
18
|
}
|
package/lib/esm/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js
CHANGED
|
@@ -41,8 +41,8 @@ export const filterAutoTabLineItems = (tabView, transactionId, updatedTransactio
|
|
|
41
41
|
if (localData == null) {
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
|
-
const currentAutoLineIds = localData.transactionReviewLocalData.tabSpecificLineItems
|
|
45
|
-
[];
|
|
44
|
+
const currentAutoLineIds = localData.transactionReviewLocalData.tabSpecificLineItems
|
|
45
|
+
.autoCategorized ?? [];
|
|
46
46
|
const linesById = new Map(updatedTransaction.lines?.map((l) => [l.id, l]));
|
|
47
47
|
const retainedLineIds = currentAutoLineIds.filter((lineId) => {
|
|
48
48
|
const line = linesById.get(lineId);
|
|
@@ -218,17 +218,17 @@ export const onboardingStepsData = (isValidConnection, productSettings, accounti
|
|
|
218
218
|
requiredStepsData: requiredStepsData.map((step) => toOnboardingStepType(step)),
|
|
219
219
|
};
|
|
220
220
|
};
|
|
221
|
-
|
|
221
|
+
function isCompanyDetailsSavePending(fileState, company, primaryContact, companyDetailsLocalData) {
|
|
222
222
|
if (company == null || companyDetailsLocalData == null) {
|
|
223
223
|
return false;
|
|
224
224
|
}
|
|
225
225
|
const { companyInfo, incInfo, taxInfo, questionaire } = company.company.company;
|
|
226
|
-
const { companyDescription, companyLegalName, companyUrl, phone
|
|
227
|
-
const { fileIds, companyIncDate: incDate,
|
|
226
|
+
const { companyDescription, companyLegalName, companyUrl, phone } = companyInfo;
|
|
227
|
+
const { fileIds, companyIncDate: incDate, companyIncType } = incInfo;
|
|
228
228
|
const { companyIndustry } = questionaire;
|
|
229
229
|
const { taxId } = taxInfo;
|
|
230
230
|
const companyFileIds = getFilesByFileIds(fileState, fileIds).map((file) => file.fileId);
|
|
231
|
-
const { companyDescription: companyDescriptionLocalData, companyIndustry: companyIndustryLocalData, companyLegalName: companyLegalNameLocalData, taxIdOrEIN: taxIdLocalData, incDate: incDateLocalData, phone: companyPhoneLocalData, website: companyUrlLocalData, companyFiles: companyFilesLocalData,
|
|
231
|
+
const { companyDescription: companyDescriptionLocalData, companyIndustry: companyIndustryLocalData, companyLegalName: companyLegalNameLocalData, taxIdOrEIN: taxIdLocalData, incDate: incDateLocalData, phone: companyPhoneLocalData, website: companyUrlLocalData, companyFiles: companyFilesLocalData, typeOfIncorporation: companyIncTypeLocalData, primaryContactLocalData, } = companyDetailsLocalData;
|
|
232
232
|
const fileIdsLocalData = companyFilesLocalData.map((file) => file.fileId);
|
|
233
233
|
if (primaryContact != null) {
|
|
234
234
|
const { firstName, lastName, email } = primaryContact;
|
|
@@ -238,10 +238,6 @@ export function isCompanyDetailsSavePending(fileState, company, primaryContact,
|
|
|
238
238
|
return true;
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
|
-
const countriesOfOperationsMatch = JSON.stringify(countriesOfOperations ?? []) ===
|
|
242
|
-
JSON.stringify(countriesOfOperationsLocalData ?? []);
|
|
243
|
-
const usNexusTypesMatch = JSON.stringify(usNexusTypes ?? []) ===
|
|
244
|
-
JSON.stringify(usNexusTypesLocalData ?? []);
|
|
245
241
|
return (companyDescription != companyDescriptionLocalData ||
|
|
246
242
|
companyIndustry != companyIndustryLocalData ||
|
|
247
243
|
companyLegalName != companyLegalNameLocalData ||
|
|
@@ -249,21 +245,7 @@ export function isCompanyDetailsSavePending(fileState, company, primaryContact,
|
|
|
249
245
|
incDate?.toString() != incDateLocalData?.toString() ||
|
|
250
246
|
phone != companyPhoneLocalData ||
|
|
251
247
|
companyUrl?.toString() != companyUrlLocalData?.toString() ||
|
|
252
|
-
companyIncState != stateOfIncorporationLocalData ||
|
|
253
|
-
companySourceOfFunds != companySourceOfFundsLocalData ||
|
|
254
|
-
companySourceOfFundsDescription !=
|
|
255
|
-
companySourceOfFundsDescriptionLocalData ||
|
|
256
|
-
!countriesOfOperationsMatch ||
|
|
257
248
|
companyIncType != companyIncTypeLocalData ||
|
|
258
|
-
transactionVolume != transactionVolumeLocalData ||
|
|
259
|
-
transactionVolumeDescription != transactionVolumeDescriptionLocalData ||
|
|
260
|
-
purposeOfAccount != purposeOfAccountLocalData ||
|
|
261
|
-
purposeOfAccountDescription != purposeOfAccountDescriptionLocalData ||
|
|
262
|
-
regulatedStatus != regulatedStatusLocalData ||
|
|
263
|
-
regulatedStatusDescription != regulatedStatusDescriptionLocalData ||
|
|
264
|
-
usNexus != usNexusLocalData ||
|
|
265
|
-
!usNexusTypesMatch ||
|
|
266
|
-
companySubIndustry != companySubIndustryLocalData ||
|
|
267
249
|
!(fileIdsLocalData.length === companyFileIds.length &&
|
|
268
250
|
companyFileIds.every((fileId) => fileIdsLocalData.includes(fileId))));
|
|
269
251
|
}
|
|
@@ -2,8 +2,8 @@ import { getChargeCardRepaymentByIds } from '../../../../entity/chargeCardRepaym
|
|
|
2
2
|
import { getUsersByUserIds } from '../../../../entity/user/userSelector';
|
|
3
3
|
import { applyPaymentHistoryFiltersSearchAndSort } from './chargeCardPaymentHistoryHelpers';
|
|
4
4
|
export const getChargeCardPaymentHistoryDownloadReport = (state) => {
|
|
5
|
-
const { chargeCardPaymentHistoryState, chargeCardRepaymentState, userState } = state;
|
|
6
|
-
const { filters, repaymentHistoryIds, searchText, uiState, fetchState, error } = chargeCardPaymentHistoryState;
|
|
5
|
+
const { chargeCardPaymentHistoryState, chargeCardRepaymentState, userState, } = state;
|
|
6
|
+
const { filters, repaymentHistoryIds, searchText, uiState, fetchState, error, } = chargeCardPaymentHistoryState;
|
|
7
7
|
const repaymentHistory = getChargeCardRepaymentByIds(chargeCardRepaymentState, repaymentHistoryIds);
|
|
8
8
|
const repaymentHistoryUserIds = Array.from(new Set(repaymentHistory.map((r) => r.paidById)));
|
|
9
9
|
const repaymentHistoryUsers = getUsersByUserIds(userState, repaymentHistoryUserIds);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { reduceAllFetchState } from '../../../../commonStateTypes/reduceFetchState';
|
|
2
2
|
import { getChargeCardRepaymentByIds } from '../../../../entity/chargeCardRepayment/chargeCardRepaymentSelector';
|
|
3
|
-
import { getDepositAccountByDepositAccountId } from '../../../../entity/depositAccount/depositAccountSelector';
|
|
4
|
-
import { getPaymentAccountByPaymentAccountId } from '../../../../entity/paymentAccount/paymentAccountSelector';
|
|
5
3
|
import { getUsersByUserIds } from '../../../../entity/user/userSelector';
|
|
6
4
|
import { getAllFundingAccounts, mapDepositAccToFundingAccount, mapPaymentAccToFundingAccount, } from '../../commonSetup/setupViewSelector';
|
|
5
|
+
import { getDepositAccountByDepositAccountId } from '../../../../entity/depositAccount/depositAccountSelector';
|
|
6
|
+
import { getPaymentAccountByPaymentAccountId } from '../../../../entity/paymentAccount/paymentAccountSelector';
|
|
7
7
|
import { getAllDepositAccounts } from '../../zeniAccounts/depositAccountList/depositAccountListSelector';
|
|
8
8
|
import { getAllPaymentAccounts } from '../../zeniAccounts/paymentAccountList/paymentAccountListSelector';
|
|
9
9
|
import { applyPaymentHistoryFiltersSearchAndSort } from './chargeCardPaymentHistoryHelpers';
|
|
@@ -15,10 +15,7 @@ export const getChargeCardRepaymentDetail = (state) => {
|
|
|
15
15
|
else {
|
|
16
16
|
const depositFundingFromLimit = Object.values(depositAccountState.depositAccountLimitForChargeCardByID ?? {}).map(mapDepositAccountWithLimitToFundingAccount);
|
|
17
17
|
const paymentFundingAccounts = getAllFundingAccounts([], paymentAccountsView.paymentAccounts, paymentAccountListState.paymentAccountBalanceFetchStatus);
|
|
18
|
-
transferFromAccounts = [
|
|
19
|
-
...depositFundingFromLimit,
|
|
20
|
-
...paymentFundingAccounts,
|
|
21
|
-
];
|
|
18
|
+
transferFromAccounts = [...depositFundingFromLimit, ...paymentFundingAccounts];
|
|
22
19
|
}
|
|
23
20
|
}
|
|
24
21
|
const reducedFetchState = reduceAnyCompletedFetchState([
|
|
@@ -7,8 +7,7 @@ export const fetchChargeCardRepaymentDetailEpic = (actions$, state$) => actions$
|
|
|
7
7
|
const fetchChargeCardRepaymentDetailActions = [];
|
|
8
8
|
const state = state$.value;
|
|
9
9
|
const depositAccounts = state.depositAccountListState;
|
|
10
|
-
const willFetchDeposit = depositAccounts.fetchState !== 'In-Progress' &&
|
|
11
|
-
depositAccounts.fetchState !== 'Completed';
|
|
10
|
+
const willFetchDeposit = depositAccounts.fetchState !== 'In-Progress' && depositAccounts.fetchState !== 'Completed';
|
|
12
11
|
if (willFetchDeposit) {
|
|
13
12
|
fetchChargeCardRepaymentDetailActions.push(fetchDepositAccountList());
|
|
14
13
|
}
|
|
@@ -9,8 +9,8 @@ import { getAllFundingAccounts } from '../../commonSetup/setupViewSelector';
|
|
|
9
9
|
import { accountTypeSubConfigCodeToAccType } from '../../helpers';
|
|
10
10
|
import { getAllDepositAccounts } from '../../zeniAccounts/depositAccountList/depositAccountListSelector';
|
|
11
11
|
import { getAllPaymentAccounts } from '../../zeniAccounts/paymentAccountList/paymentAccountListSelector';
|
|
12
|
-
import { updateCreditAccountRepaymentAmountAndDate } from '../chargeCardList/chargeCardListReducer';
|
|
13
12
|
import { addRepaymentToChargeCardPaymentHistory } from '../chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
13
|
+
import { updateCreditAccountRepaymentAmountAndDate } from '../chargeCardList/chargeCardListReducer';
|
|
14
14
|
import { initiateChargeCardRepayment, updateChargeCardRepaymentStatus, } from './chargeCardRepaymentDetailReducer';
|
|
15
15
|
export const initiateChargeCardRepaymentEpic = (actions$, state$, zeniAPI) => actions$.pipe(filter(initiateChargeCardRepayment.match), switchMap((action) => {
|
|
16
16
|
const state = state$.value;
|
package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js
CHANGED
|
@@ -115,28 +115,8 @@ export const updateBusinessVerificationDetailsEpic = (actions$, state$, zeniAPI)
|
|
|
115
115
|
return from([]);
|
|
116
116
|
}
|
|
117
117
|
}));
|
|
118
|
-
/** US Nexus API keys. Form may submit these or display labels; we send keys to API. */
|
|
119
|
-
const US_NEXUS_KEYS = new Set([
|
|
120
|
-
'employees',
|
|
121
|
-
'customers',
|
|
122
|
-
'physical_office',
|
|
123
|
-
'banking_relationships',
|
|
124
|
-
]);
|
|
125
|
-
/** Maps display label → API key for US nexus types (English labels from strings). */
|
|
126
|
-
const US_NEXUS_LABEL_TO_KEY = {
|
|
127
|
-
Employees: 'employees',
|
|
128
|
-
Customers: 'customers',
|
|
129
|
-
'Physical office or facility': 'physical_office',
|
|
130
|
-
'Banking relationships': 'banking_relationships',
|
|
131
|
-
};
|
|
132
|
-
function toUsNexusTypeKey(value) {
|
|
133
|
-
if (US_NEXUS_KEYS.has(value)) {
|
|
134
|
-
return value;
|
|
135
|
-
}
|
|
136
|
-
return US_NEXUS_LABEL_TO_KEY[value] ?? value;
|
|
137
|
-
}
|
|
138
118
|
export const toBusinessVerificationCompanyDataPayload = (companyLocalData, sendForVerification, companyAddressData, registeredAddressData, setupViewType) => {
|
|
139
|
-
const { companyDescription, companyLegalName, companyIndustry,
|
|
119
|
+
const { companyDescription, companyLegalName, companyIndustry, website, incDate, taxIdOrEIN, phone, syncToken, fileIds, typeOfIncorporation, sourceOfFunds, } = companyLocalData;
|
|
140
120
|
const company = {
|
|
141
121
|
is_ready_for_verification: sendForVerification,
|
|
142
122
|
file_ids: fileIds,
|
|
@@ -187,52 +167,9 @@ export const toBusinessVerificationCompanyDataPayload = (companyLocalData, sendF
|
|
|
187
167
|
if (typeOfIncorporation != null) {
|
|
188
168
|
company['company_inc_type'] = typeOfIncorporation;
|
|
189
169
|
}
|
|
190
|
-
if (stateOfIncorporation != null) {
|
|
191
|
-
company['company_inc_state'] = stateOfIncorporation;
|
|
192
|
-
}
|
|
193
170
|
if (companyIndustry != null) {
|
|
194
171
|
company['company_industry'] = companyIndustry;
|
|
195
172
|
}
|
|
196
|
-
Object.assign(company, {
|
|
197
|
-
...(companySubIndustry != null && {
|
|
198
|
-
company_industry_sub_type: companySubIndustry,
|
|
199
|
-
}),
|
|
200
|
-
...(countriesOfOperations != null &&
|
|
201
|
-
countriesOfOperations.length > 0 && {
|
|
202
|
-
company_countries_of_operations: countriesOfOperations,
|
|
203
|
-
}),
|
|
204
|
-
...(companySourceOfFunds != null && {
|
|
205
|
-
company_source_of_funds: companySourceOfFunds,
|
|
206
|
-
}),
|
|
207
|
-
...(companySourceOfFundsDescription != null && {
|
|
208
|
-
company_source_of_funds_desc: companySourceOfFundsDescription,
|
|
209
|
-
}),
|
|
210
|
-
...(transactionVolume != null && {
|
|
211
|
-
company_transaction_vol_expectations: transactionVolume,
|
|
212
|
-
}),
|
|
213
|
-
...(transactionVolumeDescription != null && {
|
|
214
|
-
company_transaction_vol_expectations_desc: transactionVolumeDescription,
|
|
215
|
-
}),
|
|
216
|
-
...(purposeOfAccount != null && {
|
|
217
|
-
company_purpose_of_account: purposeOfAccount,
|
|
218
|
-
}),
|
|
219
|
-
...(purposeOfAccountDescription != null && {
|
|
220
|
-
company_purpose_of_account_desc: purposeOfAccountDescription,
|
|
221
|
-
}),
|
|
222
|
-
...(regulatedStatus != null && {
|
|
223
|
-
company_regulated_states: regulatedStatus === 'yes',
|
|
224
|
-
}),
|
|
225
|
-
...(regulatedStatusDescription != null && {
|
|
226
|
-
company_regulated_states_desc: regulatedStatusDescription,
|
|
227
|
-
}),
|
|
228
|
-
...(usNexus != null && {
|
|
229
|
-
company_us_nexus: usNexus === 'yes',
|
|
230
|
-
}),
|
|
231
|
-
...(usNexusTypes != null &&
|
|
232
|
-
usNexusTypes.length > 0 && {
|
|
233
|
-
company_us_nexus_desc: usNexusTypes.map(toUsNexusTypeKey),
|
|
234
|
-
}),
|
|
235
|
-
});
|
|
236
173
|
if (setupViewType === 'zeni_treasury' && sourceOfFunds != null) {
|
|
237
174
|
company['source_of_funds'] = sourceOfFunds;
|
|
238
175
|
}
|
package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js
CHANGED
|
@@ -43,9 +43,9 @@ export const updateSetupViewLocalStoreDataEpic = (actions$, state$) => actions$.
|
|
|
43
43
|
*/
|
|
44
44
|
export function toSetupViewLocalData(company, users, userRoles, primaryContact) {
|
|
45
45
|
const { companyInfo, incInfo, taxInfo, questionaire, companyBillPayInfo } = company;
|
|
46
|
-
const { companyId, companyDescription, companyLegalName, companyUrl, phone, syncToken, sourceOfFunds,
|
|
46
|
+
const { companyId, companyDescription, companyLegalName, companyUrl, phone, syncToken, sourceOfFunds, } = companyInfo;
|
|
47
47
|
const { usersSelectedForVerification: usersSelected } = companyBillPayInfo;
|
|
48
|
-
const { fileIds, companyIncDate: incDate, companyIncType
|
|
48
|
+
const { fileIds, companyIncDate: incDate, companyIncType } = incInfo;
|
|
49
49
|
const { companyIndustry } = questionaire;
|
|
50
50
|
const { taxId } = taxInfo;
|
|
51
51
|
const companyDetails = {
|
|
@@ -53,10 +53,6 @@ export function toSetupViewLocalData(company, users, userRoles, primaryContact)
|
|
|
53
53
|
companyDescription,
|
|
54
54
|
companyIndustry,
|
|
55
55
|
companyLegalName,
|
|
56
|
-
companySubIndustry,
|
|
57
|
-
companySourceOfFunds: incCompanySourceOfFunds,
|
|
58
|
-
companySourceOfFundsDescription,
|
|
59
|
-
countriesOfOperations,
|
|
60
56
|
taxIdOrEIN: taxId,
|
|
61
57
|
incDate,
|
|
62
58
|
phone,
|
|
@@ -65,15 +61,6 @@ export function toSetupViewLocalData(company, users, userRoles, primaryContact)
|
|
|
65
61
|
syncToken,
|
|
66
62
|
typeOfIncorporation: companyIncType,
|
|
67
63
|
sourceOfFunds,
|
|
68
|
-
stateOfIncorporation: companyIncState,
|
|
69
|
-
transactionVolume,
|
|
70
|
-
transactionVolumeDescription,
|
|
71
|
-
purposeOfAccount,
|
|
72
|
-
purposeOfAccountDescription,
|
|
73
|
-
regulatedStatus,
|
|
74
|
-
regulatedStatusDescription,
|
|
75
|
-
usNexus,
|
|
76
|
-
usNexusTypes,
|
|
77
64
|
};
|
|
78
65
|
let primaryContactDetails = undefined;
|
|
79
66
|
if (primaryContact != null) {
|
|
@@ -109,7 +109,7 @@ export const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentit
|
|
|
109
109
|
if (companyDetails.localData != null) {
|
|
110
110
|
const deleteFileStatusById = {};
|
|
111
111
|
const updateFileStatusById = {};
|
|
112
|
-
const { syncToken, companyDescription, companyLegalName, website, companyIndustry,
|
|
112
|
+
const { syncToken, companyDescription, companyLegalName, website, companyIndustry, phone, taxIdOrEIN, incDate, fileIds, typeOfIncorporation, sourceOfFunds, } = companyDetails.localData;
|
|
113
113
|
fileIds.forEach((fileId) => {
|
|
114
114
|
deleteFileStatusById[fileId] = getFileDeleteStatusById(state, fileId);
|
|
115
115
|
});
|
|
@@ -123,10 +123,6 @@ export const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentit
|
|
|
123
123
|
companyDescription,
|
|
124
124
|
companyLegalName,
|
|
125
125
|
companyIndustry,
|
|
126
|
-
companySubIndustry,
|
|
127
|
-
companySourceOfFunds,
|
|
128
|
-
companySourceOfFundsDescription,
|
|
129
|
-
countriesOfOperations,
|
|
130
126
|
website,
|
|
131
127
|
phone,
|
|
132
128
|
taxIdOrEIN,
|
|
@@ -140,15 +136,6 @@ export const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentit
|
|
|
140
136
|
primaryContactLocalData,
|
|
141
137
|
typeOfIncorporation,
|
|
142
138
|
sourceOfFunds,
|
|
143
|
-
transactionVolume,
|
|
144
|
-
transactionVolumeDescription,
|
|
145
|
-
purposeOfAccount,
|
|
146
|
-
purposeOfAccountDescription,
|
|
147
|
-
regulatedStatus,
|
|
148
|
-
regulatedStatusDescription,
|
|
149
|
-
stateOfIncorporation,
|
|
150
|
-
usNexus,
|
|
151
|
-
usNexusTypes,
|
|
152
139
|
};
|
|
153
140
|
}
|
|
154
141
|
const companyOfficerLocalData = {
|
package/lib/index.d.ts
CHANGED
|
@@ -435,14 +435,14 @@ import { ChargeCardCVVActivateSelectorView, ChargeCardControlDetailView, ChargeC
|
|
|
435
435
|
import { ChargeCardListUIState, ChargeCardViewSortKey, CreditAccount, CreditAccountRepayment, DebitCardSummaries, toChargeCardSortKeyType } from './view/spendManagement/chargeCards/chargeCardList/chargeCardList';
|
|
436
436
|
import { closeChargeCards, fetchChargeCardList, fetchChargeCardListPage, fetchCreditAccount, fetchCreditAccountRepayment, fetchDebitCardSummary, lockChargeCards, resendCardInvite, revokeCardInvite, revokeChargeCardsInvite, unlockChargeCards, updateBulkActionCardIds, updateSearchText as updateChargeCardListSearchText, updateChargeCardListUIState, updateChargeCardsSpendLimit, updateRowActionCardId } from './view/spendManagement/chargeCards/chargeCardList/chargeCardListReducer';
|
|
437
437
|
import { ChargeCardBulkActionView, ChargeCardListSelectorView, ChargeCardListWithShippingAddressSelectorView, ChargeCardRecurringExpensesByCardIds, ChargeCardRowActionView, ChargeCardWithUser, ChargeCardWithUserAndShippingAddress, DebitCardListSelectorView, DepositAccountListWithDebitCardIssued, MyPendingActivationChargeCardListSelectorView, anyCardOnHold, getChargeCardBulkActionView, getChargeCardListView, getChargeCardRecurringExpensesByCardIds, getChargeCardRowActionView, getCreditAccountDetails, getDebitCardList, getDebitCardSummary, getDepositAccountListWithDebitCardIssued, getMyPendingActivationChargeCardListView, getMyRequestOnHoldChargeCardListWithShippingAddress } from './view/spendManagement/chargeCards/chargeCardList/chargeCardListSelector';
|
|
438
|
-
import { PAYMENT_HISTORY_FILTER_CATEGORIES, PaymentHistoryAccountInfo, PaymentHistoryFilterCategory, PaymentHistoryFilterCategoryDropdownOption, PaymentHistoryFilterCategoryField, PaymentHistoryFilters } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory';
|
|
439
|
-
import { ChargeCardPaymentHistoryDownloadReport, getChargeCardPaymentHistoryDownloadReport } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector';
|
|
440
|
-
import { getPaymentHistorySourceAccountName, getPaymentStatusDisplayText } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers';
|
|
441
|
-
import { fetchChargeCardPaymentHistory, fetchChargeCardPaymentPage, updatePaymentHistoryDownloadUIState, updatePaymentHistoryFilters, updatePaymentHistorySearchText, updatePaymentHistoryUIState } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
442
|
-
import { ChargeCardPaymentHistorySelectorView, ChargeCardRepaymentWithUser, getChargeCardPaymentHistoryView } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector';
|
|
443
438
|
import { clearChargeCardRepaymentDetail, fetchChargeCardRepaymentDetail, initiateChargeCardRepayment, updateChargeCardRepaymentLocalStore } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer';
|
|
444
439
|
import { ChargeCardRepaymentDetailSelectorView, getChargeCardRepaymentDetail } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector';
|
|
445
440
|
import { ChargeCardRepaymentDetailLocalData } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailState';
|
|
441
|
+
import { ChargeCardPaymentHistoryDownloadReport, getChargeCardPaymentHistoryDownloadReport } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector';
|
|
442
|
+
import { fetchChargeCardPaymentPage, fetchChargeCardPaymentHistory, updatePaymentHistoryDownloadUIState, updatePaymentHistoryFilters, updatePaymentHistorySearchText, updatePaymentHistoryUIState } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
443
|
+
import { ChargeCardPaymentHistorySelectorView, ChargeCardRepaymentWithUser, getChargeCardPaymentHistoryView } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistorySelector';
|
|
444
|
+
import { PAYMENT_HISTORY_FILTER_CATEGORIES, PaymentHistoryAccountInfo, PaymentHistoryFilterCategory, PaymentHistoryFilterCategoryDropdownOption, PaymentHistoryFilterCategoryField, PaymentHistoryFilters } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory';
|
|
445
|
+
import { getPaymentHistorySourceAccountName, getPaymentStatusDisplayText } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryHelpers';
|
|
446
446
|
import { acceptChargeCardTerms, enableChargeCardAutoPay, expressInterestInChargeCard, fetchChargeCardSetupView } from './view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewReducer';
|
|
447
447
|
import { ChargeCardBusinessVerificationDetails, ChargeCardSetupView, getChargeCardBusinessVerificationDetails, getChargeCardSetupViewDetails } from './view/spendManagement/chargeCards/chargeCardSetUp/chargeCardSetUpViewSelector';
|
|
448
448
|
import { ChargeCardStatement } from './view/spendManagement/chargeCards/chargeCardStatementList/chargeCardStatementList';
|