@etsoo/appscript 1.2.41 → 1.2.42

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.
@@ -53,3 +53,7 @@ export interface IActionResult<D extends {} = {}> {
53
53
  export declare type IdActionResult<T extends DataTypes.IdType = number> = IActionResult<{
54
54
  id: T;
55
55
  }>;
56
+ /**
57
+ * Action result with dynamic data
58
+ */
59
+ export declare type DynamicActionResult = IActionResult<Record<string, any>>;
@@ -53,3 +53,7 @@ export interface IActionResult<D extends {} = {}> {
53
53
  export declare type IdActionResult<T extends DataTypes.IdType = number> = IActionResult<{
54
54
  id: T;
55
55
  }>;
56
+ /**
57
+ * Action result with dynamic data
58
+ */
59
+ export declare type DynamicActionResult = IActionResult<Record<string, any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.2.41",
3
+ "version": "1.2.42",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -65,3 +65,8 @@ export type IdActionResult<T extends DataTypes.IdType = number> =
65
65
  IActionResult<{
66
66
  id: T;
67
67
  }>;
68
+
69
+ /**
70
+ * Action result with dynamic data
71
+ */
72
+ export type DynamicActionResult = IActionResult<Record<string, any>>;