obi-sdk 0.6.8 → 0.7.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/loader.d.ts +1 -0
- package/dist/modular/chunks/index-f31a59cc.js +6 -0
- package/dist/modular/chunks/index-f31a59cc.js.map +1 -0
- package/dist/modular/chunks/{obi-widget-46e82ee8.js → obi-widget-6550377d.js} +281 -23
- package/dist/modular/chunks/{obi-widget-46e82ee8.js.map → obi-widget-6550377d.js.map} +1 -1
- package/dist/modular/index.js +1 -1
- package/dist/modular/ui.js +10 -10
- package/dist/obi-sdk.standalone.iife.js +130 -41
- package/dist/obi-sdk.standalone.iife.js.map +1 -1
- package/dist/react.es.js +2933 -2726
- package/dist/react.es.js.map +1 -1
- package/dist/react.umd.js +170 -81
- package/dist/react.umd.js.map +1 -1
- package/dist/sentry.d.ts +1 -1
- package/dist/ui/components/obi-widget/obi-widget.d.ts +1 -0
- package/dist/ui/components/session-start-modal/session-start-modal.d.ts +4 -0
- package/package.json +1 -1
- package/dist/modular/chunks/index-fa4a7611.js +0 -6
- package/dist/modular/chunks/index-fa4a7611.js.map +0 -1
package/dist/sentry.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ interface SentryContext {
|
|
|
15
15
|
[key: string]: any;
|
|
16
16
|
}
|
|
17
17
|
export declare function captureException(error: any, context?: SentryContext): void;
|
|
18
|
-
export declare function captureMessage(message: string, level?:
|
|
18
|
+
export declare function captureMessage(message: string, level?: "info" | "warning" | "error", context?: SentryContext): void;
|
|
19
19
|
export declare function trackEvent(eventType: string, eventData?: Record<string, any>, componentName?: string): void;
|
|
20
20
|
export declare function setGlobalContext(context: Partial<SentryContext>): void;
|
|
21
21
|
/**
|
|
@@ -5,7 +5,11 @@ export declare class SessionStartModal extends LitElement {
|
|
|
5
5
|
session: CourseData;
|
|
6
6
|
onStart?: (sessionToken: string) => void;
|
|
7
7
|
onClose?: () => void;
|
|
8
|
+
private isLoading;
|
|
9
|
+
private error;
|
|
10
|
+
private startAttempts;
|
|
8
11
|
private handleStart;
|
|
12
|
+
private showError;
|
|
9
13
|
private handleClose;
|
|
10
14
|
render(): import("lit").TemplateResult<1>;
|
|
11
15
|
}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-fa4a7611.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|