@zeniai/client-epic-state 5.1.84-beta2ND → 5.1.84-beta3ND
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.
|
@@ -226,6 +226,7 @@ interface CompanyFeaturesActivationInfoPayload {
|
|
|
226
226
|
is_feature_vendor_listing_enabled: boolean;
|
|
227
227
|
is_reimbursement_feature_enabled: boolean;
|
|
228
228
|
is_same_day_ach_enabled: boolean;
|
|
229
|
+
is_book_keeping_enabled?: boolean;
|
|
229
230
|
}
|
|
230
231
|
export declare const toCompanyTreasuryInfo: (payload: CompanyTreasuryInfoDataPayload) => CompanyTreasuryInfo;
|
|
231
232
|
export declare const toOnboardingInfo: (onboardingInfoPayload?: OnboardingInfoPayload) => OnboardingInfo | undefined;
|
|
@@ -125,6 +125,7 @@ const toCompanyQuestionarie = (payload, currencyCode, currencySymbol) => ({
|
|
|
125
125
|
});
|
|
126
126
|
const toCompanyFeaturesActivationInfo = (payload) => ({
|
|
127
127
|
isBillPayFeatureEnabled: payload.is_bill_pay_feature_enabled,
|
|
128
|
+
isBookkeepingEnabled: payload.is_book_keeping_enabled,
|
|
128
129
|
isReimbursementFeatureEnabled: payload.is_reimbursement_feature_enabled,
|
|
129
130
|
connectedAccountProvider: payload.connected_account_provider,
|
|
130
131
|
isFeatureVendorListingEnabled: payload.is_feature_vendor_listing_enabled,
|
|
@@ -271,6 +271,7 @@ export interface CompanyFeaturesActivationInfo {
|
|
|
271
271
|
isFeatureVendorListingEnabled: boolean;
|
|
272
272
|
isReimbursementFeatureEnabled: boolean;
|
|
273
273
|
isSameDayAchFeatureEnabled: boolean;
|
|
274
|
+
isBookkeepingEnabled?: boolean;
|
|
274
275
|
}
|
|
275
276
|
export interface CompanyOnboardingAiActivationInfo {
|
|
276
277
|
isOnboardingAiActivationViewed: boolean;
|
|
@@ -122,6 +122,7 @@ const toCompanyQuestionarie = (payload, currencyCode, currencySymbol) => ({
|
|
|
122
122
|
});
|
|
123
123
|
const toCompanyFeaturesActivationInfo = (payload) => ({
|
|
124
124
|
isBillPayFeatureEnabled: payload.is_bill_pay_feature_enabled,
|
|
125
|
+
isBookkeepingEnabled: payload.is_book_keeping_enabled,
|
|
125
126
|
isReimbursementFeatureEnabled: payload.is_reimbursement_feature_enabled,
|
|
126
127
|
connectedAccountProvider: payload.connected_account_provider,
|
|
127
128
|
isFeatureVendorListingEnabled: payload.is_feature_vendor_listing_enabled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/client-epic-state",
|
|
3
|
-
"version": "5.1.84-
|
|
3
|
+
"version": "5.1.84-beta3ND",
|
|
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",
|