@elliemae/pui-scripting-object 1.16.7 → 1.16.9

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.
@@ -28,10 +28,6 @@ export interface IEvent {
28
28
  * event requiers a response from its listeners
29
29
  */
30
30
  readonly requiresFeedback: boolean;
31
- /**
32
- * parameters associated with the event
33
- */
34
- readonly params: Record<string, unknown>;
35
31
  /**
36
32
  * scripting object from where the event was triggered
37
33
  */
@@ -165,15 +165,11 @@ export interface IApplication extends IScriptingObject {
165
165
  /**
166
166
  * notifies user login
167
167
  */
168
- readonly Login: {
169
- new (): IApplicationLoginEvent;
170
- };
168
+ readonly Login: IApplicationLoginEvent;
171
169
  /**
172
170
  * notifies action completion
173
171
  */
174
- readonly ActionCompleted: {
175
- new (): IApplicationActionCompletedEvent;
176
- };
172
+ readonly ActionCompleted: IApplicationActionCompletedEvent;
177
173
  /**
178
174
  * Gets descriptor for the Application
179
175
  *
@@ -56,15 +56,11 @@ export interface IForm extends IScriptingObject {
56
56
  /**
57
57
  * event fired when the form is loaded
58
58
  */
59
- readonly Load: {
60
- new (): IFormLoadEvent;
61
- };
59
+ readonly Load: IFormLoadEvent;
62
60
  /**
63
61
  * event fired when the form is unloaded
64
62
  */
65
- readonly Unload: {
66
- new (): IFormUnloadEvent;
67
- };
63
+ readonly Unload: IFormUnloadEvent;
68
64
  /**
69
65
  * get metadata of the form
70
66
  *
@@ -48,9 +48,7 @@ export interface IGlobal extends IScriptingObject {
48
48
  /**
49
49
  * event fired when the global state changes
50
50
  */
51
- readonly Change: {
52
- new (): IGlobalChangeEvent;
53
- };
51
+ readonly Change: IGlobalChangeEvent;
54
52
  /**
55
53
  * set a value in the global store
56
54
  *
@@ -210,57 +210,39 @@ export interface ILoan extends IScriptingObject {
210
210
  /**
211
211
  * event fired when the loan is ready to commit
212
212
  */
213
- readonly PreCommit: {
214
- new (): ILoanPreCommitEvent;
215
- };
213
+ readonly PreCommit: ILoanPreCommitEvent;
216
214
  /**
217
215
  * event fired when the loan is committed
218
216
  */
219
- readonly Committed: {
220
- new (): ILoanCommittedEvent;
221
- };
217
+ readonly Committed: ILoanCommittedEvent;
222
218
  /**
223
219
  * event fired when the loan is changed
224
220
  */
225
- readonly Change: {
226
- new (): ILoanChangeEvent;
227
- };
221
+ readonly Change: ILoanChangeEvent;
228
222
  /**
229
223
  * event fired when the loan is synced
230
224
  */
231
- readonly Sync: {
232
- new (): ILoanSyncEvent;
233
- };
225
+ readonly Sync: ILoanSyncEvent;
234
226
  /**
235
227
  * event fired when the loan is opened
236
228
  */
237
- readonly Open: {
238
- new (): ILoanOpenEvent;
239
- };
229
+ readonly Open: ILoanOpenEvent;
240
230
  /**
241
231
  * event fired when the loan is closed
242
232
  */
243
- readonly Close: {
244
- new (): ILoanCloseEvent;
245
- };
233
+ readonly Close: ILoanCloseEvent;
246
234
  /**
247
235
  * event fired when the loan milestone is completed
248
236
  */
249
- readonly MilestoneCompleted: {
250
- new (): ILoanMilestoneCompletedEvent;
251
- };
237
+ readonly MilestoneCompleted: ILoanMilestoneCompletedEvent;
252
238
  /**
253
239
  * event fired when the loan is ready to complete milestone
254
240
  */
255
- readonly PreMilestoneComplete: {
256
- new (): ILoanPreMilestoneCompleteEvent;
257
- };
241
+ readonly PreMilestoneComplete: ILoanPreMilestoneCompleteEvent;
258
242
  /**
259
243
  * event fired when the loan application is selected
260
244
  */
261
- readonly ApplicationSelected: {
262
- new (): ILoanApplicationSelectedEvent;
263
- };
245
+ readonly ApplicationSelected: ILoanApplicationSelectedEvent;
264
246
  /**
265
247
  * Get complete Loan object
266
248
  *
@@ -36,9 +36,7 @@ export interface IModule extends IScriptingObject {
36
36
  /**
37
37
  * event fired when the module is unloading
38
38
  */
39
- readonly Unloading: {
40
- new (): IModuleUnloadingEvent;
41
- };
39
+ readonly Unloading: IModuleUnloadingEvent;
42
40
  /**
43
41
  * get microapp module-specific capabilities or settings defined by the host application. Helps to define the style and/or behavior of the module
44
42
  *
@@ -63,15 +63,11 @@ export interface IView extends IScriptingObject {
63
63
  /**
64
64
  * event fired when the window is resized
65
65
  */
66
- readonly Resize: {
67
- new (): IViewResizeEvent;
68
- };
66
+ readonly Resize: IViewResizeEvent;
69
67
  /**
70
68
  * event fired when the window breakpoint changes
71
69
  */
72
- readonly BreakpointChange: {
73
- new (): IViewBreakpointChangeEvent;
74
- };
70
+ readonly BreakpointChange: IViewBreakpointChangeEvent;
75
71
  /**
76
72
  * Get the current breakpoint of the parent window
77
73
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-scripting-object",
3
- "version": "1.16.7",
3
+ "version": "1.16.9",
4
4
  "description": "Typescript defintions for Scripting Objects",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/cjs/index.js",
@@ -66,8 +66,8 @@
66
66
  "sonar56x": true
67
67
  },
68
68
  "devDependencies": {
69
- "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.5.0",
70
- "@elliemae/pui-cli": "~7.17.0",
69
+ "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.6.0",
70
+ "@elliemae/pui-cli": "~7.18.0",
71
71
  "@elliemae/pui-doc-gen": "~1.3.0",
72
72
  "@elliemae/pui-theme": "~2.6.0",
73
73
  "@types/styled-components": "~5.1.26",