@slicervm/sdk 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  TypeScript SDK for the [Slicer](https://slicervm.com) VM control-plane API.
4
4
 
5
- Mirrors the [Go SDK](https://github.com/slicervm/sdk) semantically, with a grouped TypeScript shape inspired by `@e2b` and `modal`. The top-level `SlicerClient` exposes `hostGroups`, `vms`, and `secrets` namespaces; per-VM operations live on a `VM` handle returned from `client.vms.create()` / `client.vms.attach()`.
5
+ Mirrors the [Go SDK](https://github.com/slicervm/sdk) semantically. The top-level `SlicerClient` exposes `hostGroups`, `vms`, and `secrets` namespaces for control-plane operations; per-VM operations live on a `VM` handle returned from `client.vms.create()` / `client.vms.attach()`.
6
6
 
7
7
  Supports Unix socket and HTTP(S) transports.
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slicervm/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TypeScript SDK for the Slicer VM control-plane API.",
5
5
  "license": "MIT",
6
6
  "author": "Alex Ellis <alex@openfaas.com>",