@fleetless/sdk 2.0.0 → 2.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.
- package/CHANGELOG.md +22 -0
- package/README.md +5 -10
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ All notable changes to `@fleetless/sdk`. The format follows Keep a Changelog; th
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [2.0.2] — 2026-09-04
|
|
8
|
+
|
|
9
|
+
No code change; the published `dist/` is byte-identical to 2.0.0.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- The README's getting-started section speaks of the hosted platform only;
|
|
14
|
+
the paragraph about pointing `apiUrl` at a local stack is gone. Fleetless
|
|
15
|
+
is not offered for self-hosting.
|
|
16
|
+
|
|
17
|
+
## [2.0.1] — 2026-09-04
|
|
18
|
+
|
|
19
|
+
No code change; the published `dist/` is byte-identical to 2.0.0.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- The contact address in the README and in `package.json` (`author`,
|
|
24
|
+
`bugs`) is hello@fleetless.dev.
|
|
25
|
+
- The README's closing section states that the source repository is private
|
|
26
|
+
and takes no outside contributions; the `CONTRIBUTING.md` it linked to is
|
|
27
|
+
gone.
|
|
28
|
+
|
|
7
29
|
## [2.0.0] — 2026-09-04
|
|
8
30
|
|
|
9
31
|
The first release since 1.0.0, and it is a breaking one. The entries below are
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ npm i @fleetless/sdk
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
You need an app identifier and an end user's credentials from the
|
|
60
|
-
[Fleetless Console](https://console.fleetless.dev)
|
|
60
|
+
[Fleetless Console](https://console.fleetless.dev).
|
|
61
61
|
|
|
62
62
|
```ts checked
|
|
63
63
|
import { createClient } from '@fleetless/sdk'
|
|
@@ -94,9 +94,6 @@ await client.auth.logout()
|
|
|
94
94
|
client.close()
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
Against a local dev stack, point `apiUrl` at `http://localhost:8080`; the
|
|
98
|
-
realtime URL (`ws://localhost:8080/realtime`) is derived from it.
|
|
99
|
-
|
|
100
97
|
Slugs are the names you chose in the console, in `snake_case`
|
|
101
98
|
(`[a-z][a-z0-9]*(_[a-z0-9]+)*`) — never the robot's internal ROS names, which
|
|
102
99
|
is what makes renaming a node on the robot invisible to your app.
|
|
@@ -222,17 +219,15 @@ gained a name (`LogoutResult`); `.revoked` is unchanged.
|
|
|
222
219
|
- **[Hosted login recipe](https://docs.fleetless.dev/recipes/hosted-login/)** —
|
|
223
220
|
the full walkthrough, including every error the callback can carry.
|
|
224
221
|
- **[CHANGELOG.md](CHANGELOG.md)** — what changed in each version.
|
|
225
|
-
- Questions, bug reports and feature requests: hello@
|
|
222
|
+
- Questions, bug reports and feature requests: hello@fleetless.dev.
|
|
226
223
|
|
|
227
224
|
Fleetless is in closed beta. The waiting list is at
|
|
228
225
|
<https://fleetless.dev/#waiting-list>.
|
|
229
226
|
|
|
230
|
-
## Maintainers
|
|
227
|
+
## Maintainers
|
|
231
228
|
|
|
232
229
|
Maintained by [Dehne Robotik GmbH](https://dehne-robotik.de). The source
|
|
233
|
-
repository is private
|
|
234
|
-
|
|
235
|
-
[CONTRIBUTING.md](CONTRIBUTING.md) documents the development setup, the checks
|
|
236
|
-
and the release procedure for people who have access.
|
|
230
|
+
repository is private and takes no outside contributions; questions and bug
|
|
231
|
+
reports go to hello@fleetless.dev.
|
|
237
232
|
|
|
238
233
|
MIT licensed — see [LICENSE](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fleetless/sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "The official TypeScript SDK for Fleetless client apps — a ROS 2 robot as a REST and realtime API, cameras, jobs and the hosted login.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Dehne Robotik GmbH",
|
|
8
|
-
"email": "hello@
|
|
8
|
+
"email": "hello@fleetless.dev",
|
|
9
9
|
"url": "https://dehne-robotik.de"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://docs.fleetless.dev/reference/sdk/",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"email": "hello@
|
|
13
|
+
"email": "hello@fleetless.dev"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"fleetless",
|