@budibase/shared-core 3.16.1 → 3.17.1

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.
@@ -1,5 +1,9 @@
1
- import { Automation } from "@budibase/types";
2
- export declare function isRowAction(automation: Automation): boolean;
1
+ import { Automation, RowActionTrigger } from "@budibase/types";
2
+ export declare function isRowAction(automation: Automation): automation is Automation & {
3
+ definition: Automation["definition"] & {
4
+ trigger: RowActionTrigger;
5
+ };
6
+ };
3
7
  export declare function isWebhookAction(automation: Automation): boolean;
4
8
  export declare function isAppAction(automation: Automation): boolean;
5
9
  export declare function checkForCollectStep(automation: Automation): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/shared-core",
3
- "version": "3.16.1",
3
+ "version": "3.17.1",
4
4
  "description": "Shared data utils",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,5 +36,5 @@
36
36
  }
37
37
  }
38
38
  },
39
- "gitHead": "6e6f06e392e69521daaf3f68263cf8c5e7978e03"
39
+ "gitHead": "cdf45e122b198e4d763dd4f0d6cbcfe547441fb6"
40
40
  }