@frockbot/plugin-routines 0.1.4 → 0.2.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.
- package/package.json +7 -7
- package/src/records.ts +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-routines",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"typecheck": "vue-tsc --noEmit -p tsconfig.json"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@frockbot/client-core": "0.1
|
|
36
|
-
"@frockbot/client-ui": "0.1
|
|
37
|
-
"@frockbot/configuration-core": "0.1
|
|
38
|
-
"@frockbot/kernel-agent-loop": "0.1
|
|
39
|
-
"@frockbot/kernel-contracts": "0.1
|
|
40
|
-
"@frockbot/plugin-shell": "0.1
|
|
35
|
+
"@frockbot/client-core": "0.2.1",
|
|
36
|
+
"@frockbot/client-ui": "0.2.1",
|
|
37
|
+
"@frockbot/configuration-core": "0.2.1",
|
|
38
|
+
"@frockbot/kernel-agent-loop": "0.2.1",
|
|
39
|
+
"@frockbot/kernel-contracts": "0.2.1",
|
|
40
|
+
"@frockbot/plugin-shell": "0.2.1",
|
|
41
41
|
"cordis": "4.0.0-rc.8",
|
|
42
42
|
"croner": "10.0.1",
|
|
43
43
|
"vue": "3.5.41"
|
package/src/records.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
// The durable Routine records, and their strict codecs.
|
|
2
2
|
//
|
|
3
3
|
// Every record is versioned, exact-field, and decoded at the seam it crosses.
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
// failure rather than something to reshape.
|
|
4
|
+
// A previous stored shape must cross an explicit forward migration here before
|
|
5
|
+
// strict decoding; an unknown shape remains a visible failure.
|
|
7
6
|
//
|
|
8
7
|
// A webhook Routine's record names the trigger *kind* and nothing else. Key
|
|
9
8
|
// material is minted, stored, and verified elsewhere (D3) and never reaches a
|