obi-sdk 0.3.13 → 0.4.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.
@@ -8,6 +8,7 @@ import "./session-start-modal";
8
8
  export declare class ObiWidget extends LitElement {
9
9
  private apiKey;
10
10
  private isActive;
11
+ private linkOnlyAccess;
11
12
  private position;
12
13
  private user;
13
14
  private state;
@@ -25,10 +26,11 @@ export declare class ObiWidget extends LitElement {
25
26
  private boundSaveSessionData;
26
27
  private obiClient;
27
28
  private closeNavTimeoutRef;
29
+ private researchingTimeoutRef;
28
30
  constructor();
29
31
  private updateFromConfig;
30
32
  static styles: import("lit").CSSResult;
31
- private removeSessionFromUrl;
33
+ private removeSessionUrlParams;
32
34
  /**
33
35
  * Create a new ObiSession instance with common configuration
34
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obi-sdk",
3
- "version": "0.3.13",
3
+ "version": "0.4.0",
4
4
  "description": "JavaScript SDK for Obi",
5
5
  "type": "module",
6
6
  "main": "dist/obi-sdk.umd.js",
@@ -28,9 +28,9 @@
28
28
  "lit": "^3.0.0",
29
29
  "ts-pattern": "^5.7.0",
30
30
  "zod": "^3.22.0",
31
- "@obi/obi-session": "0.2.6",
32
- "@obi/obi-client": "0.1.0",
33
- "@obi/url-params": "0.1.1"
31
+ "@obi/obi-session": "0.3.0",
32
+ "@obi/url-params": "0.2.0",
33
+ "@obi/obi-client": "0.2.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",