deepline 0.1.28 → 0.1.30
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.
- package/README.md +4 -2
- package/dist/cli/index.js +900 -486
- package/dist/cli/index.mjs +900 -486
- package/dist/index.d.mts +42 -2
- package/dist/index.d.ts +42 -2
- package/dist/index.js +17 -3
- package/dist/index.mjs +17 -3
- package/dist/repo/apps/play-runner-workers/src/runtime/dataset-handles.ts +62 -2
- package/dist/repo/sdk/src/client.ts +54 -1
- package/dist/repo/sdk/src/play.ts +5 -0
- package/dist/repo/sdk/src/version.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,8 +74,10 @@ bun sdk/bin/deepline-dev.ts update
|
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
`tools describe` and `tools execute` are canonical. `tools get` and `tools run`
|
|
77
|
-
remain compatibility aliases. Unknown `plays run` flags such as
|
|
78
|
-
|
|
77
|
+
remain compatibility aliases. Unknown `plays run` flags such as `--limit 5`
|
|
78
|
+
are passed into the play input object. CSV file inputs should be passed through
|
|
79
|
+
`--input`, matching the play contract, for example
|
|
80
|
+
`--input '{"file":"leads.csv"}'` for `ctx.csv(input.file)`.
|
|
79
81
|
|
|
80
82
|
## Public play entrypoints
|
|
81
83
|
|