@slflows/sdk 0.12.0 → 0.13.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.
@@ -906,6 +906,13 @@ interface AppBlock {
906
906
  * Defaults to false.
907
907
  */
908
908
  autoconfirm?: boolean;
909
+ /**
910
+ * Mark this block as an entrypoint (trigger). Entrypoint blocks create
911
+ * new event chains rather than reacting to upstream events.
912
+ * Examples: webhook receivers, scheduled triggers, form openers.
913
+ * Defaults to false.
914
+ */
915
+ entrypoint?: boolean;
909
916
  }
910
917
  interface AppBlockConfigField {
911
918
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],