@elliemae/pui-scripting-object 1.16.2 → 1.16.4

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.
@@ -19,4 +19,5 @@ export * from './objects/view.js';
19
19
  export * from './objects/shared.js';
20
20
  export { IEvent, Listener } from './event.js';
21
21
  export { IScriptingObjectProxy, IScriptingObject } from './scriptingObject.js';
22
+ export type { RemotingScriptingObject } from './remotingScriptingObject.js';
22
23
  export type { ScriptingObjects } from './scriptingObjectList.js';
@@ -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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-scripting-object",
3
- "version": "1.16.2",
3
+ "version": "1.16.4",
4
4
  "description": "Typescript defintions for Scripting Objects",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/cjs/index.js",