@synapsor/runner 1.4.122 → 1.5.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +71 -19
  2. package/README.md +56 -46
  3. package/dist/cli.d.ts.map +1 -1
  4. package/dist/local-ui.d.ts.map +1 -1
  5. package/dist/runner.mjs +14531 -8137
  6. package/dist/runtime.d.ts +50 -0
  7. package/dist/runtime.d.ts.map +1 -0
  8. package/dist/runtime.mjs +15066 -0
  9. package/docs/README.md +19 -3
  10. package/docs/capability-authoring.md +17 -1
  11. package/docs/contract-review.md +33 -0
  12. package/docs/database-enforced-scope.md +273 -0
  13. package/docs/dependency-license-inventory.md +6 -2
  14. package/docs/doctor.md +17 -0
  15. package/docs/effect-regression.md +142 -0
  16. package/docs/getting-started-own-database.md +7 -0
  17. package/docs/local-mode.md +7 -3
  18. package/docs/mcp-apps.md +188 -0
  19. package/docs/mcp-audit.md +54 -0
  20. package/docs/mcp-client-setup.md +16 -4
  21. package/docs/mcp-clients.md +8 -0
  22. package/docs/production.md +8 -0
  23. package/docs/release-notes.md +67 -11
  24. package/docs/release-policy.md +9 -5
  25. package/docs/runner-config-reference.md +25 -0
  26. package/docs/schema-api-candidates.md +68 -0
  27. package/docs/security-boundary.md +14 -1
  28. package/docs/shadow-studies.md +198 -0
  29. package/examples/mcp-postgres-billing-app-handler/app-handler.mjs +9 -1
  30. package/examples/mcp-postgres-billing-app-handler/schema.sql +11 -0
  31. package/examples/mcp-postgres-billing-app-handler/synapsor-handler.mjs +3 -0
  32. package/examples/raw-sql-vs-synapsor/Makefile +2 -2
  33. package/examples/raw-sql-vs-synapsor/README.md +6 -4
  34. package/examples/support-billing-agent/Makefile +5 -1
  35. package/examples/support-billing-agent/README.md +39 -5
  36. package/examples/support-billing-agent/db/schema.sql +88 -1
  37. package/examples/support-billing-agent/db/seed.sql +15 -15
  38. package/examples/support-billing-agent/scripts/run-demo.sh +4 -0
  39. package/examples/support-billing-agent/scripts/run-evaluation.sh +62 -0
  40. package/examples/support-billing-agent/shadow-study/cases.jsonl +6 -0
  41. package/examples/support-billing-agent/shadow-study/outcomes.jsonl +2 -0
  42. package/examples/support-billing-agent/synapsor.runner.json +17 -5
  43. package/fixtures/contracts/capability-surface-fitness.contract.json +190 -0
  44. package/fixtures/effects/changed/eff_support_late_fee_v1.result.json +58 -0
  45. package/fixtures/effects/dataset.json +8 -0
  46. package/fixtures/effects/results/eff_support_late_fee_v1.result.json +59 -0
  47. package/fixtures/effects/support-late-fee.effect.json +71 -0
  48. package/fixtures/generators/drizzle/malicious.ts +11 -0
  49. package/fixtures/generators/drizzle/schema.ts +12 -0
  50. package/fixtures/generators/openapi/external-ref.yaml +15 -0
  51. package/fixtures/generators/openapi/openapi.yaml +81 -0
  52. package/fixtures/generators/prisma/schema.prisma +34 -0
  53. package/package.json +13 -2
  54. package/schemas/effect-dataset.schema.json +19 -0
  55. package/schemas/effect-fixture.schema.json +191 -0
  56. package/schemas/effect-result.schema.json +52 -0
  57. package/schemas/mcp-audit-candidates.schema.json +41 -0
  58. package/schemas/mcp-audit-report.schema.json +104 -0
  59. package/schemas/schema-candidate-review.schema.json +167 -0
  60. package/schemas/schema-candidates.schema.json +49 -0
  61. package/schemas/synapsor.runner.schema.json +51 -0
