@elliemae/pui-scripting-object 1.16.10 → 1.16.11

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.
@@ -9,5 +9,5 @@ type KeysMatching<T extends object, V> = {
9
9
  [K in keyof T]-?: [V] extends [T[K]] ? K : never;
10
10
  }[keyof T];
11
11
  export type Events = ApplicationEvents & FormEvents & GlobalEvents & LoanEvents & ModuleEvents & ViewEvents;
12
- export type EventObjects = KeysMatching<IApplication, IEvent> & KeysMatching<IForm, IEvent> & KeysMatching<IGlobal, IEvent> & KeysMatching<ILoan, IEvent> & KeysMatching<IModule, IEvent> & KeysMatching<IView, IEvent>;
12
+ export type EventObjects = KeysMatching<IApplication, IEvent> | KeysMatching<IForm, IEvent> | KeysMatching<IGlobal, IEvent> | KeysMatching<ILoan, IEvent> | KeysMatching<IModule, IEvent> | KeysMatching<IView, IEvent>;
13
13
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-scripting-object",
3
- "version": "1.16.10",
3
+ "version": "1.16.11",
4
4
  "description": "Typescript defintions for Scripting Objects",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/cjs/index.js",