@slflows/sdk 0.11.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;
@@ -1005,7 +1012,7 @@ interface AppBlockSignal {
1005
1012
  name: string;
1006
1013
  description: string;
1007
1014
  sensitive?: boolean;
1008
- sensitivity?: SignalSensitivity;
1015
+ sensitivity?: "hide_by_default" | "never_show" | "not_sensitive";
1009
1016
  }
1010
1017
  interface AppBlockSchedule {
1011
1018
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.11.0",
3
+ "version": "0.13.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],