@synapsor/runner 1.4.123 → 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 (59) hide show
  1. package/CHANGELOG.md +55 -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 +13848 -7752
  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 +1 -1
  11. package/docs/database-enforced-scope.md +273 -0
  12. package/docs/dependency-license-inventory.md +6 -2
  13. package/docs/doctor.md +17 -0
  14. package/docs/effect-regression.md +142 -0
  15. package/docs/getting-started-own-database.md +7 -0
  16. package/docs/local-mode.md +7 -3
  17. package/docs/mcp-apps.md +188 -0
  18. package/docs/mcp-audit.md +54 -0
  19. package/docs/mcp-client-setup.md +16 -4
  20. package/docs/mcp-clients.md +8 -0
  21. package/docs/production.md +8 -0
  22. package/docs/release-notes.md +51 -13
  23. package/docs/release-policy.md +9 -5
  24. package/docs/runner-config-reference.md +25 -0
  25. package/docs/schema-api-candidates.md +68 -0
  26. package/docs/security-boundary.md +10 -0
  27. package/docs/shadow-studies.md +198 -0
  28. package/examples/mcp-postgres-billing-app-handler/app-handler.mjs +9 -1
  29. package/examples/mcp-postgres-billing-app-handler/schema.sql +11 -0
  30. package/examples/mcp-postgres-billing-app-handler/synapsor-handler.mjs +3 -0
  31. package/examples/raw-sql-vs-synapsor/Makefile +2 -2
  32. package/examples/raw-sql-vs-synapsor/README.md +6 -4
  33. package/examples/support-billing-agent/Makefile +5 -1
  34. package/examples/support-billing-agent/README.md +39 -5
  35. package/examples/support-billing-agent/db/schema.sql +88 -1
  36. package/examples/support-billing-agent/db/seed.sql +15 -15
  37. package/examples/support-billing-agent/scripts/run-demo.sh +4 -0
  38. package/examples/support-billing-agent/scripts/run-evaluation.sh +62 -0
  39. package/examples/support-billing-agent/shadow-study/cases.jsonl +6 -0
  40. package/examples/support-billing-agent/shadow-study/outcomes.jsonl +2 -0
  41. package/examples/support-billing-agent/synapsor.runner.json +17 -5
  42. package/fixtures/effects/changed/eff_support_late_fee_v1.result.json +58 -0
  43. package/fixtures/effects/dataset.json +8 -0
  44. package/fixtures/effects/results/eff_support_late_fee_v1.result.json +59 -0
  45. package/fixtures/effects/support-late-fee.effect.json +71 -0
  46. package/fixtures/generators/drizzle/malicious.ts +11 -0
  47. package/fixtures/generators/drizzle/schema.ts +12 -0
  48. package/fixtures/generators/openapi/external-ref.yaml +15 -0
  49. package/fixtures/generators/openapi/openapi.yaml +81 -0
  50. package/fixtures/generators/prisma/schema.prisma +34 -0
  51. package/package.json +13 -2
  52. package/schemas/effect-dataset.schema.json +19 -0
  53. package/schemas/effect-fixture.schema.json +191 -0
  54. package/schemas/effect-result.schema.json +52 -0
  55. package/schemas/mcp-audit-candidates.schema.json +41 -0
  56. package/schemas/mcp-audit-report.schema.json +104 -0
  57. package/schemas/schema-candidate-review.schema.json +167 -0
  58. package/schemas/schema-candidates.schema.json +49 -0
  59. package/schemas/synapsor.runner.schema.json +51 -0
package/CHANGELOG.md CHANGED
@@ -1,6 +1,41 @@
1
1
  # Changelog
2
2
 
3
- ## 1.4.123 (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)
4
39
 
5
40
  ### Advisory capability-surface fitness lint
6
41
 
@@ -13,10 +48,10 @@
13
48
  - Adds stable structured details and surface metrics to JSON/SARIF output, plus
14
49
  a concise text summary. No database connection, environment value, source
15
50
  row, or probabilistic classifier is involved.
16
- - Stages only `@synapsor/runner@1.4.123`; `@synapsor/spec@1.4.2`,
51
+ - Published only `@synapsor/runner@1.4.123`; `@synapsor/spec@1.4.2`,
17
52
  `@synapsor/dsl@1.4.3`, and `@synapsor/cli@0.1.0-beta.1` are unchanged.
