@elliemae/pui-scripting-object 1.49.1 → 1.50.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.
@@ -35,6 +35,6 @@ var ScriptingObjectNames = /* @__PURE__ */ ((ScriptingObjectNames2) => {
35
35
  ScriptingObjectNames2["Service"] = "service";
36
36
  ScriptingObjectNames2["Session"] = "session";
37
37
  ScriptingObjectNames2["Transaction"] = "transaction";
38
- ScriptingObjectNames2["TransactionTemplate"] = "transactionTemplate";
38
+ ScriptingObjectNames2["TransactionTemplate"] = "transactiontemplate";
39
39
  return ScriptingObjectNames2;
40
40
  })(ScriptingObjectNames || {});
@@ -12,7 +12,7 @@ var ScriptingObjectNames = /* @__PURE__ */ ((ScriptingObjectNames2) => {
12
12
  ScriptingObjectNames2["Service"] = "service";
13
13
  ScriptingObjectNames2["Session"] = "session";
14
14
  ScriptingObjectNames2["Transaction"] = "transaction";
15
- ScriptingObjectNames2["TransactionTemplate"] = "transactionTemplate";
15
+ ScriptingObjectNames2["TransactionTemplate"] = "transactiontemplate";
16
16
  return ScriptingObjectNames2;
17
17
  })(ScriptingObjectNames || {});
18
18
  export {
@@ -1,4 +1,4 @@
1
- import { IScriptingObjectProxy, IScriptingObject } from './scriptingObject.js';
1
+ import { IScriptingObjectProxy } from './scriptingObject.js';
2
2
  /**
3
3
  * callback for event
4
4
  */
@@ -24,12 +24,4 @@ export interface IEvent {
24
24
  * id of the scripting object from where the event was triggered
25
25
  */
26
26
  readonly objectId: string;
27
- /**
28
- * event requiers a response from its listeners
29
- */
30
- readonly requiresFeedback: boolean;
31
- /**
32
- * scripting object from where the event was triggered
33
- */
34
- readonly scriptingObject: IScriptingObject;
35
27
  }
@@ -15,19 +15,19 @@ import { IService } from './objects/service.js';
15
15
  * list of scripting object names and their types
16
16
  */
17
17
  export type ScriptingObjectTypes = {
18
- Analytics: IAnalytics;
19
- Application: IApplication;
20
- Auth: IAuth;
21
- Form: IForm;
22
- Global: IGlobal;
23
- Http: IHttp;
24
- Loan: ILoan;
25
- MemStorage: IMemStorage;
26
- Module: IModule;
27
- Service: IService;
28
- Session: ISession;
29
- Transaction: ITransaction;
30
- TransactionTemplate: ITransactionTemplate;
18
+ analytics: IAnalytics;
19
+ application: IApplication;
20
+ auth: IAuth;
21
+ form: IForm;
22
+ global: IGlobal;
23
+ http: IHttp;
24
+ loan: ILoan;
25
+ memstorage: IMemStorage;
26
+ module: IModule;
27
+ service: IService;
28
+ session: ISession;
29
+ transaction: ITransaction;
30
+ transactiontemplate: ITransactionTemplate;
31
31
  };
32
32
  export declare const enum ScriptingObjectNames {
33
33
  Analytics = "analytics",
@@ -43,5 +43,5 @@ export declare const enum ScriptingObjectNames {
43
43
  Service = "service",
44
44
  Session = "session",
45
45
  Transaction = "transaction",
46
- TransactionTemplate = "transactionTemplate"
46
+ TransactionTemplate = "transactiontemplate"
47
47
  }