@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.
- package/dist/index.d.ts +3 -1
- 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:
|
|
2473
|
+
accounts: BaseSelf[];
|
|
2472
2474
|
}
|
|
2473
2475
|
declare enum MeetingType {
|
|
2474
2476
|
GROUP_CALL = "GROUP_CALL",
|