@zeniai/client-epic-state 4.19.79 → 4.19.80
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 +12 -0
- package/lib/entity/company/companyPayload.js +20 -0
- package/lib/entity/company/companyStateTypes.d.ts +12 -0
- package/lib/esm/entity/chargeCardTransaction/chargeCardTransactionPayload.js +2 -2
- package/lib/esm/entity/company/companyPayload.js +20 -0
- package/lib/esm/index.js +5 -5
- package/lib/esm/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +3 -0
- package/lib/esm/view/companyView/types/companyPassport/companyPassportLocalData.js +12 -0
- package/lib/esm/view/companyView/types/companyPassportViewPayload.js +55 -12
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.js +2 -3
- package/lib/esm/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +2 -2
- package/lib/esm/view/onboardingView/customerView/onboardingCustomerViewSelector.js +22 -4
- 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 +4 -1
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.js +2 -1
- package/lib/esm/view/spendManagement/chargeCards/chargeCardRepaymentDetail/initiateChargeCardRepaymentEpic.js +1 -1
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +64 -1
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +15 -2
- package/lib/esm/view/spendManagement/commonSetup/setupViewSelector.js +14 -1
- 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 +3 -0
- package/lib/view/companyView/types/companyPassport/companyDetailsLocalData.d.ts +12 -0
- package/lib/view/companyView/types/companyPassport/companyPassportLocalData.js +12 -0
- package/lib/view/companyView/types/companyPassportViewPayload.d.ts +1 -1
- package/lib/view/companyView/types/companyPassportViewPayload.js +55 -12
- package/lib/view/expenseAutomationView/epics/transactionCategorization/triggerReviewTabRefetchEpic.js +2 -3
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.js +2 -2
- package/lib/view/onboardingView/customerView/onboardingCustomerViewSelector.d.ts +1 -0
- package/lib/view/onboardingView/customerView/onboardingCustomerViewSelector.js +22 -3
- 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 +4 -1
- package/lib/view/spendManagement/chargeCards/chargeCardRepaymentDetail/fetchChargeCardRepaymentDetailEpic.js +2 -1
- 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 +64 -1
- package/lib/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +15 -2
- package/lib/view/spendManagement/commonSetup/setupViewSelector.d.ts +13 -0
- package/lib/view/spendManagement/commonSetup/setupViewSelector.js +14 -1
- package/lib/view/spendManagement/commonSetup/setupViewState.d.ts +13 -0
- package/lib/view/spendManagement/commonSetup/types/businessVerification.d.ts +13 -0
- package/package.json +1 -1
|
@@ -18,6 +18,17 @@ 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;
|
|
21
32
|
first_month_of_fiscal_year?: string | undefined;
|
|
22
33
|
sync_token?: string | null;
|
|
23
34
|
}
|
|
@@ -36,6 +47,7 @@ export interface CompanyIncInfoPayload {
|
|
|
36
47
|
company_inc_state: string | null;
|
|
37
48
|
company_inc_state_code: string | null;
|
|
38
49
|
company_inc_type: string | null;
|
|
50
|
+
company_industry_sub_type?: string | null;
|
|
39
51
|
file_ids?: ID[] | null;
|
|
40
52
|
}
|
|
41
53
|
export interface CompanyTaxInfoPayload {
|
|
@@ -36,6 +36,25 @@ 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,
|
|
39
58
|
};
|
|
40
59
|
};
|
|
41
60
|
const toCompanyLocaleInfo = (payload) => ({
|
|
@@ -56,6 +75,7 @@ const toCompanyIncInfo = (payload) => ({
|
|
|
56
75
|
companyIncStateCode: payload.company_inc_state_code ?? undefined,
|
|
57
76
|
companyIncCountryCode: payload.company_inc_country_code ?? undefined,
|
|
58
77
|
fileIds: payload.file_ids ?? [],
|
|
78
|
+
companySubIndustry: payload.company_industry_sub_type ?? undefined,
|
|
59
79
|
});
|
|
60
80
|
const toCompanyTaxInfo = (payload) => ({
|
|
61
81
|
taxesFiledDate: payload.taxes_filed_date != null
|
|
@@ -27,12 +27,23 @@ export interface CompanyInfo {
|
|
|
27
27
|
bookCloseDate?: ZeniDate;
|
|
28
28
|
companyDescription?: string;
|
|
29
29
|
companyLegalName?: string;
|
|
30
|
+
companySourceOfFunds?: string;
|
|
31
|
+
companySourceOfFundsDescription?: string;
|
|
30
32
|
companyUrl?: ZeniUrl;
|
|
33
|
+
countriesOfOperations?: string[];
|
|
31
34
|
meetingUrl?: ZeniUrl;
|
|
32
35
|
phone?: string;
|
|
36
|
+
purposeOfAccount?: string;
|
|
37
|
+
purposeOfAccountDescription?: string;
|
|
38
|
+
regulatedStatus?: string;
|
|
39
|
+
regulatedStatusDescription?: string;
|
|
33
40
|
sourceOfFunds?: string;
|
|
34
41
|
syncToken?: string;
|
|
35
42
|
tenantId?: ID;
|
|
43
|
+
transactionVolume?: string;
|
|
44
|
+
transactionVolumeDescription?: string;
|
|
45
|
+
usNexus?: string;
|
|
46
|
+
usNexusTypes?: string[];
|
|
36
47
|
}
|
|
37
48
|
export interface CompanyLocaleInfo {
|
|
38
49
|
companyIncCountryCode: string;
|
|
@@ -50,6 +61,7 @@ export interface CompanyIncInfo {
|
|
|
50
61
|
companyIncState?: string;
|
|
51
62
|
companyIncStateCode?: string;
|
|
52
63
|
companyIncType?: string;
|
|
64
|
+
companySubIndustry?: string;
|
|
53
65
|
}
|
|
54
66
|
export interface CompanyTaxInfo {
|
|
55
67
|
taxesFiledYears: number[];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { toURL } from '../../commonPayloadTypes/urlPayload';
|
|
2
2
|
import { toAmount } from '../../commonStateTypes/amount';
|
|
3
|
-
import {
|
|
3
|
+
import { dateLocal, dateNow } from '../../zeniDayJS';
|
|
4
4
|
import { toZeniUrl } from '../../zeniUrl';
|
|
5
|
-
import { toContentType
|
|
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,6 +33,25 @@ 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,
|
|
36
55
|
};
|
|
37
56
|
};
|
|
38
57
|
const toCompanyLocaleInfo = (payload) => ({
|
|
@@ -53,6 +72,7 @@ const toCompanyIncInfo = (payload) => ({
|
|
|
53
72
|
companyIncStateCode: payload.company_inc_state_code ?? undefined,
|
|
54
73
|
companyIncCountryCode: payload.company_inc_country_code ?? undefined,
|
|
55
74
|
fileIds: payload.file_ids ?? [],
|
|
75
|
+
companySubIndustry: payload.company_industry_sub_type ?? undefined,
|
|
56
76
|
});
|
|
57
77
|
const toCompanyTaxInfo = (payload) => ({
|
|
58
78
|
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 { clearChargeCardRepaymentDetail, fetchChargeCardRepaymentDetail, initiateChargeCardRepayment, updateChargeCardRepaymentLocalStore, } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer';
|
|
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
288
|
import { PAYMENT_HISTORY_FILTER_CATEGORIES, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistory';
|
|
289
|
+
import { getChargeCardPaymentHistoryDownloadReport, } from './view/spendManagement/chargeCards/chargeCardPaymentHistory/chargeCardPaymentHistoryDownloadSelector';
|
|
294
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
|
+
import { clearChargeCardRepaymentDetail, fetchChargeCardRepaymentDetail, initiateChargeCardRepayment, updateChargeCardRepaymentLocalStore, } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer';
|
|
294
|
+
import { getChargeCardRepaymentDetail, } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector';
|
|
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,6 +12,9 @@ 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
|
+
}),
|
|
15
18
|
};
|
|
16
19
|
const { newAddressState } = state$.value.addressViewState;
|
|
17
20
|
const addressToCreate = newAddressState?.company_address?.addressToCreate;
|
|
@@ -10,9 +10,21 @@ export function toCompanyPassportLocalData(companyView, companyFiles) {
|
|
|
10
10
|
website: companyInfo.companyUrl,
|
|
11
11
|
meetingLink: companyInfo.meetingUrl,
|
|
12
12
|
industry: companyQuestionaire.companyIndustry,
|
|
13
|
+
companySubIndustry: incInfo.companySubIndustry,
|
|
13
14
|
businessModel: companyQuestionaire.companyBusinessModel ?? '',
|
|
14
15
|
phone: companyInfo.phone ?? '',
|
|
15
16
|
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,
|
|
16
28
|
},
|
|
17
29
|
incInfo: {
|
|
18
30
|
typeOfInc: incInfo.companyIncType ?? '',
|
|
@@ -1,16 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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;
|
|
1
|
+
/** Maps US nexus display label to API key (for company_us_nexus_desc) */
|
|
2
|
+
const US_NEXUS_LABEL_TO_KEY = {
|
|
3
|
+
Employees: 'employees',
|
|
4
|
+
Customers: 'customers',
|
|
5
|
+
'Physical office or facility': 'physical_office',
|
|
6
|
+
'Banking relationships': 'banking_relationships',
|
|
13
7
|
};
|
|
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
|
+
});
|
|
14
57
|
export const toCompanyIncInfoUpdatableInfoPayload = (info) => {
|
|
15
58
|
const payload = {
|
|
16
59
|
company_inc_type: info.typeOfInc,
|
|
@@ -4,15 +4,14 @@ 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 } = action.payload;
|
|
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
|
|
15
|
-
.transactionReviewLocalDataById[transactionId.id];
|
|
14
|
+
.transactionCategorizationView.review.transactionReviewLocalDataById[transactionId.id];
|
|
16
15
|
if (reviewLocalData != null) {
|
|
17
16
|
return EMPTY;
|
|
18
17
|
}
|
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.autoCategorized ??
|
|
45
|
+
[];
|
|
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
|
-
function isCompanyDetailsSavePending(fileState, company, primaryContact, companyDetailsLocalData) {
|
|
221
|
+
export 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 } = companyInfo;
|
|
227
|
-
const { fileIds, companyIncDate: incDate, companyIncType } = incInfo;
|
|
226
|
+
const { companyDescription, companyLegalName, companyUrl, phone, companySourceOfFunds, companySourceOfFundsDescription, countriesOfOperations, transactionVolume, transactionVolumeDescription, purposeOfAccount, purposeOfAccountDescription, regulatedStatus, regulatedStatusDescription, usNexus, usNexusTypes, } = companyInfo;
|
|
227
|
+
const { fileIds, companyIncDate: incDate, companyIncState, companyIncType, companySubIndustry, } = 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, typeOfIncorporation: companyIncTypeLocalData, primaryContactLocalData, } = companyDetailsLocalData;
|
|
231
|
+
const { companyDescription: companyDescriptionLocalData, companyIndustry: companyIndustryLocalData, companyLegalName: companyLegalNameLocalData, taxIdOrEIN: taxIdLocalData, incDate: incDateLocalData, phone: companyPhoneLocalData, website: companyUrlLocalData, companyFiles: companyFilesLocalData, stateOfIncorporation: stateOfIncorporationLocalData, typeOfIncorporation: companyIncTypeLocalData, companySourceOfFunds: companySourceOfFundsLocalData, companySourceOfFundsDescription: companySourceOfFundsDescriptionLocalData, countriesOfOperations: countriesOfOperationsLocalData, companySubIndustry: companySubIndustryLocalData, transactionVolume: transactionVolumeLocalData, transactionVolumeDescription: transactionVolumeDescriptionLocalData, purposeOfAccount: purposeOfAccountLocalData, purposeOfAccountDescription: purposeOfAccountDescriptionLocalData, regulatedStatus: regulatedStatusLocalData, regulatedStatusDescription: regulatedStatusDescriptionLocalData, usNexus: usNexusLocalData, usNexusTypes: usNexusTypesLocalData, primaryContactLocalData, } = companyDetailsLocalData;
|
|
232
232
|
const fileIdsLocalData = companyFilesLocalData.map((file) => file.fileId);
|
|
233
233
|
if (primaryContact != null) {
|
|
234
234
|
const { firstName, lastName, email } = primaryContact;
|
|
@@ -238,6 +238,10 @@ function isCompanyDetailsSavePending(fileState, company, primaryContact, company
|
|
|
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 ?? []);
|
|
241
245
|
return (companyDescription != companyDescriptionLocalData ||
|
|
242
246
|
companyIndustry != companyIndustryLocalData ||
|
|
243
247
|
companyLegalName != companyLegalNameLocalData ||
|
|
@@ -245,7 +249,21 @@ function isCompanyDetailsSavePending(fileState, company, primaryContact, company
|
|
|
245
249
|
incDate?.toString() != incDateLocalData?.toString() ||
|
|
246
250
|
phone != companyPhoneLocalData ||
|
|
247
251
|
companyUrl?.toString() != companyUrlLocalData?.toString() ||
|
|
252
|
+
companyIncState != stateOfIncorporationLocalData ||
|
|
253
|
+
companySourceOfFunds != companySourceOfFundsLocalData ||
|
|
254
|
+
companySourceOfFundsDescription !=
|
|
255
|
+
companySourceOfFundsDescriptionLocalData ||
|
|
256
|
+
!countriesOfOperationsMatch ||
|
|
248
257
|
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 ||
|
|
249
267
|
!(fileIdsLocalData.length === companyFileIds.length &&
|
|
250
268
|
companyFileIds.every((fileId) => fileIdsLocalData.includes(fileId))));
|
|
251
269
|
}
|
|
@@ -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
|
|
6
|
-
const { filters, repaymentHistoryIds, searchText, uiState, fetchState, error
|
|
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 { getUsersByUserIds } from '../../../../entity/user/userSelector';
|
|
4
|
-
import { getAllFundingAccounts, mapDepositAccToFundingAccount, mapPaymentAccToFundingAccount, } from '../../commonSetup/setupViewSelector';
|
|
5
3
|
import { getDepositAccountByDepositAccountId } from '../../../../entity/depositAccount/depositAccountSelector';
|
|
6
4
|
import { getPaymentAccountByPaymentAccountId } from '../../../../entity/paymentAccount/paymentAccountSelector';
|
|
5
|
+
import { getUsersByUserIds } from '../../../../entity/user/userSelector';
|
|
6
|
+
import { getAllFundingAccounts, mapDepositAccToFundingAccount, mapPaymentAccToFundingAccount, } from '../../commonSetup/setupViewSelector';
|
|
7
7
|
import { getAllDepositAccounts } from '../../zeniAccounts/depositAccountList/depositAccountListSelector';
|
|
8
8
|
import { getAllPaymentAccounts } from '../../zeniAccounts/paymentAccountList/paymentAccountListSelector';
|
|
9
9
|
import { applyPaymentHistoryFiltersSearchAndSort } from './chargeCardPaymentHistoryHelpers';
|
|
@@ -15,7 +15,10 @@ 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 = [
|
|
18
|
+
transferFromAccounts = [
|
|
19
|
+
...depositFundingFromLimit,
|
|
20
|
+
...paymentFundingAccounts,
|
|
21
|
+
];
|
|
19
22
|
}
|
|
20
23
|
}
|
|
21
24
|
const reducedFetchState = reduceAnyCompletedFetchState([
|
|
@@ -7,7 +7,8 @@ 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' &&
|
|
10
|
+
const willFetchDeposit = depositAccounts.fetchState !== 'In-Progress' &&
|
|
11
|
+
depositAccounts.fetchState !== 'Completed';
|
|
11
12
|
if (willFetchDeposit) {
|
|
12
13
|
fetchChargeCardRepaymentDetailActions.push(fetchDepositAccountList());
|
|
13
14
|
}
|
|
@@ -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 { addRepaymentToChargeCardPaymentHistory } from '../chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
13
12
|
import { updateCreditAccountRepaymentAmountAndDate } from '../chargeCardList/chargeCardListReducer';
|
|
13
|
+
import { addRepaymentToChargeCardPaymentHistory } from '../chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
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,8 +115,28 @@ 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
|
+
}
|
|
118
138
|
export const toBusinessVerificationCompanyDataPayload = (companyLocalData, sendForVerification, companyAddressData, registeredAddressData, setupViewType) => {
|
|
119
|
-
const { companyDescription, companyLegalName, companyIndustry, website, incDate, taxIdOrEIN, phone, syncToken, fileIds, typeOfIncorporation, sourceOfFunds, } = companyLocalData;
|
|
139
|
+
const { companyDescription, companyLegalName, companyIndustry, companySubIndustry, countriesOfOperations, companySourceOfFunds, companySourceOfFundsDescription, transactionVolume, transactionVolumeDescription, purposeOfAccount, purposeOfAccountDescription, regulatedStatus, regulatedStatusDescription, usNexus, usNexusTypes, website, incDate, taxIdOrEIN, phone, syncToken, fileIds, typeOfIncorporation, stateOfIncorporation, sourceOfFunds, } = companyLocalData;
|
|
120
140
|
const company = {
|
|
121
141
|
is_ready_for_verification: sendForVerification,
|
|
122
142
|
file_ids: fileIds,
|
|
@@ -167,9 +187,52 @@ export const toBusinessVerificationCompanyDataPayload = (companyLocalData, sendF
|
|
|
167
187
|
if (typeOfIncorporation != null) {
|
|
168
188
|
company['company_inc_type'] = typeOfIncorporation;
|
|
169
189
|
}
|
|
190
|
+
if (stateOfIncorporation != null) {
|
|
191
|
+
company['company_inc_state'] = stateOfIncorporation;
|
|
192
|
+
}
|
|
170
193
|
if (companyIndustry != null) {
|
|
171
194
|
company['company_industry'] = companyIndustry;
|
|
172
195
|
}
|
|
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
|
+
});
|
|
173
236
|
if (setupViewType === 'zeni_treasury' && sourceOfFunds != null) {
|
|
174
237
|
company['source_of_funds'] = sourceOfFunds;
|
|
175
238
|
}
|
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, } = companyInfo;
|
|
46
|
+
const { companyId, companyDescription, companyLegalName, companyUrl, phone, syncToken, sourceOfFunds, companySourceOfFunds: incCompanySourceOfFunds, companySourceOfFundsDescription, countriesOfOperations, transactionVolume, transactionVolumeDescription, purposeOfAccount, purposeOfAccountDescription, regulatedStatus, regulatedStatusDescription, usNexus, usNexusTypes, } = companyInfo;
|
|
47
47
|
const { usersSelectedForVerification: usersSelected } = companyBillPayInfo;
|
|
48
|
-
const { fileIds, companyIncDate: incDate, companyIncType } = incInfo;
|
|
48
|
+
const { fileIds, companyIncDate: incDate, companyIncType, companyIncState, companySubIndustry, } = incInfo;
|
|
49
49
|
const { companyIndustry } = questionaire;
|
|
50
50
|
const { taxId } = taxInfo;
|
|
51
51
|
const companyDetails = {
|
|
@@ -53,6 +53,10 @@ 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,
|
|
56
60
|
taxIdOrEIN: taxId,
|
|
57
61
|
incDate,
|
|
58
62
|
phone,
|
|
@@ -61,6 +65,15 @@ export function toSetupViewLocalData(company, users, userRoles, primaryContact)
|
|
|
61
65
|
syncToken,
|
|
62
66
|
typeOfIncorporation: companyIncType,
|
|
63
67
|
sourceOfFunds,
|
|
68
|
+
stateOfIncorporation: companyIncState,
|
|
69
|
+
transactionVolume,
|
|
70
|
+
transactionVolumeDescription,
|
|
71
|
+
purposeOfAccount,
|
|
72
|
+
purposeOfAccountDescription,
|
|
73
|
+
regulatedStatus,
|
|
74
|
+
regulatedStatusDescription,
|
|
75
|
+
usNexus,
|
|
76
|
+
usNexusTypes,
|
|
64
77
|
};
|
|
65
78
|
let primaryContactDetails = undefined;
|
|
66
79
|
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, phone, taxIdOrEIN, incDate, fileIds, typeOfIncorporation, sourceOfFunds, } = companyDetails.localData;
|
|
112
|
+
const { syncToken, companyDescription, companyLegalName, website, companyIndustry, companySubIndustry, companySourceOfFunds, companySourceOfFundsDescription, countriesOfOperations, phone, taxIdOrEIN, incDate, fileIds, typeOfIncorporation, sourceOfFunds, transactionVolume, transactionVolumeDescription, purposeOfAccount, purposeOfAccountDescription, regulatedStatus, regulatedStatusDescription, stateOfIncorporation, usNexus, usNexusTypes, } = companyDetails.localData;
|
|
113
113
|
fileIds.forEach((fileId) => {
|
|
114
114
|
deleteFileStatusById[fileId] = getFileDeleteStatusById(state, fileId);
|
|
115
115
|
});
|
|
@@ -123,6 +123,10 @@ export const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentit
|
|
|
123
123
|
companyDescription,
|
|
124
124
|
companyLegalName,
|
|
125
125
|
companyIndustry,
|
|
126
|
+
companySubIndustry,
|
|
127
|
+
companySourceOfFunds,
|
|
128
|
+
companySourceOfFundsDescription,
|
|
129
|
+
countriesOfOperations,
|
|
126
130
|
website,
|
|
127
131
|
phone,
|
|
128
132
|
taxIdOrEIN,
|
|
@@ -136,6 +140,15 @@ export const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentit
|
|
|
136
140
|
primaryContactLocalData,
|
|
137
141
|
typeOfIncorporation,
|
|
138
142
|
sourceOfFunds,
|
|
143
|
+
transactionVolume,
|
|
144
|
+
transactionVolumeDescription,
|
|
145
|
+
purposeOfAccount,
|
|
146
|
+
purposeOfAccountDescription,
|
|
147
|
+
regulatedStatus,
|
|
148
|
+
regulatedStatusDescription,
|
|
149
|
+
stateOfIncorporation,
|
|
150
|
+
usNexus,
|
|
151
|
+
usNexusTypes,
|
|
139
152
|
};
|
|
140
153
|
}
|
|
141
154
|
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';
|
|
438
443
|
import { clearChargeCardRepaymentDetail, fetchChargeCardRepaymentDetail, initiateChargeCardRepayment, updateChargeCardRepaymentLocalStore } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer';
|
|
439
444
|
import { ChargeCardRepaymentDetailSelectorView, getChargeCardRepaymentDetail } from './view/spendManagement/chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailSelector';
|
|
440
445
|
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';
|