@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.
- package/CHANGELOG.md +71 -19
- package/README.md +56 -46
- package/dist/cli.d.ts.map +1 -1
- package/dist/local-ui.d.ts.map +1 -1
- package/dist/runner.mjs +14531 -8137
- package/dist/runtime.d.ts +50 -0
- package/dist/runtime.d.ts.map +1 -0
- package/dist/runtime.mjs +15066 -0
- package/docs/README.md +19 -3
- package/docs/capability-authoring.md +17 -1
- package/docs/contract-review.md +33 -0
- package/docs/database-enforced-scope.md +273 -0
- package/docs/dependency-license-inventory.md +6 -2
- package/docs/doctor.md +17 -0
- package/docs/effect-regression.md +142 -0
- package/docs/getting-started-own-database.md +7 -0
- package/docs/local-mode.md +7 -3
- package/docs/mcp-apps.md +188 -0
- package/docs/mcp-audit.md +54 -0
- package/docs/mcp-client-setup.md +16 -4
- package/docs/mcp-clients.md +8 -0
- package/docs/production.md +8 -0
- package/docs/release-notes.md +67 -11
- package/docs/release-policy.md +9 -5
- package/docs/runner-config-reference.md +25 -0
- package/docs/schema-api-candidates.md +68 -0
- package/docs/security-boundary.md +14 -1
- package/docs/shadow-studies.md +198 -0
- package/examples/mcp-postgres-billing-app-handler/app-handler.mjs +9 -1
- package/examples/mcp-postgres-billing-app-handler/schema.sql +11 -0
- package/examples/mcp-postgres-billing-app-handler/synapsor-handler.mjs +3 -0
- package/examples/raw-sql-vs-synapsor/Makefile +2 -2
- package/examples/raw-sql-vs-synapsor/README.md +6 -4
- package/examples/support-billing-agent/Makefile +5 -1
- package/examples/support-billing-agent/README.md +39 -5
- package/examples/support-billing-agent/db/schema.sql +88 -1
- package/examples/support-billing-agent/db/seed.sql +15 -15
- package/examples/support-billing-agent/scripts/run-demo.sh +4 -0
- package/examples/support-billing-agent/scripts/run-evaluation.sh +62 -0
- package/examples/support-billing-agent/shadow-study/cases.jsonl +6 -0
- package/examples/support-billing-agent/shadow-study/outcomes.jsonl +2 -0
- package/examples/support-billing-agent/synapsor.runner.json +17 -5
- package/fixtures/contracts/capability-surface-fitness.contract.json +190 -0
- package/fixtures/effects/changed/eff_support_late_fee_v1.result.json +58 -0
- package/fixtures/effects/dataset.json +8 -0
- package/fixtures/effects/results/eff_support_late_fee_v1.result.json +59 -0
- package/fixtures/effects/support-late-fee.effect.json +71 -0
- package/fixtures/generators/drizzle/malicious.ts +11 -0
- package/fixtures/generators/drizzle/schema.ts +12 -0
- package/fixtures/generators/openapi/external-ref.yaml +15 -0
- package/fixtures/generators/openapi/openapi.yaml +81 -0
- package/fixtures/generators/prisma/schema.prisma +34 -0
- package/package.json +13 -2
- package/schemas/effect-dataset.schema.json +19 -0
- package/schemas/effect-fixture.schema.json +191 -0
- package/schemas/effect-result.schema.json +52 -0
- package/schemas/mcp-audit-candidates.schema.json +41 -0
- package/schemas/mcp-audit-report.schema.json +104 -0
- package/schemas/schema-candidate-review.schema.json +167 -0
- package/schemas/schema-candidates.schema.json +49 -0
- package/schemas/synapsor.runner.schema.json +51 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,57 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
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
|
-
-
|
|
27
|
-
`@synapsor/runner@1.4.122`.
|
|
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 (
|
|
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
|
-
-
|
|
66
|
-
`@synapsor/runner@1.4.121`.
|
|
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 (
|
|
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
|
-
-
|
|
85
|
-
`@synapsor/spec` remains `1.4.0`.
|
|
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 (
|
|
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
|
-
-
|
|
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.
|
|
167
|
+
change.
|
|
117
168
|
|
|
118
|
-
## 1.4.0 (
|
|
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
|
-
-
|
|
143
|
-
`@synapsor/runner@1.4.0`.
|
|
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
|
-
-
|
|
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
|
-
-
|
|
245
|
-
`@synapsor/runner@1.1.0`.
|
|
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
|
-
-
|
|
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)
|
|
5
5
|
[](https://github.com/Synapsor/Synapsor-Runner/actions/workflows/ci.yml?query=branch%3Amain)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**Approve the exact business effect, not an opaque tool call.**
|
|
8
8
|
|
|
9
|
-
Synapsor Runner is an open-source
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
|
|
18
|
-
|
|
16
|
+
First, prove the boundary without a database, Docker, config, MCP client, LLM,
|
|
17
|
+
or account:
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
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
|
|
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
|
|
79
|
-
|
|
80
|
-
|
|
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
|
-
##
|
|
90
|
+
## Choose An Isolation Mode
|
|
85
91
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
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
|
|
101
|
-
|
|
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
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
|
169
|
-
|
|
170
|
-
|
|
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-
|
|
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,
|
|
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"}
|
package/dist/local-ui.d.ts.map
CHANGED
|
@@ -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;
|
|
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"}
|