obi-sdk 0.19.96 → 0.19.97
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.
|
@@ -17,4 +17,4 @@ export type SidePanelContainerProps = {
|
|
|
17
17
|
/** Forwarded to obi-chat-web SdkPanel: keep PiP UI in the shadow host (no Document PiP window). */
|
|
18
18
|
preferHostPip?: boolean;
|
|
19
19
|
};
|
|
20
|
-
export declare function SidePanelContainer({ sdk, shadowHost, onPipChange, onDocumentPipChange, documentPipActive, sidePanelPipActive, preferHostPip, }: SidePanelContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare function SidePanelContainer({ sdk, shadowHost, onPipChange, onDocumentPipChange, documentPipActive, sidePanelPipActive, preferHostPip, }: SidePanelContainerProps): import("react/jsx-runtime").JSX.Element | null;
|
package/dist/src/sdk.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export type InitialiseArgs = {
|
|
|
27
27
|
export declare class ObiSDK extends EventEmitter<ObiSDKEvents> {
|
|
28
28
|
client: ObiClient | null;
|
|
29
29
|
isActive: boolean;
|
|
30
|
+
productUnavailable: boolean;
|
|
30
31
|
primaryColour: string;
|
|
31
32
|
passivePlanUuid: string | null;
|
|
32
33
|
widgetDisplay?: string;
|
|
@@ -133,6 +134,7 @@ export declare class ObiSDK extends EventEmitter<ObiSDKEvents> {
|
|
|
133
134
|
private ensureFirstRealInitialise;
|
|
134
135
|
private runInitialise;
|
|
135
136
|
mountWidget(): void;
|
|
137
|
+
private extractHttpStatus;
|
|
136
138
|
/**
|
|
137
139
|
* Display a transient popover message above the widget.
|
|
138
140
|
* Does not open menus or alter session/plan state.
|