@elliemae/pui-app-bridge 2.8.0 → 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.
@@ -76,8 +76,6 @@ class AppraisalService extends import_microfe_common.ScriptingObject {
76
76
  delete = () => {
77
77
  throw new Error("Not implemented");
78
78
  };
79
- // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars
80
- showDialog = (options) => Promise.resolve("");
81
79
  unload = async () => {
82
80
  };
83
81
  }
@@ -55,8 +55,6 @@ class AppraisalService extends ScriptingObject {
55
55
  delete = () => {
56
56
  throw new Error("Not implemented");
57
57
  };
58
- // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars
59
- showDialog = (options) => Promise.resolve("");
60
58
  unload = async () => {
61
59
  };
62
60
  }
@@ -1,4 +1,4 @@
1
- import { IModule, Listener, Events, DialogOptions } 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 type AppraisalServiceEvents = {
4
4
  'appraisalservice.onprecommit': Listener<AppraisalService, {
@@ -31,6 +31,5 @@ export declare class AppraisalService extends ScriptingObject implements IModule
31
31
  saveLoan: () => Promise<void>;
32
32
  commit: () => Promise<unknown>;
33
33
  delete: () => never;
34
- showDialog: (options: DialogOptions) => Promise<string>;
35
34
  unload: () => Promise<void>;
36
35
  }