@walkeros/explorer 4.1.0-next-1778668930820 → 4.1.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 ADDED
@@ -0,0 +1,365 @@
1
+ # @walkeros/explorer
2
+
3
+ ## 4.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 058f7ed: Add `validateJsonSchema` / `validateEventsJsonSchema` exports for
8
+ step-level validation config, promote the validate and no-`many` route schemas
9
+ to direct exports, and add optional `nodeType` / `subPath` cursor fields to
10
+ `IntelliSenseContext` for context-scoped autocomplete.
11
+
12
+ ### Patch Changes
13
+
14
+ - c60ef35: Remove unused legacy fields `batchFn` and `batched` from
15
+ `Mapping.Rule`. Batch state lives on the destination via `BatchRegistry`,
16
+ never on mapping rules. No runtime impact.
17
+ - Updated dependencies [e155ff8]
18
+ - Updated dependencies [e800974]
19
+ - Updated dependencies [e155ff8]
20
+ - Updated dependencies [1a8f2d7]
21
+ - Updated dependencies [1a8f2d7]
22
+ - Updated dependencies [b276173]
23
+ - Updated dependencies [dd9f5ad]
24
+ - Updated dependencies [c60ef35]
25
+ - Updated dependencies [adeebea]
26
+ - Updated dependencies [13aaeaa]
27
+ - Updated dependencies [e800974]
28
+ - Updated dependencies [adeebea]
29
+ - Updated dependencies [6cdc362]
30
+ - Updated dependencies [e800974]
31
+ - Updated dependencies [e800974]
32
+ - Updated dependencies [058f7ed]
33
+ - Updated dependencies [28a8ac2]
34
+ - Updated dependencies [fd6076e]
35
+ - @walkeros/core@4.1.0
36
+ - @walkeros/collector@4.1.0
37
+ - @walkeros/web-source-browser@4.1.0
38
+ - @walkeros/web-core@4.1.0
39
+
40
+ ## 4.0.2
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies [a6a0ea7]
45
+ - @walkeros/core@4.0.2
46
+ - @walkeros/collector@4.0.2
47
+ - @walkeros/web-source-browser@4.0.2
48
+
49
+ ## 4.0.1
50
+
51
+ ### Patch Changes
52
+
53
+ - Updated dependencies [cb265eb]
54
+ - Updated dependencies [381dfe7]
55
+ - Updated dependencies [1524275]
56
+ - Updated dependencies [03d7055]
57
+ - @walkeros/collector@4.0.1
58
+ - @walkeros/core@4.0.1
59
+ - @walkeros/web-source-browser@4.0.1
60
+
61
+ ## 4.0.0
62
+
63
+ ### Major Changes
64
+
65
+ - 942a7fe: Flow v4: type redesign and cross-flow references.
66
+
67
+ Breaking changes:
68
+ - Renamed `Flow.Settings` (single-flow shape) to `Flow`. The new
69
+ `Flow.Settings` is the arbitrary kv-bag inside `Flow.Config` (matches
70
+ `Destination.Settings` semantics).
71
+ - Renamed `Flow.Config` (root file shape) to `Flow.Json`.
72
+ - Removed `Flow.Web` and `Flow.Server`. Replaced by
73
+ `config.platform: 'web' | 'server'` (a string discriminator).
74
+ - Renamed `Flow.InlineCode` to `Flow.Code`.
75
+ - Renamed `Flow.SourceReference` / `DestinationReference` /
76
+ `TransformerReference` / `StoreReference` to `Flow.Source` / `Destination` /
77
+ `Transformer` / `Store` (Reference suffix dropped).
78
+ - Renamed `Flow.ContractEntry` to `Flow.ContractRule`.
79
+ - Lifted `bundle` and platform fields into the per-flow `config` block.
80
+ - `flow.json` `version` bumped from 3 to 4. v3 input is rejected (no compat
81
+ shim).
82
+
83
+ New:
84
+ - `$flow.X.Y` reference resolves to `flows.X.config.Y` in the same file.
85
+ Useful for linking a web flow's API destination to a server flow's deployed
86
+ URL without duplicating values.
87
+ - Per-flow `Flow.Config` block: `{ platform, url, settings, bundle }`.
88
+ - `walkeros validate` warns on unresolved `$flow.X.Y` (use `--strict` to
89
+ error). `walkeros bundle` and `walkeros deploy` always error on unresolved
90
+ refs.
91
+ - See `docs/migrating/v3-to-v4.mdx` on the website for the manual migration
92
+ steps. No automated codemod is shipped.
93
+
94
+ ### Minor Changes
95
+
96
+ - 8e06b1f: IntelliSense improvements for flow.json editors:
97
+ - Chain references (`next` / `before`) now autocomplete in all forms: scalar,
98
+ inline array, multi-line array, and Route[] inner `next`. Previously only
99
+ the scalar form triggered.
100
+ - `$store.` completions, hover, and validation added. Fed by a new optional
101
+ `stores` field on `IntelliSenseContext`; the flow extractor collects store
102
+ IDs from the active flow.
103
+ - `$env.` completions and hover added. Optional `envNames` inventory on
104
+ `IntelliSenseContext` enables validation; when absent, `$env.` still gets a
105
+ generic hover.
106
+ - `$contract.` completion now only triggers when the cursor starts a new
107
+ string value, matching runtime semantics (whole-string refs only).
108
+ - `package` completion detection is JSON-path aware — multi-line `"package":`
109
+ values now surface completions.
110
+ - Variables and definitions are collected at config / flow / step levels with
111
+ correct cascade priority (step > flow > config).
112
+ - Markers validate chain references in all forms via a JSON walk instead of a
113
+ scalar-only regex.
114
+ - Internals now import the shared `REF_*` regex constants from
115
+ `@walkeros/core` — single source of truth, no inline duplicates.
116
+
117
+ - 465775c: Add Monaco IntelliSense for `$flow.X` cross-flow references in
118
+ `Code`/`CodeBox`. Completion offers known sibling flow names from the parsed
119
+ flow document, hover describes the resolved target, decorations style matches
120
+ the other reference prefixes, and unknown flow names emit a warning marker.
121
+ Re-export `REF_FLOW` from `@walkeros/core` so consumers can build inline regex
122
+ tooling without reaching into the subpath.
123
+ - cfc7469: **Breaking — `@walkeros/core`:** `fetchPackage(name, { baseUrl })`
124
+ now expects the host app to expose the v2 `/api/packages/[name]` endpoint that
125
+ returns the merged `WalkerOSPackage` shape directly (single round-trip,
126
+ `?expand=all`). The previous two-fetch pattern (`?path=package.json` +
127
+ `?path=dist/walkerOS.json`) is removed. Hosts must serve the v2 shape; the
128
+ offline jsdelivr fallback is unchanged.
129
+
130
+ **Feature — CLI/MCP/explorer:** Outbound walkerOS-aware HTTP clients now
131
+ identify themselves to the configured app origin via
132
+ `X-Walkeros-Client: walkeros-{cli|mcp}/{version}`. `@walkeros/explorer`
133
+ exports `setPackageTypesBaseUrl(url?)` so host apps can proxy `.d.ts` through
134
+ their own origin (used by the walkerOS Tag Manager app to drop the jsdelivr
135
+ CDN allowance entirely).
136
+
137
+ - 8e06b1f: **BREAKING:** Unified reference syntax: `$store:id` and
138
+ `$secret:NAME` now use the dot separator: `$store.id` and `$secret.NAME`.
139
+
140
+ The coherent rule across every walkerOS reference is:
141
+ - **`.`** key or path (resolver looks up or walks what follows)
142
+ - **`:`** literal value or raw-code payload (resolver uses what follows
143
+ verbatim)
144
+
145
+ `$var.`, `$def.`, `$env.NAME[:default]`, `$contract.`, and `$code:(…)` are
146
+ unchanged, they already fit the rule.
147
+
148
+ Every shipped example, published `walkerOS.json` metadata, doc page, and skill
149
+ has been updated. A new canonical reference-syntax guide lives at
150
+ `/docs/guides/reference-syntax`. Regex constants (`REF_VAR`, `REF_DEF`,
151
+ `REF_ENV`, `REF_CONTRACT`, `REF_STORE`, `REF_SECRET`, `REF_CODE_PREFIX`) are
152
+ exported from `@walkeros/core` import these instead of hand-rolling regexes.
153
+
154
+ ### Upgrade
155
+
156
+ Search-and-replace across your flow configs:
157
+
158
+ ```
159
+ $store:<id> → $store.<id>
160
+ $secret:<NAME> → $secret.<NAME>
161
+ ```
162
+
163
+ Everything else stays the same. Your `$var.*`, `$def.*`, `$env.*`,
164
+ `$contract.*`, and `$code:*` references need no changes.
165
+
166
+ ### Patch Changes
167
+
168
+ - 8d3c18e: Add `CodeDiff` atom and `CodeDiffBox` molecule — read-only,
169
+ theme-aware Monaco `DiffEditor` wrappers for side-by-side / inline code diff
170
+ viewing. `CodeDiffBox` mirrors `CodeBox`'s API (header, actions, traffic
171
+ lights, footer) and adds an opt-in summary strip, split/inline toggle, and
172
+ copy button. Supports any Monaco language; walkerOS `$var:` / `$secret:`
173
+ decorations are applied to both sides automatically.
174
+ - 8e06b1f: `PropertyTable` — responsive card-view fallback via CSS container
175
+ queries (triggered below 420px), graceful empty-state rendering with an
176
+ optional `emptyMessage` prop (default: "No specific properties available."),
177
+ and improved column-width handling so the Description column no longer forces
178
+ horizontal overflow in narrow containers.
179
+ - Updated dependencies [93ea9c4]
180
+ - Updated dependencies [465775c]
181
+ - Updated dependencies [942a7fe]
182
+ - Updated dependencies [cfc7469]
183
+ - Updated dependencies [8e06b1f]
184
+ - Updated dependencies [3d50dd6]
185
+ - Updated dependencies [1ef33d9]
186
+ - @walkeros/core@4.0.0
187
+ - @walkeros/collector@4.0.0
188
+ - @walkeros/web-source-browser@4.0.0
189
+
190
+ ## 3.4.2
191
+
192
+ ### Patch Changes
193
+
194
+ - @walkeros/collector@3.4.2
195
+ - @walkeros/core@3.4.2
196
+ - @walkeros/web-source-browser@3.4.2
197
+
198
+ ## 3.4.1
199
+
200
+ ### Patch Changes
201
+
202
+ - Updated dependencies [12adf24]
203
+ - Updated dependencies [75aa26b]
204
+ - @walkeros/core@3.4.1
205
+ - @walkeros/collector@3.4.1
206
+ - @walkeros/web-source-browser@3.4.1
207
+
208
+ ## 3.4.0
209
+
210
+ ### Minor Changes
211
+
212
+ - 496d4c0: `<CodeBox>` and `<LiveCode>` now run with Monaco configured to
213
+ `target: ES2022`, `module: ESNext`, `moduleDetection: 'force'`, and a
214
+ registered ambient declarations file exposing walkerOS runtime globals (`elb`,
215
+ `getMappingEvent`, `getMappingValue`). Mapping snippets can be plain object
216
+ literals or top-level `await` calls — no `import` / `export` boilerplate
217
+ required — while keeping full IntelliSense via the existing `@walkeros/core`
218
+ type registration.
219
+
220
+ `<LiveCode>` now renders its result panel as JSON (it's always vendor output,
221
+ regardless of the input language) and its config panel as JSON (it's always
222
+ data). Only the input panel respects the `language` prop.
223
+
224
+ - fdf8d40: Add `CodeView` (Shiki-backed read-only code display) with matching
225
+ `Box` frame, plus a `CodeStatic` atom as the underlying highlighter. Also
226
+ suppress the Monaco loader's `{type: 'cancelation'}` unhandled rejections
227
+ globally via a single window-level listener, fixing the dev-console noise that
228
+ fired on every unmount of a `<CodeBox>` consumer.
229
+
230
+ ### Patch Changes
231
+
232
+ - 15feda1: Harden the Monaco / CodeBox integration. Fix `moduleDetection`
233
+ (Force), add `<LiveCode>` `configLanguage` prop, guard `ScriptTarget.ES2022`
234
+ fallback, warn on `loader.init()` failures in dev, drop dead code. No API
235
+ change for existing callers.
236
+ - Updated dependencies [74940cc]
237
+ - Updated dependencies [724f97e]
238
+ - Updated dependencies [525f5d9]
239
+ - @walkeros/core@3.4.0
240
+ - @walkeros/web-source-browser@3.4.0
241
+ - @walkeros/collector@3.4.0
242
+
243
+ ## 3.3.1
244
+
245
+ ### Patch Changes
246
+
247
+ - Updated dependencies [b10144a]
248
+ - Updated dependencies [206185a]
249
+ - Updated dependencies [50e5d09]
250
+ - Updated dependencies [32ff626]
251
+ - @walkeros/collector@3.3.1
252
+ - @walkeros/web-source-browser@3.3.1
253
+ - @walkeros/core@3.3.1
254
+
255
+ ## 3.3.0
256
+
257
+ ### Patch Changes
258
+
259
+ - Updated dependencies [2849acb]
260
+ - Updated dependencies [08c365a]
261
+ - Updated dependencies [08c365a]
262
+ - Updated dependencies [08c365a]
263
+ - Updated dependencies [08c365a]
264
+ - @walkeros/core@3.3.0
265
+ - @walkeros/collector@3.3.0
266
+ - @walkeros/web-source-browser@3.3.0
267
+
268
+ ## 3.2.0
269
+
270
+ ### Patch Changes
271
+
272
+ - Updated dependencies [eb865e1]
273
+ - Updated dependencies [c0a53f9]
274
+ - Updated dependencies [8cdc0bb]
275
+ - Updated dependencies [f007c9f]
276
+ - Updated dependencies [bf2dc5b]
277
+ - Updated dependencies [da0b640]
278
+ - Updated dependencies [a5d25bc]
279
+ - Updated dependencies [9a99298]
280
+ - Updated dependencies [884527d]
281
+ - @walkeros/core@3.2.0
282
+ - @walkeros/collector@3.2.0
283
+ - @walkeros/web-source-browser@3.2.0
284
+
285
+ ## 3.1.1
286
+
287
+ ### Patch Changes
288
+
289
+ - @walkeros/core@3.1.1
290
+ - @walkeros/collector@3.1.1
291
+ - @walkeros/web-source-browser@3.1.1
292
+
293
+ ## 3.1.0
294
+
295
+ ### Patch Changes
296
+
297
+ - Updated dependencies [a9149e4]
298
+ - Updated dependencies [dfc6738]
299
+ - Updated dependencies [966342b]
300
+ - Updated dependencies [bee8ba7]
301
+ - Updated dependencies [966342b]
302
+ - Updated dependencies [df990d4]
303
+ - @walkeros/web-source-browser@3.1.0
304
+ - @walkeros/collector@3.1.0
305
+ - @walkeros/core@3.1.0
306
+
307
+ ## 3.0.2
308
+
309
+ ### Patch Changes
310
+
311
+ - @walkeros/core@3.0.2
312
+ - @walkeros/collector@3.0.2
313
+ - @walkeros/web-source-browser@3.0.2
314
+
315
+ ## 3.0.1
316
+
317
+ ### Patch Changes
318
+
319
+ - @walkeros/core@3.0.1
320
+ - @walkeros/collector@3.0.1
321
+ - @walkeros/web-source-browser@3.0.1
322
+
323
+ ## 3.0.0
324
+
325
+ ### Minor Changes
326
+
327
+ - 268e8c3: Add $contract IntelliSense completions and contract-aware mapping
328
+ value completions
329
+ - e0fd43c: Export enrichFlowConfigSchema, getVariablesSchema, and
330
+ getEnrichedContractSchema utilities for Monaco JSON schema enrichment in
331
+ external apps.
332
+
333
+ ### Patch Changes
334
+
335
+ - Updated dependencies [2b259b6]
336
+ - Updated dependencies [2614014]
337
+ - Updated dependencies [6ae0ee3]
338
+ - Updated dependencies [37299a9]
339
+ - Updated dependencies [499e27a]
340
+ - Updated dependencies [499e27a]
341
+ - Updated dependencies [0e5eede]
342
+ - Updated dependencies [d11f574]
343
+ - Updated dependencies [d11f574]
344
+ - Updated dependencies [1fe337a]
345
+ - Updated dependencies [5cb84c1]
346
+ - Updated dependencies [23f218a]
347
+ - Updated dependencies [a30095c]
348
+ - Updated dependencies [499e27a]
349
+ - Updated dependencies [c83d909]
350
+ - Updated dependencies [a2aa491]
351
+ - Updated dependencies [b6c8fa8]
352
+ - @walkeros/core@3.0.0
353
+ - @walkeros/collector@3.0.0
354
+ - @walkeros/web-source-browser@3.0.0
355
+
356
+ ## 2.1.5
357
+
358
+ ### Patch Changes
359
+
360
+ - bdf5bf6: Moved @walkeros/explorer into walkerOS monorepo. Changed license to
361
+ MIT.
362
+ - Updated dependencies [fab477d]
363
+ - @walkeros/core@2.1.1
364
+ - @walkeros/collector@2.1.1
365
+ - @walkeros/web-source-browser@2.1.1