@elliemae/pui-app-bridge 2.21.1 → 2.21.3
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/cjs/frame.js +3 -5
- package/dist/cjs/tests/scriptingObjects/analytics.js +18 -3
- package/dist/esm/frame.js +3 -5
- package/dist/esm/tests/scriptingObjects/analytics.js +18 -3
- package/dist/public/frame.html +1 -1
- package/dist/public/index.html +1 -1
- package/dist/public/js/{emuiAppBridge.62147eb5b94e639c6d83.js → emuiAppBridge.b2ffda17fd59a1937af8.js} +15 -15
- package/dist/public/js/emuiAppBridge.b2ffda17fd59a1937af8.js.br +0 -0
- package/dist/public/js/emuiAppBridge.b2ffda17fd59a1937af8.js.gz +0 -0
- package/dist/public/js/emuiAppBridge.b2ffda17fd59a1937af8.js.map +1 -0
- package/dist/types/lib/frame.d.ts +4 -0
- package/dist/types/lib/tests/scriptingObjects/analytics.d.ts +6 -2
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/umd/index.js +14 -14
- package/dist/umd/index.js.br +0 -0
- package/dist/umd/index.js.gz +0 -0
- package/dist/umd/index.js.map +1 -1
- package/package.json +10 -10
- package/dist/public/js/emuiAppBridge.62147eb5b94e639c6d83.js.br +0 -0
- package/dist/public/js/emuiAppBridge.62147eb5b94e639c6d83.js.gz +0 -0
- package/dist/public/js/emuiAppBridge.62147eb5b94e639c6d83.js.map +0 -1
|
@@ -17,6 +17,10 @@ export type FrameOptions = {
|
|
|
17
17
|
* source url for the iframe
|
|
18
18
|
*/
|
|
19
19
|
src?: string;
|
|
20
|
+
/**
|
|
21
|
+
* query parameters to be appended to the iframe src url
|
|
22
|
+
*/
|
|
23
|
+
queryParams?: string;
|
|
20
24
|
/**
|
|
21
25
|
* css style for the iframe
|
|
22
26
|
* @default 'flex-grow: 1;border: none;margin: 0;padding: 0;display: block;min-width: 100%;height: 100%;'
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
import { IAnalytics, BAEvent, TimingOptions } from '@elliemae/pui-scripting-object';
|
|
1
|
+
import { IAnalytics, BAEvent, TimingOptions, PerfMark } from '@elliemae/pui-scripting-object';
|
|
2
2
|
import { ScriptingObject } from '@elliemae/microfe-common';
|
|
3
3
|
export declare class Analytics extends ScriptingObject implements IAnalytics {
|
|
4
4
|
constructor();
|
|
5
|
+
deleteTimingEventSamplingRatio: (names: string[]) => void;
|
|
6
|
+
getAllTimingEventSamplingRatios: () => {};
|
|
7
|
+
getTimingEventSamplingRatio: (names: string[]) => {};
|
|
8
|
+
setTimingEventSamplingRatio: (ratios: Record<string, number>) => void;
|
|
5
9
|
sendBAEvent: (event: BAEvent) => Promise<void>;
|
|
6
10
|
startTiming: (name: string, options: TimingOptions) => Promise<PerformanceMark>;
|
|
7
|
-
endTiming: (start: string |
|
|
11
|
+
endTiming: (start: string | PerfMark, options: TimingOptions) => Promise<void>;
|
|
8
12
|
}
|