@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
|
@@ -15,9 +15,6 @@ const updateCompanyDetailsEpic = (actions$, state$, zeniAPI) => actions$.pipe((0
|
|
|
15
15
|
...(0, companyPassportViewPayload_1.toCompanyIncInfoUpdatableInfoPayload)(companyDetails.incInfo),
|
|
16
16
|
...(0, companyPassportViewPayload_1.toCompanyTaxInfoUpdatableInfoPayload)(companyDetails.taxDetails),
|
|
17
17
|
...(0, companyPassportViewPayload_1.toCompanyFileInfoPayload)(companyDetails.incInfo, companyDetails.taxDetails),
|
|
18
|
-
...(companyDetails.companyInfo.companySubIndustry != null && {
|
|
19
|
-
company_industry_sub_type: companyDetails.companyInfo.companySubIndustry,
|
|
20
|
-
}),
|
|
21
18
|
};
|
|
22
19
|
const { newAddressState } = state$.value.addressViewState;
|
|
23
20
|
const addressToCreate = newAddressState?.company_address?.addressToCreate;
|
|
@@ -8,20 +8,8 @@ export interface CompanyInfoLocalData {
|
|
|
8
8
|
firstMonthOfFY: Month;
|
|
9
9
|
legalName: string;
|
|
10
10
|
phone: string;
|
|
11
|
-
companySourceOfFunds?: string;
|
|
12
|
-
companySourceOfFundsDescription?: string;
|
|
13
|
-
companySubIndustry?: string;
|
|
14
|
-
countriesOfOperations?: string[];
|
|
15
11
|
industry?: string;
|
|
16
12
|
meetingLink?: ZeniUrl;
|
|
17
|
-
purposeOfAccount?: string;
|
|
18
|
-
purposeOfAccountDescription?: string;
|
|
19
|
-
regulatedStatus?: string;
|
|
20
|
-
regulatedStatusDescription?: string;
|
|
21
|
-
transactionVolume?: string;
|
|
22
|
-
transactionVolumeDescription?: string;
|
|
23
|
-
usNexus?: string;
|
|
24
|
-
usNexusTypes?: string[];
|
|
25
13
|
website?: ZeniUrl;
|
|
26
14
|
}
|
|
27
15
|
export interface IncInfoLocalData {
|
|
@@ -13,21 +13,9 @@ function toCompanyPassportLocalData(companyView, companyFiles) {
|
|
|
13
13
|
website: companyInfo.companyUrl,
|
|
14
14
|
meetingLink: companyInfo.meetingUrl,
|
|
15
15
|
industry: companyQuestionaire.companyIndustry,
|
|
16
|
-
companySubIndustry: incInfo.companySubIndustry,
|
|
17
16
|
businessModel: companyQuestionaire.companyBusinessModel ?? '',
|
|
18
17
|
phone: companyInfo.phone ?? '',
|
|
19
18
|
firstMonthOfFY: companyInfo.firstMonthOfFY,
|
|
20
|
-
companySourceOfFunds: companyInfo.companySourceOfFunds,
|
|
21
|
-
companySourceOfFundsDescription: companyInfo.companySourceOfFundsDescription,
|
|
22
|
-
countriesOfOperations: companyInfo.countriesOfOperations,
|
|
23
|
-
transactionVolume: companyInfo.transactionVolume,
|
|
24
|
-
transactionVolumeDescription: companyInfo.transactionVolumeDescription,
|
|
25
|
-
purposeOfAccount: companyInfo.purposeOfAccount,
|
|
26
|
-
purposeOfAccountDescription: companyInfo.purposeOfAccountDescription,
|
|
27
|
-
regulatedStatus: companyInfo.regulatedStatus,
|
|
28
|
-
regulatedStatusDescription: companyInfo.regulatedStatusDescription,
|
|
29
|
-
usNexus: companyInfo.usNexus,
|
|
30
|
-
usNexusTypes: companyInfo.usNexusTypes,
|
|
31
19
|
},
|
|
32
20
|
incInfo: {
|
|
33
21
|
typeOfInc: incInfo.companyIncType ?? '',
|
|
@@ -2,7 +2,7 @@ import { ID } from '../../../commonStateTypes/common';
|
|
|
2
2
|
import { CompanyConfigInfoPayload, CompanyIncInfoPayload, CompanyInfoPayload, CompanyQuestionairePayload, CompanyTaxInfoPayload } from '../../../entity/company/companyPayload';
|
|
3
3
|
import { UserUpdatableInfo } from '../epic/companyPassport/updatePrimaryContactEpic';
|
|
4
4
|
import { CompanyInfoLocalData, IncInfoLocalData, TaxDetailsLocalData } from './companyPassport/companyDetailsLocalData';
|
|
5
|
-
interface CompanyInfoUpdatableInfoPayload extends Pick<CompanyInfoPayload, 'name' | 'company_url' | 'meeting_url' | 'company_legal_name' | 'phone'
|
|
5
|
+
interface CompanyInfoUpdatableInfoPayload extends Pick<CompanyInfoPayload, 'name' | 'company_url' | 'meeting_url' | 'company_legal_name' | 'phone'>, Pick<CompanyQuestionairePayload, 'company_industry' | 'company_business_model'>, Pick<CompanyConfigInfoPayload, 'is_new_company_industry_verified'> {
|
|
6
6
|
}
|
|
7
7
|
type CompanyIncUpdatableInfoPayload = Pick<CompanyIncInfoPayload, 'company_inc_type' | 'company_inc_state' | 'company_inc_date'>;
|
|
8
8
|
type CompanyTaxUpdatableInfoPayload = Omit<CompanyTaxInfoPayload, 'taxes_filed_date' | 'taxes_due_date'>;
|
|
@@ -1,62 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.toUserUpdatableInfoPayload = exports.toCompanyFileInfoPayload = exports.toCompanyTaxInfoUpdatableInfoPayload = exports.toCompanyIncInfoUpdatableInfoPayload = exports.toCompanyUpdatableInfoPayload = void 0;
|
|
4
|
-
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
const toCompanyUpdatableInfoPayload = (info) => {
|
|
5
|
+
const payload = {
|
|
6
|
+
name: info.companyName,
|
|
7
|
+
company_legal_name: info.legalName,
|
|
8
|
+
phone: info.phone,
|
|
9
|
+
company_industry: info.industry,
|
|
10
|
+
company_business_model: info.businessModel,
|
|
11
|
+
company_url: info.website != null ? info.website.toString() : null,
|
|
12
|
+
meeting_url: info.meetingLink != null ? info.meetingLink.toString() : null,
|
|
13
|
+
is_new_company_industry_verified: true,
|
|
14
|
+
};
|
|
15
|
+
return payload;
|
|
10
16
|
};
|
|
11
|
-
function toUsNexusTypeKey(value) {
|
|
12
|
-
const key = US_NEXUS_LABEL_TO_KEY[value];
|
|
13
|
-
return key ?? value;
|
|
14
|
-
}
|
|
15
|
-
const toCompanyUpdatableInfoPayload = (info) => ({
|
|
16
|
-
name: info.companyName,
|
|
17
|
-
company_legal_name: info.legalName,
|
|
18
|
-
phone: info.phone,
|
|
19
|
-
company_industry: info.industry,
|
|
20
|
-
company_business_model: info.businessModel,
|
|
21
|
-
company_url: info.website != null ? info.website.toString() : null,
|
|
22
|
-
meeting_url: info.meetingLink != null ? info.meetingLink.toString() : null,
|
|
23
|
-
is_new_company_industry_verified: true,
|
|
24
|
-
...(info.companySourceOfFunds != null && {
|
|
25
|
-
company_source_of_funds: info.companySourceOfFunds,
|
|
26
|
-
}),
|
|
27
|
-
...(info.companySourceOfFundsDescription != null && {
|
|
28
|
-
company_source_of_funds_desc: info.companySourceOfFundsDescription,
|
|
29
|
-
}),
|
|
30
|
-
...(info.countriesOfOperations != null &&
|
|
31
|
-
info.countriesOfOperations.length > 0 && {
|
|
32
|
-
company_countries_of_operations: info.countriesOfOperations,
|
|
33
|
-
}),
|
|
34
|
-
...(info.transactionVolume != null && {
|
|
35
|
-
company_transaction_vol_expectations: info.transactionVolume,
|
|
36
|
-
}),
|
|
37
|
-
...(info.transactionVolumeDescription != null && {
|
|
38
|
-
company_transaction_vol_expectations_desc: info.transactionVolumeDescription,
|
|
39
|
-
}),
|
|
40
|
-
...(info.purposeOfAccount != null && {
|
|
41
|
-
company_purpose_of_account: info.purposeOfAccount,
|
|
42
|
-
}),
|
|
43
|
-
...(info.purposeOfAccountDescription != null && {
|
|
44
|
-
company_purpose_of_account_desc: info.purposeOfAccountDescription,
|
|
45
|
-
}),
|
|
46
|
-
...(info.regulatedStatus != null && {
|
|
47
|
-
company_regulated_states: info.regulatedStatus === 'yes',
|
|
48
|
-
}),
|
|
49
|
-
...(info.regulatedStatusDescription != null && {
|
|
50
|
-
company_regulated_states_desc: info.regulatedStatusDescription,
|
|
51
|
-
}),
|
|
52
|
-
...(info.usNexus != null && {
|
|
53
|
-
company_us_nexus: info.usNexus === 'yes',
|
|
54
|
-
}),
|
|
55
|
-
...(info.usNexusTypes != null &&
|
|
56
|
-
info.usNexusTypes.length > 0 && {
|
|
57
|
-
company_us_nexus_desc: info.usNexusTypes.map(toUsNexusTypeKey),
|
|
58
|
-
}),
|
|
59
|
-
});
|
|
60
17
|
exports.toCompanyUpdatableInfoPayload = toCompanyUpdatableInfoPayload;
|
|
61
18
|
const toCompanyIncInfoUpdatableInfoPayload = (info) => {
|
|
62
19
|
const payload = {
|
|
@@ -7,14 +7,15 @@ const timePeriod_1 = require("../../../../commonStateTypes/timePeriod");
|
|
|
7
7
|
const tenantSelector_1 = require("../../../../entity/tenant/tenantSelector");
|
|
8
8
|
const transactionsViewReducer_1 = require("../../reducers/transactionsViewReducer");
|
|
9
9
|
const triggerReviewTabRefetchEpic = (actions$, state$) => actions$.pipe((0, operators_1.filter)(transactionsViewReducer_1.syncTransactionCategorizationFromDetailSave.match), (0, operators_1.mergeMap)((action) => {
|
|
10
|
-
const { pendingReviewLineIds, transactionId, isUncategorizedExpenseCategoryEnabled
|
|
10
|
+
const { pendingReviewLineIds, transactionId, isUncategorizedExpenseCategoryEnabled } = action.payload;
|
|
11
11
|
if (pendingReviewLineIds.length === 0) {
|
|
12
12
|
return rxjs_1.EMPTY;
|
|
13
13
|
}
|
|
14
14
|
const state = state$.value;
|
|
15
15
|
// Only trigger when the transaction was auto-only (not in review tab after reducer ran)
|
|
16
16
|
const reviewLocalData = state.expenseAutomationTransactionsViewState
|
|
17
|
-
.transactionCategorizationView.review
|
|
17
|
+
.transactionCategorizationView.review
|
|
18
|
+
.transactionReviewLocalDataById[transactionId.id];
|
|
18
19
|
if (reviewLocalData != null) {
|
|
19
20
|
return rxjs_1.EMPTY;
|
|
20
21
|
}
|
|
@@ -46,8 +46,8 @@ const filterAutoTabLineItems = (tabView, transactionId, updatedTransaction) => {
|
|
|
46
46
|
if (localData == null) {
|
|
47
47
|
return;
|
|
48
48
|
}
|
|
49
|
-
const currentAutoLineIds = localData.transactionReviewLocalData.tabSpecificLineItems
|
|
50
|
-
[];
|
|
49
|
+
const currentAutoLineIds = localData.transactionReviewLocalData.tabSpecificLineItems
|
|
50
|
+
.autoCategorized ?? [];
|
|
51
51
|
const linesById = new Map(updatedTransaction.lines?.map((l) => [l.id, l]));
|
|
52
52
|
const retainedLineIds = currentAutoLineIds.filter((lineId) => {
|
|
53
53
|
const line = linesById.get(lineId);
|
|
@@ -53,5 +53,4 @@ export declare const onboardingStepsData: (isValidConnection: boolean, productSe
|
|
|
53
53
|
allStepsData: OnboardingStep[];
|
|
54
54
|
requiredStepsData: OnboardingStep[];
|
|
55
55
|
};
|
|
56
|
-
export declare function isCompanyDetailsSavePending(fileState: FileState, company?: CompanyView, primaryContact?: User, companyDetailsLocalData?: CompanyDetails): boolean;
|
|
57
56
|
export declare const getProductSettingsString: (productSettings: TenantProductSettings | undefined) => string;
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getProductSettingsString = exports.onboardingStepsData = void 0;
|
|
4
4
|
exports.getOnboardingCustomerView = getOnboardingCustomerView;
|
|
5
5
|
exports.isOfficerDetailsCompleted = isOfficerDetailsCompleted;
|
|
6
|
-
exports.isCompanyDetailsSavePending = isCompanyDetailsSavePending;
|
|
7
6
|
const reduceFetchState_1 = require("../../../commonStateTypes/reduceFetchState");
|
|
8
7
|
const fileSelector_1 = require("../../../entity/file/fileSelector");
|
|
9
8
|
const paymentAccountSelector_1 = require("../../../entity/paymentAccount/paymentAccountSelector");
|
|
@@ -230,12 +229,12 @@ function isCompanyDetailsSavePending(fileState, company, primaryContact, company
|
|
|
230
229
|
return false;
|
|
231
230
|
}
|
|
232
231
|
const { companyInfo, incInfo, taxInfo, questionaire } = company.company.company;
|
|
233
|
-
const { companyDescription, companyLegalName, companyUrl, phone
|
|
234
|
-
const { fileIds, companyIncDate: incDate,
|
|
232
|
+
const { companyDescription, companyLegalName, companyUrl, phone } = companyInfo;
|
|
233
|
+
const { fileIds, companyIncDate: incDate, companyIncType } = incInfo;
|
|
235
234
|
const { companyIndustry } = questionaire;
|
|
236
235
|
const { taxId } = taxInfo;
|
|
237
236
|
const companyFileIds = (0, fileSelector_1.getFilesByFileIds)(fileState, fileIds).map((file) => file.fileId);
|
|
238
|
-
const { companyDescription: companyDescriptionLocalData, companyIndustry: companyIndustryLocalData, companyLegalName: companyLegalNameLocalData, taxIdOrEIN: taxIdLocalData, incDate: incDateLocalData, phone: companyPhoneLocalData, website: companyUrlLocalData, companyFiles: companyFilesLocalData,
|
|
237
|
+
const { companyDescription: companyDescriptionLocalData, companyIndustry: companyIndustryLocalData, companyLegalName: companyLegalNameLocalData, taxIdOrEIN: taxIdLocalData, incDate: incDateLocalData, phone: companyPhoneLocalData, website: companyUrlLocalData, companyFiles: companyFilesLocalData, typeOfIncorporation: companyIncTypeLocalData, primaryContactLocalData, } = companyDetailsLocalData;
|
|
239
238
|
const fileIdsLocalData = companyFilesLocalData.map((file) => file.fileId);
|
|
240
239
|
if (primaryContact != null) {
|
|
241
240
|
const { firstName, lastName, email } = primaryContact;
|
|
@@ -245,10 +244,6 @@ function isCompanyDetailsSavePending(fileState, company, primaryContact, company
|
|
|
245
244
|
return true;
|
|
246
245
|
}
|
|
247
246
|
}
|
|
248
|
-
const countriesOfOperationsMatch = JSON.stringify(countriesOfOperations ?? []) ===
|
|
249
|
-
JSON.stringify(countriesOfOperationsLocalData ?? []);
|
|
250
|
-
const usNexusTypesMatch = JSON.stringify(usNexusTypes ?? []) ===
|
|
251
|
-
JSON.stringify(usNexusTypesLocalData ?? []);
|
|
252
247
|
return (companyDescription != companyDescriptionLocalData ||
|
|
253
248
|
companyIndustry != companyIndustryLocalData ||
|
|
254
249
|
companyLegalName != companyLegalNameLocalData ||
|
|
@@ -256,21 +251,7 @@ function isCompanyDetailsSavePending(fileState, company, primaryContact, company
|
|
|
256
251
|
incDate?.toString() != incDateLocalData?.toString() ||
|
|
257
252
|
phone != companyPhoneLocalData ||
|
|
258
253
|
companyUrl?.toString() != companyUrlLocalData?.toString() ||
|
|
259
|
-
companyIncState != stateOfIncorporationLocalData ||
|
|
260
|
-
companySourceOfFunds != companySourceOfFundsLocalData ||
|
|
261
|
-
companySourceOfFundsDescription !=
|
|
262
|
-
companySourceOfFundsDescriptionLocalData ||
|
|
263
|
-
!countriesOfOperationsMatch ||
|
|
264
254
|
companyIncType != companyIncTypeLocalData ||
|
|
265
|
-
transactionVolume != transactionVolumeLocalData ||
|
|
266
|
-
transactionVolumeDescription != transactionVolumeDescriptionLocalData ||
|
|
267
|
-
purposeOfAccount != purposeOfAccountLocalData ||
|
|
268
|
-
purposeOfAccountDescription != purposeOfAccountDescriptionLocalData ||
|
|
269
|
-
regulatedStatus != regulatedStatusLocalData ||
|
|
270
|
-
regulatedStatusDescription != regulatedStatusDescriptionLocalData ||
|
|
271
|
-
usNexus != usNexusLocalData ||
|
|
272
|
-
!usNexusTypesMatch ||
|
|
273
|
-
companySubIndustry != companySubIndustryLocalData ||
|
|
274
255
|
!(fileIdsLocalData.length === companyFileIds.length &&
|
|
275
256
|
companyFileIds.every((fileId) => fileIdsLocalData.includes(fileId))));
|
|
276
257
|
}
|
|
@@ -5,8 +5,8 @@ const chargeCardRepaymentSelector_1 = require("../../../../entity/chargeCardRepa
|
|
|
5
5
|
const userSelector_1 = require("../../../../entity/user/userSelector");
|
|
6
6
|
const chargeCardPaymentHistoryHelpers_1 = require("./chargeCardPaymentHistoryHelpers");
|
|
7
7
|
const getChargeCardPaymentHistoryDownloadReport = (state) => {
|
|
8
|
-
const { chargeCardPaymentHistoryState, chargeCardRepaymentState, userState } = state;
|
|
9
|
-
const { filters, repaymentHistoryIds, searchText, uiState, fetchState, error } = chargeCardPaymentHistoryState;
|
|
8
|
+
const { chargeCardPaymentHistoryState, chargeCardRepaymentState, userState, } = state;
|
|
9
|
+
const { filters, repaymentHistoryIds, searchText, uiState, fetchState, error, } = chargeCardPaymentHistoryState;
|
|
10
10
|
const repaymentHistory = (0, chargeCardRepaymentSelector_1.getChargeCardRepaymentByIds)(chargeCardRepaymentState, repaymentHistoryIds);
|
|
11
11
|
const repaymentHistoryUserIds = Array.from(new Set(repaymentHistory.map((r) => r.paidById)));
|
|
12
12
|
const repaymentHistoryUsers = (0, userSelector_1.getUsersByUserIds)(userState, repaymentHistoryUserIds);
|
|
@@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getChargeCardPaymentHistoryView = void 0;
|
|
4
4
|
const reduceFetchState_1 = require("../../../../commonStateTypes/reduceFetchState");
|
|
5
5
|
const chargeCardRepaymentSelector_1 = require("../../../../entity/chargeCardRepayment/chargeCardRepaymentSelector");
|
|
6
|
-
const depositAccountSelector_1 = require("../../../../entity/depositAccount/depositAccountSelector");
|
|
7
|
-
const paymentAccountSelector_1 = require("../../../../entity/paymentAccount/paymentAccountSelector");
|
|
8
6
|
const userSelector_1 = require("../../../../entity/user/userSelector");
|
|
9
7
|
const setupViewSelector_1 = require("../../commonSetup/setupViewSelector");
|
|
8
|
+
const depositAccountSelector_1 = require("../../../../entity/depositAccount/depositAccountSelector");
|
|
9
|
+
const paymentAccountSelector_1 = require("../../../../entity/paymentAccount/paymentAccountSelector");
|
|
10
10
|
const depositAccountListSelector_1 = require("../../zeniAccounts/depositAccountList/depositAccountListSelector");
|
|
11
11
|
const paymentAccountListSelector_1 = require("../../zeniAccounts/paymentAccountList/paymentAccountListSelector");
|
|
12
12
|
const chargeCardPaymentHistoryHelpers_1 = require("./chargeCardPaymentHistoryHelpers");
|
|
@@ -18,10 +18,7 @@ const getChargeCardRepaymentDetail = (state) => {
|
|
|
18
18
|
else {
|
|
19
19
|
const depositFundingFromLimit = Object.values(depositAccountState.depositAccountLimitForChargeCardByID ?? {}).map(setupViewSelector_1.mapDepositAccountWithLimitToFundingAccount);
|
|
20
20
|
const paymentFundingAccounts = (0, setupViewSelector_1.getAllFundingAccounts)([], paymentAccountsView.paymentAccounts, paymentAccountListState.paymentAccountBalanceFetchStatus);
|
|
21
|
-
transferFromAccounts = [
|
|
22
|
-
...depositFundingFromLimit,
|
|
23
|
-
...paymentFundingAccounts,
|
|
24
|
-
];
|
|
21
|
+
transferFromAccounts = [...depositFundingFromLimit, ...paymentFundingAccounts];
|
|
25
22
|
}
|
|
26
23
|
}
|
|
27
24
|
const reducedFetchState = (0, reduceFetchState_1.reduceAnyCompletedFetchState)([
|
|
@@ -10,8 +10,7 @@ const fetchChargeCardRepaymentDetailEpic = (actions$, state$) => actions$.pipe((
|
|
|
10
10
|
const fetchChargeCardRepaymentDetailActions = [];
|
|
11
11
|
const state = state$.value;
|
|
12
12
|
const depositAccounts = state.depositAccountListState;
|
|
13
|
-
const willFetchDeposit = depositAccounts.fetchState !== 'In-Progress' &&
|
|
14
|
-
depositAccounts.fetchState !== 'Completed';
|
|
13
|
+
const willFetchDeposit = depositAccounts.fetchState !== 'In-Progress' && depositAccounts.fetchState !== 'Completed';
|
|
15
14
|
if (willFetchDeposit) {
|
|
16
15
|
fetchChargeCardRepaymentDetailActions.push((0, depositAccountListReducer_1.fetchDepositAccountList)());
|
|
17
16
|
}
|
|
@@ -4,8 +4,8 @@ import { updateChargeCardRepayment } from '../../../../entity/chargeCardRepaymen
|
|
|
4
4
|
import { updateCompanyPrimaryAccount, updateEnableAutoPayForChargeCard } from '../../../../entity/company/companyReducer';
|
|
5
5
|
import { RootState } from '../../../../reducer';
|
|
6
6
|
import { ZeniAPI } from '../../../../zeniAPI';
|
|
7
|
-
import { updateCreditAccountRepaymentAmountAndDate } from '../chargeCardList/chargeCardListReducer';
|
|
8
7
|
import { addRepaymentToChargeCardPaymentHistory } from '../chargeCardPaymentHistory/chargeCardPaymentHistoryReducer';
|
|
8
|
+
import { updateCreditAccountRepaymentAmountAndDate } from '../chargeCardList/chargeCardListReducer';
|
|
9
9
|
import { initiateChargeCardRepayment, updateChargeCardRepaymentStatus } from './chargeCardRepaymentDetailReducer';
|
|
10
10
|
export type ActionType = ReturnType<typeof addRepaymentToChargeCardPaymentHistory> | ReturnType<typeof initiateChargeCardRepayment> | ReturnType<typeof updateChargeCardRepayment> | ReturnType<typeof updateCreditAccountRepaymentAmountAndDate> | ReturnType<typeof updateChargeCardRepaymentStatus> | ReturnType<typeof updateCompanyPrimaryAccount> | ReturnType<typeof updateEnableAutoPayForChargeCard>;
|
|
11
11
|
export declare const initiateChargeCardRepaymentEpic: (actions$: ActionsObservable<ActionType>, state$: StateObservable<RootState>, zeniAPI: ZeniAPI) => Observable<ActionType>;
|
|
@@ -12,8 +12,8 @@ const setupViewSelector_1 = require("../../commonSetup/setupViewSelector");
|
|
|
12
12
|
const helpers_1 = require("../../helpers");
|
|
13
13
|
const depositAccountListSelector_1 = require("../../zeniAccounts/depositAccountList/depositAccountListSelector");
|
|
14
14
|
const paymentAccountListSelector_1 = require("../../zeniAccounts/paymentAccountList/paymentAccountListSelector");
|
|
15
|
-
const chargeCardListReducer_1 = require("../chargeCardList/chargeCardListReducer");
|
|
16
15
|
const chargeCardPaymentHistoryReducer_1 = require("../chargeCardPaymentHistory/chargeCardPaymentHistoryReducer");
|
|
16
|
+
const chargeCardListReducer_1 = require("../chargeCardList/chargeCardListReducer");
|
|
17
17
|
const chargeCardRepaymentDetailReducer_1 = require("./chargeCardRepaymentDetailReducer");
|
|
18
18
|
const initiateChargeCardRepaymentEpic = (actions$, state$, zeniAPI) => actions$.pipe((0, operators_1.filter)(chargeCardRepaymentDetailReducer_1.initiateChargeCardRepayment.match), (0, operators_1.switchMap)((action) => {
|
|
19
19
|
const state = state$.value;
|
package/lib/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js
CHANGED
|
@@ -122,28 +122,8 @@ const updateBusinessVerificationDetailsEpic = (actions$, state$, zeniAPI) => act
|
|
|
122
122
|
}
|
|
123
123
|
}));
|
|
124
124
|
exports.updateBusinessVerificationDetailsEpic = updateBusinessVerificationDetailsEpic;
|
|
125
|
-
/** US Nexus API keys. Form may submit these or display labels; we send keys to API. */
|
|
126
|
-
const US_NEXUS_KEYS = new Set([
|
|
127
|
-
'employees',
|
|
128
|
-
'customers',
|
|
129
|
-
'physical_office',
|
|
130
|
-
'banking_relationships',
|
|
131
|
-
]);
|
|
132
|
-
/** Maps display label → API key for US nexus types (English labels from strings). */
|
|
133
|
-
const US_NEXUS_LABEL_TO_KEY = {
|
|
134
|
-
Employees: 'employees',
|
|
135
|
-
Customers: 'customers',
|
|
136
|
-
'Physical office or facility': 'physical_office',
|
|
137
|
-
'Banking relationships': 'banking_relationships',
|
|
138
|
-
};
|
|
139
|
-
function toUsNexusTypeKey(value) {
|
|
140
|
-
if (US_NEXUS_KEYS.has(value)) {
|
|
141
|
-
return value;
|
|
142
|
-
}
|
|
143
|
-
return US_NEXUS_LABEL_TO_KEY[value] ?? value;
|
|
144
|
-
}
|
|
145
125
|
const toBusinessVerificationCompanyDataPayload = (companyLocalData, sendForVerification, companyAddressData, registeredAddressData, setupViewType) => {
|
|
146
|
-
const { companyDescription, companyLegalName, companyIndustry,
|
|
126
|
+
const { companyDescription, companyLegalName, companyIndustry, website, incDate, taxIdOrEIN, phone, syncToken, fileIds, typeOfIncorporation, sourceOfFunds, } = companyLocalData;
|
|
147
127
|
const company = {
|
|
148
128
|
is_ready_for_verification: sendForVerification,
|
|
149
129
|
file_ids: fileIds,
|
|
@@ -194,52 +174,9 @@ const toBusinessVerificationCompanyDataPayload = (companyLocalData, sendForVerif
|
|
|
194
174
|
if (typeOfIncorporation != null) {
|
|
195
175
|
company['company_inc_type'] = typeOfIncorporation;
|
|
196
176
|
}
|
|
197
|
-
if (stateOfIncorporation != null) {
|
|
198
|
-
company['company_inc_state'] = stateOfIncorporation;
|
|
199
|
-
}
|
|
200
177
|
if (companyIndustry != null) {
|
|
201
178
|
company['company_industry'] = companyIndustry;
|
|
202
179
|
}
|
|
203
|
-
Object.assign(company, {
|
|
204
|
-
...(companySubIndustry != null && {
|
|
205
|
-
company_industry_sub_type: companySubIndustry,
|
|
206
|
-
}),
|
|
207
|
-
...(countriesOfOperations != null &&
|
|
208
|
-
countriesOfOperations.length > 0 && {
|
|
209
|
-
company_countries_of_operations: countriesOfOperations,
|
|
210
|
-
}),
|
|
211
|
-
...(companySourceOfFunds != null && {
|
|
212
|
-
company_source_of_funds: companySourceOfFunds,
|
|
213
|
-
}),
|
|
214
|
-
...(companySourceOfFundsDescription != null && {
|
|
215
|
-
company_source_of_funds_desc: companySourceOfFundsDescription,
|
|
216
|
-
}),
|
|
217
|
-
...(transactionVolume != null && {
|
|
218
|
-
company_transaction_vol_expectations: transactionVolume,
|
|
219
|
-
}),
|
|
220
|
-
...(transactionVolumeDescription != null && {
|
|
221
|
-
company_transaction_vol_expectations_desc: transactionVolumeDescription,
|
|
222
|
-
}),
|
|
223
|
-
...(purposeOfAccount != null && {
|
|
224
|
-
company_purpose_of_account: purposeOfAccount,
|
|
225
|
-
}),
|
|
226
|
-
...(purposeOfAccountDescription != null && {
|
|
227
|
-
company_purpose_of_account_desc: purposeOfAccountDescription,
|
|
228
|
-
}),
|
|
229
|
-
...(regulatedStatus != null && {
|
|
230
|
-
company_regulated_states: regulatedStatus === 'yes',
|
|
231
|
-
}),
|
|
232
|
-
...(regulatedStatusDescription != null && {
|
|
233
|
-
company_regulated_states_desc: regulatedStatusDescription,
|
|
234
|
-
}),
|
|
235
|
-
...(usNexus != null && {
|
|
236
|
-
company_us_nexus: usNexus === 'yes',
|
|
237
|
-
}),
|
|
238
|
-
...(usNexusTypes != null &&
|
|
239
|
-
usNexusTypes.length > 0 && {
|
|
240
|
-
company_us_nexus_desc: usNexusTypes.map(toUsNexusTypeKey),
|
|
241
|
-
}),
|
|
242
|
-
});
|
|
243
180
|
if (setupViewType === 'zeni_treasury' && sourceOfFunds != null) {
|
|
244
181
|
company['source_of_funds'] = sourceOfFunds;
|
|
245
182
|
}
|
package/lib/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js
CHANGED
|
@@ -51,9 +51,9 @@ exports.updateSetupViewLocalStoreDataEpic = updateSetupViewLocalStoreDataEpic;
|
|
|
51
51
|
*/
|
|
52
52
|
function toSetupViewLocalData(company, users, userRoles, primaryContact) {
|
|
53
53
|
const { companyInfo, incInfo, taxInfo, questionaire, companyBillPayInfo } = company;
|
|
54
|
-
const { companyId, companyDescription, companyLegalName, companyUrl, phone, syncToken, sourceOfFunds,
|
|
54
|
+
const { companyId, companyDescription, companyLegalName, companyUrl, phone, syncToken, sourceOfFunds, } = companyInfo;
|
|
55
55
|
const { usersSelectedForVerification: usersSelected } = companyBillPayInfo;
|
|
56
|
-
const { fileIds, companyIncDate: incDate, companyIncType
|
|
56
|
+
const { fileIds, companyIncDate: incDate, companyIncType } = incInfo;
|
|
57
57
|
const { companyIndustry } = questionaire;
|
|
58
58
|
const { taxId } = taxInfo;
|
|
59
59
|
const companyDetails = {
|
|
@@ -61,10 +61,6 @@ function toSetupViewLocalData(company, users, userRoles, primaryContact) {
|
|
|
61
61
|
companyDescription,
|
|
62
62
|
companyIndustry,
|
|
63
63
|
companyLegalName,
|
|
64
|
-
companySubIndustry,
|
|
65
|
-
companySourceOfFunds: incCompanySourceOfFunds,
|
|
66
|
-
companySourceOfFundsDescription,
|
|
67
|
-
countriesOfOperations,
|
|
68
64
|
taxIdOrEIN: taxId,
|
|
69
65
|
incDate,
|
|
70
66
|
phone,
|
|
@@ -73,15 +69,6 @@ function toSetupViewLocalData(company, users, userRoles, primaryContact) {
|
|
|
73
69
|
syncToken,
|
|
74
70
|
typeOfIncorporation: companyIncType,
|
|
75
71
|
sourceOfFunds,
|
|
76
|
-
stateOfIncorporation: companyIncState,
|
|
77
|
-
transactionVolume,
|
|
78
|
-
transactionVolumeDescription,
|
|
79
|
-
purposeOfAccount,
|
|
80
|
-
purposeOfAccountDescription,
|
|
81
|
-
regulatedStatus,
|
|
82
|
-
regulatedStatusDescription,
|
|
83
|
-
usNexus,
|
|
84
|
-
usNexusTypes,
|
|
85
72
|
};
|
|
86
73
|
let primaryContactDetails = undefined;
|
|
87
74
|
if (primaryContact != null) {
|
|
@@ -70,27 +70,14 @@ export interface CompanyDetails {
|
|
|
70
70
|
companyDescription?: string;
|
|
71
71
|
companyIndustry?: string;
|
|
72
72
|
companyLegalName?: string;
|
|
73
|
-
companySourceOfFunds?: string;
|
|
74
|
-
companySourceOfFundsDescription?: string;
|
|
75
|
-
companySubIndustry?: string;
|
|
76
|
-
countriesOfOperations?: string[];
|
|
77
73
|
incDate?: ZeniDate;
|
|
78
74
|
phone?: string;
|
|
79
75
|
primaryContactLocalData?: PrimaryContactLocalData;
|
|
80
|
-
purposeOfAccount?: string;
|
|
81
|
-
purposeOfAccountDescription?: string;
|
|
82
76
|
registeredAddressStatus?: NewAddressData;
|
|
83
|
-
regulatedStatus?: string;
|
|
84
|
-
regulatedStatusDescription?: string;
|
|
85
77
|
sourceOfFunds?: string;
|
|
86
|
-
stateOfIncorporation?: string;
|
|
87
78
|
syncToken?: string;
|
|
88
79
|
taxIdOrEIN?: string;
|
|
89
|
-
transactionVolume?: string;
|
|
90
|
-
transactionVolumeDescription?: string;
|
|
91
80
|
typeOfIncorporation?: string;
|
|
92
|
-
usNexus?: string;
|
|
93
|
-
usNexusTypes?: string[];
|
|
94
81
|
website?: ZeniUrl;
|
|
95
82
|
}
|
|
96
83
|
interface CompanyAndOfficerLocalData {
|
|
@@ -114,7 +114,7 @@ const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentityDetail
|
|
|
114
114
|
if (companyDetails.localData != null) {
|
|
115
115
|
const deleteFileStatusById = {};
|
|
116
116
|
const updateFileStatusById = {};
|
|
117
|
-
const { syncToken, companyDescription, companyLegalName, website, companyIndustry,
|
|
117
|
+
const { syncToken, companyDescription, companyLegalName, website, companyIndustry, phone, taxIdOrEIN, incDate, fileIds, typeOfIncorporation, sourceOfFunds, } = companyDetails.localData;
|
|
118
118
|
fileIds.forEach((fileId) => {
|
|
119
119
|
deleteFileStatusById[fileId] = (0, fileViewSelector_1.getFileDeleteStatusById)(state, fileId);
|
|
120
120
|
});
|
|
@@ -128,10 +128,6 @@ const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentityDetail
|
|
|
128
128
|
companyDescription,
|
|
129
129
|
companyLegalName,
|
|
130
130
|
companyIndustry,
|
|
131
|
-
companySubIndustry,
|
|
132
|
-
companySourceOfFunds,
|
|
133
|
-
companySourceOfFundsDescription,
|
|
134
|
-
countriesOfOperations,
|
|
135
131
|
website,
|
|
136
132
|
phone,
|
|
137
133
|
taxIdOrEIN,
|
|
@@ -145,15 +141,6 @@ const getCompanyAndIdentityDetails = (state, companyId, companyAndIdentityDetail
|
|
|
145
141
|
primaryContactLocalData,
|
|
146
142
|
typeOfIncorporation,
|
|
147
143
|
sourceOfFunds,
|
|
148
|
-
transactionVolume,
|
|
149
|
-
transactionVolumeDescription,
|
|
150
|
-
purposeOfAccount,
|
|
151
|
-
purposeOfAccountDescription,
|
|
152
|
-
regulatedStatus,
|
|
153
|
-
regulatedStatusDescription,
|
|
154
|
-
stateOfIncorporation,
|
|
155
|
-
usNexus,
|
|
156
|
-
usNexusTypes,
|
|
157
144
|
};
|
|
158
145
|
}
|
|
159
146
|
const companyOfficerLocalData = {
|
|
@@ -17,25 +17,12 @@ export interface CompanyDetailsLocalData {
|
|
|
17
17
|
companyDescription?: string;
|
|
18
18
|
companyIndustry?: string;
|
|
19
19
|
companyLegalName?: string;
|
|
20
|
-
companySourceOfFunds?: string;
|
|
21
|
-
companySourceOfFundsDescription?: string;
|
|
22
|
-
companySubIndustry?: string;
|
|
23
|
-
countriesOfOperations?: string[];
|
|
24
20
|
incDate?: ZeniDate;
|
|
25
21
|
phone?: string;
|
|
26
|
-
purposeOfAccount?: string;
|
|
27
|
-
purposeOfAccountDescription?: string;
|
|
28
|
-
regulatedStatus?: string;
|
|
29
|
-
regulatedStatusDescription?: string;
|
|
30
22
|
sourceOfFunds?: string;
|
|
31
|
-
stateOfIncorporation?: string;
|
|
32
23
|
syncToken?: string;
|
|
33
24
|
taxIdOrEIN?: string;
|
|
34
|
-
transactionVolume?: string;
|
|
35
|
-
transactionVolumeDescription?: string;
|
|
36
25
|
typeOfIncorporation?: string;
|
|
37
|
-
usNexus?: string;
|
|
38
|
-
usNexusTypes?: string[];
|
|
39
26
|
website?: ZeniUrl;
|
|
40
27
|
}
|
|
41
28
|
export interface PrimaryContactLocalData {
|
|
@@ -63,19 +63,6 @@ export interface CompanyDetailsVerificationPayload {
|
|
|
63
63
|
source_of_funds: string;
|
|
64
64
|
sync_token: string;
|
|
65
65
|
tax_id: string;
|
|
66
|
-
company_countries_of_operations?: string[];
|
|
67
|
-
company_inc_state?: string | null;
|
|
68
|
-
company_industry_sub_type?: string;
|
|
69
|
-
company_purpose_of_account?: string;
|
|
70
|
-
company_purpose_of_account_desc?: string;
|
|
71
|
-
company_regulated_states?: boolean;
|
|
72
|
-
company_regulated_states_desc?: string;
|
|
73
|
-
company_source_of_funds?: string;
|
|
74
|
-
company_source_of_funds_desc?: string;
|
|
75
|
-
company_transaction_vol_expectations?: string;
|
|
76
|
-
company_transaction_vol_expectations_desc?: string;
|
|
77
|
-
company_us_nexus?: boolean;
|
|
78
|
-
company_us_nexus_desc?: string[];
|
|
79
66
|
subscription_billing_address?: AddressUpdatableInfoPayload;
|
|
80
67
|
}
|
|
81
68
|
export interface BusinessVerificationDataPayload {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/client-epic-state",
|
|
3
|
-
"version": "4.19.
|
|
3
|
+
"version": "4.19.79",
|
|
4
4
|
"description": "Shared module between Web & Mobile containing required abstractions for state management, async network communication. ",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|