@walkeros/cli 4.5.0 → 4.6.0-next-1788817472881
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/CHANGELOG.md +36 -0
- package/dist/cli.js +1556 -1326
- package/dist/index.d.ts +3107 -491
- package/dist/index.js +728 -347
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +9867 -6216
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 4.6.0-next-1788817472881
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 23e9034: `walkeros login` now uses the standard device authorization grant and
|
|
8
|
+
refreshes its session automatically. Existing tokens keep working until they
|
|
9
|
+
expire; run `walkeros login` once to switch.
|
|
10
|
+
|
|
11
|
+
Breaking: `getAuthHeaders` is async, and it rejects when the session needs a
|
|
12
|
+
refresh that cannot be carried out rather than quietly returning no header.
|
|
13
|
+
`createApiClient` no longer throws when unauthenticated, the request it makes
|
|
14
|
+
does. Removed exports: `getToken`, `requestDeviceCode`, `pollForToken`, and
|
|
15
|
+
the `DeviceCodeResult`, `DeviceCodeOptions`, `PollOptions` and `PollResult`
|
|
16
|
+
types; `startDeviceAuthorization` and `completeDeviceLogin` replace the last
|
|
17
|
+
two.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 8802281: The BigQuery destination no longer applies `config.timeout` as a
|
|
22
|
+
deadline on the Storage Write API append stream, which killed healthy
|
|
23
|
+
connections roughly every ten seconds and caused reconnect churn, latency
|
|
24
|
+
spikes, and intermittent 5xx responses. Error logs now show the error's
|
|
25
|
+
message, name and status code in CLI output, and no longer include event
|
|
26
|
+
payloads.
|
|
27
|
+
- 403ff6c: The MCP server carries `hub_manage`, which reads a flow's release
|
|
28
|
+
history, its rationale and the threads on it, and a read-only `frame_manage`,
|
|
29
|
+
which reads the frames of a measurement plan. The CLI gains the matching
|
|
30
|
+
programmatic calls. `ToolClient` gains eleven required methods, so a custom
|
|
31
|
+
implementation of that interface must add them.
|
|
32
|
+
- Updated dependencies [8802281]
|
|
33
|
+
- @walkeros/collector@4.6.0-next-1788817472881
|
|
34
|
+
- @walkeros/server-core@4.6.0-next-1788817472881
|
|
35
|
+
- @walkeros/core@4.6.0-next-1788817472881
|
|
36
|
+
- @walkeros/server-destination-api@4.6.0-next-1788817472881
|
|
37
|
+
- @walkeros/transformer-validate@4.6.0-next-1788817472881
|
|
38
|
+
|
|
3
39
|
## 4.5.0
|
|
4
40
|
|
|
5
41
|
### Minor Changes
|