@connectedxm/client 0.5.32 → 0.5.33

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
@@ -3239,7 +3239,13 @@ var GetChannelContents = async ({
3239
3239
  var useGetChannelContents = (channelId = "", type, featured, past, params = {}, options = {}) => {
3240
3240
  return useConnectedInfiniteQuery(
3241
3241
  CHANNEL_CONTENTS_QUERY_KEY(channelId, type, featured, past),
3242
- (params2) => GetChannelContents({ ...params2, channelId: channelId || "", type }),
3242
+ (params2) => GetChannelContents({
3243
+ ...params2,
3244
+ channelId: channelId || "",
3245
+ type,
3246
+ featured,
3247
+ past
3248
+ }),
3243
3249
  params,
3244
3250
  {
3245
3251
  ...options,
package/dist/index.mjs CHANGED
@@ -2383,7 +2383,13 @@ var GetChannelContents = async ({
2383
2383
  var useGetChannelContents = (channelId = "", type, featured, past, params = {}, options = {}) => {
2384
2384
  return useConnectedInfiniteQuery(
2385
2385
  CHANNEL_CONTENTS_QUERY_KEY(channelId, type, featured, past),
2386
- (params2) => GetChannelContents({ ...params2, channelId: channelId || "", type }),
2386
+ (params2) => GetChannelContents({
2387
+ ...params2,
2388
+ channelId: channelId || "",
2389
+ type,
2390
+ featured,
2391
+ past
2392
+ }),
2387
2393
  params,
2388
2394
  {
2389
2395
  ...options,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "0.5.32",
3
+ "version": "0.5.33",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {