@altopelago/aeon-cli 0.9.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/dist/main.d.ts +53 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.js +2731 -0
- package/dist/main.js.map +1 -0
- package/dist/runtime-bind.d.ts +56 -0
- package/dist/runtime-bind.d.ts.map +1 -0
- package/dist/runtime-bind.js +264 -0
- package/dist/runtime-bind.js.map +1 -0
- package/package.json +34 -0
package/dist/main.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* @altopelago/aeon-cli - AEON Command Line Interface
|
|
4
|
+
*
|
|
5
|
+
* Commands:
|
|
6
|
+
* - aeon version Show version
|
|
7
|
+
* - aeon check <file> Validate AEON document (CI-friendly)
|
|
8
|
+
* - aeon doctor Check environment and contract wiring
|
|
9
|
+
* - aeon fmt [file] Format AEON document (stdout by default)
|
|
10
|
+
* - aeon inspect <file> Inspect AEON document (human-readable)
|
|
11
|
+
* - aeon finalize <file> Finalize AEON document to JSON
|
|
12
|
+
* - aeon bind <file> Run typed runtime binding with schema JSON
|
|
13
|
+
* - aeon integrity validate <file> Validate integrity envelope
|
|
14
|
+
* - aeon integrity verify <file> Verify integrity envelope hashes
|
|
15
|
+
* - aeon integrity sign <file> Generate integrity envelope snippet
|
|
16
|
+
*
|
|
17
|
+
* Flags:
|
|
18
|
+
* - --json Output as JSON (inspect/finalize/integrity)
|
|
19
|
+
* - --contract-registry Trusted contract registry JSON path (doctor/bind)
|
|
20
|
+
* - --write Write formatted output back to file (fmt only)
|
|
21
|
+
* - --annotations Include annotation stream records in inspect/bind output
|
|
22
|
+
* - --annotations-only Output only annotation stream records in inspect output
|
|
23
|
+
* - --sort-annotations Sort annotation records deterministically before output (inspect/bind)
|
|
24
|
+
* - --map Output finalized map (finalize only)
|
|
25
|
+
* - --scope Finalization scope: payload|header|full (finalize/bind)
|
|
26
|
+
* - --projected Materialize only explicitly included canonical paths (finalize/bind)
|
|
27
|
+
* - --include-path Canonical path to include in projected materialization (repeatable; finalize/bind)
|
|
28
|
+
* - --recovery Enable recovery mode (partial results with errors)
|
|
29
|
+
* - --max-input-bytes Maximum UTF-8 input size in bytes
|
|
30
|
+
* - --max-attribute-depth Maximum attribute selector depth
|
|
31
|
+
* - --max-separator-depth Maximum separator-spec depth
|
|
32
|
+
* - --max-generic-depth Maximum nested generic type depth
|
|
33
|
+
* - --max-nesting-depth Maximum container nesting depth
|
|
34
|
+
* - --max-materialized-weight Maximum cumulative clone materialization weight
|
|
35
|
+
* - --max-reference-depth Maximum clone resolution depth
|
|
36
|
+
* - --schema Schema JSON path (bind only)
|
|
37
|
+
* - --profile Profile id (bind only)
|
|
38
|
+
* - --contract-registry Trusted contract registry JSON path (bind only)
|
|
39
|
+
* - --trailing-separator-delimiter-policy off|warn|error (bind only)
|
|
40
|
+
* - --datatype-policy reserved_only|allow_custom (check/inspect/finalize/bind)
|
|
41
|
+
* - --rich Preset alias for --datatype-policy allow_custom
|
|
42
|
+
* - --strict Strict mode (default)
|
|
43
|
+
* - --loose Loose mode (warnings only)
|
|
44
|
+
* - --public-key Public key path for signature verification
|
|
45
|
+
* - --private-key Private key path for signing
|
|
46
|
+
* - --receipt Receipt sidecar path override
|
|
47
|
+
* - --write Write generated envelope to file (sign only)
|
|
48
|
+
* - --replace Replace existing envelope (sign only)
|
|
49
|
+
* - --include-bytes Include bytes_hash in envelope (sign only)
|
|
50
|
+
* - --include-checksum Include checksum_value in envelope (sign only)
|
|
51
|
+
*/
|
|
52
|
+
export {};
|
|
53
|
+
//# sourceMappingURL=main.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG"}
|