yaml-flow 8.4.15 → 8.4.16
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/browser/asset-integrity.json +3 -3
- package/browser/board-livecards-localstorage.js +5 -5
- package/cli/browser-api/board-live-cards-browser-adapter.d.ts +2 -2
- package/cli/browser-api/board-live-cards-browser-adapter.js +3 -3
- package/cli/browser-api/card-store-browser-api.js +1 -1
- package/cli/bundled/artifacts-store-cli.mjs +4 -4
- package/cli/bundled/batch-runner-cli.mjs +1 -1
- package/cli/bundled/board-live-cards-cli.mjs +20 -20
- package/cli/{execution-interface-DCFBy4L8.d.ts → execution-interface-BCIhu1gO.d.ts} +7 -0
- package/cli/{types-BbQ75HLf.d.ts → types-YNCagczT.d.ts} +9 -1
- package/examples/board/demo-shell-with-server.html +2 -2
- package/examples/board/doc.html +2 -2
- package/examples/board-local/demo-shell-localstorage.html +3 -3
- package/lib/{artifacts-store-lib-WdoKNAF0.d.cts → artifacts-store-lib-CVgtQrNZ.d.cts} +1 -1
- package/lib/{artifacts-store-lib-CXgRA5J7.d.ts → artifacts-store-lib-D-k-E8Vy.d.ts} +1 -1
- package/lib/artifacts-store-public.d.cts +3 -3
- package/lib/artifacts-store-public.d.ts +3 -3
- package/lib/board-live-cards-node.cjs +13 -13
- package/lib/board-live-cards-node.d.cts +10 -10
- package/lib/board-live-cards-node.d.ts +10 -10
- package/lib/board-live-cards-node.js +13 -13
- package/lib/{board-live-cards-public-wbWRD1nO.d.cts → board-live-cards-public-CQ82CDdS.d.cts} +9 -1
- package/lib/{board-live-cards-public-C81ZEkF-.d.ts → board-live-cards-public-CtlVp0L3.d.ts} +9 -1
- package/lib/board-live-cards-public.cjs +2 -2
- package/lib/board-live-cards-public.d.cts +2 -2
- package/lib/board-live-cards-public.d.ts +2 -2
- package/lib/board-live-cards-public.js +2 -2
- package/lib/board-live-cards-server-runtime.cjs +3 -3
- package/lib/board-live-cards-server-runtime.d.cts +5 -5
- package/lib/board-live-cards-server-runtime.d.ts +5 -5
- package/lib/board-live-cards-server-runtime.js +3 -3
- package/lib/card-store-public.d.cts +2 -2
- package/lib/card-store-public.d.ts +2 -2
- package/lib/{chat-storage-lib-OX0Q_Ttf.d.cts → chat-storage-lib-B1wU27y3.d.cts} +1 -1
- package/lib/{chat-storage-lib-DGaKrjVe.d.ts → chat-storage-lib-DsF4kPon.d.ts} +1 -1
- package/lib/chat-store-public.d.cts +3 -3
- package/lib/chat-store-public.d.ts +3 -3
- package/lib/execution-refs.cjs +2 -2
- package/lib/execution-refs.js +2 -2
- package/lib/index.d.cts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/server-runtime/index.cjs +3 -3
- package/lib/server-runtime/index.d.cts +6 -6
- package/lib/server-runtime/index.d.ts +6 -6
- package/lib/server-runtime/index.js +3 -3
- package/lib/step-machine-public/index.cjs +3 -3
- package/lib/step-machine-public/index.d.cts +1 -1
- package/lib/step-machine-public/index.d.ts +1 -1
- package/lib/step-machine-public/index.js +3 -3
- package/lib/{storage-interface-B-7pDHwD.d.cts → storage-interface-B2WD9D5n.d.cts} +7 -0
- package/lib/{storage-interface-B-7pDHwD.d.ts → storage-interface-B2WD9D5n.d.ts} +7 -0
- package/lib/stores/index.d.cts +1 -1
- package/lib/stores/index.d.ts +1 -1
- package/lib/stores/kv.d.cts +1 -1
- package/lib/stores/kv.d.ts +1 -1
- package/lib/{types-U3Iu6jDR.d.cts → types-D1R0JHIs.d.cts} +4 -4
- package/lib/{types-DsKGXgeT.d.ts → types-vTfV-Zkn.d.ts} +4 -4
- package/package.json +1 -1
|
@@ -50,6 +50,13 @@ interface BlobStorage {
|
|
|
50
50
|
listKeys(prefix?: string): string[];
|
|
51
51
|
/** Optional metadata lookup. */
|
|
52
52
|
stat?(key: string): BlobStat | null;
|
|
53
|
+
/**
|
|
54
|
+
* Optional: resolve a key to a transport-neutral KindValueRef (e.g. for
|
|
55
|
+
* handing the underlying location to a spawned child process or remote worker).
|
|
56
|
+
* FS: { kind: 'fs-path', value: <absolute path under rootDir> }
|
|
57
|
+
* Other backends: backend-specific ref
|
|
58
|
+
*/
|
|
59
|
+
keyRef?(key: string): KindValueRef;
|
|
53
60
|
}
|
|
54
61
|
interface KindValueRef {
|
|
55
62
|
readonly kind: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as KVStorage, B as BlobStorage, S as ScratchStorage, c as ArchiveFactory, d as AtomicRelayLock, E as ExecutionRef, K as KindValueRef, J as JournalStorage } from './execution-interface-
|
|
1
|
+
import { b as KVStorage, B as BlobStorage, S as ScratchStorage, c as ArchiveFactory, d as AtomicRelayLock, E as ExecutionRef, K as KindValueRef, J as JournalStorage } from './execution-interface-BCIhu1gO.js';
|
|
2
2
|
import { L as LiveCard, B as BoardStatusObject, J as JournalStorageAdapter, O as OutputStoreEvent } from './board-live-cards-lib-COi4bSpk.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -176,6 +176,12 @@ interface BoardLiveCardsPublic {
|
|
|
176
176
|
getArchiveStoreRef(input: CommandInput): CommandResult<{
|
|
177
177
|
storeRef: string | null;
|
|
178
178
|
}>;
|
|
179
|
+
getChatStoreRef(input: CommandInput): CommandResult<{
|
|
180
|
+
storeRef: string | null;
|
|
181
|
+
}>;
|
|
182
|
+
getArtifactsStoreRef(input: CommandInput): CommandResult<{
|
|
183
|
+
storeRef: string | null;
|
|
184
|
+
}>;
|
|
179
185
|
getConfig(input: CommandInput): CommandResult<{
|
|
180
186
|
value: unknown;
|
|
181
187
|
}>;
|
|
@@ -183,6 +189,8 @@ interface BoardLiveCardsPublic {
|
|
|
183
189
|
getAllOutputsDataObjects(input: CommandInput): CommandResult<Record<string, unknown>>;
|
|
184
190
|
getOutputsComputedValues(input: CommandInput): CommandResult;
|
|
185
191
|
getAllOutputsComputedValues(input: CommandInput): CommandResult<Record<string, unknown>>;
|
|
192
|
+
getOutputsFetchedSources(input: CommandInput): CommandResult<Record<string, string>>;
|
|
193
|
+
getAllOutputsFetchedSources(input: CommandInput): CommandResult<Record<string, Record<string, string>>>;
|
|
186
194
|
removeCard(input: CommandInput): CommandResult;
|
|
187
195
|
retrigger(input: CommandInput): CommandResult;
|
|
188
196
|
processAccumulatedEvents(input: CommandInput): Promise<CommandResult>;
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
20
20
|
<script src="https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js"></script>
|
|
21
21
|
<script src="https://cdn.jsdelivr.net/npm/leader-line/leader-line.min.js"></script>
|
|
22
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
23
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
22
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/live-cards.js"></script>
|
|
23
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/board-livecards-client.js"></script>
|
|
24
24
|
</head>
|
|
25
25
|
<body class="bg-light">
|
|
26
26
|
<div class="container-fluid py-3">
|
package/examples/board/doc.html
CHANGED
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
38
38
|
<script src="https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js"></script>
|
|
39
39
|
<script src="https://cdn.jsdelivr.net/npm/leader-line/leader-line.min.js"></script>
|
|
40
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
41
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
40
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/live-cards.js"></script>
|
|
41
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/board-livecards-client.js"></script>
|
|
42
42
|
</head>
|
|
43
43
|
<body class="bg-light">
|
|
44
44
|
<div class="container-fluid py-3">
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
<title>Example Board Demo (LocalStorage Runtime)</title>
|
|
7
7
|
<link rel="icon" type="image/svg+xml" href="../../browser/favicon.svg" />
|
|
8
8
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
9
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
9
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/compute-jsonata.js"></script>
|
|
10
10
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
11
11
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
12
12
|
<script src="https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js"></script>
|
|
13
13
|
<script src="https://cdn.jsdelivr.net/npm/leader-line/leader-line.min.js"></script>
|
|
14
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
15
|
-
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.
|
|
14
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/live-cards.js"></script>
|
|
15
|
+
<script src="https://cdn.jsdelivr.net/npm/yaml-flow@8.4.16/browser/board-livecards-localstorage.js"></script>
|
|
16
16
|
</head>
|
|
17
17
|
<body class="bg-light">
|
|
18
18
|
<div class="container-fluid py-3">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { C as CommandInput, a as CommandResult } from './board-live-cards-public-
|
|
2
|
-
import { A as ArtifactInfo, a as ArtifactsStore } from './artifacts-store-lib-
|
|
3
|
-
import './storage-interface-
|
|
1
|
+
import { C as CommandInput, a as CommandResult } from './board-live-cards-public-CQ82CDdS.cjs';
|
|
2
|
+
import { A as ArtifactInfo, a as ArtifactsStore } from './artifacts-store-lib-CVgtQrNZ.cjs';
|
|
3
|
+
import './storage-interface-B2WD9D5n.cjs';
|
|
4
4
|
import './execution-refs.cjs';
|
|
5
5
|
import './types-BBhqYGhE.cjs';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { C as CommandInput, a as CommandResult } from './board-live-cards-public-
|
|
2
|
-
import { A as ArtifactInfo, a as ArtifactsStore } from './artifacts-store-lib-
|
|
3
|
-
import './storage-interface-
|
|
1
|
+
import { C as CommandInput, a as CommandResult } from './board-live-cards-public-CtlVp0L3.js';
|
|
2
|
+
import { A as ArtifactInfo, a as ArtifactsStore } from './artifacts-store-lib-D-k-E8Vy.js';
|
|
3
|
+
import './storage-interface-B2WD9D5n.js';
|
|
4
4
|
import './execution-refs.js';
|
|
5
5
|
import './types-BBhqYGhE.js';
|
|
6
6
|
|