@zeniai/client-epic-state 5.0.2-betaRD1 → 5.0.2-betaRD2
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/transaction/payloadTypes/transactionPayload.js +0 -21
- package/lib/esm/entity/transaction/payloadTypes/transactionPayload.js +0 -21
- package/lib/index.d.ts +2 -1
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -1
- package/lib/view/aiAccountantView/aiAccountantViewState.d.ts +0 -1
- package/lib/view/companyView/types/cockpitTypes.d.ts +1 -1
- package/lib/view/expenseAutomationView/payload/reconciliationPayload.d.ts +0 -8
- package/package.json +1 -1
|
@@ -155,27 +155,6 @@ const toTransactionPayload = (transaction) => {
|
|
|
155
155
|
},
|
|
156
156
|
};
|
|
157
157
|
}
|
|
158
|
-
if (transaction.targetAccountId != null &&
|
|
159
|
-
transaction.targetAccountId !== '') {
|
|
160
|
-
transactionPayload = {
|
|
161
|
-
...transactionPayload,
|
|
162
|
-
target_account_id: transaction.targetAccountId,
|
|
163
|
-
};
|
|
164
|
-
}
|
|
165
|
-
if (transaction.targetAccountIntegrationId != null &&
|
|
166
|
-
transaction.targetAccountIntegrationId !== '') {
|
|
167
|
-
transactionPayload = {
|
|
168
|
-
...transactionPayload,
|
|
169
|
-
target_account_integration_id: transaction.targetAccountIntegrationId,
|
|
170
|
-
};
|
|
171
|
-
}
|
|
172
|
-
if (transaction.targetAccountName != null &&
|
|
173
|
-
transaction.targetAccountName !== '') {
|
|
174
|
-
transactionPayload = {
|
|
175
|
-
...transactionPayload,
|
|
176
|
-
target_account_name: transaction.targetAccountName,
|
|
177
|
-
};
|
|
178
|
-
}
|
|
179
158
|
if (transaction.toFromAccountId != null &&
|
|
180
159
|
transaction.toFromAccountId !== '') {
|
|
181
160
|
transactionPayload = {
|
|
@@ -150,27 +150,6 @@ export const toTransactionPayload = (transaction) => {
|
|
|
150
150
|
},
|
|
151
151
|
};
|
|
152
152
|
}
|
|
153
|
-
if (transaction.targetAccountId != null &&
|
|
154
|
-
transaction.targetAccountId !== '') {
|
|
155
|
-
transactionPayload = {
|
|
156
|
-
...transactionPayload,
|
|
157
|
-
target_account_id: transaction.targetAccountId,
|
|
158
|
-
};
|
|
159
|
-
}
|
|
160
|
-
if (transaction.targetAccountIntegrationId != null &&
|
|
161
|
-
transaction.targetAccountIntegrationId !== '') {
|
|
162
|
-
transactionPayload = {
|
|
163
|
-
...transactionPayload,
|
|
164
|
-
target_account_integration_id: transaction.targetAccountIntegrationId,
|
|
165
|
-
};
|
|
166
|
-
}
|
|
167
|
-
if (transaction.targetAccountName != null &&
|
|
168
|
-
transaction.targetAccountName !== '') {
|
|
169
|
-
transactionPayload = {
|
|
170
|
-
...transactionPayload,
|
|
171
|
-
target_account_name: transaction.targetAccountName,
|
|
172
|
-
};
|
|
173
|
-
}
|
|
174
153
|
if (transaction.toFromAccountId != null &&
|
|
175
154
|
transaction.toFromAccountId !== '') {
|
|
176
155
|
transactionPayload = {
|
package/lib/index.d.ts
CHANGED
|
@@ -868,7 +868,8 @@ export { AiAccountantCustomerPayload, AiAccountantEnrollmentPayload, AiAccountan
|
|
|
868
868
|
export { AiAccountantCancelOnboardingResponse, AiAccountantCancelOnboardingResponseData, AiAccountantCustomersResponse, AiAccountantCustomersResponseData, AiAccountantJobsResponse, AiAccountantJobsResponseData, AiAccountantTriggerJobResponse, AiAccountantTriggerJobResponseData, } from './view/aiAccountantView/aiAccountantViewPayload';
|
|
869
869
|
export { clearAllAiAccountantCustomers, updateAiAccountantCustomers, updateAiAccountantCustomer, updateAiAccountantJobs, } from './entity/aiAccountantCustomer/aiAccountantCustomerReducer';
|
|
870
870
|
export { AiAccountantCustomerView, AiAccountantEnrollmentView, AiAccountantJobView, getAiAccountantCustomers, getAiAccountantJobsByTenantId, } from './entity/aiAccountantCustomer/aiAccountantCustomerSelector';
|
|
871
|
-
export { AiAccountantCustomerViewState,
|
|
871
|
+
export { AiAccountantCustomerViewState, AiAccountantSortKey, AiAccountantUIState, AiAccountantViewState, } from './view/aiAccountantView/aiAccountantViewState';
|
|
872
|
+
export { AiAccountantFilterCategoryField } from './view/companyView/types/cockpitTypes';
|
|
872
873
|
export { cancelAiAccountantOnboarding, clearAiAccountantView, fetchAiAccountantCustomers, fetchAiAccountantJobs, setSelectedTenantIdsForJobTrigger, triggerAiAccountantJob, updateAiAccountantUIState, } from './view/aiAccountantView/aiAccountantViewReducer';
|
|
873
874
|
export { AiAccountantCockpitView, getAiAccountantCockpitView, } from './view/aiAccountantView/aiAccountantViewSelector';
|
|
874
875
|
export { fetchChatSessionsForUser, createSession, submitQuestion, updateAiCfoViewScrollPosition, updateCurrentInput, updateCotCollapsedState, clearInput, setSession, clearAiCfoView, clearCurrentSessionId, clearDeleteChatSessionStatus, clearLastContextMessage, createSessionAndSubmit, stopSubmit, stopSubmitQuestion, fetchChatHistory, acceptMasterTOS, deleteChatSession, updateResponseState, fetchSuggestedQuestions, fetchSuggestedQuestionsSuccess, fetchSuggestedQuestionsFailure, applyAiCfoSidePanelHostPageTransition, clearAiCfoSidePanelHostPageContext, } from './view/aiCfoView/aiCfoViewReducer';
|