cyc-type-def 7.1.1 → 7.1.3

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.
package/dist/index.d.cts CHANGED
@@ -539,8 +539,9 @@ declare enum DialogAction {
539
539
  interface BaseDialog {
540
540
  close(): void;
541
541
  }
542
- interface BaseDialogInput {
542
+ interface BaseDialogInput<T extends Base> {
543
543
  action: DialogAction;
544
+ entity: T;
544
545
  }
545
546
 
546
547
  interface Period extends Base {
package/dist/index.d.ts CHANGED
@@ -539,8 +539,9 @@ declare enum DialogAction {
539
539
  interface BaseDialog {
540
540
  close(): void;
541
541
  }
542
- interface BaseDialogInput {
542
+ interface BaseDialogInput<T extends Base> {
543
543
  action: DialogAction;
544
+ entity: T;
544
545
  }
545
546
 
546
547
  interface Period extends Base {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "7.1.1",
3
+ "version": "7.1.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",