@fleetless/sdk 2.0.1 → 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 +10 -0
- package/README.md +1 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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
|
+
|
|
7
17
|
## [2.0.1] — 2026-09-04
|
|
8
18
|
|
|
9
19
|
No code change; the published `dist/` is byte-identical to 2.0.0.
|
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.
|
package/package.json
CHANGED