obi-sdk 0.19.2-beta.0 → 0.19.2-beta.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/src/sdk.d.ts CHANGED
@@ -19,6 +19,7 @@ export declare class ObiSDK extends EventEmitter<ObiSDKEvents> {
19
19
  primaryColour: string;
20
20
  passivePlanUuid: string | null;
21
21
  widgetDisplay?: string;
22
+ widgetPosition?: string;
22
23
  private commandQueue;
23
24
  /** HACK: Need to prevent initialisation from being called if resumed. */
24
25
  private _resumed;
@@ -48,6 +49,7 @@ export declare class ObiSDK extends EventEmitter<ObiSDKEvents> {
48
49
  */
49
50
  updatePrimaryColour(primaryColour?: string): void;
50
51
  updateWidgetDisplay(widgetDisplay?: string): void;
52
+ updateWidgetPosition(widgetPosition?: string): void;
51
53
  /**
52
54
  * Update the identity of the onboardee. This is typically called before a plan starts,
53
55
  * but it is possible to update the identity during a plan.
@@ -11,4 +11,5 @@ export type Config = {
11
11
  user?: Identity;
12
12
  showMenu?: boolean;
13
13
  widgetDisplay?: string;
14
+ widgetPosition?: string;
14
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obi-sdk",
3
- "version": "0.19.2-beta.0",
3
+ "version": "0.19.2-beta.1",
4
4
  "description": "JavaScript SDK for Obi",
5
5
  "type": "module",
6
6
  "main": "dist/obi-sdk.umd.js",