@elliemae/pui-scripting-object 1.16.3 → 1.16.5
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IScriptingObject } from '../scriptingObject.js';
|
|
1
2
|
/**
|
|
2
3
|
* Business analytics event to be sent
|
|
3
4
|
*/
|
|
@@ -14,7 +15,7 @@ export declare type BAEvent = {
|
|
|
14
15
|
/**
|
|
15
16
|
* Methods and events to send and receive business analytics events
|
|
16
17
|
*/
|
|
17
|
-
export interface IAnalytics {
|
|
18
|
+
export interface IAnalytics extends IScriptingObject {
|
|
18
19
|
/**
|
|
19
20
|
* send business analytics event
|
|
20
21
|
*
|
|
@@ -11,6 +11,7 @@ import { IGlobal } from './objects/global.js';
|
|
|
11
11
|
import { IHttp } from './objects/http.js';
|
|
12
12
|
import { IAnalytics } from './objects/analytics.js';
|
|
13
13
|
import { IMemStorage } from './objects/memStorage.js';
|
|
14
|
+
import { IModule } from './objects/module.js';
|
|
14
15
|
import { IView } from './objects/view.js';
|
|
15
16
|
import { IRoute } from './objects/route.js';
|
|
16
17
|
import { IService } from './objects/service.js';
|
|
@@ -27,6 +28,7 @@ export declare type ScriptingObjects = {
|
|
|
27
28
|
Loan: ILoan;
|
|
28
29
|
LoanV2: ILoanV2;
|
|
29
30
|
MemStorage: IMemStorage;
|
|
31
|
+
Module: IModule;
|
|
30
32
|
Route: IRoute;
|
|
31
33
|
Service: IService;
|
|
32
34
|
Session: ISession;
|