@taskcast/client 0.1.2 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -18,6 +18,8 @@ const client = new TaskcastClient({
18
18
  token: 'your-jwt-token', // optional
19
19
  })
20
20
 
21
+ const taskId = 'task-123' // replace with your actual task ID
22
+
21
23
  await client.subscribe(taskId, {
22
24
  filter: {
23
25
  types: ['llm.*'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taskcast/client",
3
- "version": "0.1.2",
3
+ "version": "0.3.0",
4
4
  "description": "Browser SSE subscription client for Taskcast.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "eventsource-parser": "^2.0.1",
32
- "@taskcast/core": "0.1.2"
32
+ "@taskcast/core": "0.3.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "typescript": "^5.7.0",