@connectedxm/client 1.4.2 → 1.4.3
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
|
@@ -7834,7 +7834,7 @@ var useGetSelfEventListingPass = (eventId = "", passId = "", options = {}) => {
|
|
|
7834
7834
|
(params) => GetSelfEventListingPass({ eventId, passId, ...params }),
|
|
7835
7835
|
{
|
|
7836
7836
|
...options,
|
|
7837
|
-
enabled: !!eventId && !!passId
|
|
7837
|
+
enabled: !!eventId && !!passId && (options?.enabled ?? true)
|
|
7838
7838
|
}
|
|
7839
7839
|
);
|
|
7840
7840
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -6840,7 +6840,7 @@ var useGetSelfEventListingPass = (eventId = "", passId = "", options = {}) => {
|
|
|
6840
6840
|
(params) => GetSelfEventListingPass({ eventId, passId, ...params }),
|
|
6841
6841
|
{
|
|
6842
6842
|
...options,
|
|
6843
|
-
enabled: !!eventId && !!passId
|
|
6843
|
+
enabled: !!eventId && !!passId && (options?.enabled ?? true)
|
|
6844
6844
|
}
|
|
6845
6845
|
);
|
|
6846
6846
|
};
|