@zeniai/client-epic-state 4.19.77-betaAS3 → 4.19.77-betaML1
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 -1
- package/lib/entity/company/companyPayload.js +0 -1
- package/lib/entity/company/companyStateTypes.d.ts +0 -1
- package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
- package/lib/entity/snackbar/snackbarTypes.js +1 -0
- package/lib/epic.d.ts +2 -1
- package/lib/epic.js +2 -1
- package/lib/esm/entity/company/companyPayload.js +0 -1
- package/lib/esm/entity/snackbar/snackbarTypes.js +1 -0
- package/lib/esm/epic.js +2 -1
- package/lib/esm/index.js +4 -6
- package/lib/esm/view/accountList/accountListReducer.js +3 -1
- package/lib/esm/view/accountList/accountListSelector.js +8 -0
- package/lib/esm/view/accountList/fetchAccountListEpic.js +20 -10
- package/lib/esm/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +0 -3
- package/lib/esm/view/companyView/types/companyPassport/companyPassportLocalData.js +0 -1
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/convertTransactionTypeEpic.js +78 -0
- package/lib/esm/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.js +5 -0
- package/lib/esm/view/expenseAutomationView/reducers/transactionsViewReducer.js +30 -1
- package/lib/esm/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +3 -0
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +1 -4
- package/lib/esm/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +1 -2
- package/lib/esm/view/spendManagement/commonSetup/setupViewSelector.js +1 -2
- package/lib/esm/view/spendManagement/commonSetup/types/businessVerification.js +1 -148
- package/lib/esm/view/transactionDetail/epics/transactionDetailEpic.js +5 -0
- package/lib/esm/view/transactionDetail/transactionDetailSelector.js +2 -0
- package/lib/index.d.ts +4 -7
- package/lib/index.js +35 -38
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -0
- package/lib/view/accountList/accountListReducer.d.ts +2 -1
- package/lib/view/accountList/accountListReducer.js +3 -1
- package/lib/view/accountList/accountListSelector.d.ts +6 -1
- package/lib/view/accountList/accountListSelector.js +10 -1
- package/lib/view/accountList/accountListState.d.ts +1 -1
- package/lib/view/accountList/fetchAccountListEpic.js +20 -10
- package/lib/view/companyView/epic/companyPassport/updateCompanyDetailsEpic.js +0 -3
- package/lib/view/companyView/types/companyPassport/companyDetailsLocalData.d.ts +0 -1
- package/lib/view/companyView/types/companyPassport/companyPassportLocalData.js +0 -1
- package/lib/view/expenseAutomationView/epics/transactionCategorization/convertTransactionTypeEpic.d.ts +38 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/convertTransactionTypeEpic.js +82 -0
- package/lib/view/expenseAutomationView/epics/transactionCategorization/fetchTransactionCategorizationViewEpic.js +5 -0
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
- package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.d.ts +17 -1
- package/lib/view/expenseAutomationView/reducers/transactionsViewReducer.js +31 -2
- package/lib/view/expenseAutomationView/selectorTypes/transactionsViewSelectorTypes.d.ts +10 -1
- package/lib/view/expenseAutomationView/selectors/transactionCategorizationSelector.js +3 -0
- package/lib/view/spendManagement/commonSetup/epic/setup/updateBusinessVerificationDetailsEpic.js +1 -4
- package/lib/view/spendManagement/commonSetup/epic/setup/updateSetupViewLocalStoreDataEpic.js +1 -2
- package/lib/view/spendManagement/commonSetup/setupViewSelector.d.ts +0 -1
- package/lib/view/spendManagement/commonSetup/setupViewSelector.js +1 -2
- package/lib/view/spendManagement/commonSetup/setupViewState.d.ts +0 -1
- package/lib/view/spendManagement/commonSetup/types/businessVerification.d.ts +3 -33
- package/lib/view/spendManagement/commonSetup/types/businessVerification.js +0 -150
- package/lib/view/transactionDetail/epics/transactionDetailEpic.js +5 -0
- package/lib/view/transactionDetail/transactionDetailSelector.d.ts +4 -1
- package/lib/view/transactionDetail/transactionDetailSelector.js +2 -0
- package/package.json +1 -1
|
@@ -1,34 +1,5 @@
|
|
|
1
1
|
import { ID } from '../../../../commonStateTypes/common';
|
|
2
2
|
import { AddressUpdatableInfoPayload } from '../../../addressView/addressViewPayload';
|
|
3
|
-
export declare const COMPANY_TRANSACTION_VOLUME_CODES: readonly ["less_than_10000", "10000_50000", "50001_250000", "250001_1000000", "1000001_2000000", "over_2000000"];
|
|
4
|
-
export type CompanyTransactionVolumeCode = (typeof COMPANY_TRANSACTION_VOLUME_CODES)[number];
|
|
5
|
-
export declare const COMPANY_SOURCE_OF_FUNDS_CODES: readonly ["sales_of_goods", "sales_of_services", "customer_payments", "investment_capital", "business_loans", "owner_contributions", "franchise_revenue", "rental_income", "government_contracts_grants", "donations_fundraising", "membership_fees_subscriptions", "licensing_royalties", "commission_income", "import_export_revenue", "cryptocurrency_activity"];
|
|
6
|
-
export type CompanySourceOfFundsCode = (typeof COMPANY_SOURCE_OF_FUNDS_CODES)[number];
|
|
7
|
-
export declare const COMPANY_PURPOSE_OF_ACCOUNT_CODES: readonly ["retail_sales", "ecommerce_sales", "cash_heavy_operations", "import_export_trade", "professional_services_not_handling_funds", "professional_services_handling_funds", "holding_investment_company", "property_management_real_estate", "charitable_nonprofit", "construction_contracting", "commercial_cash_operations", "freight_forwarding_logistics", "third_party_payment_processing", "technology_startup", "wholesale_distribution", "franchise_operation", "healthcare_provider", "educational_institution"];
|
|
8
|
-
export type CompanyPurposeOfAccountCode = (typeof COMPANY_PURPOSE_OF_ACCOUNT_CODES)[number];
|
|
9
|
-
/** Keys for company_us_nexus_desc / form usNexusTypes (labels from usNexusOptions in app locale). */
|
|
10
|
-
export declare const COMPANY_US_NEXUS_TYPE_CODES: readonly ["employees", "customers", "physical_office", "banking_relationships"];
|
|
11
|
-
export type CompanyUsNexusTypeCode = (typeof COMPANY_US_NEXUS_TYPE_CODES)[number];
|
|
12
|
-
/** Industry type codes for onboarding / business verification (paired with sub-industry). */
|
|
13
|
-
export declare const COMPANY_ONBOARDING_INDUSTRY_TYPE_CODES: readonly ["retail_consumer_goods", "financial_services", "food_agriculture", "healthcare_pharmaceuticals", "professional_services", "manufacturing_industrial", "real_estate_construction", "logistics_transportation", "wholesale_trade", "business_support_services", "escort_dating_adult_entertainment"];
|
|
14
|
-
export type CompanyOnboardingIndustryTypeCode = (typeof COMPANY_ONBOARDING_INDUSTRY_TYPE_CODES)[number];
|
|
15
|
-
export declare const COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY: {
|
|
16
|
-
readonly retail_consumer_goods: readonly ["grocery_stores_supermarkets", "convenience_stores", "specialty_food_retailers", "gas_stations_retail", "general_merchandise_department", "online_retail_ecommerce", "subscription_membership", "direct_to_consumer", "cannabis"];
|
|
17
|
-
readonly financial_services: readonly ["banks_credit_unions", "fintech_payment_processing", "insurance_providers", "investment_advisors_broker", "lending_mortgage", "treasury_management", "personal_finance_apps", "retirement_planning", "real_estate_investment", "money_service_businesses", "cryptocurrency", "debt_collection", "payday_lending", "gambling"];
|
|
18
|
-
readonly food_agriculture: readonly ["farms_agricultural", "food_wholesalers_distributors", "restaurants_cafes", "bars_nightclubs", "catering_services", "farmers_markets", "restaurant_tech_pos"];
|
|
19
|
-
readonly healthcare_pharmaceuticals: readonly ["hospitals_clinics", "pharmacies", "medical_equipment", "biotechnology", "home_health", "healthcare_staffing", "wellness_benefits", "healthcare_social_assistance"];
|
|
20
|
-
readonly professional_services: readonly ["legal_services", "accounting_auditing", "consulting_firms", "marketing_advertising", "real_estate_agents_property", "corporate_services_incorporation", "hr_workforce_management", "direct_marketing_telemarketing", "legal_accounting_consulting_programming"];
|
|
21
|
-
readonly manufacturing_industrial: readonly ["chemical_manufacturing", "electronics_hardware", "automotive_manufacturing", "construction_materials", "textiles_apparel", "mining"];
|
|
22
|
-
readonly real_estate_construction: readonly ["real_estate", "construction"];
|
|
23
|
-
readonly logistics_transportation: readonly ["transportation_warehousing"];
|
|
24
|
-
readonly wholesale_trade: readonly ["wholesale_trade"];
|
|
25
|
-
readonly business_support_services: readonly ["business_support_building"];
|
|
26
|
-
readonly escort_dating_adult_entertainment: readonly ["escort_services", "dating_adult_entertainment"];
|
|
27
|
-
};
|
|
28
|
-
export type CompanyOnboardingSubIndustryTypeCode = {
|
|
29
|
-
[K in keyof typeof COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY]: (typeof COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY)[K][number];
|
|
30
|
-
}[keyof typeof COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY];
|
|
31
|
-
export declare function getCompanyOnboardingSubIndustryCodesForIndustry(industryTypeCode: string | undefined | null): CompanyOnboardingSubIndustryTypeCode[];
|
|
32
3
|
export interface CompanyOfficerVerificationPayload {
|
|
33
4
|
additional_submitted_documents_for_verification_file_ids: {
|
|
34
5
|
social_security_card: ID[];
|
|
@@ -95,14 +66,13 @@ export interface CompanyDetailsVerificationPayload {
|
|
|
95
66
|
company_countries_of_operations?: string[];
|
|
96
67
|
company_inc_state?: string | null;
|
|
97
68
|
company_industry_sub_type?: string;
|
|
98
|
-
|
|
99
|
-
company_purpose_of_account?: CompanyPurposeOfAccountCode;
|
|
69
|
+
company_purpose_of_account?: string;
|
|
100
70
|
company_purpose_of_account_desc?: string;
|
|
101
71
|
company_regulated_states?: boolean;
|
|
102
72
|
company_regulated_states_desc?: string;
|
|
103
|
-
company_source_of_funds?:
|
|
73
|
+
company_source_of_funds?: string;
|
|
104
74
|
company_source_of_funds_desc?: string;
|
|
105
|
-
company_transaction_vol_expectations?:
|
|
75
|
+
company_transaction_vol_expectations?: string;
|
|
106
76
|
company_transaction_vol_expectations_desc?: string;
|
|
107
77
|
company_us_nexus?: boolean;
|
|
108
78
|
company_us_nexus_desc?: string[];
|
|
@@ -1,152 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY = exports.COMPANY_ONBOARDING_INDUSTRY_TYPE_CODES = exports.COMPANY_US_NEXUS_TYPE_CODES = exports.COMPANY_PURPOSE_OF_ACCOUNT_CODES = exports.COMPANY_SOURCE_OF_FUNDS_CODES = exports.COMPANY_TRANSACTION_VOLUME_CODES = void 0;
|
|
4
|
-
exports.getCompanyOnboardingSubIndustryCodesForIndustry = getCompanyOnboardingSubIndustryCodesForIndustry;
|
|
5
|
-
exports.COMPANY_TRANSACTION_VOLUME_CODES = [
|
|
6
|
-
'less_than_10000',
|
|
7
|
-
'10000_50000',
|
|
8
|
-
'50001_250000',
|
|
9
|
-
'250001_1000000',
|
|
10
|
-
'1000001_2000000',
|
|
11
|
-
'over_2000000',
|
|
12
|
-
];
|
|
13
|
-
exports.COMPANY_SOURCE_OF_FUNDS_CODES = [
|
|
14
|
-
'sales_of_goods',
|
|
15
|
-
'sales_of_services',
|
|
16
|
-
'customer_payments',
|
|
17
|
-
'investment_capital',
|
|
18
|
-
'business_loans',
|
|
19
|
-
'owner_contributions',
|
|
20
|
-
'franchise_revenue',
|
|
21
|
-
'rental_income',
|
|
22
|
-
'government_contracts_grants',
|
|
23
|
-
'donations_fundraising',
|
|
24
|
-
'membership_fees_subscriptions',
|
|
25
|
-
'licensing_royalties',
|
|
26
|
-
'commission_income',
|
|
27
|
-
'import_export_revenue',
|
|
28
|
-
'cryptocurrency_activity',
|
|
29
|
-
];
|
|
30
|
-
exports.COMPANY_PURPOSE_OF_ACCOUNT_CODES = [
|
|
31
|
-
'retail_sales',
|
|
32
|
-
'ecommerce_sales',
|
|
33
|
-
'cash_heavy_operations',
|
|
34
|
-
'import_export_trade',
|
|
35
|
-
'professional_services_not_handling_funds',
|
|
36
|
-
'professional_services_handling_funds',
|
|
37
|
-
'holding_investment_company',
|
|
38
|
-
'property_management_real_estate',
|
|
39
|
-
'charitable_nonprofit',
|
|
40
|
-
'construction_contracting',
|
|
41
|
-
'commercial_cash_operations',
|
|
42
|
-
'freight_forwarding_logistics',
|
|
43
|
-
'third_party_payment_processing',
|
|
44
|
-
'technology_startup',
|
|
45
|
-
'wholesale_distribution',
|
|
46
|
-
'franchise_operation',
|
|
47
|
-
'healthcare_provider',
|
|
48
|
-
'educational_institution',
|
|
49
|
-
];
|
|
50
|
-
/** Keys for company_us_nexus_desc / form usNexusTypes (labels from usNexusOptions in app locale). */
|
|
51
|
-
exports.COMPANY_US_NEXUS_TYPE_CODES = [
|
|
52
|
-
'employees',
|
|
53
|
-
'customers',
|
|
54
|
-
'physical_office',
|
|
55
|
-
'banking_relationships',
|
|
56
|
-
];
|
|
57
|
-
/** Industry type codes for onboarding / business verification (paired with sub-industry). */
|
|
58
|
-
exports.COMPANY_ONBOARDING_INDUSTRY_TYPE_CODES = [
|
|
59
|
-
'retail_consumer_goods',
|
|
60
|
-
'financial_services',
|
|
61
|
-
'food_agriculture',
|
|
62
|
-
'healthcare_pharmaceuticals',
|
|
63
|
-
'professional_services',
|
|
64
|
-
'manufacturing_industrial',
|
|
65
|
-
'real_estate_construction',
|
|
66
|
-
'logistics_transportation',
|
|
67
|
-
'wholesale_trade',
|
|
68
|
-
'business_support_services',
|
|
69
|
-
'escort_dating_adult_entertainment',
|
|
70
|
-
];
|
|
71
|
-
exports.COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY = {
|
|
72
|
-
retail_consumer_goods: [
|
|
73
|
-
'grocery_stores_supermarkets',
|
|
74
|
-
'convenience_stores',
|
|
75
|
-
'specialty_food_retailers',
|
|
76
|
-
'gas_stations_retail',
|
|
77
|
-
'general_merchandise_department',
|
|
78
|
-
'online_retail_ecommerce',
|
|
79
|
-
'subscription_membership',
|
|
80
|
-
'direct_to_consumer',
|
|
81
|
-
'cannabis',
|
|
82
|
-
],
|
|
83
|
-
financial_services: [
|
|
84
|
-
'banks_credit_unions',
|
|
85
|
-
'fintech_payment_processing',
|
|
86
|
-
'insurance_providers',
|
|
87
|
-
'investment_advisors_broker',
|
|
88
|
-
'lending_mortgage',
|
|
89
|
-
'treasury_management',
|
|
90
|
-
'personal_finance_apps',
|
|
91
|
-
'retirement_planning',
|
|
92
|
-
'real_estate_investment',
|
|
93
|
-
'money_service_businesses',
|
|
94
|
-
'cryptocurrency',
|
|
95
|
-
'debt_collection',
|
|
96
|
-
'payday_lending',
|
|
97
|
-
'gambling',
|
|
98
|
-
],
|
|
99
|
-
food_agriculture: [
|
|
100
|
-
'farms_agricultural',
|
|
101
|
-
'food_wholesalers_distributors',
|
|
102
|
-
'restaurants_cafes',
|
|
103
|
-
'bars_nightclubs',
|
|
104
|
-
'catering_services',
|
|
105
|
-
'farmers_markets',
|
|
106
|
-
'restaurant_tech_pos',
|
|
107
|
-
],
|
|
108
|
-
healthcare_pharmaceuticals: [
|
|
109
|
-
'hospitals_clinics',
|
|
110
|
-
'pharmacies',
|
|
111
|
-
'medical_equipment',
|
|
112
|
-
'biotechnology',
|
|
113
|
-
'home_health',
|
|
114
|
-
'healthcare_staffing',
|
|
115
|
-
'wellness_benefits',
|
|
116
|
-
'healthcare_social_assistance',
|
|
117
|
-
],
|
|
118
|
-
professional_services: [
|
|
119
|
-
'legal_services',
|
|
120
|
-
'accounting_auditing',
|
|
121
|
-
'consulting_firms',
|
|
122
|
-
'marketing_advertising',
|
|
123
|
-
'real_estate_agents_property',
|
|
124
|
-
'corporate_services_incorporation',
|
|
125
|
-
'hr_workforce_management',
|
|
126
|
-
'direct_marketing_telemarketing',
|
|
127
|
-
'legal_accounting_consulting_programming',
|
|
128
|
-
],
|
|
129
|
-
manufacturing_industrial: [
|
|
130
|
-
'chemical_manufacturing',
|
|
131
|
-
'electronics_hardware',
|
|
132
|
-
'automotive_manufacturing',
|
|
133
|
-
'construction_materials',
|
|
134
|
-
'textiles_apparel',
|
|
135
|
-
'mining',
|
|
136
|
-
],
|
|
137
|
-
real_estate_construction: ['real_estate', 'construction'],
|
|
138
|
-
logistics_transportation: ['transportation_warehousing'],
|
|
139
|
-
wholesale_trade: ['wholesale_trade'],
|
|
140
|
-
business_support_services: ['business_support_building'],
|
|
141
|
-
escort_dating_adult_entertainment: [
|
|
142
|
-
'escort_services',
|
|
143
|
-
'dating_adult_entertainment',
|
|
144
|
-
],
|
|
145
|
-
};
|
|
146
|
-
function getCompanyOnboardingSubIndustryCodesForIndustry(industryTypeCode) {
|
|
147
|
-
if (industryTypeCode == null || industryTypeCode === '') {
|
|
148
|
-
return [];
|
|
149
|
-
}
|
|
150
|
-
const row = exports.COMPANY_ONBOARDING_SUB_INDUSTRY_CODES_BY_INDUSTRY[industryTypeCode];
|
|
151
|
-
return row != null ? [...row] : [];
|
|
152
|
-
}
|
|
@@ -40,6 +40,11 @@ const fetchTransactionDetailEpic = (actions$, state$, zeniAPI) => actions$.pipe(
|
|
|
40
40
|
accountList.fetchState !== 'In-Progress') {
|
|
41
41
|
transactionActions.push((0, accountListReducer_1.fetchAccountList)('accountList'));
|
|
42
42
|
}
|
|
43
|
+
const bankAndCreditCardAccounts = state$.value.accountListState.byReportId.bankAndCreditCardAccounts;
|
|
44
|
+
if (bankAndCreditCardAccounts.hasValidState() === false &&
|
|
45
|
+
bankAndCreditCardAccounts.fetchState !== 'In-Progress') {
|
|
46
|
+
transactionActions.push((0, accountListReducer_1.fetchAccountList)('bankAndCreditCardAccounts'));
|
|
47
|
+
}
|
|
43
48
|
const classList = state$.value.classListState;
|
|
44
49
|
if (classList.hasValidState() === false &&
|
|
45
50
|
classList.fetchState !== 'In-Progress') {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { NestedAccountHierarchyForReport } from '../../commonStateTypes/accountView/nestedAccountID';
|
|
2
2
|
import { NestedClassHierarchyForReport } from '../../commonStateTypes/classesView/nestedClassID';
|
|
3
|
-
import { FetchStateAndError } from '../../commonStateTypes/common';
|
|
3
|
+
import { FetchState, FetchStateAndError } from '../../commonStateTypes/common';
|
|
4
4
|
import { SelectorView } from '../../commonStateTypes/viewAndReport/viewAndReport';
|
|
5
|
+
import { AccountBase } from '../../entity/account/accountState';
|
|
5
6
|
import { TransactionID } from '../../entity/transaction/stateTypes/transaction';
|
|
6
7
|
import { SupportedTransactionWithCOT } from '../../entity/transaction/transactionState';
|
|
7
8
|
import { Vendor } from '../../entity/vendor/vendorState';
|
|
@@ -16,10 +17,12 @@ export interface TransactionDetailReport extends SelectorView {
|
|
|
16
17
|
allVendors: Vendor[];
|
|
17
18
|
classHierarchyList: NestedClassHierarchyForReport[];
|
|
18
19
|
classList: ClassListSelectorView;
|
|
20
|
+
createTransferEntryStatus: FetchState;
|
|
19
21
|
deleteStatusByAttachmentName: Record<string, FetchStateAndError>;
|
|
20
22
|
linkedTransactions: SupportedTransactionWithCOT[];
|
|
21
23
|
transactionDetailLocalData: TransactionDetailLocalData;
|
|
22
24
|
transactionDetailUpdateStatus: FetchStateAndError;
|
|
25
|
+
transferAccounts: AccountBase[];
|
|
23
26
|
isUpdateNotAllowed?: boolean;
|
|
24
27
|
transaction?: SupportedTransactionWithCOT;
|
|
25
28
|
}
|
|
@@ -83,6 +83,8 @@ const getTransactionDetail = (state, transactionId, fetchLinkedTransactions = tr
|
|
|
83
83
|
transactionDetailState_1.initialSupportedTransactionDetail.transactionDetailLocalData,
|
|
84
84
|
selectedVendor: transactionDetail?.transactionDetailLocalData.vendorUpdates,
|
|
85
85
|
allVendors: vendors,
|
|
86
|
+
createTransferEntryStatus: 'Not-Started',
|
|
87
|
+
transferAccounts: [],
|
|
86
88
|
};
|
|
87
89
|
};
|
|
88
90
|
exports.getTransactionDetail = getTransactionDetail;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/client-epic-state",
|
|
3
|
-
"version": "4.19.77-
|
|
3
|
+
"version": "4.19.77-betaML1",
|
|
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",
|