package/CHANGELOG.md CHANGED
@@ -1,6 +1,57 @@
1
1
  # Changelog
2
2
 
3
- ## 1.4.122 (prepared, not published)
3
+ ## 1.5.0 (prepared, not published)
4
+
5
+ ### Complete guarded-action developer proof
6
+
7
+ - Adds `synapsor-runner try` as a no-account, no-database, no-Docker proof of
8
+ scoped evidence, an exact business-data proposal, external approval, guarded
9
+ commit, restart-safe retry, stale-state refusal, receipt, and non-mutating
10
+ replay. `try --prove` also verifies changed-intent collision rejection.
11
+ - Adds explicit `application_scope`, `postgres_rls`, and `tenant_bound`
12
+ assurance modes. PostgreSQL hardened mode binds tenant/principal
13
+ transaction-locally, checks RLS and role prerequisites, and fails closed
14
+ rather than silently downgrading.
15
+ - Productizes strict local shadow studies, authoritative human-outcome
16
+ comparison, deterministic readiness reports, and effect-level JSON/JUnit
17
+ regression fixtures without activating policy or mutating source data.
18
+ - Adds a standard display-only MCP App proposal resource with exact effect,
19
+ evidence, scope, policy, and review-state presentation. Approval and apply
20
+ remain absent from MCP, with terminal and standalone local-UI fallbacks.
21
+ - Extends static MCP risk audit into disabled review candidates, and adds
22
+ review-only Prisma, Drizzle, and OpenAPI generators that emit canonical
23
+ contracts without importing or executing adopter code.
24
+ - Promotes `examples/support-billing-agent` as a disposable PostgreSQL/RLS
25
+ proof covering tenant and principal scope, kept-out fields, exact $55
26
+ proposal, approval/apply, idempotent retry, stale conflict, replay, strict
27
+ shadow, human comparison, and effect regression.
28
+ - Keeps app-owned handler writers least-privileged when their receipt table is
29
+ pre-provisioned: the helper checks for the table before attempting DDL, and
30
+ the live source and packed examples verify transactional apply and retry.
31
+ - Rewrites the README around the complete `try --prove` outcome, keeps MCP
32
+ audit immediately second, names each isolation boundary precisely, and
33
+ reconciles release documentation with the live npm registry.
34
+ - Stages only `@synapsor/runner@1.5.0`; `@synapsor/spec@1.4.2`,
35
+ `@synapsor/dsl@1.4.3`, and `@synapsor/cli@0.1.0-beta.1` remain unchanged.
36
+ Nothing is published by this change.
37
+
38
+ ## 1.4.123 (2026-07-17)
39
+
40
+ ### Advisory capability-surface fitness lint
41
+
42
+ - Adds deterministic `contract lint` advisories for generic query-like string
43
+ arguments, more than eight capabilities on one normalized target,
44
+ non-business-operation names, and structurally near-duplicate capabilities.
45
+ - Keeps canonical validation, compilation, MCP serving, and runtime enforcement
46
+ unchanged. Advisories succeed by default; explicit `--strict` or
47
+ `--fail-on warning` remains the opt-in CI policy gate.
48
+ - Adds stable structured details and surface metrics to JSON/SARIF output, plus
49
+ a concise text summary. No database connection, environment value, source
50
+ row, or probabilistic classifier is involved.
51
+ - Published only `@synapsor/runner@1.4.123`; `@synapsor/spec@1.4.2`,
52
+ `@synapsor/dsl@1.4.3`, and `@synapsor/cli@0.1.0-beta.1` are unchanged.
53
+
54
+ ## 1.4.122 (2026-07-17)
4
55
 
5
56
  ### Trusted principal row scope and Cloud-linked governance
6
57
 
@@ -23,10 +74,10 @@
23
74
  Runner-token fallback.
24
75
  - Introduces the separately packable `@synapsor/cli@0.1.0-beta.1` Cloud client;
25
76
  `synapsor-runner` remains the local MCP/database enforcement boundary.
