@formant/data-sdk 0.0.145 → 0.0.146

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.
@@ -129,4 +129,4 @@ export * from "./model/ISqlResult";
129
129
  export * from "./model/IAnalyticsModuleConfiguration";
130
130
  export * from "./model/IAggregateRow";
131
131
  export * from "./model/ISqlRow";
132
- export type { IAuthenticationStore, User, IAuthentication, IConfirmForgotPasswordRequest, IRespondToNewPasswordRequiredChallengeRequest, } from "./stores/IAuthenticationStore";
132
+ export * from "./stores/IAuthenticationStore";
@@ -3,6 +3,7 @@ export interface User {
3
3
  lastName: string;
4
4
  email: string;
5
5
  organizationId: string;
6
+ roleId: string;
6
7
  id: string;
7
8
  }
8
9
  export interface IAuthentication {
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  "require": "./dist/data-sdk.umd.js"
19
19
  }
20
20
  },
21
- "version": "0.0.145",
21
+ "version": "0.0.146",
22
22
  "scripts": {
23
23
  "dev": "vite --port 9146",
24
24
  "build": "tsc && vite build",