@budibase/types 2.32.0 → 2.32.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.
@@ -153,7 +153,8 @@ export declare enum AutomationStatus {
153
153
  SUCCESS = "success",
154
154
  ERROR = "error",
155
155
  STOPPED = "stopped",
156
- STOPPED_ERROR = "stopped_error"
156
+ STOPPED_ERROR = "stopped_error",
157
+ NO_CONDITION_MET = "No branch condition met"
157
158
  }
158
159
  export declare enum AutomationStoppedReason {
159
160
  TRIGGER_FILTER_NOT_MET = "Automation did not run. Filter conditions in trigger were not met."
package/dist/index.js CHANGED
@@ -972,6 +972,7 @@ var AutomationStatus = /* @__PURE__ */ ((AutomationStatus2) => {
972
972
  AutomationStatus2["ERROR"] = "error";
973
973
  AutomationStatus2["STOPPED"] = "stopped";
974
974
  AutomationStatus2["STOPPED_ERROR"] = "stopped_error";
975
+ AutomationStatus2["NO_CONDITION_MET"] = "No branch condition met";
975
976
  return AutomationStatus2;
976
977
  })(AutomationStatus || {});
977
978
  var AutomationStoppedReason = /* @__PURE__ */ ((AutomationStoppedReason2) => {