26
- - Stages `@synapsor/spec@1.4.2`, `@synapsor/dsl@1.4.3`, and
27
- `@synapsor/runner@1.4.122`. Nothing is published by this change.
77
+ - Published `@synapsor/spec@1.4.2`, `@synapsor/dsl@1.4.3`, and
78
+ `@synapsor/runner@1.4.122`.
28
79
 
29
- ## 1.4.121 (prepared, not published)
80
+ ## 1.4.121 (2026-07-15)
30
81
 
31
82
  ### Contract trust surface and bounded-set parser correctness
32
83
 
@@ -62,10 +113,10 @@
62
113
  - Proves additive Spec/DSL/Runner/C++ aggregate and enum parity, shared Postgres
63
114
  recommendation durability, and transient PostgreSQL/MySQL timeout
64
115
  classification.
65
- - Stages `@synapsor/spec@1.4.1`, `@synapsor/dsl@1.4.2`, and
66
- `@synapsor/runner@1.4.121`. Nothing is published by this change.
116
+ - Published `@synapsor/spec@1.4.1`, `@synapsor/dsl@1.4.2`, and
117
+ `@synapsor/runner@1.4.121`.
67
118
 
68
- ## 1.4.12 (prepared, not published)
119
+ ## 1.4.12 (2026-07-14)
69
120
 
70
121
  ### Runtime-store smoke-call consistency
71
122
 
@@ -81,10 +132,10 @@
81
132
  - Adds focused no-fallback coverage and a disposable two-process fleet proof
82
133
  covering ownership, approval/apply, one source receipt, replay, and safe
83
134
  ledger unavailability.
84
- - Stages only `@synapsor/runner@1.4.12`; `@synapsor/dsl` remains `1.4.1` and
85
- `@synapsor/spec` remains `1.4.0`. Nothing is published by this change.
135
+ - Published only `@synapsor/runner@1.4.12`; `@synapsor/dsl` remains `1.4.1`
136
+ and `@synapsor/spec` remains `1.4.0`.
86
137
 
87
- ## 1.4.1 (prepared, not published)
138
+ ## 1.4.1 (2026-07-14)
88
139
 
89
140
  ### Canonical Bounded-Set Digest Verification
90
141
 
@@ -111,11 +162,11 @@
111
162
  structural authorization, explains where SQL authority lives, and documents
112
163
  the approval, receipt, replay, and compensation layer without claiming
113
164
  prompt-injection prevention or compliance certification.
114
- - Stages `@synapsor/runner@1.4.1` and `@synapsor/dsl@1.4.1`;
165
+ - Published `@synapsor/runner@1.4.1` and `@synapsor/dsl@1.4.1`;
115
166
  `@synapsor/spec` remains `1.4.0` because the public contract schema did not
116
- change. Nothing is published by this change.
167
+ change.
117
168
 
118
- ## 1.4.0 (prepared, not published)
169
+ ## 1.4.0 (2026-07-14)
119
170
 
120
171
  ### Reviewed Reversible Change Sets
121
172
 
@@ -139,8 +190,8 @@
139
190
  conformance fixtures, owner-authorized resources, local UI/doctor/preview
140
191
  state, bounded metrics, crash-reconciliation tests, and the disposable
141
192
  `corepack pnpm test:reversible` gate.
142
- - Stages `@synapsor/spec@1.4.0`, `@synapsor/dsl@1.4.0`, and
143
- `@synapsor/runner@1.4.0`. No npm package is published by this change.
193
+ - Published `@synapsor/spec@1.4.0`, `@synapsor/dsl@1.4.0`, and
194
+ `@synapsor/runner@1.4.0`.
144
195
 
145
196
  ## 1.3.0 (prepared, not published)
146
197
 
@@ -217,7 +268,8 @@
217
268
  metadata so a leaked handle does not become bearer authority.
218
269
  - Adds shared-store and Streamable HTTP regressions proving owner access still
219
270
  works while cross-session resource reads fail closed.
220
- - Stages only `@synapsor/runner@1.1.1`; canonical Spec and DSL remain `1.1.0`.
271
+ - Published only `@synapsor/runner@1.1.1`; canonical Spec and DSL remain
272
+ `1.1.0`.
221
273
 
222
274
  ## 1.1.0
