@formant/realtime-sdk 1.0.0 → 1.1.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.
package/README.md CHANGED
@@ -18,6 +18,11 @@ Distributed under the MIT License. See LICENSE.txt for more information.
18
18
 
19
19
  ## Changelog
20
20
 
21
+ ### **1.1.0** - 2023-08-18
22
+
23
+ #### Fixed
24
+ - Fixed debug logging level output.
25
+
21
26
  ### **1.0.0** - 2023-07-19
22
27
 
23
28
  #### Added
@@ -26,7 +26,7 @@ export declare class AuthClient extends FormantBaseClient {
26
26
  newPassword: string;
27
27
  }): Promise<void>;
28
28
  resendInvitation(email: string): Promise<void>;
29
- changePassword({ token, refreshToken, currentPassword, newPassword }: {
29
+ changePassword({ token, refreshToken, currentPassword, newPassword, }: {
30
30
  token: string;
31
31
  refreshToken: string;
32
32
  currentPassword: string;
@@ -13,4 +13,4 @@ export interface IShutdownPromiseInterval {
13
13
  *
14
14
  * Returns a function that stops execution if invoked.
15
15
  */
16
- export declare function setPromiseInterval({ func, delay, immediate }: IPromiseIntervalOptions): IShutdownPromiseInterval;
16
+ export declare function setPromiseInterval({ func, delay, immediate, }: IPromiseIntervalOptions): IShutdownPromiseInterval;