@elliemae/ssf-guest 2.7.3 → 2.7.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.
- package/dist/cjs/guest.js +1 -2
- package/dist/cjs/index.js +0 -2
- package/dist/esm/guest.js +2 -2
- package/dist/esm/index.js +0 -2
- package/dist/public/creditService.html +1 -1
- package/dist/public/index.html +1 -1
- package/dist/public/js/emuiSsfGuest.f3003ce9a61d77db9705.js +29 -0
- package/dist/public/js/emuiSsfGuest.f3003ce9a61d77db9705.js.br +0 -0
- package/dist/public/js/emuiSsfGuest.f3003ce9a61d77db9705.js.gz +0 -0
- package/dist/public/js/emuiSsfGuest.f3003ce9a61d77db9705.js.map +1 -0
- package/dist/public/loanValidation.html +1 -1
- package/dist/public/pricingService.html +1 -1
- package/dist/public/titleService.html +1 -1
- package/dist/public/v2-guest.html +1 -1
- package/dist/types/lib/index.d.ts +0 -2
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/umd/index.js +8 -8
- 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 +2 -2
- package/dist/cjs/proxyEvent.js +0 -48
- package/dist/esm/proxyEvent.js +0 -28
- package/dist/public/js/emuiSsfGuest.7973d32bede59971d5d6.js +0 -29
- package/dist/public/js/emuiSsfGuest.7973d32bede59971d5d6.js.br +0 -0
- package/dist/public/js/emuiSsfGuest.7973d32bede59971d5d6.js.gz +0 -0
- package/dist/public/js/emuiSsfGuest.7973d32bede59971d5d6.js.map +0 -1
- package/dist/types/lib/proxyEvent.d.ts +0 -38
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import type { Events } from '@elliemae/pui-scripting-object';
|
|
2
|
-
import type { IScriptingObjectProxyEvent, EventListeners } from '@elliemae/microfe-common';
|
|
3
|
-
/**
|
|
4
|
-
* ProxyEvent constructor parameter
|
|
5
|
-
*/
|
|
6
|
-
export type ProxyEventParam = {
|
|
7
|
-
/**
|
|
8
|
-
* name of the event
|
|
9
|
-
*/
|
|
10
|
-
name: string;
|
|
11
|
-
/**
|
|
12
|
-
* unique id of scripting object
|
|
13
|
-
*/
|
|
14
|
-
objectId: string;
|
|
15
|
-
};
|
|
16
|
-
/**
|
|
17
|
-
* Scripting Object Proxy Event implementation
|
|
18
|
-
* @typeParam AppEvents - type of the events that the scripting object supports
|
|
19
|
-
*/
|
|
20
|
-
export declare class ProxyEvent<AppEvents extends EventListeners = Events> implements IScriptingObjectProxyEvent<AppEvents> {
|
|
21
|
-
/**
|
|
22
|
-
* unique id of scripting object
|
|
23
|
-
*/
|
|
24
|
-
readonly objectId: string;
|
|
25
|
-
/**
|
|
26
|
-
* name of the event
|
|
27
|
-
*/
|
|
28
|
-
readonly name: string;
|
|
29
|
-
/**
|
|
30
|
-
* unique id of the event
|
|
31
|
-
*/
|
|
32
|
-
readonly id: Extract<keyof AppEvents, string>;
|
|
33
|
-
/**
|
|
34
|
-
* Create a new instance of the Scripting Object Proxy Event
|
|
35
|
-
* @param {ProxyEventParam} param - parameter for the constructor
|
|
36
|
-
*/
|
|
37
|
-
constructor(param: ProxyEventParam);
|
|
38
|
-
}
|