@slflows/sdk 0.3.0 → 0.4.0

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.
@@ -1043,7 +1043,6 @@ interface BaseLifecycleCallbackOutput {
1043
1043
  }
1044
1044
  interface EntityNonSchedulableLifecycleCallbackOutput extends BaseLifecycleCallbackOutput {
1045
1045
  newStatus: Exclude<EntityLifecycleStatus, "in_progress" | "draining">;
1046
- nextScheduleDelay?: never;
1047
1046
  }
1048
1047
  interface EntitySchedulableLifecycleCallbackOutput extends BaseLifecycleCallbackOutput {
1049
1048
  newStatus: "in_progress" | "draining";
@@ -1052,7 +1051,6 @@ interface EntitySchedulableLifecycleCallbackOutput extends BaseLifecycleCallback
1052
1051
  type EntityLifecycleCallbackOutput = EntityNonSchedulableLifecycleCallbackOutput | EntitySchedulableLifecycleCallbackOutput;
1053
1052
  interface AppNonSchedulableLifecycleCallbackOutput extends BaseLifecycleCallbackOutput {
1054
1053
  newStatus: Exclude<AppLifecycleStatus, "in_progress" | "draining">;
1055
- nextScheduleDelay?: never;
1056
1054
  }
1057
1055
  interface AppSchedulableLifecycleCallbackOutput extends BaseLifecycleCallbackOutput {
1058
1056
  newStatus: "in_progress" | "draining";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],