@slflows/sdk 0.0.1 → 0.0.2

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.
@@ -145,6 +145,8 @@ interface EntityInput extends AppInput {
145
145
  }
146
146
  interface EntityContext {
147
147
  id: string;
148
+ name: string;
149
+ description: string;
148
150
  config: Record<string, any>;
149
151
  lifecycle: EntityLifecycleComponent | null;
150
152
  http: EntityHTTPEndpoint | null;
@@ -285,7 +287,7 @@ interface ListBlocksOutput {
285
287
  }
286
288
  declare const setAppInstallationStatus: (status: "active" | "failed") => Promise<void>;
287
289
  interface EmitOptions {
288
- outputId?: string;
290
+ outputKey?: string;
289
291
  parentEventId?: string;
290
292
  secondaryParentEventIds?: string[];
291
293
  echo?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -15,7 +15,7 @@
15
15
  "typescript": "^5.8.3"
16
16
  },
17
17
  "scripts": {
18
- "build": "pkgroll --clean-dist --src types",
19
- "watch": "pkgroll --watch --src types"
18
+ "build": "tsc && rollup -c",
19
+ "prepare": "pkgroll --clean-dist --src types"
20
20
  }
21
21
  }