@formant/data-sdk 1.66.0 → 1.68.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/dist/data-sdk.cjs.js +54 -54
- package/dist/data-sdk.cjs.js.map +1 -1
- package/dist/data-sdk.es.js +5492 -5540
- package/dist/data-sdk.es.js.map +1 -1
- package/dist/data-sdk.es6.js +5492 -5540
- package/dist/data-sdk.umd.js +53 -53
- package/dist/types/data-sdk/src/model/IStreamTypeMap.d.ts +1 -0
- package/dist/types/data-sdk/src/stores/IAuthenticationStore.d.ts +3 -1
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ import { IPointCloud } from "./IPointCloud";
|
|
|
10
10
|
import { ITransformNode } from "./ITransformNode";
|
|
11
11
|
import { IVideo } from "./IVideo";
|
|
12
12
|
export interface IStreamTypeMap {
|
|
13
|
+
boolean: boolean;
|
|
13
14
|
bitset: IBitset;
|
|
14
15
|
localization: ILocalization;
|
|
15
16
|
"point cloud": IPointCloud;
|
|
@@ -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;
|