@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 +7 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
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({
|
|
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({
|
|
2386
|
+
(params2) => GetChannelContents({
|
|
2387
|
+
...params2,
|
|
2388
|
+
channelId: channelId || "",
|
|
2389
|
+
type,
|
|
2390
|
+
featured,
|
|
2391
|
+
past
|
|
2392
|
+
}),
|
|
2387
2393
|
params,
|
|
2388
2394
|
{
|
|
2389
2395
|
...options,
|