@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.js CHANGED
@@ -39696,7 +39696,7 @@ const mentorApiSlice = react.createApi({
39696
39696
  dispatch(mentorApiSlice.util.updateQueryData('getShareableLink', {
39697
39697
  mentor: updateData.mentor,
39698
39698
  org: updateData.org,
39699
- // @ts-ignore
39699
+ // @ts-expect-error userId may not be in the type
39700
39700
  userId: updateData.userId,
39701
39701
  }, (draft) => {
39702
39702
  var _a;
@@ -41318,6 +41318,8 @@ const analyticsCustomSlice = react.createApi({
41318
41318
  method: 'GET',
41319
41319
  responseHandler: (response) => response.blob(),
41320
41320
  }),
41321
+ // Blobs are non-serializable; disable caching to prevent Redux serialization warnings
41322
+ keepUnusedDataFor: 0,
41321
41323
  }),
41322
41324
  }),
41323
41325
  });