@fleetless/sdk 2.0.2 → 3.0.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 +108 -0
- package/README.md +105 -59
- package/dist/index.cjs +4796 -1240
- package/dist/index.d.cts +881 -756
- package/dist/index.d.ts +881 -756
- package/dist/index.js +4796 -1240
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fleetless/sdk",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "The official TypeScript SDK for Fleetless client apps
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "The official TypeScript SDK for Fleetless client apps \u2014 a ROS 2 robot as a REST and realtime API, cameras, jobs, and the app's own user accounts, federated sign-in and MCP consent.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Dehne Robotik GmbH",
|
|
@@ -61,16 +61,16 @@
|
|
|
61
61
|
"test": "vitest run",
|
|
62
62
|
"test:pack": "node scripts/verify-published-types.mjs",
|
|
63
63
|
"verify:live": "node scripts/verify-live.mjs",
|
|
64
|
-
"verify:history": "node scripts/verify-history.mjs"
|
|
65
|
-
"verify:hosted-login": "node scripts/verify-hosted-login.mjs"
|
|
64
|
+
"verify:history": "node scripts/verify-history.mjs"
|
|
66
65
|
},
|
|
67
66
|
"dependencies": {
|
|
68
67
|
"zod": "^4.0.0"
|
|
69
68
|
},
|
|
70
69
|
"devDependencies": {
|
|
71
|
-
"@fleetless/contracts": "git+ssh://git@gitlab.dehne-robotik.de/fleetless/fleetless-contracts.git#
|
|
70
|
+
"@fleetless/contracts": "git+ssh://git@gitlab.dehne-robotik.de/fleetless/fleetless-contracts.git#48acd56eb2714a77b35919f6cb811ed47fbb97f9",
|
|
72
71
|
"@types/node": "^22.20.1",
|
|
73
72
|
"tsup": "^8.3.0",
|
|
73
|
+
"typedoc": "0.28.20",
|
|
74
74
|
"typescript": "^5.7.0",
|
|
75
75
|
"vitest": "^3.0.0",
|
|
76
76
|
"ws": "^8.21.3"
|