@connectedxm/client 7.9.5 → 7.9.7

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.d.ts CHANGED
@@ -1765,6 +1765,7 @@ interface BaseSeries {
1765
1765
  description: string | null;
1766
1766
  longDescription: string | null;
1767
1767
  registration: boolean;
1768
+ featured: boolean;
1768
1769
  price: number;
1769
1770
  taxCode: string | null;
1770
1771
  taxIncluded: boolean;
package/dist/index.js CHANGED
@@ -4253,7 +4253,9 @@ var GetLogin = async ({
4253
4253
  clientApiParams
4254
4254
  }) => {
4255
4255
  const clientApi = await GetClientAPI(clientApiParams);
4256
- const { data } = await clientApi.get(`/login`);
4256
+ const { data } = await clientApi.get(`/login`, {
4257
+ headers: { executeAs: null }
4258
+ });
4257
4259
  return data;
4258
4260
  };
4259
4261
  var useGetLogin = (options = {}) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.9.5",
3
+ "version": "7.9.7",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",