@slflows/sdk 0.9.0 → 0.11.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.
@@ -575,7 +575,7 @@ declare const http: {
575
575
  * onRequest: async (input) => {
576
576
  * if (input.request.path === "/approve") {
577
577
  * // Manual approval received
578
- * await lifecycle.proceed();
578
+ * await lifecycle.sync();
579
579
  *
580
580
  * await http.respond(input.request.requestId, {
581
581
  * statusCode: 200,
@@ -839,6 +839,7 @@ interface JsonSchema {
839
839
  anyOf?: JsonSchema[];
840
840
  oneOf?: JsonSchema[];
841
841
  description?: string;
842
+ sensitive?: boolean;
842
843
  additionalProperties?: boolean | {
843
844
  type: JsonSchemaType;
844
845
  };
@@ -859,6 +860,7 @@ interface AppSignal {
859
860
  name: string;
860
861
  description: string;
861
862
  sensitive?: boolean;
863
+ sensitivity?: "hide_by_default" | "never_show" | "not_sensitive";
862
864
  }
863
865
  interface AppHTTPComponent {
864
866
  onRequest: (input: AppOnHTTPRequestInput) => Promise<void>;
@@ -1003,6 +1005,7 @@ interface AppBlockSignal {
1003
1005
  name: string;
1004
1006
  description: string;
1005
1007
  sensitive?: boolean;
1008
+ sensitivity?: SignalSensitivity;
1006
1009
  }
1007
1010
  interface AppBlockSchedule {
1008
1011
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.9.0",
3
+ "version": "0.11.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -9,8 +9,8 @@
9
9
  "./v1": "./dist/v1/index.d.ts"
10
10
  },
11
11
  "devDependencies": {
12
- "pkgroll": "^2.21.4",
13
- "rollup": "^4.53.3",
12
+ "pkgroll": "^2.27.0",
13
+ "rollup": "^4.59.0",
14
14
  "rollup-plugin-dts": "^6.3.0",
15
15
  "typescript": "^5.9.3"
16
16
  },