@frockbot/plugin-user-machine 0.1.3 → 0.2.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/package.json +9 -9
- package/src/user.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-user-machine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
"typecheck": "vue-tsc --noEmit -p tsconfig.json"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@frockbot/client-core": "0.
|
|
37
|
-
"@frockbot/client-ui": "0.
|
|
38
|
-
"@frockbot/desktop-core": "0.
|
|
39
|
-
"@frockbot/kernel-agent-loop": "0.
|
|
40
|
-
"@frockbot/kernel-contracts": "0.
|
|
41
|
-
"@frockbot/machine-protocol": "0.
|
|
42
|
-
"@frockbot/plugin-shell": "0.
|
|
36
|
+
"@frockbot/client-core": "0.2.0",
|
|
37
|
+
"@frockbot/client-ui": "0.2.0",
|
|
38
|
+
"@frockbot/desktop-core": "0.2.0",
|
|
39
|
+
"@frockbot/kernel-agent-loop": "0.2.0",
|
|
40
|
+
"@frockbot/kernel-contracts": "0.2.0",
|
|
41
|
+
"@frockbot/machine-protocol": "0.2.0",
|
|
42
|
+
"@frockbot/plugin-shell": "0.2.0",
|
|
43
43
|
"cordis": "4.0.0-rc.8",
|
|
44
44
|
"vue": "3.5.41"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@frockbot/plugin-tools": "0.
|
|
47
|
+
"@frockbot/plugin-tools": "0.2.0",
|
|
48
48
|
"@types/bun": "1.4.0",
|
|
49
49
|
"@vitejs/plugin-vue": "6.0.8",
|
|
50
50
|
"typescript": "5.9.3",
|
package/src/user.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// registry rows, the pairing offers, the command queue with its leases, and
|
|
6
6
|
// the results. "The User's Durable Object is the authority for everything
|
|
7
7
|
// User-scoped", and a machine is a User asset: a Bot reaches one only through
|
|
8
|
-
//
|
|
8
|
+
// an enabled Capability, and (from R3) a per-call human approval.
|
|
9
9
|
//
|
|
10
10
|
// Three seams it does not own:
|
|
11
11
|
//
|