@formant/data-sdk 1.66.0 → 1.67.0

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.
@@ -1,7 +1,7 @@
1
1
  import { IUser } from "../model/IUser";
2
2
  import { AuthenticationResult } from "./AuthenticationResult";
3
- import { IConfirmForgotPasswordRequest } from "./IConfirmForgotPasswordRequest";
4
3
  import { IAuthentication } from "./IAuthentication";
4
+ import { IConfirmForgotPasswordRequest } from "./IConfirmForgotPasswordRequest";
5
5
  import { IRespondToNewPasswordRequiredChallengeRequest } from "./IRespondToNewPasswordRequiredChallengeRequest";
6
6
  export interface IAuthenticationStore {
7
7
  readonly token: string | undefined;
@@ -16,6 +16,8 @@ export interface IAuthenticationStore {
16
16
  * @deprecated Do not use directly. This will be removed in future versions of the API
17
17
  */
18
18
  readonly isShareToken: boolean;
19
+ set apiUrl(url: string);
20
+ get apiUrl(): string;
19
21
  login(email: string, password: string): Promise<IAuthentication>;
20
22
  login(email: string, password: string, options: {
21
23
  advanced: true;
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  }
25
25
  }
26
26
  },
27
- "version": "1.66.0",
27
+ "version": "1.67.0",
28
28
  "scripts": {
29
29
  "preversion": "npm run verify",
30
30
  "postversion": "make",