@fleetless/sdk 2.0.2 → 2.1.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.
- package/CHANGELOG.md +17 -0
- package/dist/index.cjs +3700 -274
- package/dist/index.d.cts +560 -327
- package/dist/index.d.ts +560 -327
- package/dist/index.js +3700 -274
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to `@fleetless/sdk`. The format follows Keep a Changelog; th
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [2.1.0] — 2026-09-04
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `InvokeOptions` is exported — the type of `actions.invoke`'s options
|
|
12
|
+
argument, which a caller constructs and could not name.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Every exported member carries a doc comment; the generated SDK reference
|
|
17
|
+
on docs.fleetless.dev is rendered from them.
|
|
18
|
+
- `InMemoryTokenStore` declares an explicit empty `constructor()`. It exists
|
|
19
|
+
only to carry a doc comment: TypeDoc reflects a synthesized constructor
|
|
20
|
+
for a class without one, and an undocumented member is what the reference
|
|
21
|
+
is built to have none of. Behaviour is unchanged — the class had an
|
|
22
|
+
implicit no-argument constructor before and has an explicit one now.
|
|
23
|
+
|
|
7
24
|
## [2.0.2] — 2026-09-04
|
|
8
25
|
|
|
9
26
|
No code change; the published `dist/` is byte-identical to 2.0.0.
|