@elliemae/ssf-host 2.7.8 → 2.9.0

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,4 +1,4 @@
1
- import { IModule, Listener, Events, ErrorData } from '@elliemae/pui-scripting-object';
1
+ import { IModule, Listener, Events } from '@elliemae/pui-scripting-object';
2
2
  import { ScriptingObject, Event } from '@elliemae/microfe-common';
3
3
  export declare const APPRAISAL_SERVICE_OBJECT = "AppraisalService";
4
4
  export type LoanInfo = {
@@ -10,6 +10,7 @@ export type AppraisalServiceEvents = {
10
10
  };
11
11
  export declare class AppraisalService extends ScriptingObject implements IModule {
12
12
  #private;
13
+ Close: Event<Events>;
13
14
  Unloading: Event<Events>;
14
15
  onPreCommit: Event<AppraisalServiceEvents>;
15
16
  onSaved: Event<AppraisalServiceEvents>;
@@ -22,6 +23,7 @@ export declare class AppraisalService extends ScriptingObject implements IModule
22
23
  los: string;
23
24
  }>;
24
25
  getParameters: () => Promise<{
26
+ moduleId: string;
25
27
  loanId: string;
26
28
  creditScore: number;
27
29
  }>;
@@ -33,7 +35,6 @@ export declare class AppraisalService extends ScriptingObject implements IModule
33
35
  saveLoan: () => Promise<void>;
34
36
  commit: () => Promise<unknown>;
35
37
  delete: () => never;
36
- showError: (data: ErrorData) => Promise<void>;
37
38
  unload: () => Promise<void>;
38
39
  }
39
40
  export declare const appraisalServiceObject: {
@@ -1,9 +1,10 @@
1
- import type { IModule, Events, ErrorData } from '@elliemae/pui-scripting-object';
1
+ import type { IModule, Events } from '@elliemae/pui-scripting-object';
2
2
  import { ScriptingObject, Event } from '@elliemae/microfe-common';
3
3
  export declare const FLOOD_SERVICE_OBJECT = "FloodService";
4
4
  export declare class FloodService extends ScriptingObject implements IModule {
5
5
  firstName: string;
6
6
  lastName: string;
7
+ Close: Event<Events>;
7
8
  readonly Unloading: Event<Events>;
8
9
  constructor();
9
10
  getBorrowerDetails: () => Promise<{
@@ -11,8 +12,9 @@ export declare class FloodService extends ScriptingObject implements IModule {
11
12
  lastName: string;
12
13
  }>;
13
14
  getCapabilities: () => Promise<{}>;
14
- getParameters: () => Promise<{}>;
15
- showError: (data: ErrorData) => Promise<void>;
15
+ getParameters: () => Promise<{
16
+ moduleId: string;
17
+ }>;
16
18
  unload: () => Promise<void>;
17
19
  _dispose: () => void;
18
20
  }
@@ -1 +1 @@
1
- export declare const initServer: () => import("msw/lib/glossary-de6278a9").K;
1
+ export declare const initServer: () => import("msw/lib/glossary-2792c6da").K;