18
53
 
19
- ## 1.4.122 (2026-07-16)
54
+ ## 1.4.122 (2026-07-17)
20
55
 
21
56
  ### Trusted principal row scope and Cloud-linked governance
22
57
 
@@ -42,7 +77,7 @@
42
77
  - Published `@synapsor/spec@1.4.2`, `@synapsor/dsl@1.4.3`, and
43
78
  `@synapsor/runner@1.4.122`.
44
79
 
45
- ## 1.4.121 (prepared, not published)
80
+ ## 1.4.121 (2026-07-15)
46
81
 
47
82
  ### Contract trust surface and bounded-set parser correctness
48
83
 
@@ -78,10 +113,10 @@
78
113
  - Proves additive Spec/DSL/Runner/C++ aggregate and enum parity, shared Postgres
79
114
  recommendation durability, and transient PostgreSQL/MySQL timeout
80
115
  classification.
81
- - Stages `@synapsor/spec@1.4.1`, `@synapsor/dsl@1.4.2`, and
82
- `@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`.
83
118
 
84
- ## 1.4.12 (prepared, not published)
119
+ ## 1.4.12 (2026-07-14)
85
120
 
86
121
  ### Runtime-store smoke-call consistency
87
122
 
@@ -97,10 +132,10 @@
97
132
  - Adds focused no-fallback coverage and a disposable two-process fleet proof
98
133
  covering ownership, approval/apply, one source receipt, replay, and safe
99
134
  ledger unavailability.
100
- - Stages only `@synapsor/runner@1.4.12`; `@synapsor/dsl` remains `1.4.1` and
101
- `@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`.
102
137
 
103
- ## 1.4.1 (prepared, not published)
138
+ ## 1.4.1 (2026-07-14)
104
139
 
105
140
  ### Canonical Bounded-Set Digest Verification
106
141
 
@@ -127,11 +162,11 @@
127
162
  structural authorization, explains where SQL authority lives, and documents
128
163
  the approval, receipt, replay, and compensation layer without claiming
129
164
  prompt-injection prevention or compliance certification.
130
- - 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`;
131
166
  `@synapsor/spec` remains `1.4.0` because the public contract schema did not
132
- change. Nothing is published by this change.
167
+ change.
133
168
 
134
- ## 1.4.0 (prepared, not published)
169
+ ## 1.4.0 (2026-07-14)
135
170
 
136
171
  ### Reviewed Reversible Change Sets
137
172
 
@@ -155,8 +190,8 @@
155
190
  conformance fixtures, owner-authorized resources, local UI/doctor/preview
156
191
  state, bounded metrics, crash-reconciliation tests, and the disposable
157
192
  `corepack pnpm test:reversible` gate.
158
- - Stages `@synapsor/spec@1.4.0`, `@synapsor/dsl@1.4.0`, and
159
- `@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`.
160
195
 
161
196
  ## 1.3.0 (prepared, not published)
162
197
 
@@ -233,7 +268,8 @@
233
268
  metadata so a leaked handle does not become bearer authority.
234
269
  - Adds shared-store and Streamable HTTP regressions proving owner access still
235
270
  works while cross-session resource reads fail closed.
236
- - 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`.
237
273
 
238
274
  ## 1.1.0
239
275
 
@@ -257,8 +293,8 @@
257
293
  - Adds verified dead-letter list/show/requeue/discard, shared-ledger
258
294
  backup/digest/restore, archive-before-retention, and a repeatable two-Runner
259
295
  kill/recovery test over synthetic Postgres/MySQL.
260
- - Stages `@synapsor/spec@1.1.0`, `@synapsor/dsl@1.1.0`, and
261
- `@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`.
262
298
 
263
299
  ## 1.0.0
264
300
 
@@ -280,7 +316,7 @@
280
316
  and Streamable HTTP mTLS.
281
317
  - Declares the first semver contract for the documented CLI, schema, contract,
282
318
  MCP result, writeback, approval, metrics, and replay surfaces.
283
- - 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
284
320
  `@synapsor/runner@1.0.0`.
285
321
 
286
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 surface-fitness CI checks,
170
- and `contract 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"}