@iblai/data-layer 1.1.8 → 1.1.10
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/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -39694,7 +39694,7 @@ const mentorApiSlice = createApi({
|
|
|
39694
39694
|
dispatch(mentorApiSlice.util.updateQueryData('getShareableLink', {
|
|
39695
39695
|
mentor: updateData.mentor,
|
|
39696
39696
|
org: updateData.org,
|
|
39697
|
-
// @ts-
|
|
39697
|
+
// @ts-expect-error userId may not be in the type
|
|
39698
39698
|
userId: updateData.userId,
|
|
39699
39699
|
}, (draft) => {
|
|
39700
39700
|
var _a;
|
|
@@ -41316,6 +41316,8 @@ const analyticsCustomSlice = createApi({
|
|
|
41316
41316
|
method: 'GET',
|
|
41317
41317
|
responseHandler: (response) => response.blob(),
|
|
41318
41318
|
}),
|
|
41319
|
+
// Blobs are non-serializable; disable caching to prevent Redux serialization warnings
|
|
41320
|
+
keepUnusedDataFor: 0,
|
|
41319
41321
|
}),
|
|
41320
41322
|
}),
|
|
41321
41323
|
});
|