@connectedxm/client 0.4.8 → 0.4.9
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5016,7 +5016,7 @@ var GetSeriesEvents = async ({
|
|
|
5016
5016
|
var useGetSeriesEvents = (seriesId = "", past, include, params = {}, options = {}) => {
|
|
5017
5017
|
return useConnectedInfiniteQuery(
|
|
5018
5018
|
SERIES_EVENTS_QUERY_KEY(seriesId, past, include),
|
|
5019
|
-
(params2) => GetSeriesEvents({ seriesId, past, ...params2 }),
|
|
5019
|
+
(params2) => GetSeriesEvents({ seriesId, past, include, ...params2 }),
|
|
5020
5020
|
params,
|
|
5021
5021
|
{
|
|
5022
5022
|
...options,
|
package/dist/index.mjs
CHANGED
|
@@ -4378,7 +4378,7 @@ var GetSeriesEvents = async ({
|
|
|
4378
4378
|
var useGetSeriesEvents = (seriesId = "", past, include, params = {}, options = {}) => {
|
|
4379
4379
|
return useConnectedInfiniteQuery(
|
|
4380
4380
|
SERIES_EVENTS_QUERY_KEY(seriesId, past, include),
|
|
4381
|
-
(params2) => GetSeriesEvents({ seriesId, past, ...params2 }),
|
|
4381
|
+
(params2) => GetSeriesEvents({ seriesId, past, include, ...params2 }),
|
|
4382
4382
|
params,
|
|
4383
4383
|
{
|
|
4384
4384
|
...options,
|