@githolon/dsl 0.1.3 → 0.1.6

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/LICENSE.md CHANGED
@@ -24,6 +24,15 @@ with it; we keep the rest for now.
24
24
  - offer the Nomos runtime, or anything materially similar, as a hosted service;
25
25
  - reverse-engineer the holon wasm runtime.
26
26
 
27
+ ## Data retention
28
+
29
+ This is a pre-release we are actively evaluating. Workspaces you retire stop
30
+ counting toward your quota but are NOT deleted: **we retain all workspace data
31
+ (ledgers, law, intents) and may examine it to evaluate how the product is
32
+ used.** Don't put anything in a pre-release workspace you wouldn't want the
33
+ builders to read. If you need something truly expunged, ask:
34
+ jack@captainapp.co.uk.
35
+
27
36
  ## The rest
28
37
 
29
38
  Provided **as is**, with no warranty of any kind; to the maximum extent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@githolon/dsl",
3
- "version": "0.1.3",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "Nomos 2 domain-authoring DSL: aggregates + directives in TS, executed and encoded to the Rust kernel's wire shapes.",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -519,9 +519,10 @@ async function main(): Promise<void> {
519
519
  console.log(` deploy ${rel(deployPath)}`);
520
520
  console.log(``);
521
521
  console.log(`deploy (Nomos Cloud):`);
522
- console.log(` curl -X POST -H 'content-type: application/json' \\`);
523
- console.log(` --data-binary @${rel(deployPath)} \\`);
524
- console.log(` https://nomos.captainapp.co.uk/v1/workspaces/<ws>/domains`);
522
+ console.log(` githolon ws create <ws> && githolon deploy <ws> # the secret is saved + sent for you`);
523
+ console.log(` # raw lane: curl -X POST -H 'content-type: application/json' -H 'Authorization: Bearer <workspaceSecret>' \\`);
524
+ console.log(` # --data-binary @${rel(deployPath)} https://nomos.captainapp.co.uk/v1/workspaces/<ws>/domains`);
525
+ console.log(`prove it: npm run e2e # offline write -> sync -> admission -> cloud query, live`);
525
526
  }
526
527
 
527
528
  await main();