@connectedxm/client 7.2.0 → 7.2.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -221,6 +221,8 @@ interface BaseSelf {
221
221
  lastName: string | null;
222
222
  email: string | null;
223
223
  verified: boolean;
224
+ needsProfileCompletion: boolean;
225
+ internalRefId: string | null;
224
226
  locale: string;
225
227
  }
226
228
  interface Self extends Omit<Account, "_count"> {
@@ -2468,7 +2470,7 @@ interface BaseLogin {
2468
2470
  verified: boolean;
2469
2471
  }
2470
2472
  interface Login extends BaseLogin {
2471
- accounts: Self[];
2473
+ accounts: BaseSelf[];
2472
2474
  }
2473
2475
  declare enum MeetingType {
2474
2476
  GROUP_CALL = "GROUP_CALL",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.2.0",
3
+ "version": "7.2.1",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",