223
275
 
@@ -241,8 +293,8 @@
241
293
  - Adds verified dead-letter list/show/requeue/discard, shared-ledger
242
294
  backup/digest/restore, archive-before-retention, and a repeatable two-Runner
243
295
  kill/recovery test over synthetic Postgres/MySQL.
244
- - Stages `@synapsor/spec@1.1.0`, `@synapsor/dsl@1.1.0`, and
245
- `@synapsor/runner@1.1.0`. Nothing is published by this change.
296
+ - Published `@synapsor/spec@1.1.0`, `@synapsor/dsl@1.1.0`, and
297
+ `@synapsor/runner@1.1.0`.
246
298
 
247
299
  ## 1.0.0
248
300
 
@@ -264,7 +316,7 @@
264
316
  and Streamable HTTP mTLS.
265
317
  - Declares the first semver contract for the documented CLI, schema, contract,
266
318
  MCP result, writeback, approval, metrics, and replay surfaces.
267
- - Stages `@synapsor/spec@1.0.0`, `@synapsor/dsl@1.0.0`, and
319
+ - Published `@synapsor/spec@1.0.0`, `@synapsor/dsl@1.0.0`, and
268
320
  `@synapsor/runner@1.0.0`.
269
321
 
270
322
  ## 0.1.16
