woodsportal-client-sdk 1.1.4-dev.44 → 1.1.4-dev.46
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/dist/adapters/angular/index.d.ts +2 -2
- package/dist/adapters/angular/index.js +2 -2
- package/dist/adapters/react/index.d.ts +2 -2
- package/dist/adapters/react/index.js +2 -2
- package/dist/adapters/vue/index.d.ts +2 -2
- package/dist/adapters/vue/index.js +2 -2
- package/dist/{chunk-S7IOA4GI.js → chunk-FJC7FWEL.js} +3 -3
- package/dist/{chunk-S7IOA4GI.js.map → chunk-FJC7FWEL.js.map} +1 -1
- package/dist/{chunk-A5LK4PTO.js → chunk-SNDHC4EY.js} +160 -21
- package/dist/chunk-SNDHC4EY.js.map +1 -0
- package/dist/index.js +3 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-A5LK4PTO.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getParamDetails, useUpdateLink, useTable, getRouteDetails, actions, actions6, actions3, actions4, getParam, decodeToBase64, generatePath, getPath, getRouteMenu, breadcrumbStage, isMessingParentLastItem, isMessingParent, generateUrl, resetAllStore, actions2 } from './chunk-
|
|
1
|
+
import { getParamDetails, useUpdateLink, useTable, getRouteDetails, actions, actions6, actions3, actions4, getParam, decodeToBase64, generatePath, getPath, getRouteMenu, breadcrumbStage, isMessingParentLastItem, isMessingParent, generateUrl, resetAllStore, actions2 } from './chunk-SNDHC4EY.js';
|
|
2
2
|
import { ensureValidRefresh, HUBSPOT_DATA, PORTAL_ID, DEV_PORTAL_ID, HUB_ID, setRefreshCallback, getAccessToken, setRefreshToken, setAccessToken, isAuthenticateApp, isExpiresAccessToken, getRefreshToken, DEV_API_URL, setPortal, setSubscriptionType, setLoggedInDetails, clearAccessToken } from './chunk-YLZA5S7A.js';
|
|
3
3
|
import { __export, isCookieExpired, removeAllCookie } from './chunk-NB7AINV4.js';
|
|
4
4
|
import axios from 'axios';
|
|
@@ -1194,10 +1194,6 @@ function create(options) {
|
|
|
1194
1194
|
if (props?.componentName === "sidebarTable") await setMultiObjectPrependData("loading", props);
|
|
1195
1195
|
if (props?.componentName != "association" && props?.componentName != "sidebarTable") await setTablePrependData("loading", props);
|
|
1196
1196
|
const response = await Client.object.create(props);
|
|
1197
|
-
console.log(
|
|
1198
|
-
"props",
|
|
1199
|
-
props
|
|
1200
|
-
);
|
|
1201
1197
|
if (props?.componentName === "sidebarTable") await setMultiObjectPrependData(response, props);
|
|
1202
1198
|
if (props?.componentName != "association" && props?.componentName != "sidebarTable") await setTablePrependData(response, props);
|
|
1203
1199
|
return response;
|
|
@@ -1306,8 +1302,7 @@ function update2(options) {
|
|
|
1306
1302
|
const { mutate, isLoading } = createMutation(
|
|
1307
1303
|
async (payload) => {
|
|
1308
1304
|
const response = await Client.note.update(payload);
|
|
1309
|
-
updatePrependNote(response);
|
|
1310
|
-
return response;
|
|
1305
|
+
return updatePrependNote(response);
|
|
1311
1306
|
},
|
|
1312
1307
|
options
|
|
1313
1308
|
);
|
|
@@ -1357,8 +1352,7 @@ function update3(options) {
|
|
|
1357
1352
|
const { mutate, isLoading } = createMutation(
|
|
1358
1353
|
async (payload) => {
|
|
1359
1354
|
const response = await Client.email.update(payload);
|
|
1360
|
-
updatePrependEmail(response);
|
|
1361
|
-
return response;
|
|
1355
|
+
return updatePrependEmail(response);
|
|
1362
1356
|
},
|
|
1363
1357
|
options
|
|
1364
1358
|
);
|