@miosa/sdk 1.2.27 → 1.2.28
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/README.md +5 -5
- package/dist/index.d.ts +251 -219
- package/dist/index.js +345 -262
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ await sbx.pause();
|
|
|
53
53
|
| Resource | Description |
|
|
54
54
|
|---|---|
|
|
55
55
|
| `miosa.sandboxes` | Lightweight code-execution VMs — exec, files, snapshots, previews |
|
|
56
|
-
| `miosa.computers` | Full Linux desktop VMs for
|
|
56
|
+
| `miosa.computers` | Full Linux desktop VMs with desktop control for agents |
|
|
57
57
|
| `miosa.deployments` | Versioned production releases with rollback |
|
|
58
58
|
| `miosa.databases` | Managed Postgres / Redis lifecycle |
|
|
59
59
|
| `miosa.storage` | S3-compatible object storage |
|
|
@@ -258,8 +258,8 @@ const deployment = await sbx.deploy({
|
|
|
258
258
|
});
|
|
259
259
|
```
|
|
260
260
|
|
|
261
|
-
For workspace
|
|
262
|
-
|
|
261
|
+
For workspace App Engine, publish from the same sandbox but choose the
|
|
262
|
+
App Engine target:
|
|
263
263
|
|
|
264
264
|
```ts
|
|
265
265
|
const deployment = await sbx.deployDocker({
|
|
@@ -273,8 +273,8 @@ const deployment = await sbx.deployDocker({
|
|
|
273
273
|
console.log(deployment.url ?? deployment.public_url);
|
|
274
274
|
```
|
|
275
275
|
|
|
276
|
-
|
|
277
|
-
|
|
276
|
+
App Engine runs app containers inside the workspace's dedicated MIOSA
|
|
277
|
+
App Engine appliance VM. It is separate from normal MIOSA dynamic runtime
|
|
278
278
|
VMs and is useful when a workspace needs many small apps, funnels, lead
|
|
279
279
|
magnets, APIs, or client sites.
|
|
280
280
|
|