package/README.md CHANGED
@@ -4,21 +4,37 @@
4
4
  [![license: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE)
5
5
  [![ci](https://github.com/Synapsor/Synapsor-Runner/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Synapsor/Synapsor-Runner/actions/workflows/ci.yml?query=branch%3Amain)
6
6
 
7
- Stop giving AI agents `execute_sql`. Give them reviewed business actions.
7
+ **Approve the exact business effect, not an opaque tool call.**
8
8
 
9
- Synapsor Runner is an open-source, local-first MCP runtime for Postgres and
10
- MySQL. It exposes semantic tools such as `billing.inspect_invoice` and
11
- `billing.propose_late_fee_waiver`, saves risky changes as proposals, and keeps
12
- database credentials, approval, and writeback outside the model-facing tool
13
- surface.
9
+ Synapsor Runner is an open-source MCP runtime for Postgres and MySQL. It
10
+ gives agents reviewed business actions instead of `execute_sql`, saves risky
11
+ changes as proposals, and keeps database credentials, approval, and writeback
12
+ outside the model-facing surface.
14
13
 
15
14
  ## Prove It In 60 Seconds
16
15
 
17
- Path: **audit** MCP risk, **demo** the boundary, then **connect** staging. The
18
- first two commands touch only a local fixture.
16
+ First, prove the boundary without a database, Docker, config, MCP client, LLM,
17
+ or account:
19
18
 
20
- First, inspect the risk in a typical raw-SQL database MCP server. This works
21
- even if you never adopt Runner:
19
+ ```bash
20
+ npx -y @synapsor/runner try --prove
21
+ ```
22
+
23
+ The embedded source requests a $55 waiver and shows:
24
+
25
+ ```text
26
+ Proposed effect: late_fee_cents: 5500 -> 0
27
+ Source changed before approval: No
28
+ Guarded commit: 1 row, receipt recorded
29
+ Restart-safe retry: yes; duplicate mutations: 0
30
+ Stale apply refused: yes
31
+ ```
32
+
33
+ Review happens outside the model-facing tools. The command stores inspectable
34
+ state under `./.synapsor/try/` and does not test your database connection.
35
+ `demo --quick` remains a noninteractive compatibility alias.
36
+
37
+ Next, audit a typical raw-SQL MCP server:
22
38
 
23
39
  ```bash
24
40
  npx -y @synapsor/runner audit --example dangerous-db-mcp
@@ -35,15 +51,7 @@ model-facing approval/writeback, and missing conflict or idempotency signals.
35
51
  It does not call business tools. See [MCP Database Risk
36
52
  Review](docs/mcp-audit.md) for supported workflows and limits.
37
53
 
38
- Then see the proposal, approval boundary, evidence, and replay loop. It needs no
39
- database, Docker, config file, MCP client, or Synapsor account:
40
-
41
- ```bash
42
- npx -y @synapsor/runner demo --quick
43
- ```
44
-
45
- The quick demo creates a fixture ledger at `./.synapsor/quick-demo.db`. It
46
- teaches the boundary; it does not claim to test your database connection.
54
+ Then [connect a staging database](#connect-a-staging-database).
47
55
 
48
56
  ## Safety Model
49
57
 
@@ -75,30 +83,29 @@ approval, apply, or revert tools. A human or trusted operator approves outside
75
83
  MCP, then Runner performs a guarded write or routes the proposal to an
76
84
  app-owned executor.
77
85
 
78
- Contracts constrain tools, trusted context, visible and writable columns,
79
- bounds, transitions, and approvals. Proposals separate model intent from commit
80
- authority; evidence, query audit, receipts, and replay preserve the reviewed
81
- lifecycle. Runner does not make raw SQL tools, hosts, or
82
- prompt-injection-prone clients safe.
86
+ Contracts fix trusted context, fields, bounds, transitions, and approvals;
87
+ evidence, query audit, receipts, and replay preserve the lifecycle. Runner does
88
+ not make raw SQL or prompt-injection-prone clients safe.
83
89
 
84
- ## Why Not Just Use A Prompt And App Code?
90
+ ## Choose An Isolation Mode
85
91
 
86
- Prompts are not an authorization boundary. First ask who produces the SQL:
87
-
88
- - **The model produces SQL:** validation must understand arbitrary queries,
89
- scope, and side effects. That is `execute_sql` behind a parser.
90
- - **Trusted app code produces fixed, parameterized SQL:** good. You have built
91
- a semantic tool, and that may be enough for a small read-only application.
92
+ | Mode | Boundary |
93
+ | --- | --- |
94
+ | Embedded `try` | Synthetic source; proves the lifecycle, not your database. |
95
+ | `application_scope` | Shared role plus Runner predicates. A Runner bug or compromised process can cross scope; retain database controls. |
96
+ | `postgres_rls` | PostgreSQL also checks transaction-bound tenant/principal scope. Arbitrary trusted-context or credential control remains outside this guarantee. |
97
+ | `tenant_bound` | Authenticated context selects a restricted per-tenant credential or process. |
92
98
 
93
- Runner adds one reviewed contract for trusted scope, field controls, evidence,
94
- approval outside MCP, guarded writeback, receipts, replay, and compensation.
95
- Use your own code when you do not need that lifecycle. See the [build-vs-adopt
96
- guide](docs/why-synapsor-vs-app-guardrails.md).
99
+ Stdio commonly trusts process environment; shared HTTP must use verified signed
100
+ claims. Model arguments, query parameters, and arbitrary tenant headers are
101
+ never trusted. MySQL has no native RLS; use restricted views or tenant
102
+ credentials. See [Database scope] and the
103
+ [build-vs-adopt guide](docs/why-synapsor-vs-app-guardrails.md).
97
104
 
98
105
  ## Connect A Staging Database
99
106
 
100
- Start with a staging or disposable database and a read-only credential. Keep
101
- database permissions, restricted views, and row-level security in place.
107
+ Start with staging and a read-only credential. Keep database permissions,
108
+ views, and RLS.
102
109
 
103
110
  ```bash
104
111
  npm install -g @synapsor/runner
@@ -106,10 +113,12 @@ export DATABASE_URL="postgresql://runner_reader:REPLACE_ME@db.example.com:5432/a
106
113
  synapsor-runner start --from-env DATABASE_URL --schema public
107
114
  ```
108
115
 
109
- The guided command inspects metadata, asks you to choose one table or view,
110
- creates trusted context, generates reviewed capabilities, previews the MCP tool
111
- surface, and prints the next smoke and serve commands. It stores environment
112
- variable names, not connection strings.
116
+ The wizard inspects metadata, generates reviewed capabilities, previews MCP
117
+ tools, and prints smoke/serve commands. It stores environment-variable names,
118
+ not connection strings.
119
+
120
+ [Generate disabled review candidates from Prisma, Drizzle, or
121
+ OpenAPI.](docs/schema-api-candidates.md)
113
122
 
114
123
  The generated capability is a tenant-scoped read with an explicit column
115
124
  allowlist and required evidence. See the [own-database
@@ -165,10 +174,9 @@ compensation.
165
174
 
166
175
  ## Review And Prove Your Contract
167
176
 
168
- Before serving a contract, use `contract explain` for a reviewer-readable
169
- boundary, `contract lint --strict` for deterministic CI checks, and `contract
170
- test` for adopter-owned allow/deny/redaction cases. The built-in language
171
- server supplies diagnostics, completion, hover, and formatting for
177
+ Before serving, use `contract explain`, `contract lint --strict`, and `contract
178
+ test` for reviewer-readable boundaries and allow/deny/redaction cases. The
179
+ built-in language server supplies diagnostics, completion, hover, and formatting for
172
180
  `.synapsor.sql` and legacy `.synapsor` files. See [Contract
173
181
  Review](docs/contract-review.md) and [Contract
174
182
  Testing](docs/contract-testing.md).
@@ -212,6 +220,8 @@ least-privilege database access, host security, or application authorization.
212
220
  See [Security Boundary](docs/security-boundary.md) and
213
221
  [Current Limitations](docs/limitations.md).
214
222
 
223
+ [Database scope]: docs/database-enforced-scope.md
224
+
215
225
  ## Operate The Approval Loop
216
226
 
217
227
  Policies combine per-proposal and daily ceilings; exceeding one routes to human
@@ -264,7 +274,7 @@ guide](https://github.com/Synapsor/Synapsor-Runner/blob/main/docs/cloud-cli.md).
264
274
  ## Next Steps
265
275
 
266
276
  - Follow the [step-by-step Synapsor Tutorial](https://github.com/sandeshtiwari/Synapsor-Tutorial).
267
- - Run the [`support-plan-credit` flagship example](examples/support-plan-credit).
277
+ - Run the [`support-billing-agent` flagship example](examples/support-billing-agent).
268
278
  - Connect [Claude, Cursor, OpenAI Agents SDK, or another MCP client](docs/mcp-clients.md).
269
279
  - Author and [push a validated contract to Cloud](docs/cloud-push.md).
270
280
  - Browse the [task-first documentation index](docs/README.md).
package/dist/cli.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAYA,OAAO,EAAkU,KAAK,WAAW,EAA0H,MAAM,6BAA6B,CAAC;AAIvf,OAAO,EAkBL,KAAK,qBAAqB,EAK3B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAgI,KAAK,kBAAkB,EAAE,KAAK,kBAAkB,EAAE,KAAK,kBAAkB,EAAqG,KAAK,YAAY,EAAwB,MAAM,2BAA2B,CAAC;AAEhY,OAAO,EAQL,KAAK,gBAAgB,EAEtB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAWL,KAAK,yBAAyB,EAG/B,MAAM,8BAA8B,CAAC;AA8UtC,wBAAsB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAgE1D;AA0FD,KAAK,SAAS,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;AAE9E,wBAAsB,aAAa,CACjC,IAAI,EAAE,MAAM,EAAE,EACd,OAAO,GAAE;IACP,GAAG,CAAC,EAAE,SAAS,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAC9B,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;CACvC,GACL,OAAO,CAAC,MAAM,CAAC,CA2YjB;AA4mHD,wBAAsB,0BAA0B,CAAC,GAAG,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,CAAC,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC,CAS/H;AAojBD,wBAAsB,6BAA6B,CACjD,GAAG,EAAE,YAAY,EACjB,UAAU,EAAE,MAAM,EAClB,SAAS,CAAC,EAAE,MAAM,EAClB,OAAO,GAAE;IAAE,aAAa,CAAC,EAAE,OAAO,CAAA;CAAO,GACxC,OAAO,CAAC,IAAI,CAAC,CAgGf;AA0lCD,wBAAgB,8BAA8B,CAAC,WAAW,EAAE,yBAAyB,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,CAKxH;AAED,wBAAgB,qBAAqB,CACnC,MAAM,EAAE,qBAAqB,EAC7B,WAAW,EAAE,yBAAyB,EACtC,OAAO,EAAE,SAAS,GAAG,UAAU,GAAG,QAAQ,EAC1C,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,GACb,kBAAkB,GAAG,kBAAkB,GAAG,kBAAkB,CAgH9D"}
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAYA,OAAO,EAAoX,KAAK,WAAW,EAAyJ,MAAM,6BAA6B,CAAC;AAIxkB,OAAO,EAsBL,KAAK,qBAAqB,EAK3B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAmI,KAAK,kBAAkB,EAAE,KAAK,kBAAkB,EAAE,KAAK,kBAAkB,EAAqG,KAAK,YAAY,EAAwB,MAAM,2BAA2B,CAAC;AAEnY,OAAO,EAQL,KAAK,gBAAgB,EAEtB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAaL,KAAK,yBAAyB,EAG/B,MAAM,8BAA8B,CAAC;AA+VtC,wBAAsB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAkE1D;AAwID,KAAK,SAAS,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;AAE9E,wBAAsB,aAAa,CACjC,IAAI,EAAE,MAAM,EAAE,EACd,OAAO,GAAE;IACP,GAAG,CAAC,EAAE,SAAS,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAC9B,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;CACvC,GACL,OAAO,CAAC,MAAM,CAAC,CA2YjB;AA6xID,wBAAsB,0BAA0B,CAAC,GAAG,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,CAAC,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC,CAc/H;AAojBD,wBAAsB,6BAA6B,CACjD,GAAG,EAAE,YAAY,EACjB,UAAU,EAAE,MAAM,EAClB,SAAS,CAAC,EAAE,MAAM,EAClB,OAAO,GAAE;IAAE,aAAa,CAAC,EAAE,OAAO,CAAA;CAAO,GACxC,OAAO,CAAC,IAAI,CAAC,CAgGf;AA8lCD,wBAAgB,8BAA8B,CAAC,WAAW,EAAE,yBAAyB,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,CAKxH;AAED,wBAAgB,qBAAqB,CACnC,MAAM,EAAE,qBAAqB,EAC7B,WAAW,EAAE,yBAAyB,EACtC,OAAO,EAAE,SAAS,GAAG,UAAU,GAAG,QAAQ,EAC1C,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,GACb,kBAAkB,GAAG,kBAAkB,GAAG,kBAAkB,CAgH9D"}
@@ -1 +1 @@
1
- {"version":3,"file":"local-ui.d.ts","sourceRoot":"","sources":["../src/local-ui.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsC,KAAK,MAAM,EAAuB,MAAM,WAAW,CAAC;AAIjG,OAAO,EAAE,aAAa,EAA6E,MAAM,iCAAiC,CAAC;AAK3I,MAAM,MAAM,cAAc,GAAG;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,kBAAkB,CAAC;CAClC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,EACjC,IAAI,EAAE,MAAM,GAAG,OAAO,EACtB,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,CAAC,KAClC,OAAO,CAAC,CAAC,CAAC,CAAC;AAEhB,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5B,CAAC;AAEF,wBAAsB,kBAAkB,CAAC,OAAO,GAAE,cAAmB,GAAG,OAAO,CAAC,aAAa,CAAC,CA+C7F"}
1
+ {"version":3,"file":"local-ui.d.ts","sourceRoot":"","sources":["../src/local-ui.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsC,KAAK,MAAM,EAAuB,MAAM,WAAW,CAAC;AAKjG,OAAO,EAAE,aAAa,EAAgD,MAAM,iCAAiC,CAAC;AAK9G,MAAM,MAAM,cAAc,GAAG;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,kBAAkB,CAAC;CAClC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,EACjC,IAAI,EAAE,MAAM,GAAG,OAAO,EACtB,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,CAAC,KAClC,OAAO,CAAC,CAAC,CAAC,CAAC;AAEhB,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5B,CAAC;AAEF,wBAAsB,kBAAkB,CAAC,OAAO,GAAE,cAAmB,GAAG,OAAO,CAAC,aAAa,CAAC,CAgD7F"}