@zeniai/client-epic-state 5.1.4-betaML3 → 5.1.4-betaML4

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.
@@ -28,7 +28,7 @@ export const backgroundRefetchReviewTabEpic = (actions$, state$, zeniAPI) => act
28
28
  page_size: PAGE_SIZE,
29
29
  search_text: reviewUiState.searchString,
30
30
  };
31
- return zeniAPI.getJSON(`https://dev.api.zeni.ai/version/1.0/mohanrajoria/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`
31
+ return zeniAPI.getJSON(`https://dev.api.zeni.ai/version/accounting/mohanrajoria/1.0/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`
32
32
  // `${
33
33
  // zeniAPI.apiEndPoints.accountMicroServiceBaseUrl
34
34
  // }/1.0/expense-automation/transactions?query=${encodeURIComponent(
@@ -29,7 +29,7 @@ export const fetchTransactionCategorizationEpic = (actions$, state$, zeniAPI) =>
29
29
  : DEFAULT_COMPLETED_SUB_TAB,
30
30
  };
31
31
  return zeniAPI
32
- .getJSON(`https://dev.api.zeni.ai/version/1.0/mohanrajoria/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
32
+ .getJSON(`https://dev.api.zeni.ai/version/accounting/mohanrajoria/1.0/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
33
33
  .pipe(mergeMap((response) => {
34
34
  if (isSuccessResponse(response) && response.data != null) {
35
35
  const updateActions = [];
@@ -31,7 +31,7 @@ const backgroundRefetchReviewTabEpic = (actions$, state$, zeniAPI) => actions$.p
31
31
  page_size: PAGE_SIZE,
32
32
  search_text: reviewUiState.searchString,
33
33
  };
34
- return zeniAPI.getJSON(`https://dev.api.zeni.ai/version/1.0/mohanrajoria/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`
34
+ return zeniAPI.getJSON(`https://dev.api.zeni.ai/version/accounting/mohanrajoria/1.0/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`
35
35
  // `${
36
36
  // zeniAPI.apiEndPoints.accountMicroServiceBaseUrl
37
37
  // }/1.0/expense-automation/transactions?query=${encodeURIComponent(
@@ -32,7 +32,7 @@ const fetchTransactionCategorizationEpic = (actions$, state$, zeniAPI) => action
32
32
  : completedSubTab_1.DEFAULT_COMPLETED_SUB_TAB,
33
33
  };
34
34
  return zeniAPI
35
- .getJSON(`https://dev.api.zeni.ai/version/1.0/mohanrajoria/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
35
+ .getJSON(`https://dev.api.zeni.ai/version/accounting/mohanrajoria/1.0/expense-automation/transactions?query=${encodeURIComponent(JSON.stringify(queryParam))}`)
36
36
  .pipe((0, operators_1.mergeMap)((response) => {
37
37
  if ((0, responsePayload_1.isSuccessResponse)(response) && response.data != null) {
38
38
  const updateActions = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeniai/client-epic-state",
3
- "version": "5.1.4-betaML3",
3
+ "version": "5.1.4-betaML4",
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",