@ankhorage/runtime 0.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 +11 -0
- package/LICENSE +21 -0
- package/README.md +38 -0
- package/dist/index.d.ts +53 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/readme-usage.d.ts +2 -0
- package/dist/readme-usage.d.ts.map +1 -0
- package/dist/readme-usage.js +17 -0
- package/dist/readme-usage.js.map +1 -0
- package/package.json +76 -0
- package/paradox/badges/build.svg +7 -0
- package/paradox/badges/docs.svg +7 -0
- package/paradox/badges/eslint.svg +7 -0
- package/paradox/badges/license.svg +7 -0
- package/paradox/badges/npm.svg +7 -0
- package/paradox/badges/prettier.svg +7 -0
- package/paradox/badges/runtime.svg +7 -0
- package/paradox/badges/tests.svg +7 -0
- package/paradox/badges/typescript.svg +7 -0
- package/paradox/components.md +1 -0
- package/paradox/diagrams/architecture-overview.mmd +10 -0
- package/paradox/diagrams/export-graph.mmd +49 -0
- package/paradox/diagrams/module-relationships.mmd +5 -0
- package/paradox/exports.json +564 -0
- package/paradox/exports.md +185 -0
- package/paradox/index.html +1146 -0
- package/paradox/paradox.json +952 -0
|
@@ -0,0 +1,1146 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>@ankhorage/runtime • Paradox</title>
|
|
7
|
+
<style>
|
|
8
|
+
:root {
|
|
9
|
+
color-scheme: light;
|
|
10
|
+
font-family:
|
|
11
|
+
Inter,
|
|
12
|
+
ui-sans-serif,
|
|
13
|
+
system-ui,
|
|
14
|
+
-apple-system,
|
|
15
|
+
BlinkMacSystemFont,
|
|
16
|
+
'Segoe UI',
|
|
17
|
+
sans-serif;
|
|
18
|
+
background: #f5f7fb;
|
|
19
|
+
color: #11203b;
|
|
20
|
+
}
|
|
21
|
+
* {
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
}
|
|
24
|
+
body {
|
|
25
|
+
margin: 0;
|
|
26
|
+
}
|
|
27
|
+
a {
|
|
28
|
+
color: #2459d3;
|
|
29
|
+
text-decoration: none;
|
|
30
|
+
}
|
|
31
|
+
a:hover {
|
|
32
|
+
text-decoration: underline;
|
|
33
|
+
}
|
|
34
|
+
button {
|
|
35
|
+
font: inherit;
|
|
36
|
+
}
|
|
37
|
+
code,
|
|
38
|
+
pre {
|
|
39
|
+
font-family: 'SFMono-Regular', ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
40
|
+
}
|
|
41
|
+
.layout {
|
|
42
|
+
display: grid;
|
|
43
|
+
grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
|
|
44
|
+
min-height: 100vh;
|
|
45
|
+
}
|
|
46
|
+
.sidebar {
|
|
47
|
+
padding: 1.5rem;
|
|
48
|
+
border-right: 1px solid #d8dfec;
|
|
49
|
+
background: #ffffff;
|
|
50
|
+
position: sticky;
|
|
51
|
+
top: 0;
|
|
52
|
+
max-height: 100vh;
|
|
53
|
+
overflow: auto;
|
|
54
|
+
}
|
|
55
|
+
.content {
|
|
56
|
+
padding: 2rem;
|
|
57
|
+
}
|
|
58
|
+
.panel,
|
|
59
|
+
.item {
|
|
60
|
+
background: #ffffff;
|
|
61
|
+
border: 1px solid #d8dfec;
|
|
62
|
+
border-radius: 0.9rem;
|
|
63
|
+
padding: 1rem 1.2rem;
|
|
64
|
+
margin-bottom: 1rem;
|
|
65
|
+
box-shadow: 0 8px 24px rgba(17, 32, 59, 0.06);
|
|
66
|
+
}
|
|
67
|
+
.summary {
|
|
68
|
+
display: grid;
|
|
69
|
+
gap: 1rem;
|
|
70
|
+
grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
|
|
71
|
+
}
|
|
72
|
+
.summary strong {
|
|
73
|
+
display: block;
|
|
74
|
+
font-size: 1.5rem;
|
|
75
|
+
}
|
|
76
|
+
.search {
|
|
77
|
+
width: 100%;
|
|
78
|
+
padding: 0.75rem 0.9rem;
|
|
79
|
+
border-radius: 0.75rem;
|
|
80
|
+
border: 1px solid #c7d2e5;
|
|
81
|
+
margin: 1rem 0 1.5rem;
|
|
82
|
+
}
|
|
83
|
+
.nav-list,
|
|
84
|
+
.meta-list {
|
|
85
|
+
list-style: none;
|
|
86
|
+
padding: 0;
|
|
87
|
+
margin: 0;
|
|
88
|
+
}
|
|
89
|
+
.nav-list li + li {
|
|
90
|
+
margin-top: 0.5rem;
|
|
91
|
+
}
|
|
92
|
+
.nav-button {
|
|
93
|
+
width: 100%;
|
|
94
|
+
display: block;
|
|
95
|
+
border: 0;
|
|
96
|
+
border-radius: 0.7rem;
|
|
97
|
+
background: transparent;
|
|
98
|
+
color: #24427a;
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
padding: 0.55rem 0.7rem;
|
|
101
|
+
text-align: left;
|
|
102
|
+
}
|
|
103
|
+
.nav-button:hover,
|
|
104
|
+
.nav-button[aria-current='page'] {
|
|
105
|
+
background: #e8eefb;
|
|
106
|
+
text-decoration: none;
|
|
107
|
+
}
|
|
108
|
+
.nav-button small {
|
|
109
|
+
display: block;
|
|
110
|
+
color: #5e6d8c;
|
|
111
|
+
margin-top: 0.15rem;
|
|
112
|
+
}
|
|
113
|
+
.view[hidden] {
|
|
114
|
+
display: none;
|
|
115
|
+
}
|
|
116
|
+
.muted {
|
|
117
|
+
color: #5e6d8c;
|
|
118
|
+
}
|
|
119
|
+
.chips {
|
|
120
|
+
display: flex;
|
|
121
|
+
flex-wrap: wrap;
|
|
122
|
+
gap: 0.5rem;
|
|
123
|
+
padding: 0;
|
|
124
|
+
list-style: none;
|
|
125
|
+
}
|
|
126
|
+
.chip {
|
|
127
|
+
border-radius: 999px;
|
|
128
|
+
background: #e8eefb;
|
|
129
|
+
color: #24427a;
|
|
130
|
+
padding: 0.25rem 0.65rem;
|
|
131
|
+
font-size: 0.85rem;
|
|
132
|
+
}
|
|
133
|
+
table {
|
|
134
|
+
width: 100%;
|
|
135
|
+
border-collapse: collapse;
|
|
136
|
+
margin-top: 0.8rem;
|
|
137
|
+
}
|
|
138
|
+
th,
|
|
139
|
+
td {
|
|
140
|
+
padding: 0.6rem;
|
|
141
|
+
border-bottom: 1px solid #e2e7f2;
|
|
142
|
+
text-align: left;
|
|
143
|
+
vertical-align: top;
|
|
144
|
+
}
|
|
145
|
+
pre {
|
|
146
|
+
overflow: auto;
|
|
147
|
+
border-radius: 0.75rem;
|
|
148
|
+
background: #0f1729;
|
|
149
|
+
color: #e7edf7;
|
|
150
|
+
padding: 1rem;
|
|
151
|
+
}
|
|
152
|
+
.empty {
|
|
153
|
+
font-style: italic;
|
|
154
|
+
color: #6f7f9c;
|
|
155
|
+
}
|
|
156
|
+
.mermaid {
|
|
157
|
+
margin: 1rem 0;
|
|
158
|
+
overflow: auto;
|
|
159
|
+
}
|
|
160
|
+
details > summary {
|
|
161
|
+
cursor: pointer;
|
|
162
|
+
color: #5e6d8c;
|
|
163
|
+
font-size: 0.9rem;
|
|
164
|
+
margin-top: 0.5rem;
|
|
165
|
+
user-select: none;
|
|
166
|
+
}
|
|
167
|
+
@media (max-width: 900px) {
|
|
168
|
+
.layout {
|
|
169
|
+
grid-template-columns: 1fr;
|
|
170
|
+
}
|
|
171
|
+
.sidebar {
|
|
172
|
+
position: static;
|
|
173
|
+
max-height: none;
|
|
174
|
+
border-right: 0;
|
|
175
|
+
border-bottom: 1px solid #d8dfec;
|
|
176
|
+
}
|
|
177
|
+
.content {
|
|
178
|
+
padding: 1rem;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
</style>
|
|
182
|
+
</head>
|
|
183
|
+
<body>
|
|
184
|
+
<div class="layout">
|
|
185
|
+
<aside class="sidebar">
|
|
186
|
+
<p class="muted">Generated with Paradox</p>
|
|
187
|
+
<h1>@ankhorage/runtime</h1>
|
|
188
|
+
<p>Platform-neutral runtime contracts and helpers for Ankhorage generated apps.</p>
|
|
189
|
+
<input id="search" class="search" type="search" placeholder="Search current view" />
|
|
190
|
+
<nav aria-label="Documentation sections">
|
|
191
|
+
<ul class="nav-list">
|
|
192
|
+
<li>
|
|
193
|
+
<button class="nav-button" type="button" data-target="home" aria-current="page">
|
|
194
|
+
Home
|
|
195
|
+
<small>Overview, CLI, public API, diagrams</small>
|
|
196
|
+
</button>
|
|
197
|
+
</li>
|
|
198
|
+
<li>
|
|
199
|
+
<button class="nav-button" type="button" data-target="src/index.ts">
|
|
200
|
+
src/index.ts
|
|
201
|
+
<small>5 functions</small>
|
|
202
|
+
</button>
|
|
203
|
+
</li>
|
|
204
|
+
</ul>
|
|
205
|
+
</nav>
|
|
206
|
+
</aside>
|
|
207
|
+
<main class="content">
|
|
208
|
+
<section id="view-home" class="view" data-view="home">
|
|
209
|
+
<section class="panel">
|
|
210
|
+
<h2>Package overview</h2>
|
|
211
|
+
<div class="summary">
|
|
212
|
+
<div><strong>15</strong><span class="muted">public exports</span></div>
|
|
213
|
+
<div><strong>0</strong><span class="muted">components</span></div>
|
|
214
|
+
<div><strong>3</strong><span class="muted">modules</span></div>
|
|
215
|
+
<div><strong>1</strong><span class="muted">entrypoints</span></div>
|
|
216
|
+
</div>
|
|
217
|
+
<h3>Entrypoints</h3>
|
|
218
|
+
<ul class="meta-list">
|
|
219
|
+
<li><code>src/index.ts</code></li>
|
|
220
|
+
</ul>
|
|
221
|
+
</section>
|
|
222
|
+
|
|
223
|
+
<section class="panel">
|
|
224
|
+
<h2>Modules</h2>
|
|
225
|
+
<article class="item" data-search="paradox.config.ts default">
|
|
226
|
+
<h3>paradox.config.ts</h3>
|
|
227
|
+
<p class="muted">Referenced module</p>
|
|
228
|
+
<p><strong>Dependencies:</strong> <span class="empty">None</span></p>
|
|
229
|
+
<p><strong>Exports:</strong> <code>default</code></p>
|
|
230
|
+
</article>
|
|
231
|
+
<article
|
|
232
|
+
class="item"
|
|
233
|
+
data-search="src/index.ts createRuntimeManifest defineRuntimeAction defineRuntimeAdapter defineRuntimeBinding listRuntimeCapabilities RUNTIME_CAPABILITIES RUNTIME_MANIFEST_KIND RuntimeActionDescriptor RuntimeAdapterDescriptor RuntimeBindingDescriptor RuntimeCapability RuntimeConfig RuntimeDiagnostic RuntimeManifest RuntimeManifestInput"
|
|
234
|
+
>
|
|
235
|
+
<h3>src/index.ts</h3>
|
|
236
|
+
<p class="muted">Configured entrypoint</p>
|
|
237
|
+
<p><strong>Dependencies:</strong> <span class="empty">None</span></p>
|
|
238
|
+
<p>
|
|
239
|
+
<strong>Exports:</strong> <code>createRuntimeManifest</code>,
|
|
240
|
+
<code>defineRuntimeAction</code>, <code>defineRuntimeAdapter</code>,
|
|
241
|
+
<code>defineRuntimeBinding</code>, <code>listRuntimeCapabilities</code>,
|
|
242
|
+
<code>RUNTIME_CAPABILITIES</code>, <code>RUNTIME_MANIFEST_KIND</code>,
|
|
243
|
+
<code>RuntimeActionDescriptor</code>, <code>RuntimeAdapterDescriptor</code>,
|
|
244
|
+
<code>RuntimeBindingDescriptor</code>, <code>RuntimeCapability</code>,
|
|
245
|
+
<code>RuntimeConfig</code>, <code>RuntimeDiagnostic</code>,
|
|
246
|
+
<code>RuntimeManifest</code>, <code>RuntimeManifestInput</code>
|
|
247
|
+
</p>
|
|
248
|
+
</article>
|
|
249
|
+
<article class="item" data-search="tests/runtime.test.ts src/index.ts">
|
|
250
|
+
<h3>tests/runtime.test.ts</h3>
|
|
251
|
+
<p class="muted">Referenced module</p>
|
|
252
|
+
<p><strong>Dependencies:</strong> <code>src/index.ts</code></p>
|
|
253
|
+
<p><strong>Exports:</strong> <span class="empty">None</span></p>
|
|
254
|
+
</article>
|
|
255
|
+
</section>
|
|
256
|
+
<section class="panel">
|
|
257
|
+
<h2>Public API</h2>
|
|
258
|
+
|
|
259
|
+
<section>
|
|
260
|
+
<h3>src/index.ts</h3>
|
|
261
|
+
<article
|
|
262
|
+
class="item"
|
|
263
|
+
id="symbol-createruntimemanifest"
|
|
264
|
+
data-search="createRuntimeManifest function src/index.ts RuntimeManifest RuntimeManifestInput (input: RuntimeManifestInput) => RuntimeManifest"
|
|
265
|
+
>
|
|
266
|
+
<h4>createRuntimeManifest</h4>
|
|
267
|
+
<p class="muted">function • <code>src/index.ts:81:1</code></p>
|
|
268
|
+
|
|
269
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
270
|
+
<div>
|
|
271
|
+
<strong>Related symbols:</strong>
|
|
272
|
+
<ul class="chips">
|
|
273
|
+
<li class="chip">RuntimeManifest</li>
|
|
274
|
+
<li class="chip">RuntimeManifestInput</li>
|
|
275
|
+
</ul>
|
|
276
|
+
</div>
|
|
277
|
+
<div>
|
|
278
|
+
<h5>Signature</h5>
|
|
279
|
+
<pre>(input: RuntimeManifestInput) => RuntimeManifest</pre>
|
|
280
|
+
<table>
|
|
281
|
+
<thead>
|
|
282
|
+
<tr>
|
|
283
|
+
<th>Parameter</th>
|
|
284
|
+
<th>Type</th>
|
|
285
|
+
<th>Required</th>
|
|
286
|
+
<th>Description</th>
|
|
287
|
+
</tr>
|
|
288
|
+
</thead>
|
|
289
|
+
<tbody>
|
|
290
|
+
<tr>
|
|
291
|
+
<td><code>input</code></td>
|
|
292
|
+
<td><code>RuntimeManifestInput</code></td>
|
|
293
|
+
<td>yes</td>
|
|
294
|
+
<td></td>
|
|
295
|
+
</tr>
|
|
296
|
+
</tbody>
|
|
297
|
+
</table>
|
|
298
|
+
<p><strong>Returns:</strong> <code>RuntimeManifest</code></p>
|
|
299
|
+
</div>
|
|
300
|
+
</article>
|
|
301
|
+
<article
|
|
302
|
+
class="item"
|
|
303
|
+
id="symbol-defineruntimeaction"
|
|
304
|
+
data-search="defineRuntimeAction function src/index.ts RuntimeActionDescriptor (action: RuntimeActionDescriptor<Data>) => RuntimeActionDescriptor<Data>"
|
|
305
|
+
>
|
|
306
|
+
<h4>defineRuntimeAction</h4>
|
|
307
|
+
<p class="muted">function • <code>src/index.ts:63:1</code></p>
|
|
308
|
+
|
|
309
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
310
|
+
<div>
|
|
311
|
+
<strong>Related symbols:</strong>
|
|
312
|
+
<ul class="chips">
|
|
313
|
+
<li class="chip">RuntimeActionDescriptor</li>
|
|
314
|
+
</ul>
|
|
315
|
+
</div>
|
|
316
|
+
<div>
|
|
317
|
+
<h5>Signature</h5>
|
|
318
|
+
<pre>
|
|
319
|
+
(action: RuntimeActionDescriptor<Data>) => RuntimeActionDescriptor<Data></pre>
|
|
320
|
+
<table>
|
|
321
|
+
<thead>
|
|
322
|
+
<tr>
|
|
323
|
+
<th>Parameter</th>
|
|
324
|
+
<th>Type</th>
|
|
325
|
+
<th>Required</th>
|
|
326
|
+
<th>Description</th>
|
|
327
|
+
</tr>
|
|
328
|
+
</thead>
|
|
329
|
+
<tbody>
|
|
330
|
+
<tr>
|
|
331
|
+
<td><code>action</code></td>
|
|
332
|
+
<td><code>RuntimeActionDescriptor<Data></code></td>
|
|
333
|
+
<td>yes</td>
|
|
334
|
+
<td></td>
|
|
335
|
+
</tr>
|
|
336
|
+
</tbody>
|
|
337
|
+
</table>
|
|
338
|
+
<p><strong>Returns:</strong> <code>RuntimeActionDescriptor<Data></code></p>
|
|
339
|
+
</div>
|
|
340
|
+
</article>
|
|
341
|
+
<article
|
|
342
|
+
class="item"
|
|
343
|
+
id="symbol-defineruntimeadapter"
|
|
344
|
+
data-search="defineRuntimeAdapter function src/index.ts RuntimeAdapterDescriptor (adapter: RuntimeAdapterDescriptor<Options>) => RuntimeAdapterDescriptor<Options>"
|
|
345
|
+
>
|
|
346
|
+
<h4>defineRuntimeAdapter</h4>
|
|
347
|
+
<p class="muted">function • <code>src/index.ts:69:1</code></p>
|
|
348
|
+
|
|
349
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
350
|
+
<div>
|
|
351
|
+
<strong>Related symbols:</strong>
|
|
352
|
+
<ul class="chips">
|
|
353
|
+
<li class="chip">RuntimeAdapterDescriptor</li>
|
|
354
|
+
</ul>
|
|
355
|
+
</div>
|
|
356
|
+
<div>
|
|
357
|
+
<h5>Signature</h5>
|
|
358
|
+
<pre>
|
|
359
|
+
(adapter: RuntimeAdapterDescriptor<Options>) => RuntimeAdapterDescriptor<Options></pre>
|
|
360
|
+
<table>
|
|
361
|
+
<thead>
|
|
362
|
+
<tr>
|
|
363
|
+
<th>Parameter</th>
|
|
364
|
+
<th>Type</th>
|
|
365
|
+
<th>Required</th>
|
|
366
|
+
<th>Description</th>
|
|
367
|
+
</tr>
|
|
368
|
+
</thead>
|
|
369
|
+
<tbody>
|
|
370
|
+
<tr>
|
|
371
|
+
<td><code>adapter</code></td>
|
|
372
|
+
<td><code>RuntimeAdapterDescriptor<Options></code></td>
|
|
373
|
+
<td>yes</td>
|
|
374
|
+
<td></td>
|
|
375
|
+
</tr>
|
|
376
|
+
</tbody>
|
|
377
|
+
</table>
|
|
378
|
+
<p>
|
|
379
|
+
<strong>Returns:</strong> <code>RuntimeAdapterDescriptor<Options></code>
|
|
380
|
+
</p>
|
|
381
|
+
</div>
|
|
382
|
+
</article>
|
|
383
|
+
<article
|
|
384
|
+
class="item"
|
|
385
|
+
id="symbol-defineruntimebinding"
|
|
386
|
+
data-search="defineRuntimeBinding function src/index.ts RuntimeBindingDescriptor (binding: RuntimeBindingDescriptor<Value>) => RuntimeBindingDescriptor<Value>"
|
|
387
|
+
>
|
|
388
|
+
<h4>defineRuntimeBinding</h4>
|
|
389
|
+
<p class="muted">function • <code>src/index.ts:75:1</code></p>
|
|
390
|
+
|
|
391
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
392
|
+
<div>
|
|
393
|
+
<strong>Related symbols:</strong>
|
|
394
|
+
<ul class="chips">
|
|
395
|
+
<li class="chip">RuntimeBindingDescriptor</li>
|
|
396
|
+
</ul>
|
|
397
|
+
</div>
|
|
398
|
+
<div>
|
|
399
|
+
<h5>Signature</h5>
|
|
400
|
+
<pre>
|
|
401
|
+
(binding: RuntimeBindingDescriptor<Value>) => RuntimeBindingDescriptor<Value></pre>
|
|
402
|
+
<table>
|
|
403
|
+
<thead>
|
|
404
|
+
<tr>
|
|
405
|
+
<th>Parameter</th>
|
|
406
|
+
<th>Type</th>
|
|
407
|
+
<th>Required</th>
|
|
408
|
+
<th>Description</th>
|
|
409
|
+
</tr>
|
|
410
|
+
</thead>
|
|
411
|
+
<tbody>
|
|
412
|
+
<tr>
|
|
413
|
+
<td><code>binding</code></td>
|
|
414
|
+
<td><code>RuntimeBindingDescriptor<Value></code></td>
|
|
415
|
+
<td>yes</td>
|
|
416
|
+
<td></td>
|
|
417
|
+
</tr>
|
|
418
|
+
</tbody>
|
|
419
|
+
</table>
|
|
420
|
+
<p>
|
|
421
|
+
<strong>Returns:</strong> <code>RuntimeBindingDescriptor<Value></code>
|
|
422
|
+
</p>
|
|
423
|
+
</div>
|
|
424
|
+
</article>
|
|
425
|
+
<article
|
|
426
|
+
class="item"
|
|
427
|
+
id="symbol-listruntimecapabilities"
|
|
428
|
+
data-search='listRuntimeCapabilities function src/index.ts () => readonly ("runtime.render" | "runtime.actions" | "runtime.bindings" | "runtime.adapters")[]'
|
|
429
|
+
>
|
|
430
|
+
<h4>listRuntimeCapabilities</h4>
|
|
431
|
+
<p class="muted">function • <code>src/index.ts:93:1</code></p>
|
|
432
|
+
|
|
433
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
434
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
435
|
+
<div>
|
|
436
|
+
<h5>Signature</h5>
|
|
437
|
+
<pre>
|
|
438
|
+
() => readonly ("runtime.render" | "runtime.actions" | "runtime.bindings" | "runtime.adapters")[]</pre>
|
|
439
|
+
|
|
440
|
+
<p>
|
|
441
|
+
<strong>Returns:</strong>
|
|
442
|
+
<code
|
|
443
|
+
>readonly ("runtime.render" | "runtime.actions" |
|
|
444
|
+
"runtime.bindings" | "runtime.adapters")[]</code
|
|
445
|
+
>
|
|
446
|
+
</p>
|
|
447
|
+
</div>
|
|
448
|
+
</article>
|
|
449
|
+
<article
|
|
450
|
+
class="item"
|
|
451
|
+
id="symbol-runtime-capabilities"
|
|
452
|
+
data-search="RUNTIME_CAPABILITIES value src/index.ts "
|
|
453
|
+
>
|
|
454
|
+
<h4>RUNTIME_CAPABILITIES</h4>
|
|
455
|
+
<p class="muted">value • <code>src/index.ts:1:14</code></p>
|
|
456
|
+
|
|
457
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
458
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
459
|
+
</article>
|
|
460
|
+
<article
|
|
461
|
+
class="item"
|
|
462
|
+
id="symbol-runtime-manifest-kind"
|
|
463
|
+
data-search="RUNTIME_MANIFEST_KIND value src/index.ts "
|
|
464
|
+
>
|
|
465
|
+
<h4>RUNTIME_MANIFEST_KIND</h4>
|
|
466
|
+
<p class="muted">value • <code>src/index.ts:8:14</code></p>
|
|
467
|
+
|
|
468
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
469
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
470
|
+
</article>
|
|
471
|
+
<article
|
|
472
|
+
class="item"
|
|
473
|
+
id="symbol-runtimeactiondescriptor"
|
|
474
|
+
data-search="RuntimeActionDescriptor type src/index.ts "
|
|
475
|
+
>
|
|
476
|
+
<h4>RuntimeActionDescriptor</h4>
|
|
477
|
+
<p class="muted">type • <code>src/index.ts:24:1</code></p>
|
|
478
|
+
|
|
479
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
480
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
481
|
+
|
|
482
|
+
<table>
|
|
483
|
+
<thead>
|
|
484
|
+
<tr>
|
|
485
|
+
<th>Member</th>
|
|
486
|
+
<th>Kind</th>
|
|
487
|
+
<th>Type</th>
|
|
488
|
+
<th>Required</th>
|
|
489
|
+
<th>Description</th>
|
|
490
|
+
</tr>
|
|
491
|
+
</thead>
|
|
492
|
+
<tbody>
|
|
493
|
+
<tr>
|
|
494
|
+
<td><code>capability</code></td>
|
|
495
|
+
<td>property</td>
|
|
496
|
+
<td>
|
|
497
|
+
<code
|
|
498
|
+
>"runtime.render" | "runtime.actions" |
|
|
499
|
+
"runtime.bindings" | "runtime.adapters" |
|
|
500
|
+
undefined</code
|
|
501
|
+
>
|
|
502
|
+
</td>
|
|
503
|
+
<td>no</td>
|
|
504
|
+
<td></td>
|
|
505
|
+
</tr>
|
|
506
|
+
<tr>
|
|
507
|
+
<td><code>data</code></td>
|
|
508
|
+
<td>property</td>
|
|
509
|
+
<td><code>Data | undefined</code></td>
|
|
510
|
+
<td>no</td>
|
|
511
|
+
<td></td>
|
|
512
|
+
</tr>
|
|
513
|
+
<tr>
|
|
514
|
+
<td><code>description</code></td>
|
|
515
|
+
<td>property</td>
|
|
516
|
+
<td><code>string | undefined</code></td>
|
|
517
|
+
<td>no</td>
|
|
518
|
+
<td></td>
|
|
519
|
+
</tr>
|
|
520
|
+
<tr>
|
|
521
|
+
<td><code>id</code></td>
|
|
522
|
+
<td>property</td>
|
|
523
|
+
<td><code>string</code></td>
|
|
524
|
+
<td>yes</td>
|
|
525
|
+
<td></td>
|
|
526
|
+
</tr>
|
|
527
|
+
</tbody>
|
|
528
|
+
</table>
|
|
529
|
+
</article>
|
|
530
|
+
<article
|
|
531
|
+
class="item"
|
|
532
|
+
id="symbol-runtimeadapterdescriptor"
|
|
533
|
+
data-search="RuntimeAdapterDescriptor type src/index.ts "
|
|
534
|
+
>
|
|
535
|
+
<h4>RuntimeAdapterDescriptor</h4>
|
|
536
|
+
<p class="muted">type • <code>src/index.ts:39:1</code></p>
|
|
537
|
+
|
|
538
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
539
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
540
|
+
|
|
541
|
+
<table>
|
|
542
|
+
<thead>
|
|
543
|
+
<tr>
|
|
544
|
+
<th>Member</th>
|
|
545
|
+
<th>Kind</th>
|
|
546
|
+
<th>Type</th>
|
|
547
|
+
<th>Required</th>
|
|
548
|
+
<th>Description</th>
|
|
549
|
+
</tr>
|
|
550
|
+
</thead>
|
|
551
|
+
<tbody>
|
|
552
|
+
<tr>
|
|
553
|
+
<td><code>id</code></td>
|
|
554
|
+
<td>property</td>
|
|
555
|
+
<td><code>string</code></td>
|
|
556
|
+
<td>yes</td>
|
|
557
|
+
<td></td>
|
|
558
|
+
</tr>
|
|
559
|
+
<tr>
|
|
560
|
+
<td><code>kind</code></td>
|
|
561
|
+
<td>property</td>
|
|
562
|
+
<td><code>string</code></td>
|
|
563
|
+
<td>yes</td>
|
|
564
|
+
<td></td>
|
|
565
|
+
</tr>
|
|
566
|
+
<tr>
|
|
567
|
+
<td><code>options</code></td>
|
|
568
|
+
<td>property</td>
|
|
569
|
+
<td><code>Options | undefined</code></td>
|
|
570
|
+
<td>no</td>
|
|
571
|
+
<td></td>
|
|
572
|
+
</tr>
|
|
573
|
+
</tbody>
|
|
574
|
+
</table>
|
|
575
|
+
</article>
|
|
576
|
+
<article
|
|
577
|
+
class="item"
|
|
578
|
+
id="symbol-runtimebindingdescriptor"
|
|
579
|
+
data-search="RuntimeBindingDescriptor type src/index.ts "
|
|
580
|
+
>
|
|
581
|
+
<h4>RuntimeBindingDescriptor</h4>
|
|
582
|
+
<p class="muted">type • <code>src/index.ts:31:1</code></p>
|
|
583
|
+
|
|
584
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
585
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
586
|
+
|
|
587
|
+
<table>
|
|
588
|
+
<thead>
|
|
589
|
+
<tr>
|
|
590
|
+
<th>Member</th>
|
|
591
|
+
<th>Kind</th>
|
|
592
|
+
<th>Type</th>
|
|
593
|
+
<th>Required</th>
|
|
594
|
+
<th>Description</th>
|
|
595
|
+
</tr>
|
|
596
|
+
</thead>
|
|
597
|
+
<tbody>
|
|
598
|
+
<tr>
|
|
599
|
+
<td><code>actionId</code></td>
|
|
600
|
+
<td>property</td>
|
|
601
|
+
<td><code>string | undefined</code></td>
|
|
602
|
+
<td>no</td>
|
|
603
|
+
<td></td>
|
|
604
|
+
</tr>
|
|
605
|
+
<tr>
|
|
606
|
+
<td><code>id</code></td>
|
|
607
|
+
<td>property</td>
|
|
608
|
+
<td><code>string</code></td>
|
|
609
|
+
<td>yes</td>
|
|
610
|
+
<td></td>
|
|
611
|
+
</tr>
|
|
612
|
+
<tr>
|
|
613
|
+
<td><code>source</code></td>
|
|
614
|
+
<td>property</td>
|
|
615
|
+
<td><code>string</code></td>
|
|
616
|
+
<td>yes</td>
|
|
617
|
+
<td></td>
|
|
618
|
+
</tr>
|
|
619
|
+
<tr>
|
|
620
|
+
<td><code>target</code></td>
|
|
621
|
+
<td>property</td>
|
|
622
|
+
<td><code>string</code></td>
|
|
623
|
+
<td>yes</td>
|
|
624
|
+
<td></td>
|
|
625
|
+
</tr>
|
|
626
|
+
<tr>
|
|
627
|
+
<td><code>value</code></td>
|
|
628
|
+
<td>property</td>
|
|
629
|
+
<td><code>Value | undefined</code></td>
|
|
630
|
+
<td>no</td>
|
|
631
|
+
<td></td>
|
|
632
|
+
</tr>
|
|
633
|
+
</tbody>
|
|
634
|
+
</table>
|
|
635
|
+
</article>
|
|
636
|
+
<article
|
|
637
|
+
class="item"
|
|
638
|
+
id="symbol-runtimecapability"
|
|
639
|
+
data-search="RuntimeCapability unknown src/index.ts "
|
|
640
|
+
>
|
|
641
|
+
<h4>RuntimeCapability</h4>
|
|
642
|
+
<p class="muted">unknown • <code>src/index.ts:10:1</code></p>
|
|
643
|
+
|
|
644
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
645
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
646
|
+
</article>
|
|
647
|
+
<article
|
|
648
|
+
class="item"
|
|
649
|
+
id="symbol-runtimeconfig"
|
|
650
|
+
data-search="RuntimeConfig type src/index.ts "
|
|
651
|
+
>
|
|
652
|
+
<h4>RuntimeConfig</h4>
|
|
653
|
+
<p class="muted">type • <code>src/index.ts:18:1</code></p>
|
|
654
|
+
|
|
655
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
656
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
657
|
+
|
|
658
|
+
<table>
|
|
659
|
+
<thead>
|
|
660
|
+
<tr>
|
|
661
|
+
<th>Member</th>
|
|
662
|
+
<th>Kind</th>
|
|
663
|
+
<th>Type</th>
|
|
664
|
+
<th>Required</th>
|
|
665
|
+
<th>Description</th>
|
|
666
|
+
</tr>
|
|
667
|
+
</thead>
|
|
668
|
+
<tbody>
|
|
669
|
+
<tr>
|
|
670
|
+
<td><code>appId</code></td>
|
|
671
|
+
<td>property</td>
|
|
672
|
+
<td><code>string</code></td>
|
|
673
|
+
<td>yes</td>
|
|
674
|
+
<td></td>
|
|
675
|
+
</tr>
|
|
676
|
+
<tr>
|
|
677
|
+
<td><code>environment</code></td>
|
|
678
|
+
<td>property</td>
|
|
679
|
+
<td><code>string | undefined</code></td>
|
|
680
|
+
<td>no</td>
|
|
681
|
+
<td></td>
|
|
682
|
+
</tr>
|
|
683
|
+
<tr>
|
|
684
|
+
<td><code>values</code></td>
|
|
685
|
+
<td>property</td>
|
|
686
|
+
<td>
|
|
687
|
+
<code>Readonly<Record<string, unknown>> | undefined</code>
|
|
688
|
+
</td>
|
|
689
|
+
<td>no</td>
|
|
690
|
+
<td></td>
|
|
691
|
+
</tr>
|
|
692
|
+
</tbody>
|
|
693
|
+
</table>
|
|
694
|
+
</article>
|
|
695
|
+
<article
|
|
696
|
+
class="item"
|
|
697
|
+
id="symbol-runtimediagnostic"
|
|
698
|
+
data-search="RuntimeDiagnostic type src/index.ts "
|
|
699
|
+
>
|
|
700
|
+
<h4>RuntimeDiagnostic</h4>
|
|
701
|
+
<p class="muted">type • <code>src/index.ts:12:1</code></p>
|
|
702
|
+
|
|
703
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
704
|
+
<div><strong>Related symbols:</strong> <span class="empty">None</span></div>
|
|
705
|
+
|
|
706
|
+
<table>
|
|
707
|
+
<thead>
|
|
708
|
+
<tr>
|
|
709
|
+
<th>Member</th>
|
|
710
|
+
<th>Kind</th>
|
|
711
|
+
<th>Type</th>
|
|
712
|
+
<th>Required</th>
|
|
713
|
+
<th>Description</th>
|
|
714
|
+
</tr>
|
|
715
|
+
</thead>
|
|
716
|
+
<tbody>
|
|
717
|
+
<tr>
|
|
718
|
+
<td><code>code</code></td>
|
|
719
|
+
<td>property</td>
|
|
720
|
+
<td><code>string</code></td>
|
|
721
|
+
<td>yes</td>
|
|
722
|
+
<td></td>
|
|
723
|
+
</tr>
|
|
724
|
+
<tr>
|
|
725
|
+
<td><code>message</code></td>
|
|
726
|
+
<td>property</td>
|
|
727
|
+
<td><code>string</code></td>
|
|
728
|
+
<td>yes</td>
|
|
729
|
+
<td></td>
|
|
730
|
+
</tr>
|
|
731
|
+
<tr>
|
|
732
|
+
<td><code>severity</code></td>
|
|
733
|
+
<td>property</td>
|
|
734
|
+
<td>
|
|
735
|
+
<code>"error" | "info" | "warning"</code>
|
|
736
|
+
</td>
|
|
737
|
+
<td>yes</td>
|
|
738
|
+
<td></td>
|
|
739
|
+
</tr>
|
|
740
|
+
</tbody>
|
|
741
|
+
</table>
|
|
742
|
+
</article>
|
|
743
|
+
<article
|
|
744
|
+
class="item"
|
|
745
|
+
id="symbol-runtimemanifest"
|
|
746
|
+
data-search="RuntimeManifest type src/index.ts RuntimeActionDescriptor RuntimeAdapterDescriptor RuntimeBindingDescriptor RuntimeConfig RuntimeDiagnostic"
|
|
747
|
+
>
|
|
748
|
+
<h4>RuntimeManifest</h4>
|
|
749
|
+
<p class="muted">type • <code>src/index.ts:45:1</code></p>
|
|
750
|
+
|
|
751
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
752
|
+
<div>
|
|
753
|
+
<strong>Related symbols:</strong>
|
|
754
|
+
<ul class="chips">
|
|
755
|
+
<li class="chip">RuntimeActionDescriptor</li>
|
|
756
|
+
<li class="chip">RuntimeAdapterDescriptor</li>
|
|
757
|
+
<li class="chip">RuntimeBindingDescriptor</li>
|
|
758
|
+
<li class="chip">RuntimeConfig</li>
|
|
759
|
+
<li class="chip">RuntimeDiagnostic</li>
|
|
760
|
+
</ul>
|
|
761
|
+
</div>
|
|
762
|
+
|
|
763
|
+
<table>
|
|
764
|
+
<thead>
|
|
765
|
+
<tr>
|
|
766
|
+
<th>Member</th>
|
|
767
|
+
<th>Kind</th>
|
|
768
|
+
<th>Type</th>
|
|
769
|
+
<th>Required</th>
|
|
770
|
+
<th>Description</th>
|
|
771
|
+
</tr>
|
|
772
|
+
</thead>
|
|
773
|
+
<tbody>
|
|
774
|
+
<tr>
|
|
775
|
+
<td><code>actions</code></td>
|
|
776
|
+
<td>property</td>
|
|
777
|
+
<td><code>readonly RuntimeActionDescriptor<unknown>[]</code></td>
|
|
778
|
+
<td>yes</td>
|
|
779
|
+
<td></td>
|
|
780
|
+
</tr>
|
|
781
|
+
<tr>
|
|
782
|
+
<td><code>adapters</code></td>
|
|
783
|
+
<td>property</td>
|
|
784
|
+
<td><code>readonly RuntimeAdapterDescriptor<unknown>[]</code></td>
|
|
785
|
+
<td>yes</td>
|
|
786
|
+
<td></td>
|
|
787
|
+
</tr>
|
|
788
|
+
<tr>
|
|
789
|
+
<td><code>bindings</code></td>
|
|
790
|
+
<td>property</td>
|
|
791
|
+
<td><code>readonly RuntimeBindingDescriptor<unknown>[]</code></td>
|
|
792
|
+
<td>yes</td>
|
|
793
|
+
<td></td>
|
|
794
|
+
</tr>
|
|
795
|
+
<tr>
|
|
796
|
+
<td><code>config</code></td>
|
|
797
|
+
<td>property</td>
|
|
798
|
+
<td><code>RuntimeConfig</code></td>
|
|
799
|
+
<td>yes</td>
|
|
800
|
+
<td></td>
|
|
801
|
+
</tr>
|
|
802
|
+
<tr>
|
|
803
|
+
<td><code>diagnostics</code></td>
|
|
804
|
+
<td>property</td>
|
|
805
|
+
<td><code>readonly RuntimeDiagnostic[]</code></td>
|
|
806
|
+
<td>yes</td>
|
|
807
|
+
<td></td>
|
|
808
|
+
</tr>
|
|
809
|
+
<tr>
|
|
810
|
+
<td><code>kind</code></td>
|
|
811
|
+
<td>property</td>
|
|
812
|
+
<td><code>"ankhorage-runtime-manifest"</code></td>
|
|
813
|
+
<td>yes</td>
|
|
814
|
+
<td></td>
|
|
815
|
+
</tr>
|
|
816
|
+
<tr>
|
|
817
|
+
<td><code>version</code></td>
|
|
818
|
+
<td>property</td>
|
|
819
|
+
<td><code>1</code></td>
|
|
820
|
+
<td>yes</td>
|
|
821
|
+
<td></td>
|
|
822
|
+
</tr>
|
|
823
|
+
</tbody>
|
|
824
|
+
</table>
|
|
825
|
+
</article>
|
|
826
|
+
<article
|
|
827
|
+
class="item"
|
|
828
|
+
id="symbol-runtimemanifestinput"
|
|
829
|
+
data-search="RuntimeManifestInput type src/index.ts RuntimeActionDescriptor RuntimeAdapterDescriptor RuntimeBindingDescriptor RuntimeConfig RuntimeDiagnostic"
|
|
830
|
+
>
|
|
831
|
+
<h4>RuntimeManifestInput</h4>
|
|
832
|
+
<p class="muted">type • <code>src/index.ts:55:1</code></p>
|
|
833
|
+
|
|
834
|
+
<p><strong>Export paths:</strong> <code>src/index.ts</code></p>
|
|
835
|
+
<div>
|
|
836
|
+
<strong>Related symbols:</strong>
|
|
837
|
+
<ul class="chips">
|
|
838
|
+
<li class="chip">RuntimeActionDescriptor</li>
|
|
839
|
+
<li class="chip">RuntimeAdapterDescriptor</li>
|
|
840
|
+
<li class="chip">RuntimeBindingDescriptor</li>
|
|
841
|
+
<li class="chip">RuntimeConfig</li>
|
|
842
|
+
<li class="chip">RuntimeDiagnostic</li>
|
|
843
|
+
</ul>
|
|
844
|
+
</div>
|
|
845
|
+
|
|
846
|
+
<table>
|
|
847
|
+
<thead>
|
|
848
|
+
<tr>
|
|
849
|
+
<th>Member</th>
|
|
850
|
+
<th>Kind</th>
|
|
851
|
+
<th>Type</th>
|
|
852
|
+
<th>Required</th>
|
|
853
|
+
<th>Description</th>
|
|
854
|
+
</tr>
|
|
855
|
+
</thead>
|
|
856
|
+
<tbody>
|
|
857
|
+
<tr>
|
|
858
|
+
<td><code>actions</code></td>
|
|
859
|
+
<td>property</td>
|
|
860
|
+
<td>
|
|
861
|
+
<code>readonly RuntimeActionDescriptor<unknown>[] | undefined</code>
|
|
862
|
+
</td>
|
|
863
|
+
<td>no</td>
|
|
864
|
+
<td></td>
|
|
865
|
+
</tr>
|
|
866
|
+
<tr>
|
|
867
|
+
<td><code>adapters</code></td>
|
|
868
|
+
<td>property</td>
|
|
869
|
+
<td>
|
|
870
|
+
<code>readonly RuntimeAdapterDescriptor<unknown>[] | undefined</code>
|
|
871
|
+
</td>
|
|
872
|
+
<td>no</td>
|
|
873
|
+
<td></td>
|
|
874
|
+
</tr>
|
|
875
|
+
<tr>
|
|
876
|
+
<td><code>bindings</code></td>
|
|
877
|
+
<td>property</td>
|
|
878
|
+
<td>
|
|
879
|
+
<code>readonly RuntimeBindingDescriptor<unknown>[] | undefined</code>
|
|
880
|
+
</td>
|
|
881
|
+
<td>no</td>
|
|
882
|
+
<td></td>
|
|
883
|
+
</tr>
|
|
884
|
+
<tr>
|
|
885
|
+
<td><code>config</code></td>
|
|
886
|
+
<td>property</td>
|
|
887
|
+
<td><code>RuntimeConfig</code></td>
|
|
888
|
+
<td>yes</td>
|
|
889
|
+
<td></td>
|
|
890
|
+
</tr>
|
|
891
|
+
<tr>
|
|
892
|
+
<td><code>diagnostics</code></td>
|
|
893
|
+
<td>property</td>
|
|
894
|
+
<td><code>readonly RuntimeDiagnostic[] | undefined</code></td>
|
|
895
|
+
<td>no</td>
|
|
896
|
+
<td></td>
|
|
897
|
+
</tr>
|
|
898
|
+
</tbody>
|
|
899
|
+
</table>
|
|
900
|
+
</article>
|
|
901
|
+
</section>
|
|
902
|
+
</section>
|
|
903
|
+
<section class="panel">
|
|
904
|
+
<h2>Component registry</h2>
|
|
905
|
+
<p class="empty">No components were detected.</p>
|
|
906
|
+
</section>
|
|
907
|
+
<section class="panel">
|
|
908
|
+
<h2>Diagrams</h2>
|
|
909
|
+
<article
|
|
910
|
+
class="item"
|
|
911
|
+
data-search="Architecture overview diagrams/architecture-overview.mmd"
|
|
912
|
+
>
|
|
913
|
+
<h3>Architecture overview</h3>
|
|
914
|
+
<p class="muted"><code>diagrams/architecture-overview.mmd</code></p>
|
|
915
|
+
<div class="mermaid">
|
|
916
|
+
graph TD package__ankhorage_runtime["@ankhorage/runtime"]
|
|
917
|
+
entrypoint_src_index_ts["src/index.ts"] package__ankhorage_runtime -->
|
|
918
|
+
entrypoint_src_index_ts module_paradox_config_ts["paradox.config.ts"]
|
|
919
|
+
package__ankhorage_runtime -.-> module_paradox_config_ts
|
|
920
|
+
module_src_index_ts["src/index.ts"]
|
|
921
|
+
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
922
|
+
package__ankhorage_runtime -.-> module_tests_runtime_test_ts
|
|
923
|
+
module_tests_runtime_test_ts --> module_src_index_ts
|
|
924
|
+
</div>
|
|
925
|
+
<details>
|
|
926
|
+
<summary>View Mermaid source</summary>
|
|
927
|
+
<pre>
|
|
928
|
+
graph TD
|
|
929
|
+
package__ankhorage_runtime["@ankhorage/runtime"]
|
|
930
|
+
entrypoint_src_index_ts["src/index.ts"]
|
|
931
|
+
package__ankhorage_runtime --> entrypoint_src_index_ts
|
|
932
|
+
module_paradox_config_ts["paradox.config.ts"]
|
|
933
|
+
package__ankhorage_runtime -.-> module_paradox_config_ts
|
|
934
|
+
module_src_index_ts["src/index.ts"]
|
|
935
|
+
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
936
|
+
package__ankhorage_runtime -.-> module_tests_runtime_test_ts
|
|
937
|
+
module_tests_runtime_test_ts --> module_src_index_ts
|
|
938
|
+
</pre>
|
|
939
|
+
</details>
|
|
940
|
+
</article>
|
|
941
|
+
<article
|
|
942
|
+
class="item"
|
|
943
|
+
data-search="Module relationships diagrams/module-relationships.mmd"
|
|
944
|
+
>
|
|
945
|
+
<h3>Module relationships</h3>
|
|
946
|
+
<p class="muted"><code>diagrams/module-relationships.mmd</code></p>
|
|
947
|
+
<div class="mermaid">
|
|
948
|
+
graph LR module_paradox_config_ts["paradox.config.ts"]
|
|
949
|
+
module_src_index_ts["src/index.ts"]
|
|
950
|
+
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
951
|
+
module_tests_runtime_test_ts --> module_src_index_ts
|
|
952
|
+
</div>
|
|
953
|
+
<details>
|
|
954
|
+
<summary>View Mermaid source</summary>
|
|
955
|
+
<pre>
|
|
956
|
+
graph LR
|
|
957
|
+
module_paradox_config_ts["paradox.config.ts"]
|
|
958
|
+
module_src_index_ts["src/index.ts"]
|
|
959
|
+
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
960
|
+
module_tests_runtime_test_ts --> module_src_index_ts
|
|
961
|
+
</pre>
|
|
962
|
+
</details>
|
|
963
|
+
</article>
|
|
964
|
+
<article class="item" data-search="Export graph diagrams/export-graph.mmd">
|
|
965
|
+
<h3>Export graph</h3>
|
|
966
|
+
<p class="muted"><code>diagrams/export-graph.mmd</code></p>
|
|
967
|
+
<div class="mermaid">
|
|
968
|
+
graph LR module_paradox_config_ts["paradox.config.ts"]
|
|
969
|
+
module_src_index_ts["src/index.ts"]
|
|
970
|
+
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
971
|
+
export_createRuntimeManifest["createRuntimeManifest"] module_src_index_ts
|
|
972
|
+
--> export_createRuntimeManifest export_createRuntimeManifest -.->
|
|
973
|
+
export_RuntimeManifest export_createRuntimeManifest -.->
|
|
974
|
+
export_RuntimeManifestInput
|
|
975
|
+
export_defineRuntimeAction["defineRuntimeAction"] module_src_index_ts
|
|
976
|
+
--> export_defineRuntimeAction export_defineRuntimeAction -.->
|
|
977
|
+
export_RuntimeActionDescriptor
|
|
978
|
+
export_defineRuntimeAdapter["defineRuntimeAdapter"] module_src_index_ts
|
|
979
|
+
--> export_defineRuntimeAdapter export_defineRuntimeAdapter -.->
|
|
980
|
+
export_RuntimeAdapterDescriptor
|
|
981
|
+
export_defineRuntimeBinding["defineRuntimeBinding"] module_src_index_ts
|
|
982
|
+
--> export_defineRuntimeBinding export_defineRuntimeBinding -.->
|
|
983
|
+
export_RuntimeBindingDescriptor
|
|
984
|
+
export_listRuntimeCapabilities["listRuntimeCapabilities"]
|
|
985
|
+
module_src_index_ts --> export_listRuntimeCapabilities
|
|
986
|
+
export_RUNTIME_CAPABILITIES["RUNTIME_CAPABILITIES"] module_src_index_ts
|
|
987
|
+
--> export_RUNTIME_CAPABILITIES
|
|
988
|
+
export_RUNTIME_MANIFEST_KIND["RUNTIME_MANIFEST_KIND"] module_src_index_ts
|
|
989
|
+
--> export_RUNTIME_MANIFEST_KIND
|
|
990
|
+
export_RuntimeActionDescriptor["RuntimeActionDescriptor"]
|
|
991
|
+
module_src_index_ts --> export_RuntimeActionDescriptor
|
|
992
|
+
export_RuntimeAdapterDescriptor["RuntimeAdapterDescriptor"]
|
|
993
|
+
module_src_index_ts --> export_RuntimeAdapterDescriptor
|
|
994
|
+
export_RuntimeBindingDescriptor["RuntimeBindingDescriptor"]
|
|
995
|
+
module_src_index_ts --> export_RuntimeBindingDescriptor
|
|
996
|
+
export_RuntimeCapability["RuntimeCapability"] module_src_index_ts -->
|
|
997
|
+
export_RuntimeCapability export_RuntimeConfig["RuntimeConfig"]
|
|
998
|
+
module_src_index_ts --> export_RuntimeConfig
|
|
999
|
+
export_RuntimeDiagnostic["RuntimeDiagnostic"] module_src_index_ts -->
|
|
1000
|
+
export_RuntimeDiagnostic export_RuntimeManifest["RuntimeManifest"]
|
|
1001
|
+
module_src_index_ts --> export_RuntimeManifest export_RuntimeManifest -.->
|
|
1002
|
+
export_RuntimeActionDescriptor export_RuntimeManifest -.->
|
|
1003
|
+
export_RuntimeAdapterDescriptor export_RuntimeManifest -.->
|
|
1004
|
+
export_RuntimeBindingDescriptor export_RuntimeManifest -.-> export_RuntimeConfig
|
|
1005
|
+
export_RuntimeManifest -.-> export_RuntimeDiagnostic
|
|
1006
|
+
export_RuntimeManifestInput["RuntimeManifestInput"] module_src_index_ts
|
|
1007
|
+
--> export_RuntimeManifestInput export_RuntimeManifestInput -.->
|
|
1008
|
+
export_RuntimeActionDescriptor export_RuntimeManifestInput -.->
|
|
1009
|
+
export_RuntimeAdapterDescriptor export_RuntimeManifestInput -.->
|
|
1010
|
+
export_RuntimeBindingDescriptor export_RuntimeManifestInput -.->
|
|
1011
|
+
export_RuntimeConfig export_RuntimeManifestInput -.-> export_RuntimeDiagnostic
|
|
1012
|
+
</div>
|
|
1013
|
+
<details>
|
|
1014
|
+
<summary>View Mermaid source</summary>
|
|
1015
|
+
<pre>
|
|
1016
|
+
graph LR
|
|
1017
|
+
module_paradox_config_ts["paradox.config.ts"]
|
|
1018
|
+
module_src_index_ts["src/index.ts"]
|
|
1019
|
+
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
1020
|
+
export_createRuntimeManifest["createRuntimeManifest"]
|
|
1021
|
+
module_src_index_ts --> export_createRuntimeManifest
|
|
1022
|
+
export_createRuntimeManifest -.-> export_RuntimeManifest
|
|
1023
|
+
export_createRuntimeManifest -.-> export_RuntimeManifestInput
|
|
1024
|
+
export_defineRuntimeAction["defineRuntimeAction"]
|
|
1025
|
+
module_src_index_ts --> export_defineRuntimeAction
|
|
1026
|
+
export_defineRuntimeAction -.-> export_RuntimeActionDescriptor
|
|
1027
|
+
export_defineRuntimeAdapter["defineRuntimeAdapter"]
|
|
1028
|
+
module_src_index_ts --> export_defineRuntimeAdapter
|
|
1029
|
+
export_defineRuntimeAdapter -.-> export_RuntimeAdapterDescriptor
|
|
1030
|
+
export_defineRuntimeBinding["defineRuntimeBinding"]
|
|
1031
|
+
module_src_index_ts --> export_defineRuntimeBinding
|
|
1032
|
+
export_defineRuntimeBinding -.-> export_RuntimeBindingDescriptor
|
|
1033
|
+
export_listRuntimeCapabilities["listRuntimeCapabilities"]
|
|
1034
|
+
module_src_index_ts --> export_listRuntimeCapabilities
|
|
1035
|
+
export_RUNTIME_CAPABILITIES["RUNTIME_CAPABILITIES"]
|
|
1036
|
+
module_src_index_ts --> export_RUNTIME_CAPABILITIES
|
|
1037
|
+
export_RUNTIME_MANIFEST_KIND["RUNTIME_MANIFEST_KIND"]
|
|
1038
|
+
module_src_index_ts --> export_RUNTIME_MANIFEST_KIND
|
|
1039
|
+
export_RuntimeActionDescriptor["RuntimeActionDescriptor"]
|
|
1040
|
+
module_src_index_ts --> export_RuntimeActionDescriptor
|
|
1041
|
+
export_RuntimeAdapterDescriptor["RuntimeAdapterDescriptor"]
|
|
1042
|
+
module_src_index_ts --> export_RuntimeAdapterDescriptor
|
|
1043
|
+
export_RuntimeBindingDescriptor["RuntimeBindingDescriptor"]
|
|
1044
|
+
module_src_index_ts --> export_RuntimeBindingDescriptor
|
|
1045
|
+
export_RuntimeCapability["RuntimeCapability"]
|
|
1046
|
+
module_src_index_ts --> export_RuntimeCapability
|
|
1047
|
+
export_RuntimeConfig["RuntimeConfig"]
|
|
1048
|
+
module_src_index_ts --> export_RuntimeConfig
|
|
1049
|
+
export_RuntimeDiagnostic["RuntimeDiagnostic"]
|
|
1050
|
+
module_src_index_ts --> export_RuntimeDiagnostic
|
|
1051
|
+
export_RuntimeManifest["RuntimeManifest"]
|
|
1052
|
+
module_src_index_ts --> export_RuntimeManifest
|
|
1053
|
+
export_RuntimeManifest -.-> export_RuntimeActionDescriptor
|
|
1054
|
+
export_RuntimeManifest -.-> export_RuntimeAdapterDescriptor
|
|
1055
|
+
export_RuntimeManifest -.-> export_RuntimeBindingDescriptor
|
|
1056
|
+
export_RuntimeManifest -.-> export_RuntimeConfig
|
|
1057
|
+
export_RuntimeManifest -.-> export_RuntimeDiagnostic
|
|
1058
|
+
export_RuntimeManifestInput["RuntimeManifestInput"]
|
|
1059
|
+
module_src_index_ts --> export_RuntimeManifestInput
|
|
1060
|
+
export_RuntimeManifestInput -.-> export_RuntimeActionDescriptor
|
|
1061
|
+
export_RuntimeManifestInput -.-> export_RuntimeAdapterDescriptor
|
|
1062
|
+
export_RuntimeManifestInput -.-> export_RuntimeBindingDescriptor
|
|
1063
|
+
export_RuntimeManifestInput -.-> export_RuntimeConfig
|
|
1064
|
+
export_RuntimeManifestInput -.-> export_RuntimeDiagnostic
|
|
1065
|
+
</pre>
|
|
1066
|
+
</details>
|
|
1067
|
+
</article>
|
|
1068
|
+
</section>
|
|
1069
|
+
</section>
|
|
1070
|
+
<section id="view-src-index-ts" class="view" data-view="src/index.ts" hidden>
|
|
1071
|
+
<section class="panel">
|
|
1072
|
+
<h2>src/index.ts</h2>
|
|
1073
|
+
<article class="item" data-search="defineRuntimeAction src/index.ts ">
|
|
1074
|
+
<h3>defineRuntimeAction</h3>
|
|
1075
|
+
<p class="muted"><code>src/index.ts:63:1</code></p>
|
|
1076
|
+
<p class="empty">No description available.</p>
|
|
1077
|
+
</article>
|
|
1078
|
+
<article class="item" data-search="defineRuntimeAdapter src/index.ts ">
|
|
1079
|
+
<h3>defineRuntimeAdapter</h3>
|
|
1080
|
+
<p class="muted"><code>src/index.ts:69:1</code></p>
|
|
1081
|
+
<p class="empty">No description available.</p>
|
|
1082
|
+
</article>
|
|
1083
|
+
<article class="item" data-search="defineRuntimeBinding src/index.ts ">
|
|
1084
|
+
<h3>defineRuntimeBinding</h3>
|
|
1085
|
+
<p class="muted"><code>src/index.ts:75:1</code></p>
|
|
1086
|
+
<p class="empty">No description available.</p>
|
|
1087
|
+
</article>
|
|
1088
|
+
<article class="item" data-search="createRuntimeManifest src/index.ts ">
|
|
1089
|
+
<h3>createRuntimeManifest</h3>
|
|
1090
|
+
<p class="muted"><code>src/index.ts:81:1</code></p>
|
|
1091
|
+
<p class="empty">No description available.</p>
|
|
1092
|
+
</article>
|
|
1093
|
+
<article class="item" data-search="listRuntimeCapabilities src/index.ts ">
|
|
1094
|
+
<h3>listRuntimeCapabilities</h3>
|
|
1095
|
+
<p class="muted"><code>src/index.ts:93:1</code></p>
|
|
1096
|
+
<p class="empty">No description available.</p>
|
|
1097
|
+
</article>
|
|
1098
|
+
</section>
|
|
1099
|
+
</section>
|
|
1100
|
+
</main>
|
|
1101
|
+
</div>
|
|
1102
|
+
<script>
|
|
1103
|
+
const search = document.getElementById('search');
|
|
1104
|
+
const navButtons = Array.from(document.querySelectorAll('[data-target]'));
|
|
1105
|
+
const views = Array.from(document.querySelectorAll('[data-view]'));
|
|
1106
|
+
|
|
1107
|
+
function getActiveView() {
|
|
1108
|
+
return document.querySelector('[data-view]:not([hidden])');
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
function applySearch() {
|
|
1112
|
+
const value = search?.value.trim().toLowerCase() || '';
|
|
1113
|
+
const activeView = getActiveView();
|
|
1114
|
+
const items = Array.from(activeView?.querySelectorAll('[data-search]') || []);
|
|
1115
|
+
|
|
1116
|
+
for (const item of items) {
|
|
1117
|
+
const haystack = (item.getAttribute('data-search') || '').toLowerCase();
|
|
1118
|
+
item.style.display = value === '' || haystack.includes(value) ? '' : 'none';
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
for (const button of navButtons) {
|
|
1123
|
+
button.addEventListener('click', () => {
|
|
1124
|
+
const target = button.getAttribute('data-target');
|
|
1125
|
+
|
|
1126
|
+
for (const view of views) {
|
|
1127
|
+
view.hidden = view.getAttribute('data-view') !== target;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
for (const item of navButtons) {
|
|
1131
|
+
item.setAttribute('aria-current', item === button ? 'page' : 'false');
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
if (search) search.value = '';
|
|
1135
|
+
applySearch();
|
|
1136
|
+
});
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
search?.addEventListener('input', applySearch);
|
|
1140
|
+
</script>
|
|
1141
|
+
<script type="module">
|
|
1142
|
+
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs';
|
|
1143
|
+
mermaid.initialize({ startOnLoad: true });
|
|
1144
|
+
</script>
|
|
1145
|
+
</body>
|
|
1146
|
+
</html>
|