@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.
@@ -0,0 +1,952 @@
1
+ {
2
+ "packageName": "@ankhorage/runtime",
3
+ "packageId": "@ankhorage/runtime",
4
+ "description": "Platform-neutral runtime contracts and helpers for Ankhorage generated apps.",
5
+ "badges": [
6
+ {
7
+ "id": "license",
8
+ "label": "license",
9
+ "value": "MIT",
10
+ "color": "2563eb"
11
+ },
12
+ {
13
+ "id": "npm",
14
+ "label": "npm",
15
+ "value": "v0.0.0",
16
+ "color": "cb3837"
17
+ },
18
+ {
19
+ "id": "runtime",
20
+ "label": "runtime",
21
+ "value": "bun",
22
+ "color": "f59e0b"
23
+ },
24
+ {
25
+ "id": "typescript",
26
+ "label": "typescript",
27
+ "value": "strict",
28
+ "color": "2563eb"
29
+ },
30
+ {
31
+ "id": "eslint",
32
+ "label": "eslint",
33
+ "value": "checked",
34
+ "color": "0a7f3f"
35
+ },
36
+ {
37
+ "id": "prettier",
38
+ "label": "prettier",
39
+ "value": "checked",
40
+ "color": "0a7f3f"
41
+ },
42
+ {
43
+ "id": "build",
44
+ "label": "build",
45
+ "value": "checked",
46
+ "color": "0a7f3f"
47
+ },
48
+ {
49
+ "id": "tests",
50
+ "label": "tests",
51
+ "value": "checked",
52
+ "color": "0a7f3f"
53
+ },
54
+ {
55
+ "id": "docs",
56
+ "label": "docs",
57
+ "value": "paradox",
58
+ "color": "0f766e"
59
+ }
60
+ ],
61
+ "usage": null,
62
+ "readmeUsage": [
63
+ {
64
+ "title": "Generic runtime boundary",
65
+ "description": "Generic runtime boundary\n\n`@ankhorage/runtime` owns platform-neutral runtime contracts for generated apps.\n\nThis first package slice is intentionally metadata-only plus public contracts so\n`ankhorage4#430` can move real runtime implementation into a stable target.",
66
+ "language": "ts",
67
+ "code": "import { createRuntimeManifest } from './index.js';\n\ncreateRuntimeManifest({\n config: {\n appId: 'demo',\n },\n});",
68
+ "sourcePath": "src/readme-usage.ts"
69
+ }
70
+ ],
71
+ "config": null,
72
+ "entrypoints": ["src/index.ts"],
73
+ "modules": [
74
+ {
75
+ "path": "paradox.config.ts",
76
+ "isEntrypoint": false,
77
+ "dependencies": [],
78
+ "exports": ["default"]
79
+ },
80
+ {
81
+ "path": "src/index.ts",
82
+ "isEntrypoint": true,
83
+ "dependencies": [],
84
+ "exports": [
85
+ "createRuntimeManifest",
86
+ "defineRuntimeAction",
87
+ "defineRuntimeAdapter",
88
+ "defineRuntimeBinding",
89
+ "listRuntimeCapabilities",
90
+ "RUNTIME_CAPABILITIES",
91
+ "RUNTIME_MANIFEST_KIND",
92
+ "RuntimeActionDescriptor",
93
+ "RuntimeAdapterDescriptor",
94
+ "RuntimeBindingDescriptor",
95
+ "RuntimeCapability",
96
+ "RuntimeConfig",
97
+ "RuntimeDiagnostic",
98
+ "RuntimeManifest",
99
+ "RuntimeManifestInput"
100
+ ]
101
+ },
102
+ {
103
+ "path": "tests/runtime.test.ts",
104
+ "isEntrypoint": false,
105
+ "dependencies": ["src/index.ts"],
106
+ "exports": []
107
+ }
108
+ ],
109
+ "exports": [
110
+ {
111
+ "name": "createRuntimeManifest",
112
+ "description": null,
113
+ "isReadme": false,
114
+ "examples": [],
115
+ "kind": "function",
116
+ "modulePath": "src/index.ts",
117
+ "sourceLocation": {
118
+ "filePath": "src/index.ts",
119
+ "line": 81,
120
+ "column": 1
121
+ },
122
+ "exportPaths": ["src/index.ts"],
123
+ "relatedSymbols": ["RuntimeManifest", "RuntimeManifestInput"],
124
+ "signatures": [
125
+ {
126
+ "label": "(input: RuntimeManifestInput) => RuntimeManifest",
127
+ "parameters": [
128
+ {
129
+ "name": "input",
130
+ "type": "RuntimeManifestInput",
131
+ "required": true,
132
+ "description": null
133
+ }
134
+ ],
135
+ "returnType": "RuntimeManifest",
136
+ "returnDescription": null
137
+ }
138
+ ],
139
+ "members": [],
140
+ "structuredRows": []
141
+ },
142
+ {
143
+ "name": "defineRuntimeAction",
144
+ "description": null,
145
+ "isReadme": false,
146
+ "examples": [],
147
+ "kind": "function",
148
+ "modulePath": "src/index.ts",
149
+ "sourceLocation": {
150
+ "filePath": "src/index.ts",
151
+ "line": 63,
152
+ "column": 1
153
+ },
154
+ "exportPaths": ["src/index.ts"],
155
+ "relatedSymbols": ["RuntimeActionDescriptor"],
156
+ "signatures": [
157
+ {
158
+ "label": "(action: RuntimeActionDescriptor<Data>) => RuntimeActionDescriptor<Data>",
159
+ "parameters": [
160
+ {
161
+ "name": "action",
162
+ "type": "RuntimeActionDescriptor<Data>",
163
+ "required": true,
164
+ "description": null
165
+ }
166
+ ],
167
+ "returnType": "RuntimeActionDescriptor<Data>",
168
+ "returnDescription": null
169
+ }
170
+ ],
171
+ "members": [],
172
+ "structuredRows": []
173
+ },
174
+ {
175
+ "name": "defineRuntimeAdapter",
176
+ "description": null,
177
+ "isReadme": false,
178
+ "examples": [],
179
+ "kind": "function",
180
+ "modulePath": "src/index.ts",
181
+ "sourceLocation": {
182
+ "filePath": "src/index.ts",
183
+ "line": 69,
184
+ "column": 1
185
+ },
186
+ "exportPaths": ["src/index.ts"],
187
+ "relatedSymbols": ["RuntimeAdapterDescriptor"],
188
+ "signatures": [
189
+ {
190
+ "label": "(adapter: RuntimeAdapterDescriptor<Options>) => RuntimeAdapterDescriptor<Options>",
191
+ "parameters": [
192
+ {
193
+ "name": "adapter",
194
+ "type": "RuntimeAdapterDescriptor<Options>",
195
+ "required": true,
196
+ "description": null
197
+ }
198
+ ],
199
+ "returnType": "RuntimeAdapterDescriptor<Options>",
200
+ "returnDescription": null
201
+ }
202
+ ],
203
+ "members": [],
204
+ "structuredRows": []
205
+ },
206
+ {
207
+ "name": "defineRuntimeBinding",
208
+ "description": null,
209
+ "isReadme": false,
210
+ "examples": [],
211
+ "kind": "function",
212
+ "modulePath": "src/index.ts",
213
+ "sourceLocation": {
214
+ "filePath": "src/index.ts",
215
+ "line": 75,
216
+ "column": 1
217
+ },
218
+ "exportPaths": ["src/index.ts"],
219
+ "relatedSymbols": ["RuntimeBindingDescriptor"],
220
+ "signatures": [
221
+ {
222
+ "label": "(binding: RuntimeBindingDescriptor<Value>) => RuntimeBindingDescriptor<Value>",
223
+ "parameters": [
224
+ {
225
+ "name": "binding",
226
+ "type": "RuntimeBindingDescriptor<Value>",
227
+ "required": true,
228
+ "description": null
229
+ }
230
+ ],
231
+ "returnType": "RuntimeBindingDescriptor<Value>",
232
+ "returnDescription": null
233
+ }
234
+ ],
235
+ "members": [],
236
+ "structuredRows": []
237
+ },
238
+ {
239
+ "name": "listRuntimeCapabilities",
240
+ "description": null,
241
+ "isReadme": false,
242
+ "examples": [],
243
+ "kind": "function",
244
+ "modulePath": "src/index.ts",
245
+ "sourceLocation": {
246
+ "filePath": "src/index.ts",
247
+ "line": 93,
248
+ "column": 1
249
+ },
250
+ "exportPaths": ["src/index.ts"],
251
+ "relatedSymbols": [],
252
+ "signatures": [
253
+ {
254
+ "label": "() => readonly (\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\")[]",
255
+ "parameters": [],
256
+ "returnType": "readonly (\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\")[]",
257
+ "returnDescription": null
258
+ }
259
+ ],
260
+ "members": [],
261
+ "structuredRows": []
262
+ },
263
+ {
264
+ "name": "RUNTIME_CAPABILITIES",
265
+ "description": null,
266
+ "isReadme": false,
267
+ "examples": [],
268
+ "kind": "value",
269
+ "modulePath": "src/index.ts",
270
+ "sourceLocation": {
271
+ "filePath": "src/index.ts",
272
+ "line": 1,
273
+ "column": 14
274
+ },
275
+ "exportPaths": ["src/index.ts"],
276
+ "relatedSymbols": [],
277
+ "signatures": [],
278
+ "members": [],
279
+ "structuredRows": []
280
+ },
281
+ {
282
+ "name": "RUNTIME_MANIFEST_KIND",
283
+ "description": null,
284
+ "isReadme": false,
285
+ "examples": [],
286
+ "kind": "value",
287
+ "modulePath": "src/index.ts",
288
+ "sourceLocation": {
289
+ "filePath": "src/index.ts",
290
+ "line": 8,
291
+ "column": 14
292
+ },
293
+ "exportPaths": ["src/index.ts"],
294
+ "relatedSymbols": [],
295
+ "signatures": [],
296
+ "members": [],
297
+ "structuredRows": []
298
+ },
299
+ {
300
+ "name": "RuntimeActionDescriptor",
301
+ "description": null,
302
+ "isReadme": false,
303
+ "examples": [],
304
+ "kind": "type",
305
+ "modulePath": "src/index.ts",
306
+ "sourceLocation": {
307
+ "filePath": "src/index.ts",
308
+ "line": 24,
309
+ "column": 1
310
+ },
311
+ "exportPaths": ["src/index.ts"],
312
+ "relatedSymbols": [],
313
+ "signatures": [],
314
+ "members": [
315
+ {
316
+ "name": "capability",
317
+ "kind": "property",
318
+ "type": "\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\" | undefined",
319
+ "required": false,
320
+ "description": null
321
+ },
322
+ {
323
+ "name": "data",
324
+ "kind": "property",
325
+ "type": "Data | undefined",
326
+ "required": false,
327
+ "description": null
328
+ },
329
+ {
330
+ "name": "description",
331
+ "kind": "property",
332
+ "type": "string | undefined",
333
+ "required": false,
334
+ "description": null
335
+ },
336
+ {
337
+ "name": "id",
338
+ "kind": "property",
339
+ "type": "string",
340
+ "required": true,
341
+ "description": null
342
+ }
343
+ ],
344
+ "structuredRows": []
345
+ },
346
+ {
347
+ "name": "RuntimeAdapterDescriptor",
348
+ "description": null,
349
+ "isReadme": false,
350
+ "examples": [],
351
+ "kind": "type",
352
+ "modulePath": "src/index.ts",
353
+ "sourceLocation": {
354
+ "filePath": "src/index.ts",
355
+ "line": 39,
356
+ "column": 1
357
+ },
358
+ "exportPaths": ["src/index.ts"],
359
+ "relatedSymbols": [],
360
+ "signatures": [],
361
+ "members": [
362
+ {
363
+ "name": "id",
364
+ "kind": "property",
365
+ "type": "string",
366
+ "required": true,
367
+ "description": null
368
+ },
369
+ {
370
+ "name": "kind",
371
+ "kind": "property",
372
+ "type": "string",
373
+ "required": true,
374
+ "description": null
375
+ },
376
+ {
377
+ "name": "options",
378
+ "kind": "property",
379
+ "type": "Options | undefined",
380
+ "required": false,
381
+ "description": null
382
+ }
383
+ ],
384
+ "structuredRows": []
385
+ },
386
+ {
387
+ "name": "RuntimeBindingDescriptor",
388
+ "description": null,
389
+ "isReadme": false,
390
+ "examples": [],
391
+ "kind": "type",
392
+ "modulePath": "src/index.ts",
393
+ "sourceLocation": {
394
+ "filePath": "src/index.ts",
395
+ "line": 31,
396
+ "column": 1
397
+ },
398
+ "exportPaths": ["src/index.ts"],
399
+ "relatedSymbols": [],
400
+ "signatures": [],
401
+ "members": [
402
+ {
403
+ "name": "actionId",
404
+ "kind": "property",
405
+ "type": "string | undefined",
406
+ "required": false,
407
+ "description": null
408
+ },
409
+ {
410
+ "name": "id",
411
+ "kind": "property",
412
+ "type": "string",
413
+ "required": true,
414
+ "description": null
415
+ },
416
+ {
417
+ "name": "source",
418
+ "kind": "property",
419
+ "type": "string",
420
+ "required": true,
421
+ "description": null
422
+ },
423
+ {
424
+ "name": "target",
425
+ "kind": "property",
426
+ "type": "string",
427
+ "required": true,
428
+ "description": null
429
+ },
430
+ {
431
+ "name": "value",
432
+ "kind": "property",
433
+ "type": "Value | undefined",
434
+ "required": false,
435
+ "description": null
436
+ }
437
+ ],
438
+ "structuredRows": []
439
+ },
440
+ {
441
+ "name": "RuntimeCapability",
442
+ "description": null,
443
+ "isReadme": false,
444
+ "examples": [],
445
+ "kind": "unknown",
446
+ "modulePath": "src/index.ts",
447
+ "sourceLocation": {
448
+ "filePath": "src/index.ts",
449
+ "line": 10,
450
+ "column": 1
451
+ },
452
+ "exportPaths": ["src/index.ts"],
453
+ "relatedSymbols": [],
454
+ "signatures": [],
455
+ "members": [],
456
+ "structuredRows": []
457
+ },
458
+ {
459
+ "name": "RuntimeConfig",
460
+ "description": null,
461
+ "isReadme": false,
462
+ "examples": [],
463
+ "kind": "type",
464
+ "modulePath": "src/index.ts",
465
+ "sourceLocation": {
466
+ "filePath": "src/index.ts",
467
+ "line": 18,
468
+ "column": 1
469
+ },
470
+ "exportPaths": ["src/index.ts"],
471
+ "relatedSymbols": [],
472
+ "signatures": [],
473
+ "members": [
474
+ {
475
+ "name": "appId",
476
+ "kind": "property",
477
+ "type": "string",
478
+ "required": true,
479
+ "description": null
480
+ },
481
+ {
482
+ "name": "environment",
483
+ "kind": "property",
484
+ "type": "string | undefined",
485
+ "required": false,
486
+ "description": null
487
+ },
488
+ {
489
+ "name": "values",
490
+ "kind": "property",
491
+ "type": "Readonly<Record<string, unknown>> | undefined",
492
+ "required": false,
493
+ "description": null
494
+ }
495
+ ],
496
+ "structuredRows": []
497
+ },
498
+ {
499
+ "name": "RuntimeDiagnostic",
500
+ "description": null,
501
+ "isReadme": false,
502
+ "examples": [],
503
+ "kind": "type",
504
+ "modulePath": "src/index.ts",
505
+ "sourceLocation": {
506
+ "filePath": "src/index.ts",
507
+ "line": 12,
508
+ "column": 1
509
+ },
510
+ "exportPaths": ["src/index.ts"],
511
+ "relatedSymbols": [],
512
+ "signatures": [],
513
+ "members": [
514
+ {
515
+ "name": "code",
516
+ "kind": "property",
517
+ "type": "string",
518
+ "required": true,
519
+ "description": null
520
+ },
521
+ {
522
+ "name": "message",
523
+ "kind": "property",
524
+ "type": "string",
525
+ "required": true,
526
+ "description": null
527
+ },
528
+ {
529
+ "name": "severity",
530
+ "kind": "property",
531
+ "type": "\"error\" | \"info\" | \"warning\"",
532
+ "required": true,
533
+ "description": null
534
+ }
535
+ ],
536
+ "structuredRows": []
537
+ },
538
+ {
539
+ "name": "RuntimeManifest",
540
+ "description": null,
541
+ "isReadme": false,
542
+ "examples": [],
543
+ "kind": "type",
544
+ "modulePath": "src/index.ts",
545
+ "sourceLocation": {
546
+ "filePath": "src/index.ts",
547
+ "line": 45,
548
+ "column": 1
549
+ },
550
+ "exportPaths": ["src/index.ts"],
551
+ "relatedSymbols": [
552
+ "RuntimeActionDescriptor",
553
+ "RuntimeAdapterDescriptor",
554
+ "RuntimeBindingDescriptor",
555
+ "RuntimeConfig",
556
+ "RuntimeDiagnostic"
557
+ ],
558
+ "signatures": [],
559
+ "members": [
560
+ {
561
+ "name": "actions",
562
+ "kind": "property",
563
+ "type": "readonly RuntimeActionDescriptor<unknown>[]",
564
+ "required": true,
565
+ "description": null
566
+ },
567
+ {
568
+ "name": "adapters",
569
+ "kind": "property",
570
+ "type": "readonly RuntimeAdapterDescriptor<unknown>[]",
571
+ "required": true,
572
+ "description": null
573
+ },
574
+ {
575
+ "name": "bindings",
576
+ "kind": "property",
577
+ "type": "readonly RuntimeBindingDescriptor<unknown>[]",
578
+ "required": true,
579
+ "description": null
580
+ },
581
+ {
582
+ "name": "config",
583
+ "kind": "property",
584
+ "type": "RuntimeConfig",
585
+ "required": true,
586
+ "description": null
587
+ },
588
+ {
589
+ "name": "diagnostics",
590
+ "kind": "property",
591
+ "type": "readonly RuntimeDiagnostic[]",
592
+ "required": true,
593
+ "description": null
594
+ },
595
+ {
596
+ "name": "kind",
597
+ "kind": "property",
598
+ "type": "\"ankhorage-runtime-manifest\"",
599
+ "required": true,
600
+ "description": null
601
+ },
602
+ {
603
+ "name": "version",
604
+ "kind": "property",
605
+ "type": "1",
606
+ "required": true,
607
+ "description": null
608
+ }
609
+ ],
610
+ "structuredRows": []
611
+ },
612
+ {
613
+ "name": "RuntimeManifestInput",
614
+ "description": null,
615
+ "isReadme": false,
616
+ "examples": [],
617
+ "kind": "type",
618
+ "modulePath": "src/index.ts",
619
+ "sourceLocation": {
620
+ "filePath": "src/index.ts",
621
+ "line": 55,
622
+ "column": 1
623
+ },
624
+ "exportPaths": ["src/index.ts"],
625
+ "relatedSymbols": [
626
+ "RuntimeActionDescriptor",
627
+ "RuntimeAdapterDescriptor",
628
+ "RuntimeBindingDescriptor",
629
+ "RuntimeConfig",
630
+ "RuntimeDiagnostic"
631
+ ],
632
+ "signatures": [],
633
+ "members": [
634
+ {
635
+ "name": "actions",
636
+ "kind": "property",
637
+ "type": "readonly RuntimeActionDescriptor<unknown>[] | undefined",
638
+ "required": false,
639
+ "description": null
640
+ },
641
+ {
642
+ "name": "adapters",
643
+ "kind": "property",
644
+ "type": "readonly RuntimeAdapterDescriptor<unknown>[] | undefined",
645
+ "required": false,
646
+ "description": null
647
+ },
648
+ {
649
+ "name": "bindings",
650
+ "kind": "property",
651
+ "type": "readonly RuntimeBindingDescriptor<unknown>[] | undefined",
652
+ "required": false,
653
+ "description": null
654
+ },
655
+ {
656
+ "name": "config",
657
+ "kind": "property",
658
+ "type": "RuntimeConfig",
659
+ "required": true,
660
+ "description": null
661
+ },
662
+ {
663
+ "name": "diagnostics",
664
+ "kind": "property",
665
+ "type": "readonly RuntimeDiagnostic[] | undefined",
666
+ "required": false,
667
+ "description": null
668
+ }
669
+ ],
670
+ "structuredRows": []
671
+ }
672
+ ],
673
+ "components": [],
674
+ "sourceFunctions": [
675
+ {
676
+ "name": "defineRuntimeAction",
677
+ "description": null,
678
+ "sourceLocation": {
679
+ "filePath": "src/index.ts",
680
+ "line": 63,
681
+ "column": 1
682
+ }
683
+ },
684
+ {
685
+ "name": "defineRuntimeAdapter",
686
+ "description": null,
687
+ "sourceLocation": {
688
+ "filePath": "src/index.ts",
689
+ "line": 69,
690
+ "column": 1
691
+ }
692
+ },
693
+ {
694
+ "name": "defineRuntimeBinding",
695
+ "description": null,
696
+ "sourceLocation": {
697
+ "filePath": "src/index.ts",
698
+ "line": 75,
699
+ "column": 1
700
+ }
701
+ },
702
+ {
703
+ "name": "createRuntimeManifest",
704
+ "description": null,
705
+ "sourceLocation": {
706
+ "filePath": "src/index.ts",
707
+ "line": 81,
708
+ "column": 1
709
+ }
710
+ },
711
+ {
712
+ "name": "listRuntimeCapabilities",
713
+ "description": null,
714
+ "sourceLocation": {
715
+ "filePath": "src/index.ts",
716
+ "line": 93,
717
+ "column": 1
718
+ }
719
+ }
720
+ ],
721
+ "sequenceScenarios": [
722
+ {
723
+ "kind": "export",
724
+ "name": "createRuntimeManifest",
725
+ "sourcePath": "src/index.ts",
726
+ "symbolName": "createRuntimeManifest",
727
+ "description": null,
728
+ "isReadme": false
729
+ },
730
+ {
731
+ "kind": "export",
732
+ "name": "defineRuntimeAction",
733
+ "sourcePath": "src/index.ts",
734
+ "symbolName": "defineRuntimeAction",
735
+ "description": null,
736
+ "isReadme": false
737
+ },
738
+ {
739
+ "kind": "export",
740
+ "name": "defineRuntimeAdapter",
741
+ "sourcePath": "src/index.ts",
742
+ "symbolName": "defineRuntimeAdapter",
743
+ "description": null,
744
+ "isReadme": false
745
+ },
746
+ {
747
+ "kind": "export",
748
+ "name": "defineRuntimeBinding",
749
+ "sourcePath": "src/index.ts",
750
+ "symbolName": "defineRuntimeBinding",
751
+ "description": null,
752
+ "isReadme": false
753
+ },
754
+ {
755
+ "kind": "export",
756
+ "name": "listRuntimeCapabilities",
757
+ "sourcePath": "src/index.ts",
758
+ "symbolName": "listRuntimeCapabilities",
759
+ "description": null,
760
+ "isReadme": false
761
+ }
762
+ ],
763
+ "graphs": {
764
+ "imports": [
765
+ {
766
+ "fromPath": "src/readme-usage.ts",
767
+ "toPath": "src/index.ts",
768
+ "sourcePath": "src/readme-usage.ts"
769
+ },
770
+ {
771
+ "fromPath": "tests/runtime.test.ts",
772
+ "toPath": "src/index.ts",
773
+ "sourcePath": "tests/runtime.test.ts"
774
+ }
775
+ ],
776
+ "calls": [
777
+ {
778
+ "fromSymbol": "paradox.config.ts",
779
+ "toSymbol": "defineParadoxConfig",
780
+ "callExpression": "defineParadoxConfig",
781
+ "sourcePath": "paradox.config.ts"
782
+ },
783
+ {
784
+ "fromSymbol": "src/readme-usage.ts",
785
+ "toSymbol": "createRuntimeManifest",
786
+ "callExpression": "createRuntimeManifest",
787
+ "sourcePath": "src/readme-usage.ts"
788
+ },
789
+ {
790
+ "fromSymbol": "tests/runtime.test.ts",
791
+ "toSymbol": "describe",
792
+ "callExpression": "describe",
793
+ "sourcePath": "tests/runtime.test.ts"
794
+ },
795
+ {
796
+ "fromSymbol": "tests/runtime.test.ts",
797
+ "toSymbol": "it",
798
+ "callExpression": "it",
799
+ "sourcePath": "tests/runtime.test.ts"
800
+ },
801
+ {
802
+ "fromSymbol": "tests/runtime.test.ts",
803
+ "toSymbol": "expect",
804
+ "callExpression": "expect",
805
+ "sourcePath": "tests/runtime.test.ts"
806
+ },
807
+ {
808
+ "fromSymbol": "tests/runtime.test.ts",
809
+ "toSymbol": "listRuntimeCapabilities",
810
+ "callExpression": "listRuntimeCapabilities",
811
+ "sourcePath": "tests/runtime.test.ts"
812
+ },
813
+ {
814
+ "fromSymbol": "tests/runtime.test.ts",
815
+ "toSymbol": "defineRuntimeAction",
816
+ "callExpression": "defineRuntimeAction",
817
+ "sourcePath": "tests/runtime.test.ts"
818
+ },
819
+ {
820
+ "fromSymbol": "tests/runtime.test.ts",
821
+ "toSymbol": "defineRuntimeBinding",
822
+ "callExpression": "defineRuntimeBinding",
823
+ "sourcePath": "tests/runtime.test.ts"
824
+ },
825
+ {
826
+ "fromSymbol": "tests/runtime.test.ts",
827
+ "toSymbol": "defineRuntimeAdapter",
828
+ "callExpression": "defineRuntimeAdapter",
829
+ "sourcePath": "tests/runtime.test.ts"
830
+ },
831
+ {
832
+ "fromSymbol": "tests/runtime.test.ts",
833
+ "toSymbol": "createRuntimeManifest",
834
+ "callExpression": "createRuntimeManifest",
835
+ "sourcePath": "tests/runtime.test.ts"
836
+ }
837
+ ],
838
+ "typeReferences": [
839
+ {
840
+ "fromSymbol": "defineRuntimeAction",
841
+ "toType": "Data",
842
+ "sourcePath": "src/index.ts"
843
+ },
844
+ {
845
+ "fromSymbol": "defineRuntimeAction",
846
+ "toType": "RuntimeActionDescriptor",
847
+ "sourcePath": "src/index.ts"
848
+ },
849
+ {
850
+ "fromSymbol": "defineRuntimeAdapter",
851
+ "toType": "Options",
852
+ "sourcePath": "src/index.ts"
853
+ },
854
+ {
855
+ "fromSymbol": "defineRuntimeAdapter",
856
+ "toType": "RuntimeAdapterDescriptor",
857
+ "sourcePath": "src/index.ts"
858
+ },
859
+ {
860
+ "fromSymbol": "defineRuntimeBinding",
861
+ "toType": "RuntimeBindingDescriptor",
862
+ "sourcePath": "src/index.ts"
863
+ },
864
+ {
865
+ "fromSymbol": "defineRuntimeBinding",
866
+ "toType": "Value",
867
+ "sourcePath": "src/index.ts"
868
+ },
869
+ {
870
+ "fromSymbol": "createRuntimeManifest",
871
+ "toType": "RuntimeManifest",
872
+ "sourcePath": "src/index.ts"
873
+ },
874
+ {
875
+ "fromSymbol": "createRuntimeManifest",
876
+ "toType": "RuntimeManifestInput",
877
+ "sourcePath": "src/index.ts"
878
+ },
879
+ {
880
+ "fromSymbol": "RuntimeConfig",
881
+ "toType": "Readonly",
882
+ "sourcePath": "src/index.ts"
883
+ },
884
+ {
885
+ "fromSymbol": "RuntimeActionDescriptor",
886
+ "toType": "Data",
887
+ "sourcePath": "src/index.ts"
888
+ },
889
+ {
890
+ "fromSymbol": "RuntimeBindingDescriptor",
891
+ "toType": "Value",
892
+ "sourcePath": "src/index.ts"
893
+ },
894
+ {
895
+ "fromSymbol": "RuntimeAdapterDescriptor",
896
+ "toType": "Options",
897
+ "sourcePath": "src/index.ts"
898
+ },
899
+ {
900
+ "fromSymbol": "RuntimeManifest",
901
+ "toType": "RuntimeActionDescriptor",
902
+ "sourcePath": "src/index.ts"
903
+ },
904
+ {
905
+ "fromSymbol": "RuntimeManifest",
906
+ "toType": "RuntimeAdapterDescriptor",
907
+ "sourcePath": "src/index.ts"
908
+ },
909
+ {
910
+ "fromSymbol": "RuntimeManifest",
911
+ "toType": "RuntimeBindingDescriptor",
912
+ "sourcePath": "src/index.ts"
913
+ },
914
+ {
915
+ "fromSymbol": "RuntimeManifest",
916
+ "toType": "RuntimeConfig",
917
+ "sourcePath": "src/index.ts"
918
+ },
919
+ {
920
+ "fromSymbol": "RuntimeManifest",
921
+ "toType": "RuntimeDiagnostic",
922
+ "sourcePath": "src/index.ts"
923
+ },
924
+ {
925
+ "fromSymbol": "RuntimeManifestInput",
926
+ "toType": "RuntimeActionDescriptor",
927
+ "sourcePath": "src/index.ts"
928
+ },
929
+ {
930
+ "fromSymbol": "RuntimeManifestInput",
931
+ "toType": "RuntimeAdapterDescriptor",
932
+ "sourcePath": "src/index.ts"
933
+ },
934
+ {
935
+ "fromSymbol": "RuntimeManifestInput",
936
+ "toType": "RuntimeBindingDescriptor",
937
+ "sourcePath": "src/index.ts"
938
+ },
939
+ {
940
+ "fromSymbol": "RuntimeManifestInput",
941
+ "toType": "RuntimeConfig",
942
+ "sourcePath": "src/index.ts"
943
+ },
944
+ {
945
+ "fromSymbol": "RuntimeManifestInput",
946
+ "toType": "RuntimeDiagnostic",
947
+ "sourcePath": "src/index.ts"
948
+ }
949
+ ],
950
+ "componentComposition": []
951
+ }
952
+ }