@ankhorage/runtime 0.3.0 → 1.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.
Files changed (58) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +2 -2
  3. package/dist/RuntimeRenderer.d.ts +4 -1
  4. package/dist/RuntimeRenderer.d.ts.map +1 -1
  5. package/dist/RuntimeRenderer.js +32 -13
  6. package/dist/RuntimeRenderer.js.map +1 -1
  7. package/dist/RuntimeRendererConfig.d.ts +4 -1
  8. package/dist/RuntimeRendererConfig.d.ts.map +1 -1
  9. package/dist/RuntimeRendererConfig.js +2 -0
  10. package/dist/RuntimeRendererConfig.js.map +1 -1
  11. package/dist/RuntimeScreen.d.ts.map +1 -1
  12. package/dist/RuntimeScreen.js +5 -43
  13. package/dist/RuntimeScreen.js.map +1 -1
  14. package/dist/index.d.ts +2 -4
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +1 -3
  17. package/dist/index.js.map +1 -1
  18. package/dist/readme-usage.js +1 -1
  19. package/dist/readme-usage.js.map +1 -1
  20. package/dist/runtimeDataSourceOperations.d.ts +3 -1
  21. package/dist/runtimeDataSourceOperations.d.ts.map +1 -1
  22. package/dist/runtimeDataSourceOperations.js +31 -26
  23. package/dist/runtimeDataSourceOperations.js.map +1 -1
  24. package/dist/runtimeDatabaseOperationExecutor.d.ts +9 -0
  25. package/dist/runtimeDatabaseOperationExecutor.d.ts.map +1 -0
  26. package/dist/runtimeDatabaseOperationExecutor.js +228 -0
  27. package/dist/runtimeDatabaseOperationExecutor.js.map +1 -0
  28. package/dist/runtimeMedia.d.ts +13 -0
  29. package/dist/runtimeMedia.d.ts.map +1 -0
  30. package/dist/runtimeMedia.js +80 -0
  31. package/dist/runtimeMedia.js.map +1 -0
  32. package/dist/runtimeMediaCache.d.ts +8 -0
  33. package/dist/runtimeMediaCache.d.ts.map +1 -0
  34. package/dist/runtimeMediaCache.js +14 -0
  35. package/dist/runtimeMediaCache.js.map +1 -0
  36. package/dist/runtimeScreenLoaders.d.ts +1 -2
  37. package/dist/runtimeScreenLoaders.d.ts.map +1 -1
  38. package/dist/runtimeScreenLoaders.js +1 -4
  39. package/dist/runtimeScreenLoaders.js.map +1 -1
  40. package/dist/useRuntimeMediaProps.d.ts +9 -0
  41. package/dist/useRuntimeMediaProps.d.ts.map +1 -0
  42. package/dist/useRuntimeMediaProps.js +61 -0
  43. package/dist/useRuntimeMediaProps.js.map +1 -0
  44. package/package.json +5 -4
  45. package/paradox/badges/npm.svg +3 -3
  46. package/paradox/components.md +5 -3
  47. package/paradox/diagrams/architecture-overview.mmd +23 -9
  48. package/paradox/diagrams/export-graph.mmd +14 -47
  49. package/paradox/diagrams/module-relationships.mmd +17 -7
  50. package/paradox/diagrams/sequences/runtime-screen.mmd +0 -3
  51. package/paradox/exports.json +136 -496
  52. package/paradox/exports.md +136 -278
  53. package/paradox/index.html +991 -1119
  54. package/paradox/paradox.json +1405 -1254
  55. package/dist/runtimeApiLoaders.d.ts +0 -35
  56. package/dist/runtimeApiLoaders.d.ts.map +0 -1
  57. package/dist/runtimeApiLoaders.js +0 -218
  58. package/dist/runtimeApiLoaders.js.map +0 -1
@@ -12,7 +12,7 @@
12
12
  {
13
13
  "id": "npm",
14
14
  "label": "npm",
15
- "value": "v0.2.4",
15
+ "value": "v1.0.0",
16
16
  "color": "cb3837"
17
17
  },
18
18
  {
@@ -59,15 +59,18 @@
59
59
  }
60
60
  ],
61
61
  "usage": null,
62
+ "readmeUsageDescription": null,
62
63
  "readmeUsage": [
63
64
  {
64
65
  "title": "Framework-neutral runtime boundary",
65
66
  "description": "Framework-neutral runtime boundary\n\n`@ankhorage/runtime` owns platform-neutral runtime renderer contracts for generated apps.\n\nHost apps keep router, theme, and other framework-specific behavior outside this package and\ninject it at the runtime boundary.",
66
67
  "language": "ts",
67
- "code": "import { createRuntimeManifest } from './index.js';\n\ncreateRuntimeManifest({\n config: {\n appId: 'demo',\n },\n});",
68
+ "code": "import { createRuntimeManifest } from './runtimeManifest.js';\n\ncreateRuntimeManifest({\n config: {\n appId: 'demo',\n },\n});",
68
69
  "sourcePath": "src/readme-usage.ts"
69
70
  }
70
71
  ],
72
+ "readmeCli": null,
73
+ "readmeConfig": null,
71
74
  "config": null,
72
75
  "entrypoints": ["src/index.ts"],
73
76
  "modules": [
@@ -99,21 +102,14 @@
99
102
  "createRuntimeActionRegistry",
100
103
  "createRuntimeBindingOperationKey",
101
104
  "createRuntimeDataSourceOperationExecutor",
102
- "createRuntimeManifest",
103
105
  "createRuntimeMemoryStateAdapter",
104
106
  "createRuntimeScreenLoaderRequestKey",
105
- "defineRuntimeAction",
106
- "defineRuntimeAdapter",
107
- "defineRuntimeBinding",
108
107
  "dispatchRuntimeComponentEvent",
109
108
  "dispatchRuntimeComponentEventWithReporting",
110
109
  "executeDbPersistAction",
111
- "executeRuntimeApiLoaders",
112
110
  "executeRuntimeScreenOperationLoaders",
113
- "listRuntimeCapabilities",
114
111
  "ManifestContext",
115
112
  "ManifestProvider",
116
- "materializeRuntimeApiLoaderState",
117
113
  "mergeRuntimeRendererConfig",
118
114
  "resolveBindingInputMap",
119
115
  "resolveDbPersistInput",
@@ -123,10 +119,7 @@
123
119
  "resolveRuntimeBindingsAsync",
124
120
  "resolveRuntimeBindingValue",
125
121
  "resolveRuntimeBindingValueSync",
126
- "resolveScreenApiLoaders",
127
122
  "resolveScreenOperationLoaders",
128
- "RUNTIME_CAPABILITIES",
129
- "RUNTIME_MANIFEST_KIND",
130
123
  "RuntimeAction",
131
124
  "RuntimeActionDescriptor",
132
125
  "RuntimeActionExecutor",
@@ -137,11 +130,6 @@
137
130
  "RuntimeActionResolutionArgs",
138
131
  "RuntimeActionResolutionScope",
139
132
  "RuntimeAdapterDescriptor",
140
- "RuntimeApiLoaderDefinition",
141
- "RuntimeApiLoaderDiagnostic",
142
- "RuntimeApiLoaderExecutionResult",
143
- "RuntimeApiLoaderMaterializationResult",
144
- "RuntimeApiLoaderMode",
145
133
  "RuntimeBindingDescriptor",
146
134
  "RuntimeBindingOperationExecutionArgs",
147
135
  "RuntimeBindingOperationExecutionResult",
@@ -164,6 +152,8 @@
164
152
  "RuntimeManifest",
165
153
  "RuntimeManifestConfig",
166
154
  "RuntimeManifestInput",
155
+ "RuntimeMediaAssetResolver",
156
+ "RuntimeMediaAssetResolverArgs",
167
157
  "RuntimeMemoryStateAdapterOptions",
168
158
  "RuntimeNodePropsResolver",
169
159
  "RuntimeRenderer",
@@ -171,6 +161,7 @@
171
161
  "RuntimeRendererConfigProvider",
172
162
  "RuntimeRendererProps",
173
163
  "RuntimeRendererWrapArgs",
164
+ "RuntimeResolvedMediaValue",
174
165
  "RuntimeResolveNodePropsArgs",
175
166
  "RuntimeScreen",
176
167
  "RuntimeScreenOperationLoaderExecutionResult",
@@ -180,7 +171,6 @@
180
171
  "useManifest",
181
172
  "useManifestContext",
182
173
  "useOptionalManifestContext",
183
- "useRuntimeApiStateLoaders",
184
174
  "useRuntimeRendererConfig",
185
175
  "useRuntimeScreenOperationLoaders",
186
176
  "validateRuntimeBindingOperationRef",
@@ -251,31 +241,6 @@
251
241
  "wrapRuntimeEventProps"
252
242
  ]
253
243
  },
254
- {
255
- "path": "src/runtimeApiLoaders.test.ts",
256
- "isEntrypoint": false,
257
- "dependencies": [
258
- "src/runtimeApiLoaders.ts",
259
- "src/runtimeBindings.ts",
260
- "src/runtimeStateAdapter.ts"
261
- ],
262
- "exports": []
263
- },
264
- {
265
- "path": "src/runtimeApiLoaders.ts",
266
- "isEntrypoint": false,
267
- "dependencies": ["src/runtimeStateAdapter.ts"],
268
- "exports": [
269
- "executeRuntimeApiLoaders",
270
- "materializeRuntimeApiLoaderState",
271
- "RuntimeApiLoaderDefinition",
272
- "RuntimeApiLoaderDiagnostic",
273
- "RuntimeApiLoaderExecutionResult",
274
- "RuntimeApiLoaderMaterializationResult",
275
- "RuntimeApiLoaderMode",
276
- "useRuntimeApiStateLoaders"
277
- ]
278
- },
279
244
  {
280
245
  "path": "src/runtimeBindings.test.ts",
281
246
  "isEntrypoint": false,
@@ -309,6 +274,12 @@
309
274
  "validateRuntimeBindingOperationRef"
310
275
  ]
311
276
  },
277
+ {
278
+ "path": "src/runtimeDatabaseOperationExecutor.ts",
279
+ "isEntrypoint": false,
280
+ "dependencies": ["src/runtimeBindings.ts"],
281
+ "exports": ["executeRuntimeDatabaseOperation"]
282
+ },
312
283
  {
313
284
  "path": "src/runtimeDataSourceOperations.test.ts",
314
285
  "isEntrypoint": false,
@@ -318,7 +289,7 @@
318
289
  {
319
290
  "path": "src/runtimeDataSourceOperations.ts",
320
291
  "isEntrypoint": false,
321
- "dependencies": ["src/runtimeBindings.ts"],
292
+ "dependencies": ["src/runtimeBindings.ts", "src/runtimeDatabaseOperationExecutor.ts"],
322
293
  "exports": [
323
294
  "createRuntimeDataSourceOperationExecutor",
324
295
  "RuntimeDataSourceOperationExecutorOptions"
@@ -378,6 +349,40 @@
378
349
  "RuntimeManifestInput"
379
350
  ]
380
351
  },
352
+ {
353
+ "path": "src/runtimeMedia.test.ts",
354
+ "isEntrypoint": false,
355
+ "dependencies": ["src/runtimeMedia.ts"],
356
+ "exports": []
357
+ },
358
+ {
359
+ "path": "src/runtimeMedia.ts",
360
+ "isEntrypoint": false,
361
+ "dependencies": [],
362
+ "exports": [
363
+ "collectRuntimeMediaReferenceIds",
364
+ "createRuntimeMediaResolutionCache",
365
+ "createSyncRuntimeMediaResolutionMap",
366
+ "replaceRuntimeMediaReferences",
367
+ "resolveRuntimeMediaAsset",
368
+ "RuntimeMediaAssetResolver",
369
+ "RuntimeMediaAssetResolverArgs",
370
+ "RuntimeMediaResolutionCache",
371
+ "RuntimeResolvedMediaValue"
372
+ ]
373
+ },
374
+ {
375
+ "path": "src/runtimeMediaCache.tsx",
376
+ "isEntrypoint": false,
377
+ "dependencies": ["src/runtimeMedia.ts"],
378
+ "exports": ["RuntimeMediaResolutionCacheProvider", "useRuntimeMediaResolutionCache"]
379
+ },
380
+ {
381
+ "path": "src/runtimeMediaConfig.test.ts",
382
+ "isEntrypoint": false,
383
+ "dependencies": ["src/RuntimeRendererConfig.tsx"],
384
+ "exports": []
385
+ },
381
386
  {
382
387
  "path": "src/runtimeNodeProps.test.ts",
383
388
  "isEntrypoint": false,
@@ -412,11 +417,14 @@
412
417
  "src/runtimeBindings.ts",
413
418
  "src/runtimeDbPersist.ts",
414
419
  "src/runtimeEventExecution.ts",
420
+ "src/runtimeMedia.ts",
421
+ "src/runtimeMediaCache.tsx",
415
422
  "src/runtimeNodeProps.ts",
416
423
  "src/RuntimeRendererConfig.tsx",
417
424
  "src/runtimeRepeat.ts",
418
425
  "src/runtimeRepeatDiagnostics.ts",
419
- "src/runtimeRepeatEmptyState.ts"
426
+ "src/runtimeRepeatEmptyState.ts",
427
+ "src/useRuntimeMediaProps.ts"
420
428
  ],
421
429
  "exports": ["RuntimeRenderer", "RuntimeRendererProps"]
422
430
  },
@@ -429,7 +437,7 @@
429
437
  {
430
438
  "path": "src/RuntimeRendererConfig.tsx",
431
439
  "isEntrypoint": false,
432
- "dependencies": ["src/registry.tsx", "src/runtimeBindings.ts"],
440
+ "dependencies": ["src/registry.tsx", "src/runtimeBindings.ts", "src/runtimeMedia.ts"],
433
441
  "exports": [
434
442
  "composeRuntimeNodePropsResolver",
435
443
  "composeRuntimeRendererWrapNode",
@@ -488,10 +496,10 @@
488
496
  "isEntrypoint": false,
489
497
  "dependencies": [
490
498
  "src/registry.tsx",
491
- "src/runtimeApiLoaders.ts",
492
499
  "src/RuntimeRenderer.tsx",
493
500
  "src/RuntimeRendererConfig.tsx",
494
- "src/runtimeScreenLoaders.ts"
501
+ "src/runtimeScreenLoaders.ts",
502
+ "src/runtimeStateAdapter.ts"
495
503
  ],
496
504
  "exports": ["RuntimeScreen", "RuntimeScreenProps"]
497
505
  },
@@ -519,7 +527,6 @@
519
527
  "createRuntimeScreenLoaderRequestKey",
520
528
  "createRuntimeScreenOperationLoaderLifecycle",
521
529
  "executeRuntimeScreenOperationLoaders",
522
- "resolveScreenApiLoaders",
523
530
  "resolveScreenOperationLoaders",
524
531
  "RuntimeScreenOperationLoaderExecutionResult",
525
532
  "RuntimeScreenOperationLoaderLifecycle",
@@ -543,6 +550,12 @@
543
550
  ],
544
551
  "exports": []
545
552
  },
553
+ {
554
+ "path": "src/useRuntimeMediaProps.ts",
555
+ "isEntrypoint": false,
556
+ "dependencies": ["src/runtimeMedia.ts"],
557
+ "exports": ["useRuntimeMediaProps"]
558
+ },
546
559
  {
547
560
  "path": "tests/runtime.test.ts",
548
561
  "isEntrypoint": false,
@@ -578,7 +591,7 @@
578
591
  "modulePath": "src/RuntimeRendererConfig.tsx",
579
592
  "sourceLocation": {
580
593
  "filePath": "src/RuntimeRendererConfig.tsx",
581
- "line": 88,
594
+ "line": 92,
582
595
  "column": 1
583
596
  },
584
597
  "exportPaths": ["src/index.ts"],
@@ -616,7 +629,7 @@
616
629
  "modulePath": "src/RuntimeRendererConfig.tsx",
617
630
  "sourceLocation": {
618
631
  "filePath": "src/RuntimeRendererConfig.tsx",
619
- "line": 73,
632
+ "line": 77,
620
633
  "column": 1
621
634
  },
622
635
  "exportPaths": ["src/index.ts"],
@@ -782,7 +795,7 @@
782
795
  "modulePath": "src/runtimeScreenLoaders.ts",
783
796
  "sourceLocation": {
784
797
  "filePath": "src/runtimeScreenLoaders.ts",
785
- "line": 93,
798
+ "line": 82,
786
799
  "column": 1
787
800
  },
788
801
  "exportPaths": ["src/index.ts"],
@@ -885,7 +898,7 @@
885
898
  "modulePath": "src/runtimeDataSourceOperations.ts",
886
899
  "sourceLocation": {
887
900
  "filePath": "src/runtimeDataSourceOperations.ts",
888
- "line": 12,
901
+ "line": 14,
889
902
  "column": 1
890
903
  },
891
904
  "exportPaths": ["src/index.ts"],
@@ -911,38 +924,6 @@
911
924
  "members": [],
912
925
  "structuredRows": []
913
926
  },
914
- {
915
- "name": "createRuntimeManifest",
916
- "description": null,
917
- "isReadme": false,
918
- "examples": [],
919
- "kind": "function",
920
- "modulePath": "src/runtimeManifest.ts",
921
- "sourceLocation": {
922
- "filePath": "src/runtimeManifest.ts",
923
- "line": 81,
924
- "column": 1
925
- },
926
- "exportPaths": ["src/index.ts"],
927
- "relatedSymbols": ["RuntimeManifest", "RuntimeManifestInput"],
928
- "signatures": [
929
- {
930
- "label": "(input: RuntimeManifestInput) => RuntimeManifest",
931
- "parameters": [
932
- {
933
- "name": "input",
934
- "type": "RuntimeManifestInput",
935
- "required": true,
936
- "description": null
937
- }
938
- ],
939
- "returnType": "RuntimeManifest",
940
- "returnDescription": null
941
- }
942
- ],
943
- "members": [],
944
- "structuredRows": []
945
- },
946
927
  {
947
928
  "name": "createRuntimeMemoryStateAdapter",
948
929
  "description": null,
@@ -984,7 +965,7 @@
984
965
  "modulePath": "src/runtimeScreenLoaders.ts",
985
966
  "sourceLocation": {
986
967
  "filePath": "src/runtimeScreenLoaders.ts",
987
- "line": 60,
968
+ "line": 49,
988
969
  "column": 1
989
970
  },
990
971
  "exportPaths": ["src/index.ts"],
@@ -1007,102 +988,6 @@
1007
988
  "members": [],
1008
989
  "structuredRows": []
1009
990
  },
1010
- {
1011
- "name": "defineRuntimeAction",
1012
- "description": null,
1013
- "isReadme": false,
1014
- "examples": [],
1015
- "kind": "function",
1016
- "modulePath": "src/runtimeManifest.ts",
1017
- "sourceLocation": {
1018
- "filePath": "src/runtimeManifest.ts",
1019
- "line": 63,
1020
- "column": 1
1021
- },
1022
- "exportPaths": ["src/index.ts"],
1023
- "relatedSymbols": ["RuntimeActionDescriptor"],
1024
- "signatures": [
1025
- {
1026
- "label": "(action: RuntimeActionDescriptor<Data>) => RuntimeActionDescriptor<Data>",
1027
- "parameters": [
1028
- {
1029
- "name": "action",
1030
- "type": "RuntimeActionDescriptor<Data>",
1031
- "required": true,
1032
- "description": null
1033
- }
1034
- ],
1035
- "returnType": "RuntimeActionDescriptor<Data>",
1036
- "returnDescription": null
1037
- }
1038
- ],
1039
- "members": [],
1040
- "structuredRows": []
1041
- },
1042
- {
1043
- "name": "defineRuntimeAdapter",
1044
- "description": null,
1045
- "isReadme": false,
1046
- "examples": [],
1047
- "kind": "function",
1048
- "modulePath": "src/runtimeManifest.ts",
1049
- "sourceLocation": {
1050
- "filePath": "src/runtimeManifest.ts",
1051
- "line": 69,
1052
- "column": 1
1053
- },
1054
- "exportPaths": ["src/index.ts"],
1055
- "relatedSymbols": ["RuntimeAdapterDescriptor"],
1056
- "signatures": [
1057
- {
1058
- "label": "(adapter: RuntimeAdapterDescriptor<Options>) => RuntimeAdapterDescriptor<Options>",
1059
- "parameters": [
1060
- {
1061
- "name": "adapter",
1062
- "type": "RuntimeAdapterDescriptor<Options>",
1063
- "required": true,
1064
- "description": null
1065
- }
1066
- ],
1067
- "returnType": "RuntimeAdapterDescriptor<Options>",
1068
- "returnDescription": null
1069
- }
1070
- ],
1071
- "members": [],
1072
- "structuredRows": []
1073
- },
1074
- {
1075
- "name": "defineRuntimeBinding",
1076
- "description": null,
1077
- "isReadme": false,
1078
- "examples": [],
1079
- "kind": "function",
1080
- "modulePath": "src/runtimeManifest.ts",
1081
- "sourceLocation": {
1082
- "filePath": "src/runtimeManifest.ts",
1083
- "line": 75,
1084
- "column": 1
1085
- },
1086
- "exportPaths": ["src/index.ts"],
1087
- "relatedSymbols": ["RuntimeBindingDescriptor"],
1088
- "signatures": [
1089
- {
1090
- "label": "(binding: RuntimeBindingDescriptor<Value>) => RuntimeBindingDescriptor<Value>",
1091
- "parameters": [
1092
- {
1093
- "name": "binding",
1094
- "type": "RuntimeBindingDescriptor<Value>",
1095
- "required": true,
1096
- "description": null
1097
- }
1098
- ],
1099
- "returnType": "RuntimeBindingDescriptor<Value>",
1100
- "returnDescription": null
1101
- }
1102
- ],
1103
- "members": [],
1104
- "structuredRows": []
1105
- },
1106
991
  {
1107
992
  "name": "dispatchRuntimeComponentEvent",
1108
993
  "description": null,
@@ -1203,38 +1088,6 @@
1203
1088
  "members": [],
1204
1089
  "structuredRows": []
1205
1090
  },
1206
- {
1207
- "name": "executeRuntimeApiLoaders",
1208
- "description": null,
1209
- "isReadme": false,
1210
- "examples": [],
1211
- "kind": "function",
1212
- "modulePath": "src/runtimeApiLoaders.ts",
1213
- "sourceLocation": {
1214
- "filePath": "src/runtimeApiLoaders.ts",
1215
- "line": 100,
1216
- "column": 1
1217
- },
1218
- "exportPaths": ["src/index.ts"],
1219
- "relatedSymbols": ["RuntimeApiLoaderDefinition", "RuntimeApiLoaderExecutionResult"],
1220
- "signatures": [
1221
- {
1222
- "label": "(args: { readonly data?: AppDataManifest; readonly loaders: readonly RuntimeApiLoaderDefinition[]; readonly stateAdapter: StateAdapter; }) => RuntimeApiLoaderExecutionResult",
1223
- "parameters": [
1224
- {
1225
- "name": "args",
1226
- "type": "{ readonly data?: AppDataManifest; readonly loaders: readonly RuntimeApiLoaderDefinition[]; readonly stateAdapter: StateAdapter; }",
1227
- "required": true,
1228
- "description": null
1229
- }
1230
- ],
1231
- "returnType": "RuntimeApiLoaderExecutionResult",
1232
- "returnDescription": null
1233
- }
1234
- ],
1235
- "members": [],
1236
- "structuredRows": []
1237
- },
1238
1091
  {
1239
1092
  "name": "executeRuntimeScreenOperationLoaders",
1240
1093
  "description": null,
@@ -1244,7 +1097,7 @@
1244
1097
  "modulePath": "src/runtimeScreenLoaders.ts",
1245
1098
  "sourceLocation": {
1246
1099
  "filePath": "src/runtimeScreenLoaders.ts",
1247
- "line": 189,
1100
+ "line": 178,
1248
1101
  "column": 1
1249
1102
  },
1250
1103
  "exportPaths": ["src/index.ts"],
@@ -1272,31 +1125,6 @@
1272
1125
  "members": [],
1273
1126
  "structuredRows": []
1274
1127
  },
1275
- {
1276
- "name": "listRuntimeCapabilities",
1277
- "description": null,
1278
- "isReadme": false,
1279
- "examples": [],
1280
- "kind": "function",
1281
- "modulePath": "src/runtimeManifest.ts",
1282
- "sourceLocation": {
1283
- "filePath": "src/runtimeManifest.ts",
1284
- "line": 93,
1285
- "column": 1
1286
- },
1287
- "exportPaths": ["src/index.ts"],
1288
- "relatedSymbols": [],
1289
- "signatures": [
1290
- {
1291
- "label": "() => readonly (\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\")[]",
1292
- "parameters": [],
1293
- "returnType": "readonly (\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\")[]",
1294
- "returnDescription": null
1295
- }
1296
- ],
1297
- "members": [],
1298
- "structuredRows": []
1299
- },
1300
1128
  {
1301
1129
  "name": "ManifestContext",
1302
1130
  "description": null,
@@ -1347,38 +1175,6 @@
1347
1175
  "members": [],
1348
1176
  "structuredRows": []
1349
1177
  },
1350
- {
1351
- "name": "materializeRuntimeApiLoaderState",
1352
- "description": null,
1353
- "isReadme": false,
1354
- "examples": [],
1355
- "kind": "function",
1356
- "modulePath": "src/runtimeApiLoaders.ts",
1357
- "sourceLocation": {
1358
- "filePath": "src/runtimeApiLoaders.ts",
1359
- "line": 40,
1360
- "column": 1
1361
- },
1362
- "exportPaths": ["src/index.ts"],
1363
- "relatedSymbols": ["RuntimeApiLoaderDefinition", "RuntimeApiLoaderMaterializationResult"],
1364
- "signatures": [
1365
- {
1366
- "label": "(args: { readonly data?: AppDataManifest; readonly loaders: readonly RuntimeApiLoaderDefinition[]; }) => RuntimeApiLoaderMaterializationResult",
1367
- "parameters": [
1368
- {
1369
- "name": "args",
1370
- "type": "{ readonly data?: AppDataManifest; readonly loaders: readonly RuntimeApiLoaderDefinition[]; }",
1371
- "required": true,
1372
- "description": null
1373
- }
1374
- ],
1375
- "returnType": "RuntimeApiLoaderMaterializationResult",
1376
- "returnDescription": null
1377
- }
1378
- ],
1379
- "members": [],
1380
- "structuredRows": []
1381
- },
1382
1178
  {
1383
1179
  "name": "mergeRuntimeRendererConfig",
1384
1180
  "description": null,
@@ -1388,7 +1184,7 @@
1388
1184
  "modulePath": "src/RuntimeRendererConfig.tsx",
1389
1185
  "sourceLocation": {
1390
1186
  "filePath": "src/RuntimeRendererConfig.tsx",
1391
- "line": 106,
1187
+ "line": 110,
1392
1188
  "column": 1
1393
1189
  },
1394
1190
  "exportPaths": ["src/index.ts"],
@@ -1722,7 +1518,7 @@
1722
1518
  "structuredRows": []
1723
1519
  },
1724
1520
  {
1725
- "name": "resolveScreenApiLoaders",
1521
+ "name": "resolveScreenOperationLoaders",
1726
1522
  "description": null,
1727
1523
  "isReadme": false,
1728
1524
  "examples": [],
@@ -1730,14 +1526,14 @@
1730
1526
  "modulePath": "src/runtimeScreenLoaders.ts",
1731
1527
  "sourceLocation": {
1732
1528
  "filePath": "src/runtimeScreenLoaders.ts",
1733
- "line": 44,
1529
+ "line": 43,
1734
1530
  "column": 1
1735
1531
  },
1736
1532
  "exportPaths": ["src/index.ts"],
1737
1533
  "relatedSymbols": [],
1738
1534
  "signatures": [
1739
1535
  {
1740
- "label": "(screen: ScreenSpec) => readonly ApiScreenDataLoaderDefinition[]",
1536
+ "label": "(screen: ScreenSpec) => readonly OperationScreenDataLoaderDefinition[]",
1741
1537
  "parameters": [
1742
1538
  {
1743
1539
  "name": "screen",
@@ -1746,7 +1542,7 @@
1746
1542
  "description": null
1747
1543
  }
1748
1544
  ],
1749
- "returnType": "readonly ApiScreenDataLoaderDefinition[]",
1545
+ "returnType": "readonly OperationScreenDataLoaderDefinition[]",
1750
1546
  "returnDescription": null
1751
1547
  }
1752
1548
  ],
@@ -1754,83 +1550,15 @@
1754
1550
  "structuredRows": []
1755
1551
  },
1756
1552
  {
1757
- "name": "resolveScreenOperationLoaders",
1553
+ "name": "RuntimeAction",
1758
1554
  "description": null,
1759
1555
  "isReadme": false,
1760
1556
  "examples": [],
1761
- "kind": "function",
1762
- "modulePath": "src/runtimeScreenLoaders.ts",
1557
+ "kind": "unknown",
1558
+ "modulePath": "src/RuntimeRendererConfig.tsx",
1763
1559
  "sourceLocation": {
1764
- "filePath": "src/runtimeScreenLoaders.ts",
1765
- "line": 52,
1766
- "column": 1
1767
- },
1768
- "exportPaths": ["src/index.ts"],
1769
- "relatedSymbols": [],
1770
- "signatures": [
1771
- {
1772
- "label": "(screen: ScreenSpec) => readonly OperationScreenDataLoaderDefinition[]",
1773
- "parameters": [
1774
- {
1775
- "name": "screen",
1776
- "type": "ScreenSpec",
1777
- "required": true,
1778
- "description": null
1779
- }
1780
- ],
1781
- "returnType": "readonly OperationScreenDataLoaderDefinition[]",
1782
- "returnDescription": null
1783
- }
1784
- ],
1785
- "members": [],
1786
- "structuredRows": []
1787
- },
1788
- {
1789
- "name": "RUNTIME_CAPABILITIES",
1790
- "description": null,
1791
- "isReadme": false,
1792
- "examples": [],
1793
- "kind": "value",
1794
- "modulePath": "src/runtimeManifest.ts",
1795
- "sourceLocation": {
1796
- "filePath": "src/runtimeManifest.ts",
1797
- "line": 1,
1798
- "column": 14
1799
- },
1800
- "exportPaths": ["src/index.ts"],
1801
- "relatedSymbols": [],
1802
- "signatures": [],
1803
- "members": [],
1804
- "structuredRows": []
1805
- },
1806
- {
1807
- "name": "RUNTIME_MANIFEST_KIND",
1808
- "description": null,
1809
- "isReadme": false,
1810
- "examples": [],
1811
- "kind": "value",
1812
- "modulePath": "src/runtimeManifest.ts",
1813
- "sourceLocation": {
1814
- "filePath": "src/runtimeManifest.ts",
1815
- "line": 8,
1816
- "column": 14
1817
- },
1818
- "exportPaths": ["src/index.ts"],
1819
- "relatedSymbols": [],
1820
- "signatures": [],
1821
- "members": [],
1822
- "structuredRows": []
1823
- },
1824
- {
1825
- "name": "RuntimeAction",
1826
- "description": null,
1827
- "isReadme": false,
1828
- "examples": [],
1829
- "kind": "unknown",
1830
- "modulePath": "src/RuntimeRendererConfig.tsx",
1831
- "sourceLocation": {
1832
- "filePath": "src/RuntimeRendererConfig.tsx",
1833
- "line": 43,
1560
+ "filePath": "src/RuntimeRendererConfig.tsx",
1561
+ "line": 45,
1834
1562
  "column": 1
1835
1563
  },
1836
1564
  "exportPaths": ["src/index.ts"],
@@ -1895,7 +1623,7 @@
1895
1623
  "modulePath": "src/RuntimeRendererConfig.tsx",
1896
1624
  "sourceLocation": {
1897
1625
  "filePath": "src/RuntimeRendererConfig.tsx",
1898
- "line": 46,
1626
+ "line": 48,
1899
1627
  "column": 1
1900
1628
  },
1901
1629
  "exportPaths": ["src/index.ts"],
@@ -1913,7 +1641,7 @@
1913
1641
  "modulePath": "src/RuntimeRendererConfig.tsx",
1914
1642
  "sourceLocation": {
1915
1643
  "filePath": "src/RuntimeRendererConfig.tsx",
1916
- "line": 44,
1644
+ "line": 46,
1917
1645
  "column": 1
1918
1646
  },
1919
1647
  "exportPaths": ["src/index.ts"],
@@ -1931,7 +1659,7 @@
1931
1659
  "modulePath": "src/RuntimeRendererConfig.tsx",
1932
1660
  "sourceLocation": {
1933
1661
  "filePath": "src/RuntimeRendererConfig.tsx",
1934
- "line": 36,
1662
+ "line": 38,
1935
1663
  "column": 1
1936
1664
  },
1937
1665
  "exportPaths": ["src/index.ts"],
@@ -1978,7 +1706,7 @@
1978
1706
  "modulePath": "src/RuntimeRendererConfig.tsx",
1979
1707
  "sourceLocation": {
1980
1708
  "filePath": "src/RuntimeRendererConfig.tsx",
1981
- "line": 45,
1709
+ "line": 47,
1982
1710
  "column": 1
1983
1711
  },
1984
1712
  "exportPaths": ["src/index.ts"],
@@ -2147,148 +1875,6 @@
2147
1875
  ],
2148
1876
  "structuredRows": []
2149
1877
  },
2150
- {
2151
- "name": "RuntimeApiLoaderDefinition",
2152
- "description": null,
2153
- "isReadme": false,
2154
- "examples": [],
2155
- "kind": "unknown",
2156
- "modulePath": "src/runtimeApiLoaders.ts",
2157
- "sourceLocation": {
2158
- "filePath": "src/runtimeApiLoaders.ts",
2159
- "line": 17,
2160
- "column": 1
2161
- },
2162
- "exportPaths": ["src/index.ts"],
2163
- "relatedSymbols": [],
2164
- "signatures": [],
2165
- "members": [],
2166
- "structuredRows": []
2167
- },
2168
- {
2169
- "name": "RuntimeApiLoaderDiagnostic",
2170
- "description": null,
2171
- "isReadme": false,
2172
- "examples": [],
2173
- "kind": "type",
2174
- "modulePath": "src/runtimeApiLoaders.ts",
2175
- "sourceLocation": {
2176
- "filePath": "src/runtimeApiLoaders.ts",
2177
- "line": 19,
2178
- "column": 1
2179
- },
2180
- "exportPaths": ["src/index.ts"],
2181
- "relatedSymbols": [],
2182
- "signatures": [],
2183
- "members": [
2184
- {
2185
- "name": "apiId",
2186
- "kind": "property",
2187
- "type": "string | undefined",
2188
- "required": false,
2189
- "description": null
2190
- },
2191
- {
2192
- "name": "code",
2193
- "kind": "property",
2194
- "type": "\"invalid-record\" | \"missing-api\" | \"missing-target-path\" | \"state-set-failed\" | \"unsupported-loader\"",
2195
- "required": true,
2196
- "description": null
2197
- },
2198
- {
2199
- "name": "message",
2200
- "kind": "property",
2201
- "type": "string",
2202
- "required": true,
2203
- "description": null
2204
- },
2205
- {
2206
- "name": "targetPath",
2207
- "kind": "property",
2208
- "type": "string | undefined",
2209
- "required": false,
2210
- "description": null
2211
- }
2212
- ],
2213
- "structuredRows": []
2214
- },
2215
- {
2216
- "name": "RuntimeApiLoaderExecutionResult",
2217
- "description": null,
2218
- "isReadme": false,
2219
- "examples": [],
2220
- "kind": "type",
2221
- "modulePath": "src/runtimeApiLoaders.ts",
2222
- "sourceLocation": {
2223
- "filePath": "src/runtimeApiLoaders.ts",
2224
- "line": 31,
2225
- "column": 1
2226
- },
2227
- "exportPaths": ["src/index.ts"],
2228
- "relatedSymbols": ["RuntimeApiLoaderDiagnostic"],
2229
- "signatures": [],
2230
- "members": [
2231
- {
2232
- "name": "diagnostics",
2233
- "kind": "property",
2234
- "type": "readonly RuntimeApiLoaderDiagnostic[]",
2235
- "required": true,
2236
- "description": null
2237
- }
2238
- ],
2239
- "structuredRows": []
2240
- },
2241
- {
2242
- "name": "RuntimeApiLoaderMaterializationResult",
2243
- "description": null,
2244
- "isReadme": false,
2245
- "examples": [],
2246
- "kind": "type",
2247
- "modulePath": "src/runtimeApiLoaders.ts",
2248
- "sourceLocation": {
2249
- "filePath": "src/runtimeApiLoaders.ts",
2250
- "line": 35,
2251
- "column": 1
2252
- },
2253
- "exportPaths": ["src/index.ts"],
2254
- "relatedSymbols": ["RuntimeApiLoaderDiagnostic"],
2255
- "signatures": [],
2256
- "members": [
2257
- {
2258
- "name": "diagnostics",
2259
- "kind": "property",
2260
- "type": "readonly RuntimeApiLoaderDiagnostic[]",
2261
- "required": true,
2262
- "description": null
2263
- },
2264
- {
2265
- "name": "state",
2266
- "kind": "property",
2267
- "type": "Readonly<Record<string, StateValue>>",
2268
- "required": true,
2269
- "description": null
2270
- }
2271
- ],
2272
- "structuredRows": []
2273
- },
2274
- {
2275
- "name": "RuntimeApiLoaderMode",
2276
- "description": null,
2277
- "isReadme": false,
2278
- "examples": [],
2279
- "kind": "unknown",
2280
- "modulePath": "src/runtimeApiLoaders.ts",
2281
- "sourceLocation": {
2282
- "filePath": "src/runtimeApiLoaders.ts",
2283
- "line": 15,
2284
- "column": 1
2285
- },
2286
- "exportPaths": ["src/index.ts"],
2287
- "relatedSymbols": [],
2288
- "signatures": [],
2289
- "members": [],
2290
- "structuredRows": []
2291
- },
2292
1878
  {
2293
1879
  "name": "RuntimeBindingDescriptor",
2294
1880
  "description": null,
@@ -2513,7 +2099,7 @@
2513
2099
  {
2514
2100
  "name": "dataBindings",
2515
2101
  "kind": "property",
2516
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2102
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2517
2103
  "required": false,
2518
2104
  "description": null
2519
2105
  },
@@ -2595,7 +2181,7 @@
2595
2181
  {
2596
2182
  "name": "dataBindings",
2597
2183
  "kind": "property",
2598
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2184
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2599
2185
  "required": false,
2600
2186
  "description": null
2601
2187
  },
@@ -2718,7 +2304,7 @@
2718
2304
  {
2719
2305
  "name": "dataBindings",
2720
2306
  "kind": "property",
2721
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2307
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2722
2308
  "required": false,
2723
2309
  "description": null
2724
2310
  },
@@ -2797,7 +2383,7 @@
2797
2383
  "modulePath": "src/runtimeDataSourceOperations.ts",
2798
2384
  "sourceLocation": {
2799
2385
  "filePath": "src/runtimeDataSourceOperations.ts",
2800
- "line": 7,
2386
+ "line": 8,
2801
2387
  "column": 1
2802
2388
  },
2803
2389
  "exportPaths": ["src/index.ts"],
@@ -2811,11 +2397,18 @@
2811
2397
  "required": false,
2812
2398
  "description": null
2813
2399
  },
2400
+ {
2401
+ "name": "databaseAdapters",
2402
+ "kind": "property",
2403
+ "type": "Readonly<Record<string, DbAdapter>> | undefined",
2404
+ "required": false,
2405
+ "description": null
2406
+ },
2814
2407
  {
2815
2408
  "name": "fetch",
2816
2409
  "kind": "property",
2817
- "type": "EndpointTestFetch",
2818
- "required": true,
2410
+ "type": "EndpointTestFetch | undefined",
2411
+ "required": false,
2819
2412
  "description": null
2820
2413
  }
2821
2414
  ],
@@ -3004,7 +2597,7 @@
3004
2597
  {
3005
2598
  "name": "dataBindings",
3006
2599
  "kind": "property",
3007
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2600
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
3008
2601
  "required": false,
3009
2602
  "description": null
3010
2603
  },
@@ -3227,6 +2820,50 @@
3227
2820
  ],
3228
2821
  "structuredRows": []
3229
2822
  },
2823
+ {
2824
+ "name": "RuntimeMediaAssetResolver",
2825
+ "description": null,
2826
+ "isReadme": false,
2827
+ "examples": [],
2828
+ "kind": "unknown",
2829
+ "modulePath": "src/runtimeMedia.ts",
2830
+ "sourceLocation": {
2831
+ "filePath": "src/runtimeMedia.ts",
2832
+ "line": 13,
2833
+ "column": 1
2834
+ },
2835
+ "exportPaths": ["src/index.ts"],
2836
+ "relatedSymbols": [],
2837
+ "signatures": [],
2838
+ "members": [],
2839
+ "structuredRows": []
2840
+ },
2841
+ {
2842
+ "name": "RuntimeMediaAssetResolverArgs",
2843
+ "description": null,
2844
+ "isReadme": false,
2845
+ "examples": [],
2846
+ "kind": "type",
2847
+ "modulePath": "src/runtimeMedia.ts",
2848
+ "sourceLocation": {
2849
+ "filePath": "src/runtimeMedia.ts",
2850
+ "line": 9,
2851
+ "column": 1
2852
+ },
2853
+ "exportPaths": ["src/index.ts"],
2854
+ "relatedSymbols": [],
2855
+ "signatures": [],
2856
+ "members": [
2857
+ {
2858
+ "name": "asset",
2859
+ "kind": "property",
2860
+ "type": "MediaAsset",
2861
+ "required": true,
2862
+ "description": null
2863
+ }
2864
+ ],
2865
+ "structuredRows": []
2866
+ },
3230
2867
  {
3231
2868
  "name": "RuntimeMemoryStateAdapterOptions",
3232
2869
  "description": null,
@@ -3280,7 +2917,7 @@
3280
2917
  "modulePath": "src/RuntimeRenderer.tsx",
3281
2918
  "sourceLocation": {
3282
2919
  "filePath": "src/RuntimeRenderer.tsx",
3283
- "line": 67,
2920
+ "line": 76,
3284
2921
  "column": 1
3285
2922
  },
3286
2923
  "exportPaths": ["src/index.ts"],
@@ -3312,7 +2949,7 @@
3312
2949
  "modulePath": "src/RuntimeRendererConfig.tsx",
3313
2950
  "sourceLocation": {
3314
2951
  "filePath": "src/RuntimeRendererConfig.tsx",
3315
- "line": 48,
2952
+ "line": 50,
3316
2953
  "column": 1
3317
2954
  },
3318
2955
  "exportPaths": ["src/index.ts"],
@@ -3321,6 +2958,7 @@
3321
2958
  "RuntimeActionHandlers",
3322
2959
  "RuntimeBindingOperationExecutor",
3323
2960
  "RuntimeBindingOperationResultWriter",
2961
+ "RuntimeMediaAssetResolver",
3324
2962
  "RuntimeNodePropsResolver",
3325
2963
  "RuntimeRendererWrapArgs"
3326
2964
  ],
@@ -3343,14 +2981,14 @@
3343
2981
  {
3344
2982
  "name": "dataBindings",
3345
2983
  "kind": "property",
3346
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
2984
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
3347
2985
  "required": false,
3348
2986
  "description": null
3349
2987
  },
3350
2988
  {
3351
2989
  "name": "dataSources",
3352
2990
  "kind": "property",
3353
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/index\").DataSourceConfig>> | undefined",
2991
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/index\").DataSourceConfig>> | undefined",
3354
2992
  "required": false,
3355
2993
  "description": null
3356
2994
  },
@@ -3389,6 +3027,13 @@
3389
3027
  "required": false,
3390
3028
  "description": null
3391
3029
  },
3030
+ {
3031
+ "name": "mediaAssets",
3032
+ "kind": "property",
3033
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/media\").MediaAsset>> | undefined",
3034
+ "required": false,
3035
+ "description": null
3036
+ },
3392
3037
  {
3393
3038
  "name": "onDiagnostics",
3394
3039
  "kind": "property",
@@ -3399,7 +3044,7 @@
3399
3044
  {
3400
3045
  "name": "operationResults",
3401
3046
  "kind": "property",
3402
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").BindingValue | undefined>> | undefined",
3047
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").BindingValue | undefined>> | undefined",
3403
3048
  "required": false,
3404
3049
  "description": null
3405
3050
  },
@@ -3410,6 +3055,13 @@
3410
3055
  "required": false,
3411
3056
  "description": null
3412
3057
  },
3058
+ {
3059
+ "name": "resolveMediaAsset",
3060
+ "kind": "property",
3061
+ "type": "RuntimeMediaAssetResolver | undefined",
3062
+ "required": false,
3063
+ "description": null
3064
+ },
3413
3065
  {
3414
3066
  "name": "resolveNodeProps",
3415
3067
  "kind": "property",
@@ -3450,7 +3102,7 @@
3450
3102
  "modulePath": "src/RuntimeRendererConfig.tsx",
3451
3103
  "sourceLocation": {
3452
3104
  "filePath": "src/RuntimeRendererConfig.tsx",
3453
- "line": 152,
3105
+ "line": 158,
3454
3106
  "column": 1
3455
3107
  },
3456
3108
  "exportPaths": ["src/index.ts"],
@@ -3482,13 +3134,14 @@
3482
3134
  "modulePath": "src/RuntimeRenderer.tsx",
3483
3135
  "sourceLocation": {
3484
3136
  "filePath": "src/RuntimeRenderer.tsx",
3485
- "line": 49,
3137
+ "line": 56,
3486
3138
  "column": 1
3487
3139
  },
3488
3140
  "exportPaths": ["src/index.ts"],
3489
3141
  "relatedSymbols": [
3490
3142
  "RuntimeActionHandler",
3491
3143
  "RuntimeBindingOperationExecutor",
3144
+ "RuntimeMediaAssetResolver",
3492
3145
  "RuntimeRendererConfig",
3493
3146
  "RuntimeRendererWrapArgs"
3494
3147
  ],
@@ -3504,14 +3157,14 @@
3504
3157
  {
3505
3158
  "name": "dataBindings",
3506
3159
  "kind": "property",
3507
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
3160
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
3508
3161
  "required": false,
3509
3162
  "description": null
3510
3163
  },
3511
3164
  {
3512
3165
  "name": "dataSources",
3513
3166
  "kind": "property",
3514
- "type": "Readonly<Record<string, import(\"/Users/a_rtiphishl_e/git/runtime/node_modules/@ankhorage/contracts/dist/index\").DataSourceConfig>> | undefined",
3167
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/index\").DataSourceConfig>> | undefined",
3515
3168
  "required": false,
3516
3169
  "description": null
3517
3170
  },
@@ -3539,7 +3192,7 @@
3539
3192
  {
3540
3193
  "name": "executeAction",
3541
3194
  "kind": "property",
3542
- "type": "import(\"/Users/a_rtiphishl_e/git/runtime/src/RuntimeRendererConfig\").RuntimeActionHandler | undefined",
3195
+ "type": "import(\"./src/RuntimeRendererConfig\").RuntimeActionHandler | undefined",
3543
3196
  "required": false,
3544
3197
  "description": null
3545
3198
  },
@@ -3557,6 +3210,13 @@
3557
3210
  "required": false,
3558
3211
  "description": null
3559
3212
  },
3213
+ {
3214
+ "name": "mediaAssets",
3215
+ "kind": "property",
3216
+ "type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/media\").MediaAsset>> | undefined",
3217
+ "required": false,
3218
+ "description": null
3219
+ },
3560
3220
  {
3561
3221
  "name": "node",
3562
3222
  "kind": "property",
@@ -3585,6 +3245,13 @@
3585
3245
  "required": false,
3586
3246
  "description": null
3587
3247
  },
3248
+ {
3249
+ "name": "resolveMediaAsset",
3250
+ "kind": "property",
3251
+ "type": "RuntimeMediaAssetResolver | undefined",
3252
+ "required": false,
3253
+ "description": null
3254
+ },
3588
3255
  {
3589
3256
  "name": "stateAdapter",
3590
3257
  "kind": "property",
@@ -3611,7 +3278,7 @@
3611
3278
  "modulePath": "src/RuntimeRendererConfig.tsx",
3612
3279
  "sourceLocation": {
3613
3280
  "filePath": "src/RuntimeRendererConfig.tsx",
3614
- "line": 30,
3281
+ "line": 32,
3615
3282
  "column": 1
3616
3283
  },
3617
3284
  "exportPaths": ["src/index.ts"],
@@ -3643,7 +3310,25 @@
3643
3310
  "structuredRows": []
3644
3311
  },
3645
3312
  {
3646
- "name": "RuntimeResolveNodePropsArgs",
3313
+ "name": "RuntimeResolvedMediaValue",
3314
+ "description": null,
3315
+ "isReadme": false,
3316
+ "examples": [],
3317
+ "kind": "unknown",
3318
+ "modulePath": "src/runtimeMedia.ts",
3319
+ "sourceLocation": {
3320
+ "filePath": "src/runtimeMedia.ts",
3321
+ "line": 7,
3322
+ "column": 1
3323
+ },
3324
+ "exportPaths": ["src/index.ts"],
3325
+ "relatedSymbols": [],
3326
+ "signatures": [],
3327
+ "members": [],
3328
+ "structuredRows": []
3329
+ },
3330
+ {
3331
+ "name": "RuntimeResolveNodePropsArgs",
3647
3332
  "description": null,
3648
3333
  "isReadme": false,
3649
3334
  "examples": [],
@@ -3684,7 +3369,7 @@
3684
3369
  "modulePath": "src/RuntimeScreen.tsx",
3685
3370
  "sourceLocation": {
3686
3371
  "filePath": "src/RuntimeScreen.tsx",
3687
- "line": 24,
3372
+ "line": 17,
3688
3373
  "column": 1
3689
3374
  },
3690
3375
  "exportPaths": ["src/index.ts"],
@@ -3716,7 +3401,7 @@
3716
3401
  "modulePath": "src/runtimeScreenLoaders.ts",
3717
3402
  "sourceLocation": {
3718
3403
  "filePath": "src/runtimeScreenLoaders.ts",
3719
- "line": 26,
3404
+ "line": 25,
3720
3405
  "column": 1
3721
3406
  },
3722
3407
  "exportPaths": ["src/index.ts"],
@@ -3756,7 +3441,7 @@
3756
3441
  "modulePath": "src/runtimeScreenLoaders.ts",
3757
3442
  "sourceLocation": {
3758
3443
  "filePath": "src/runtimeScreenLoaders.ts",
3759
- "line": 19,
3444
+ "line": 18,
3760
3445
  "column": 1
3761
3446
  },
3762
3447
  "exportPaths": ["src/index.ts"],
@@ -3803,7 +3488,7 @@
3803
3488
  "modulePath": "src/RuntimeScreen.tsx",
3804
3489
  "sourceLocation": {
3805
3490
  "filePath": "src/RuntimeScreen.tsx",
3806
- "line": 17,
3491
+ "line": 10,
3807
3492
  "column": 1
3808
3493
  },
3809
3494
  "exportPaths": ["src/index.ts"],
@@ -3948,38 +3633,6 @@
3948
3633
  "members": [],
3949
3634
  "structuredRows": []
3950
3635
  },
3951
- {
3952
- "name": "useRuntimeApiStateLoaders",
3953
- "description": null,
3954
- "isReadme": false,
3955
- "examples": [],
3956
- "kind": "function",
3957
- "modulePath": "src/runtimeApiLoaders.ts",
3958
- "sourceLocation": {
3959
- "filePath": "src/runtimeApiLoaders.ts",
3960
- "line": 125,
3961
- "column": 1
3962
- },
3963
- "exportPaths": ["src/index.ts"],
3964
- "relatedSymbols": ["RuntimeApiLoaderDefinition", "RuntimeApiLoaderDiagnostic"],
3965
- "signatures": [
3966
- {
3967
- "label": "(args: { readonly data?: AppDataManifest; readonly loaders?: readonly RuntimeApiLoaderDefinition[]; readonly stateAdapter?: StateAdapter; }) => { readonly diagnostics: readonly RuntimeApiLoaderDiagnostic[]; readonly stateAdapter: StateAdapter; readonly stateVersion: number; }",
3968
- "parameters": [
3969
- {
3970
- "name": "args",
3971
- "type": "{ readonly data?: AppDataManifest; readonly loaders?: readonly RuntimeApiLoaderDefinition[]; readonly stateAdapter?: StateAdapter; }",
3972
- "required": true,
3973
- "description": null
3974
- }
3975
- ],
3976
- "returnType": "{ readonly diagnostics: readonly RuntimeApiLoaderDiagnostic[]; readonly stateAdapter: StateAdapter; readonly stateVersion: number; }",
3977
- "returnDescription": null
3978
- }
3979
- ],
3980
- "members": [],
3981
- "structuredRows": []
3982
- },
3983
3636
  {
3984
3637
  "name": "useRuntimeRendererConfig",
3985
3638
  "description": null,
@@ -3989,7 +3642,7 @@
3989
3642
  "modulePath": "src/RuntimeRendererConfig.tsx",
3990
3643
  "sourceLocation": {
3991
3644
  "filePath": "src/RuntimeRendererConfig.tsx",
3992
- "line": 167,
3645
+ "line": 173,
3993
3646
  "column": 1
3994
3647
  },
3995
3648
  "exportPaths": ["src/index.ts"],
@@ -4014,7 +3667,7 @@
4014
3667
  "modulePath": "src/runtimeScreenLoaders.ts",
4015
3668
  "sourceLocation": {
4016
3669
  "filePath": "src/runtimeScreenLoaders.ts",
4017
- "line": 284,
3670
+ "line": 273,
4018
3671
  "column": 1
4019
3672
  },
4020
3673
  "exportPaths": ["src/index.ts"],
@@ -4188,7 +3841,7 @@
4188
3841
  "modulePath": "src/RuntimeRenderer.tsx",
4189
3842
  "sourceLocation": {
4190
3843
  "filePath": "src/RuntimeRenderer.tsx",
4191
- "line": 67,
3844
+ "line": 76,
4192
3845
  "column": 1
4193
3846
  },
4194
3847
  "exportPaths": ["src/index.ts"],
@@ -4247,6 +3900,12 @@
4247
3900
  "required": false,
4248
3901
  "description": null
4249
3902
  },
3903
+ {
3904
+ "name": "mediaAssets",
3905
+ "type": "MediaAssetRegistry | undefined",
3906
+ "required": false,
3907
+ "description": null
3908
+ },
4250
3909
  {
4251
3910
  "name": "node",
4252
3911
  "type": "UiNode",
@@ -4271,6 +3930,12 @@
4271
3930
  "required": false,
4272
3931
  "description": null
4273
3932
  },
3933
+ {
3934
+ "name": "resolveMediaAsset",
3935
+ "type": "RuntimeMediaAssetResolver | undefined",
3936
+ "required": false,
3937
+ "description": null
3938
+ },
4274
3939
  {
4275
3940
  "name": "stateAdapter",
4276
3941
  "type": "StateAdapter | undefined",
@@ -4293,7 +3958,7 @@
4293
3958
  "modulePath": "src/RuntimeRendererConfig.tsx",
4294
3959
  "sourceLocation": {
4295
3960
  "filePath": "src/RuntimeRendererConfig.tsx",
4296
- "line": 152,
3961
+ "line": 158,
4297
3962
  "column": 1
4298
3963
  },
4299
3964
  "exportPaths": ["src/index.ts"],
@@ -4320,7 +3985,7 @@
4320
3985
  "modulePath": "src/RuntimeScreen.tsx",
4321
3986
  "sourceLocation": {
4322
3987
  "filePath": "src/RuntimeScreen.tsx",
4323
- "line": 24,
3988
+ "line": 17,
4324
3989
  "column": 1
4325
3990
  },
4326
3991
  "exportPaths": ["src/index.ts"],
@@ -4704,114 +4369,6 @@
4704
4369
  "column": 1
4705
4370
  }
4706
4371
  },
4707
- {
4708
- "name": "materializeRuntimeApiLoaderState",
4709
- "description": null,
4710
- "sourceLocation": {
4711
- "filePath": "src/runtimeApiLoaders.ts",
4712
- "line": 40,
4713
- "column": 1
4714
- }
4715
- },
4716
- {
4717
- "name": "executeRuntimeApiLoaders",
4718
- "description": null,
4719
- "sourceLocation": {
4720
- "filePath": "src/runtimeApiLoaders.ts",
4721
- "line": 100,
4722
- "column": 1
4723
- }
4724
- },
4725
- {
4726
- "name": "useRuntimeApiStateLoaders",
4727
- "description": null,
4728
- "sourceLocation": {
4729
- "filePath": "src/runtimeApiLoaders.ts",
4730
- "line": 125,
4731
- "column": 1
4732
- }
4733
- },
4734
- {
4735
- "name": "getGeneratedApiCollectionResource",
4736
- "description": null,
4737
- "sourceLocation": {
4738
- "filePath": "src/runtimeApiLoaders.ts",
4739
- "line": 157,
4740
- "column": 1
4741
- }
4742
- },
4743
- {
4744
- "name": "selectApiLoaderValue",
4745
- "description": null,
4746
- "sourceLocation": {
4747
- "filePath": "src/runtimeApiLoaders.ts",
4748
- "line": 167,
4749
- "column": 1
4750
- }
4751
- },
4752
- {
4753
- "name": "normalizePrimitiveId",
4754
- "description": null,
4755
- "sourceLocation": {
4756
- "filePath": "src/runtimeApiLoaders.ts",
4757
- "line": 205,
4758
- "column": 1
4759
- }
4760
- },
4761
- {
4762
- "name": "deterministicIndex",
4763
- "description": null,
4764
- "sourceLocation": {
4765
- "filePath": "src/runtimeApiLoaders.ts",
4766
- "line": 212,
4767
- "column": 1
4768
- }
4769
- },
4770
- {
4771
- "name": "writeObjectPath",
4772
- "description": null,
4773
- "sourceLocation": {
4774
- "filePath": "src/runtimeApiLoaders.ts",
4775
- "line": 223,
4776
- "column": 1
4777
- }
4778
- },
4779
- {
4780
- "name": "flattenStateEntries",
4781
- "description": null,
4782
- "sourceLocation": {
4783
- "filePath": "src/runtimeApiLoaders.ts",
4784
- "line": 265,
4785
- "column": 1
4786
- }
4787
- },
4788
- {
4789
- "name": "toStateValue",
4790
- "description": null,
4791
- "sourceLocation": {
4792
- "filePath": "src/runtimeApiLoaders.ts",
4793
- "line": 275,
4794
- "column": 1
4795
- }
4796
- },
4797
- {
4798
- "name": "isUnknownRecord",
4799
- "description": null,
4800
- "sourceLocation": {
4801
- "filePath": "src/runtimeApiLoaders.ts",
4802
- "line": 303,
4803
- "column": 1
4804
- }
4805
- },
4806
- {
4807
- "name": "isMutableStateRecord",
4808
- "description": null,
4809
- "sourceLocation": {
4810
- "filePath": "src/runtimeApiLoaders.ts",
4811
- "line": 307,
4812
- "column": 1
4813
- }
4814
- },
4815
4372
  {
4816
4373
  "name": "createFakeStateAdapter",
4817
4374
  "description": null,
@@ -5056,290 +4613,677 @@
5056
4613
  }
5057
4614
  },
5058
4615
  {
5059
- "name": "createDataSources",
4616
+ "name": "executeRuntimeDatabaseOperation",
5060
4617
  "description": null,
5061
4618
  "sourceLocation": {
5062
- "filePath": "src/runtimeDataSourceOperations.test.ts",
5063
- "line": 10,
4619
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4620
+ "line": 13,
5064
4621
  "column": 1
5065
4622
  }
5066
4623
  },
5067
4624
  {
5068
- "name": "getFixtureDataSource",
4625
+ "name": "resolveOperationPlan",
5069
4626
  "description": null,
5070
4627
  "sourceLocation": {
5071
- "filePath": "src/runtimeDataSourceOperations.test.ts",
5072
- "line": 46,
4628
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4629
+ "line": 67,
5073
4630
  "column": 1
5074
4631
  }
5075
4632
  },
5076
4633
  {
5077
- "name": "getFixtureEndpoint",
4634
+ "name": "executeList",
5078
4635
  "description": null,
5079
4636
  "sourceLocation": {
5080
- "filePath": "src/runtimeDataSourceOperations.test.ts",
5081
- "line": 55,
4637
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4638
+ "line": 121,
5082
4639
  "column": 1
5083
4640
  }
5084
4641
  },
5085
4642
  {
5086
- "name": "createRuntimeDataSourceOperationExecutor",
4643
+ "name": "executeRead",
5087
4644
  "description": null,
5088
4645
  "sourceLocation": {
5089
- "filePath": "src/runtimeDataSourceOperations.ts",
5090
- "line": 12,
4646
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4647
+ "line": 138,
5091
4648
  "column": 1
5092
4649
  }
5093
4650
  },
5094
4651
  {
5095
- "name": "createRuntimeDataSourceOperationDiagnostic",
4652
+ "name": "executeCreate",
5096
4653
  "description": null,
5097
4654
  "sourceLocation": {
5098
- "filePath": "src/runtimeDataSourceOperations.ts",
5099
- "line": 69,
4655
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4656
+ "line": 156,
5100
4657
  "column": 1
5101
4658
  }
5102
4659
  },
5103
4660
  {
5104
- "name": "asBindingValueRecord",
4661
+ "name": "executeUpdate",
5105
4662
  "description": null,
5106
4663
  "sourceLocation": {
5107
- "filePath": "src/runtimeDataSourceOperations.ts",
5108
- "line": 85,
4664
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4665
+ "line": 170,
5109
4666
  "column": 1
5110
4667
  }
5111
4668
  },
5112
4669
  {
5113
- "name": "isBindingValueRecord",
4670
+ "name": "executeDelete",
5114
4671
  "description": null,
5115
4672
  "sourceLocation": {
5116
- "filePath": "src/runtimeDataSourceOperations.ts",
5117
- "line": 91,
4673
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4674
+ "line": 197,
5118
4675
  "column": 1
5119
4676
  }
5120
4677
  },
5121
4678
  {
5122
- "name": "createFakeDbAdapter",
4679
+ "name": "resolveDbResult",
5123
4680
  "description": null,
5124
4681
  "sourceLocation": {
5125
- "filePath": "src/runtimeDbPersist.test.ts",
5126
- "line": 12,
4682
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4683
+ "line": 219,
5127
4684
  "column": 1
5128
4685
  }
5129
4686
  },
5130
4687
  {
5131
- "name": "createDbPersistActionHandler",
4688
+ "name": "resolveAdapterId",
5132
4689
  "description": null,
5133
4690
  "sourceLocation": {
5134
- "filePath": "src/runtimeDbPersist.ts",
5135
- "line": 36,
4691
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4692
+ "line": 239,
5136
4693
  "column": 1
5137
4694
  }
5138
4695
  },
5139
4696
  {
5140
- "name": "executeDbPersistAction",
4697
+ "name": "resolvePrimaryKey",
5141
4698
  "description": null,
5142
4699
  "sourceLocation": {
5143
- "filePath": "src/runtimeDbPersist.ts",
5144
- "line": 48,
4700
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4701
+ "line": 245,
5145
4702
  "column": 1
5146
4703
  }
5147
4704
  },
5148
4705
  {
5149
- "name": "resolveDbPersistInput",
4706
+ "name": "resolveIdentity",
5150
4707
  "description": null,
5151
4708
  "sourceLocation": {
5152
- "filePath": "src/runtimeDbPersist.ts",
5153
- "line": 68,
4709
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4710
+ "line": 249,
5154
4711
  "column": 1
5155
4712
  }
5156
4713
  },
5157
4714
  {
5158
- "name": "createError",
4715
+ "name": "resolvePage",
5159
4716
  "description": null,
5160
4717
  "sourceLocation": {
5161
- "filePath": "src/runtimeDbPersist.ts",
5162
- "line": 116,
4718
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4719
+ "line": 270,
5163
4720
  "column": 1
5164
4721
  }
5165
4722
  },
5166
4723
  {
5167
- "name": "createDbPersistAdapterError",
4724
+ "name": "isOptionalPageNumber",
5168
4725
  "description": null,
5169
4726
  "sourceLocation": {
5170
- "filePath": "src/runtimeDbPersist.ts",
5171
- "line": 126,
4727
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4728
+ "line": 287,
5172
4729
  "column": 1
5173
4730
  }
5174
4731
  },
5175
4732
  {
5176
- "name": "isFieldValueEntry",
4733
+ "name": "createIdentityFilter",
5177
4734
  "description": null,
5178
4735
  "sourceLocation": {
5179
- "filePath": "src/runtimeDbPersist.ts",
5180
- "line": 133,
4736
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4737
+ "line": 293,
5181
4738
  "column": 1
5182
4739
  }
5183
4740
  },
5184
4741
  {
5185
- "name": "isRecord",
4742
+ "name": "omitKey",
5186
4743
  "description": null,
5187
4744
  "sourceLocation": {
5188
- "filePath": "src/runtimeDbPersist.ts",
5189
- "line": 141,
4745
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4746
+ "line": 297,
5190
4747
  "column": 1
5191
4748
  }
5192
4749
  },
5193
4750
  {
5194
- "name": "dispatchRuntimeComponentEventWithReporting",
4751
+ "name": "isGeneratedCrudOperation",
5195
4752
  "description": null,
5196
4753
  "sourceLocation": {
5197
- "filePath": "src/runtimeEventExecution.ts",
5198
- "line": 14,
4754
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4755
+ "line": 305,
5199
4756
  "column": 1
5200
4757
  }
5201
4758
  },
5202
4759
  {
5203
- "name": "defineRuntimeAction",
4760
+ "name": "invalidPlan",
5204
4761
  "description": null,
5205
4762
  "sourceLocation": {
5206
- "filePath": "src/runtimeManifest.ts",
5207
- "line": 63,
4763
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4764
+ "line": 315,
5208
4765
  "column": 1
5209
4766
  }
5210
4767
  },
5211
4768
  {
5212
- "name": "defineRuntimeAdapter",
4769
+ "name": "failure",
5213
4770
  "description": null,
5214
4771
  "sourceLocation": {
5215
- "filePath": "src/runtimeManifest.ts",
5216
- "line": 69,
4772
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4773
+ "line": 326,
5217
4774
  "column": 1
5218
4775
  }
5219
4776
  },
5220
4777
  {
5221
- "name": "defineRuntimeBinding",
4778
+ "name": "asRecord",
5222
4779
  "description": null,
5223
4780
  "sourceLocation": {
5224
- "filePath": "src/runtimeManifest.ts",
5225
- "line": 75,
4781
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4782
+ "line": 342,
5226
4783
  "column": 1
5227
4784
  }
5228
4785
  },
5229
4786
  {
5230
- "name": "createRuntimeManifest",
4787
+ "name": "toBindingValue",
5231
4788
  "description": null,
5232
4789
  "sourceLocation": {
5233
- "filePath": "src/runtimeManifest.ts",
5234
- "line": 81,
4790
+ "filePath": "src/runtimeDatabaseOperationExecutor.ts",
4791
+ "line": 348,
5235
4792
  "column": 1
5236
4793
  }
5237
4794
  },
5238
4795
  {
5239
- "name": "listRuntimeCapabilities",
4796
+ "name": "createExternalDataSources",
5240
4797
  "description": null,
5241
4798
  "sourceLocation": {
5242
- "filePath": "src/runtimeManifest.ts",
5243
- "line": 93,
4799
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4800
+ "line": 19,
5244
4801
  "column": 1
5245
4802
  }
5246
4803
  },
5247
4804
  {
5248
- "name": "isCallable",
4805
+ "name": "createGeneratedDataSource",
5249
4806
  "description": null,
5250
4807
  "sourceLocation": {
5251
- "filePath": "src/runtimeNodeProps.test.ts",
5252
- "line": 6,
4808
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4809
+ "line": 57,
5253
4810
  "column": 1
5254
4811
  }
5255
4812
  },
5256
4813
  {
5257
- "name": "isRecord",
4814
+ "name": "getFixtureDataSource",
5258
4815
  "description": null,
5259
4816
  "sourceLocation": {
5260
- "filePath": "src/runtimeNodeProps.ts",
5261
- "line": 13,
4817
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4818
+ "line": 84,
5262
4819
  "column": 1
5263
4820
  }
5264
4821
  },
5265
4822
  {
5266
- "name": "isPlainObject",
4823
+ "name": "getFixtureEndpoint",
5267
4824
  "description": null,
5268
4825
  "sourceLocation": {
5269
- "filePath": "src/runtimeNodeProps.ts",
5270
- "line": 17,
4826
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4827
+ "line": 90,
5271
4828
  "column": 1
5272
4829
  }
5273
4830
  },
5274
4831
  {
5275
- "name": "hasActionShape",
4832
+ "name": "createDatabaseFixture",
5276
4833
  "description": null,
5277
4834
  "sourceLocation": {
5278
- "filePath": "src/runtimeNodeProps.ts",
5279
- "line": 26,
4835
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4836
+ "line": 108,
5280
4837
  "column": 1
5281
4838
  }
5282
4839
  },
5283
4840
  {
5284
- "name": "isCallbackProp",
4841
+ "name": "createGeneratedExecutor",
5285
4842
  "description": null,
5286
4843
  "sourceLocation": {
5287
- "filePath": "src/runtimeNodeProps.ts",
5288
- "line": 32,
4844
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4845
+ "line": 148,
5289
4846
  "column": 1
5290
4847
  }
5291
4848
  },
5292
4849
  {
5293
- "name": "isNonEmptyActionId",
4850
+ "name": "executeGeneratedOperation",
5294
4851
  "description": null,
5295
4852
  "sourceLocation": {
5296
- "filePath": "src/runtimeNodeProps.ts",
5297
- "line": 36,
4853
+ "filePath": "src/runtimeDataSourceOperations.test.ts",
4854
+ "line": 154,
5298
4855
  "column": 1
5299
4856
  }
5300
4857
  },
5301
4858
  {
5302
- "name": "createStringActionPayload",
4859
+ "name": "createRuntimeDataSourceOperationExecutor",
5303
4860
  "description": null,
5304
4861
  "sourceLocation": {
5305
- "filePath": "src/runtimeNodeProps.ts",
5306
- "line": 40,
4862
+ "filePath": "src/runtimeDataSourceOperations.ts",
4863
+ "line": 14,
5307
4864
  "column": 1
5308
4865
  }
5309
4866
  },
5310
4867
  {
5311
- "name": "noopRuntimeActionHandler",
4868
+ "name": "missingEndpoint",
5312
4869
  "description": null,
5313
4870
  "sourceLocation": {
5314
- "filePath": "src/runtimeNodeProps.ts",
5315
- "line": 57,
5316
- "column": 7
4871
+ "filePath": "src/runtimeDataSourceOperations.ts",
4872
+ "line": 56,
4873
+ "column": 1
5317
4874
  }
5318
4875
  },
5319
4876
  {
5320
- "name": "resolveImageAssetUrl",
4877
+ "name": "missingOperation",
5321
4878
  "description": null,
5322
4879
  "sourceLocation": {
5323
- "filePath": "src/runtimeNodeProps.ts",
5324
- "line": 59,
4880
+ "filePath": "src/runtimeDataSourceOperations.ts",
4881
+ "line": 70,
5325
4882
  "column": 1
5326
4883
  }
5327
4884
  },
5328
4885
  {
5329
- "name": "resolveRuntimeNodeProps",
4886
+ "name": "invalidInput",
5330
4887
  "description": null,
5331
4888
  "sourceLocation": {
5332
- "filePath": "src/runtimeNodeProps.ts",
5333
- "line": 82,
4889
+ "filePath": "src/runtimeDataSourceOperations.ts",
4890
+ "line": 80,
5334
4891
  "column": 1
5335
4892
  }
5336
4893
  },
5337
4894
  {
5338
- "name": "wrapRuntimeActionProps",
4895
+ "name": "failure",
5339
4896
  "description": null,
5340
4897
  "sourceLocation": {
5341
- "filePath": "src/runtimeNodeProps.ts",
5342
- "line": 125,
4898
+ "filePath": "src/runtimeDataSourceOperations.ts",
4899
+ "line": 90,
4900
+ "column": 1
4901
+ }
4902
+ },
4903
+ {
4904
+ "name": "asBindingValueRecord",
4905
+ "description": null,
4906
+ "sourceLocation": {
4907
+ "filePath": "src/runtimeDataSourceOperations.ts",
4908
+ "line": 108,
4909
+ "column": 1
4910
+ }
4911
+ },
4912
+ {
4913
+ "name": "isBindingValueRecord",
4914
+ "description": null,
4915
+ "sourceLocation": {
4916
+ "filePath": "src/runtimeDataSourceOperations.ts",
4917
+ "line": 114,
4918
+ "column": 1
4919
+ }
4920
+ },
4921
+ {
4922
+ "name": "createFakeDbAdapter",
4923
+ "description": null,
4924
+ "sourceLocation": {
4925
+ "filePath": "src/runtimeDbPersist.test.ts",
4926
+ "line": 12,
4927
+ "column": 1
4928
+ }
4929
+ },
4930
+ {
4931
+ "name": "createDbPersistActionHandler",
4932
+ "description": null,
4933
+ "sourceLocation": {
4934
+ "filePath": "src/runtimeDbPersist.ts",
4935
+ "line": 36,
4936
+ "column": 1
4937
+ }
4938
+ },
4939
+ {
4940
+ "name": "executeDbPersistAction",
4941
+ "description": null,
4942
+ "sourceLocation": {
4943
+ "filePath": "src/runtimeDbPersist.ts",
4944
+ "line": 48,
4945
+ "column": 1
4946
+ }
4947
+ },
4948
+ {
4949
+ "name": "resolveDbPersistInput",
4950
+ "description": null,
4951
+ "sourceLocation": {
4952
+ "filePath": "src/runtimeDbPersist.ts",
4953
+ "line": 68,
4954
+ "column": 1
4955
+ }
4956
+ },
4957
+ {
4958
+ "name": "createError",
4959
+ "description": null,
4960
+ "sourceLocation": {
4961
+ "filePath": "src/runtimeDbPersist.ts",
4962
+ "line": 116,
4963
+ "column": 1
4964
+ }
4965
+ },
4966
+ {
4967
+ "name": "createDbPersistAdapterError",
4968
+ "description": null,
4969
+ "sourceLocation": {
4970
+ "filePath": "src/runtimeDbPersist.ts",
4971
+ "line": 126,
4972
+ "column": 1
4973
+ }
4974
+ },
4975
+ {
4976
+ "name": "isFieldValueEntry",
4977
+ "description": null,
4978
+ "sourceLocation": {
4979
+ "filePath": "src/runtimeDbPersist.ts",
4980
+ "line": 133,
4981
+ "column": 1
4982
+ }
4983
+ },
4984
+ {
4985
+ "name": "isRecord",
4986
+ "description": null,
4987
+ "sourceLocation": {
4988
+ "filePath": "src/runtimeDbPersist.ts",
4989
+ "line": 141,
4990
+ "column": 1
4991
+ }
4992
+ },
4993
+ {
4994
+ "name": "dispatchRuntimeComponentEventWithReporting",
4995
+ "description": null,
4996
+ "sourceLocation": {
4997
+ "filePath": "src/runtimeEventExecution.ts",
4998
+ "line": 14,
4999
+ "column": 1
5000
+ }
5001
+ },
5002
+ {
5003
+ "name": "defineRuntimeAction",
5004
+ "description": null,
5005
+ "sourceLocation": {
5006
+ "filePath": "src/runtimeManifest.ts",
5007
+ "line": 63,
5008
+ "column": 1
5009
+ }
5010
+ },
5011
+ {
5012
+ "name": "defineRuntimeAdapter",
5013
+ "description": null,
5014
+ "sourceLocation": {
5015
+ "filePath": "src/runtimeManifest.ts",
5016
+ "line": 69,
5017
+ "column": 1
5018
+ }
5019
+ },
5020
+ {
5021
+ "name": "defineRuntimeBinding",
5022
+ "description": null,
5023
+ "sourceLocation": {
5024
+ "filePath": "src/runtimeManifest.ts",
5025
+ "line": 75,
5026
+ "column": 1
5027
+ }
5028
+ },
5029
+ {
5030
+ "name": "createRuntimeManifest",
5031
+ "description": null,
5032
+ "sourceLocation": {
5033
+ "filePath": "src/runtimeManifest.ts",
5034
+ "line": 81,
5035
+ "column": 1
5036
+ }
5037
+ },
5038
+ {
5039
+ "name": "listRuntimeCapabilities",
5040
+ "description": null,
5041
+ "sourceLocation": {
5042
+ "filePath": "src/runtimeManifest.ts",
5043
+ "line": 93,
5044
+ "column": 1
5045
+ }
5046
+ },
5047
+ {
5048
+ "name": "resolver",
5049
+ "description": null,
5050
+ "sourceLocation": {
5051
+ "filePath": "src/runtimeMedia.test.ts",
5052
+ "line": 59,
5053
+ "column": 11
5054
+ }
5055
+ },
5056
+ {
5057
+ "name": "firstResolver",
5058
+ "description": null,
5059
+ "sourceLocation": {
5060
+ "filePath": "src/runtimeMedia.test.ts",
5061
+ "line": 84,
5062
+ "column": 11
5063
+ }
5064
+ },
5065
+ {
5066
+ "name": "secondResolver",
5067
+ "description": null,
5068
+ "sourceLocation": {
5069
+ "filePath": "src/runtimeMedia.test.ts",
5070
+ "line": 85,
5071
+ "column": 11
5072
+ }
5073
+ },
5074
+ {
5075
+ "name": "createRuntimeMediaResolutionCache",
5076
+ "description": null,
5077
+ "sourceLocation": {
5078
+ "filePath": "src/runtimeMedia.ts",
5079
+ "line": 24,
5080
+ "column": 1
5081
+ }
5082
+ },
5083
+ {
5084
+ "name": "collectRuntimeMediaReferenceIds",
5085
+ "description": null,
5086
+ "sourceLocation": {
5087
+ "filePath": "src/runtimeMedia.ts",
5088
+ "line": 28,
5089
+ "column": 1
5090
+ }
5091
+ },
5092
+ {
5093
+ "name": "replaceRuntimeMediaReferences",
5094
+ "description": null,
5095
+ "sourceLocation": {
5096
+ "filePath": "src/runtimeMedia.ts",
5097
+ "line": 34,
5098
+ "column": 1
5099
+ }
5100
+ },
5101
+ {
5102
+ "name": "resolveRuntimeMediaAsset",
5103
+ "description": null,
5104
+ "sourceLocation": {
5105
+ "filePath": "src/runtimeMedia.ts",
5106
+ "line": 42,
5107
+ "column": 1
5108
+ }
5109
+ },
5110
+ {
5111
+ "name": "createSyncRuntimeMediaResolutionMap",
5112
+ "description": null,
5113
+ "sourceLocation": {
5114
+ "filePath": "src/runtimeMedia.ts",
5115
+ "line": 64,
5116
+ "column": 1
5117
+ }
5118
+ },
5119
+ {
5120
+ "name": "collectMediaReferenceIds",
5121
+ "description": null,
5122
+ "sourceLocation": {
5123
+ "filePath": "src/runtimeMedia.ts",
5124
+ "line": 78,
5125
+ "column": 1
5126
+ }
5127
+ },
5128
+ {
5129
+ "name": "replaceMediaValue",
5130
+ "description": null,
5131
+ "sourceLocation": {
5132
+ "filePath": "src/runtimeMedia.ts",
5133
+ "line": 93,
5134
+ "column": 1
5135
+ }
5136
+ },
5137
+ {
5138
+ "name": "isPlainObject",
5139
+ "description": null,
5140
+ "sourceLocation": {
5141
+ "filePath": "src/runtimeMedia.ts",
5142
+ "line": 118,
5143
+ "column": 1
5144
+ }
5145
+ },
5146
+ {
5147
+ "name": "useRuntimeMediaResolutionCache",
5148
+ "description": null,
5149
+ "sourceLocation": {
5150
+ "filePath": "src/runtimeMediaCache.tsx",
5151
+ "line": 10,
5152
+ "column": 1
5153
+ }
5154
+ },
5155
+ {
5156
+ "name": "RuntimeMediaResolutionCacheProvider",
5157
+ "description": null,
5158
+ "sourceLocation": {
5159
+ "filePath": "src/runtimeMediaCache.tsx",
5160
+ "line": 16,
5161
+ "column": 1
5162
+ }
5163
+ },
5164
+ {
5165
+ "name": "resolver",
5166
+ "description": null,
5167
+ "sourceLocation": {
5168
+ "filePath": "src/runtimeMediaConfig.test.ts",
5169
+ "line": 26,
5170
+ "column": 11
5171
+ }
5172
+ },
5173
+ {
5174
+ "name": "inheritedResolver",
5175
+ "description": null,
5176
+ "sourceLocation": {
5177
+ "filePath": "src/runtimeMediaConfig.test.ts",
5178
+ "line": 40,
5179
+ "column": 11
5180
+ }
5181
+ },
5182
+ {
5183
+ "name": "localResolver",
5184
+ "description": null,
5185
+ "sourceLocation": {
5186
+ "filePath": "src/runtimeMediaConfig.test.ts",
5187
+ "line": 41,
5188
+ "column": 11
5189
+ }
5190
+ },
5191
+ {
5192
+ "name": "isCallable",
5193
+ "description": null,
5194
+ "sourceLocation": {
5195
+ "filePath": "src/runtimeNodeProps.test.ts",
5196
+ "line": 6,
5197
+ "column": 1
5198
+ }
5199
+ },
5200
+ {
5201
+ "name": "isRecord",
5202
+ "description": null,
5203
+ "sourceLocation": {
5204
+ "filePath": "src/runtimeNodeProps.ts",
5205
+ "line": 13,
5206
+ "column": 1
5207
+ }
5208
+ },
5209
+ {
5210
+ "name": "isPlainObject",
5211
+ "description": null,
5212
+ "sourceLocation": {
5213
+ "filePath": "src/runtimeNodeProps.ts",
5214
+ "line": 17,
5215
+ "column": 1
5216
+ }
5217
+ },
5218
+ {
5219
+ "name": "hasActionShape",
5220
+ "description": null,
5221
+ "sourceLocation": {
5222
+ "filePath": "src/runtimeNodeProps.ts",
5223
+ "line": 26,
5224
+ "column": 1
5225
+ }
5226
+ },
5227
+ {
5228
+ "name": "isCallbackProp",
5229
+ "description": null,
5230
+ "sourceLocation": {
5231
+ "filePath": "src/runtimeNodeProps.ts",
5232
+ "line": 32,
5233
+ "column": 1
5234
+ }
5235
+ },
5236
+ {
5237
+ "name": "isNonEmptyActionId",
5238
+ "description": null,
5239
+ "sourceLocation": {
5240
+ "filePath": "src/runtimeNodeProps.ts",
5241
+ "line": 36,
5242
+ "column": 1
5243
+ }
5244
+ },
5245
+ {
5246
+ "name": "createStringActionPayload",
5247
+ "description": null,
5248
+ "sourceLocation": {
5249
+ "filePath": "src/runtimeNodeProps.ts",
5250
+ "line": 40,
5251
+ "column": 1
5252
+ }
5253
+ },
5254
+ {
5255
+ "name": "noopRuntimeActionHandler",
5256
+ "description": null,
5257
+ "sourceLocation": {
5258
+ "filePath": "src/runtimeNodeProps.ts",
5259
+ "line": 57,
5260
+ "column": 7
5261
+ }
5262
+ },
5263
+ {
5264
+ "name": "resolveImageAssetUrl",
5265
+ "description": null,
5266
+ "sourceLocation": {
5267
+ "filePath": "src/runtimeNodeProps.ts",
5268
+ "line": 59,
5269
+ "column": 1
5270
+ }
5271
+ },
5272
+ {
5273
+ "name": "resolveRuntimeNodeProps",
5274
+ "description": null,
5275
+ "sourceLocation": {
5276
+ "filePath": "src/runtimeNodeProps.ts",
5277
+ "line": 82,
5278
+ "column": 1
5279
+ }
5280
+ },
5281
+ {
5282
+ "name": "wrapRuntimeActionProps",
5283
+ "description": null,
5284
+ "sourceLocation": {
5285
+ "filePath": "src/runtimeNodeProps.ts",
5286
+ "line": 125,
5343
5287
  "column": 1
5344
5288
  }
5345
5289
  },
@@ -5357,7 +5301,7 @@
5357
5301
  "description": null,
5358
5302
  "sourceLocation": {
5359
5303
  "filePath": "src/RuntimeRenderer.tsx",
5360
- "line": 67,
5304
+ "line": 76,
5361
5305
  "column": 1
5362
5306
  }
5363
5307
  },
@@ -5456,7 +5400,7 @@
5456
5400
  "description": null,
5457
5401
  "sourceLocation": {
5458
5402
  "filePath": "src/RuntimeRendererConfig.tsx",
5459
- "line": 73,
5403
+ "line": 77,
5460
5404
  "column": 1
5461
5405
  }
5462
5406
  },
@@ -5465,7 +5409,7 @@
5465
5409
  "description": null,
5466
5410
  "sourceLocation": {
5467
5411
  "filePath": "src/RuntimeRendererConfig.tsx",
5468
- "line": 88,
5412
+ "line": 92,
5469
5413
  "column": 1
5470
5414
  }
5471
5415
  },
@@ -5474,7 +5418,7 @@
5474
5418
  "description": null,
5475
5419
  "sourceLocation": {
5476
5420
  "filePath": "src/RuntimeRendererConfig.tsx",
5477
- "line": 106,
5421
+ "line": 110,
5478
5422
  "column": 1
5479
5423
  }
5480
5424
  },
@@ -5483,7 +5427,7 @@
5483
5427
  "description": null,
5484
5428
  "sourceLocation": {
5485
5429
  "filePath": "src/RuntimeRendererConfig.tsx",
5486
- "line": 152,
5430
+ "line": 158,
5487
5431
  "column": 1
5488
5432
  }
5489
5433
  },
@@ -5492,7 +5436,7 @@
5492
5436
  "description": null,
5493
5437
  "sourceLocation": {
5494
5438
  "filePath": "src/RuntimeRendererConfig.tsx",
5495
- "line": 167,
5439
+ "line": 173,
5496
5440
  "column": 1
5497
5441
  }
5498
5442
  },
@@ -5501,7 +5445,7 @@
5501
5445
  "description": null,
5502
5446
  "sourceLocation": {
5503
5447
  "filePath": "src/RuntimeRendererConfig.tsx",
5504
- "line": 171,
5448
+ "line": 177,
5505
5449
  "column": 1
5506
5450
  }
5507
5451
  },
@@ -5519,7 +5463,7 @@
5519
5463
  "description": null,
5520
5464
  "sourceLocation": {
5521
5465
  "filePath": "src/runtimeRepeat.test.ts",
5522
- "line": 44,
5466
+ "line": 46,
5523
5467
  "column": 1
5524
5468
  }
5525
5469
  },
@@ -5528,7 +5472,7 @@
5528
5472
  "description": null,
5529
5473
  "sourceLocation": {
5530
5474
  "filePath": "src/runtimeRepeat.test.ts",
5531
- "line": 70,
5475
+ "line": 72,
5532
5476
  "column": 1
5533
5477
  }
5534
5478
  },
@@ -5618,25 +5562,7 @@
5618
5562
  "description": null,
5619
5563
  "sourceLocation": {
5620
5564
  "filePath": "src/RuntimeScreen.tsx",
5621
- "line": 24,
5622
- "column": 1
5623
- }
5624
- },
5625
- {
5626
- "name": "resolveApiLoadersFromBindings",
5627
- "description": null,
5628
- "sourceLocation": {
5629
- "filePath": "src/RuntimeScreen.tsx",
5630
- "line": 62,
5631
- "column": 1
5632
- }
5633
- },
5634
- {
5635
- "name": "resolveApiLoaderFromPropBinding",
5636
- "description": null,
5637
- "sourceLocation": {
5638
- "filePath": "src/RuntimeScreen.tsx",
5639
- "line": 79,
5565
+ "line": 17,
5640
5566
  "column": 1
5641
5567
  }
5642
5568
  },
@@ -5672,7 +5598,7 @@
5672
5598
  "description": null,
5673
5599
  "sourceLocation": {
5674
5600
  "filePath": "src/runtimeScreenLoaders.test.ts",
5675
- "line": 62,
5601
+ "line": 64,
5676
5602
  "column": 1
5677
5603
  }
5678
5604
  },
@@ -5681,7 +5607,7 @@
5681
5607
  "description": null,
5682
5608
  "sourceLocation": {
5683
5609
  "filePath": "src/runtimeScreenLoaders.test.ts",
5684
- "line": 69,
5610
+ "line": 71,
5685
5611
  "column": 1
5686
5612
  }
5687
5613
  },
@@ -5690,7 +5616,7 @@
5690
5616
  "description": null,
5691
5617
  "sourceLocation": {
5692
5618
  "filePath": "src/runtimeScreenLoaders.test.ts",
5693
- "line": 86,
5619
+ "line": 88,
5694
5620
  "column": 1
5695
5621
  }
5696
5622
  },
@@ -5699,7 +5625,7 @@
5699
5625
  "description": null,
5700
5626
  "sourceLocation": {
5701
5627
  "filePath": "src/runtimeScreenLoaders.test.ts",
5702
- "line": 106,
5628
+ "line": 108,
5703
5629
  "column": 1
5704
5630
  }
5705
5631
  },
@@ -5708,7 +5634,7 @@
5708
5634
  "description": null,
5709
5635
  "sourceLocation": {
5710
5636
  "filePath": "src/runtimeScreenLoaders.test.ts",
5711
- "line": 117,
5637
+ "line": 119,
5712
5638
  "column": 1
5713
5639
  }
5714
5640
  },
@@ -5717,16 +5643,7 @@
5717
5643
  "description": null,
5718
5644
  "sourceLocation": {
5719
5645
  "filePath": "src/runtimeScreenLoaders.test.ts",
5720
- "line": 149,
5721
- "column": 1
5722
- }
5723
- },
5724
- {
5725
- "name": "resolveScreenApiLoaders",
5726
- "description": null,
5727
- "sourceLocation": {
5728
- "filePath": "src/runtimeScreenLoaders.ts",
5729
- "line": 44,
5646
+ "line": 151,
5730
5647
  "column": 1
5731
5648
  }
5732
5649
  },
@@ -5735,7 +5652,7 @@
5735
5652
  "description": null,
5736
5653
  "sourceLocation": {
5737
5654
  "filePath": "src/runtimeScreenLoaders.ts",
5738
- "line": 52,
5655
+ "line": 43,
5739
5656
  "column": 1
5740
5657
  }
5741
5658
  },
@@ -5744,7 +5661,7 @@
5744
5661
  "description": null,
5745
5662
  "sourceLocation": {
5746
5663
  "filePath": "src/runtimeScreenLoaders.ts",
5747
- "line": 60,
5664
+ "line": 49,
5748
5665
  "column": 1
5749
5666
  }
5750
5667
  },
@@ -5753,7 +5670,7 @@
5753
5670
  "description": null,
5754
5671
  "sourceLocation": {
5755
5672
  "filePath": "src/runtimeScreenLoaders.ts",
5756
- "line": 74,
5673
+ "line": 63,
5757
5674
  "column": 1
5758
5675
  }
5759
5676
  },
@@ -5762,7 +5679,7 @@
5762
5679
  "description": null,
5763
5680
  "sourceLocation": {
5764
5681
  "filePath": "src/runtimeScreenLoaders.ts",
5765
- "line": 81,
5682
+ "line": 70,
5766
5683
  "column": 1
5767
5684
  }
5768
5685
  },
@@ -5771,7 +5688,7 @@
5771
5688
  "description": null,
5772
5689
  "sourceLocation": {
5773
5690
  "filePath": "src/runtimeScreenLoaders.ts",
5774
- "line": 93,
5691
+ "line": 82,
5775
5692
  "column": 1
5776
5693
  }
5777
5694
  },
@@ -5780,7 +5697,7 @@
5780
5697
  "description": null,
5781
5698
  "sourceLocation": {
5782
5699
  "filePath": "src/runtimeScreenLoaders.ts",
5783
- "line": 105,
5700
+ "line": 94,
5784
5701
  "column": 1
5785
5702
  }
5786
5703
  },
@@ -5789,7 +5706,7 @@
5789
5706
  "description": null,
5790
5707
  "sourceLocation": {
5791
5708
  "filePath": "src/runtimeScreenLoaders.ts",
5792
- "line": 162,
5709
+ "line": 151,
5793
5710
  "column": 1
5794
5711
  }
5795
5712
  },
@@ -5798,7 +5715,7 @@
5798
5715
  "description": null,
5799
5716
  "sourceLocation": {
5800
5717
  "filePath": "src/runtimeScreenLoaders.ts",
5801
- "line": 189,
5718
+ "line": 178,
5802
5719
  "column": 1
5803
5720
  }
5804
5721
  },
@@ -5807,7 +5724,7 @@
5807
5724
  "description": null,
5808
5725
  "sourceLocation": {
5809
5726
  "filePath": "src/runtimeScreenLoaders.ts",
5810
- "line": 212,
5727
+ "line": 201,
5811
5728
  "column": 1
5812
5729
  }
5813
5730
  },
@@ -5816,7 +5733,7 @@
5816
5733
  "description": null,
5817
5734
  "sourceLocation": {
5818
5735
  "filePath": "src/runtimeScreenLoaders.ts",
5819
- "line": 284,
5736
+ "line": 273,
5820
5737
  "column": 1
5821
5738
  }
5822
5739
  },
@@ -5825,7 +5742,7 @@
5825
5742
  "description": null,
5826
5743
  "sourceLocation": {
5827
5744
  "filePath": "src/runtimeScreenLoaders.ts",
5828
- "line": 411,
5745
+ "line": 400,
5829
5746
  "column": 1
5830
5747
  }
5831
5748
  },
@@ -5834,7 +5751,7 @@
5834
5751
  "description": null,
5835
5752
  "sourceLocation": {
5836
5753
  "filePath": "src/runtimeScreenLoaders.ts",
5837
- "line": 468,
5754
+ "line": 457,
5838
5755
  "column": 1
5839
5756
  }
5840
5757
  },
@@ -5843,7 +5760,7 @@
5843
5760
  "description": null,
5844
5761
  "sourceLocation": {
5845
5762
  "filePath": "src/runtimeScreenLoaders.ts",
5846
- "line": 483,
5763
+ "line": 472,
5847
5764
  "column": 1
5848
5765
  }
5849
5766
  },
@@ -5852,7 +5769,7 @@
5852
5769
  "description": null,
5853
5770
  "sourceLocation": {
5854
5771
  "filePath": "src/runtimeScreenLoaders.ts",
5855
- "line": 498,
5772
+ "line": 487,
5856
5773
  "column": 1
5857
5774
  }
5858
5775
  },
@@ -5861,7 +5778,7 @@
5861
5778
  "description": null,
5862
5779
  "sourceLocation": {
5863
5780
  "filePath": "src/runtimeScreenLoaders.ts",
5864
- "line": 502,
5781
+ "line": 491,
5865
5782
  "column": 1
5866
5783
  }
5867
5784
  },
@@ -5870,7 +5787,7 @@
5870
5787
  "description": null,
5871
5788
  "sourceLocation": {
5872
5789
  "filePath": "src/runtimeScreenLoaders.ts",
5873
- "line": 506,
5790
+ "line": 495,
5874
5791
  "column": 1
5875
5792
  }
5876
5793
  },
@@ -5981,6 +5898,42 @@
5981
5898
  "line": 16,
5982
5899
  "column": 1
5983
5900
  }
5901
+ },
5902
+ {
5903
+ "name": "useRuntimeMediaProps",
5904
+ "description": null,
5905
+ "sourceLocation": {
5906
+ "filePath": "src/useRuntimeMediaProps.ts",
5907
+ "line": 14,
5908
+ "column": 1
5909
+ }
5910
+ },
5911
+ {
5912
+ "name": "filterResolvedValues",
5913
+ "description": null,
5914
+ "sourceLocation": {
5915
+ "filePath": "src/useRuntimeMediaProps.ts",
5916
+ "line": 62,
5917
+ "column": 1
5918
+ }
5919
+ },
5920
+ {
5921
+ "name": "mapsEqual",
5922
+ "description": null,
5923
+ "sourceLocation": {
5924
+ "filePath": "src/useRuntimeMediaProps.ts",
5925
+ "line": 73,
5926
+ "column": 1
5927
+ }
5928
+ },
5929
+ {
5930
+ "name": "isRecord",
5931
+ "description": null,
5932
+ "sourceLocation": {
5933
+ "filePath": "src/useRuntimeMediaProps.ts",
5934
+ "line": 84,
5935
+ "column": 1
5936
+ }
5984
5937
  }
5985
5938
  ],
5986
5939
  "sequenceScenarios": [
@@ -6064,14 +6017,6 @@
6064
6017
  "description": null,
6065
6018
  "isReadme": false
6066
6019
  },
6067
- {
6068
- "kind": "export",
6069
- "name": "createRuntimeManifest",
6070
- "sourcePath": "src/runtimeManifest.ts",
6071
- "symbolName": "createRuntimeManifest",
6072
- "description": null,
6073
- "isReadme": false
6074
- },
6075
6020
  {
6076
6021
  "kind": "export",
6077
6022
  "name": "createRuntimeMemoryStateAdapter",
@@ -6088,30 +6033,6 @@
6088
6033
  "description": null,
6089
6034
  "isReadme": false
6090
6035
  },
6091
- {
6092
- "kind": "export",
6093
- "name": "defineRuntimeAction",
6094
- "sourcePath": "src/runtimeManifest.ts",
6095
- "symbolName": "defineRuntimeAction",
6096
- "description": null,
6097
- "isReadme": false
6098
- },
6099
- {
6100
- "kind": "export",
6101
- "name": "defineRuntimeAdapter",
6102
- "sourcePath": "src/runtimeManifest.ts",
6103
- "symbolName": "defineRuntimeAdapter",
6104
- "description": null,
6105
- "isReadme": false
6106
- },
6107
- {
6108
- "kind": "export",
6109
- "name": "defineRuntimeBinding",
6110
- "sourcePath": "src/runtimeManifest.ts",
6111
- "symbolName": "defineRuntimeBinding",
6112
- "description": null,
6113
- "isReadme": false
6114
- },
6115
6036
  {
6116
6037
  "kind": "export",
6117
6038
  "name": "dispatchRuntimeComponentEvent",
@@ -6136,14 +6057,6 @@
6136
6057
  "description": null,
6137
6058
  "isReadme": false
6138
6059
  },
6139
- {
6140
- "kind": "export",
6141
- "name": "executeRuntimeApiLoaders",
6142
- "sourcePath": "src/runtimeApiLoaders.ts",
6143
- "symbolName": "executeRuntimeApiLoaders",
6144
- "description": null,
6145
- "isReadme": false
6146
- },
6147
6060
  {
6148
6061
  "kind": "export",
6149
6062
  "name": "executeRuntimeScreenOperationLoaders",
@@ -6152,14 +6065,6 @@
6152
6065
  "description": null,
6153
6066
  "isReadme": false
6154
6067
  },
6155
- {
6156
- "kind": "export",
6157
- "name": "listRuntimeCapabilities",
6158
- "sourcePath": "src/runtimeManifest.ts",
6159
- "symbolName": "listRuntimeCapabilities",
6160
- "description": null,
6161
- "isReadme": false
6162
- },
6163
6068
  {
6164
6069
  "kind": "export",
6165
6070
  "name": "ManifestProvider",
@@ -6168,14 +6073,6 @@
6168
6073
  "description": null,
6169
6074
  "isReadme": false
6170
6075
  },
6171
- {
6172
- "kind": "export",
6173
- "name": "materializeRuntimeApiLoaderState",
6174
- "sourcePath": "src/runtimeApiLoaders.ts",
6175
- "symbolName": "materializeRuntimeApiLoaderState",
6176
- "description": null,
6177
- "isReadme": false
6178
- },
6179
6076
  {
6180
6077
  "kind": "export",
6181
6078
  "name": "mergeRuntimeRendererConfig",
@@ -6248,14 +6145,6 @@
6248
6145
  "description": null,
6249
6146
  "isReadme": false
6250
6147
  },
6251
- {
6252
- "kind": "export",
6253
- "name": "resolveScreenApiLoaders",
6254
- "sourcePath": "src/runtimeScreenLoaders.ts",
6255
- "symbolName": "resolveScreenApiLoaders",
6256
- "description": null,
6257
- "isReadme": false
6258
- },
6259
6148
  {
6260
6149
  "kind": "export",
6261
6150
  "name": "resolveScreenOperationLoaders",
@@ -6320,14 +6209,6 @@
6320
6209
  "description": null,
6321
6210
  "isReadme": false
6322
6211
  },
6323
- {
6324
- "kind": "export",
6325
- "name": "useRuntimeApiStateLoaders",
6326
- "sourcePath": "src/runtimeApiLoaders.ts",
6327
- "symbolName": "useRuntimeApiStateLoaders",
6328
- "description": null,
6329
- "isReadme": false
6330
- },
6331
6212
  {
6332
6213
  "kind": "export",
6333
6214
  "name": "useRuntimeRendererConfig",
@@ -6378,11 +6259,6 @@
6378
6259
  "toPath": "src/runtimeActionRegistry.ts",
6379
6260
  "sourcePath": "src/index.ts"
6380
6261
  },
6381
- {
6382
- "fromPath": "src/index.ts",
6383
- "toPath": "src/runtimeApiLoaders.ts",
6384
- "sourcePath": "src/index.ts"
6385
- },
6386
6262
  {
6387
6263
  "fromPath": "src/index.ts",
6388
6264
  "toPath": "src/runtimeBindings.ts",
@@ -6408,6 +6284,11 @@
6408
6284
  "toPath": "src/runtimeManifest.ts",
6409
6285
  "sourcePath": "src/index.ts"
6410
6286
  },
6287
+ {
6288
+ "fromPath": "src/index.ts",
6289
+ "toPath": "src/runtimeMedia.ts",
6290
+ "sourcePath": "src/index.ts"
6291
+ },
6411
6292
  {
6412
6293
  "fromPath": "src/index.ts",
6413
6294
  "toPath": "src/RuntimeRenderer.tsx",
@@ -6440,7 +6321,7 @@
6440
6321
  },
6441
6322
  {
6442
6323
  "fromPath": "src/readme-usage.ts",
6443
- "toPath": "src/index.ts",
6324
+ "toPath": "src/runtimeManifest.ts",
6444
6325
  "sourcePath": "src/readme-usage.ts"
6445
6326
  },
6446
6327
  {
@@ -6488,26 +6369,6 @@
6488
6369
  "toPath": "src/RuntimeRendererConfig.tsx",
6489
6370
  "sourcePath": "src/runtimeActionRegistry.ts"
6490
6371
  },
6491
- {
6492
- "fromPath": "src/runtimeApiLoaders.test.ts",
6493
- "toPath": "src/runtimeApiLoaders.ts",
6494
- "sourcePath": "src/runtimeApiLoaders.test.ts"
6495
- },
6496
- {
6497
- "fromPath": "src/runtimeApiLoaders.test.ts",
6498
- "toPath": "src/runtimeBindings.ts",
6499
- "sourcePath": "src/runtimeApiLoaders.test.ts"
6500
- },
6501
- {
6502
- "fromPath": "src/runtimeApiLoaders.test.ts",
6503
- "toPath": "src/runtimeStateAdapter.ts",
6504
- "sourcePath": "src/runtimeApiLoaders.test.ts"
6505
- },
6506
- {
6507
- "fromPath": "src/runtimeApiLoaders.ts",
6508
- "toPath": "src/runtimeStateAdapter.ts",
6509
- "sourcePath": "src/runtimeApiLoaders.ts"
6510
- },
6511
6372
  {
6512
6373
  "fromPath": "src/runtimeBindings.test.ts",
6513
6374
  "toPath": "src/runtimeBindings.ts",
@@ -6518,6 +6379,11 @@
6518
6379
  "toPath": "src/runtimeNodeProps.ts",
6519
6380
  "sourcePath": "src/runtimeBindings.test.ts"
6520
6381
  },
6382
+ {
6383
+ "fromPath": "src/runtimeDatabaseOperationExecutor.ts",
6384
+ "toPath": "src/runtimeBindings.ts",
6385
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
6386
+ },
6521
6387
  {
6522
6388
  "fromPath": "src/runtimeDataSourceOperations.test.ts",
6523
6389
  "toPath": "src/runtimeDataSourceOperations.ts",
@@ -6528,6 +6394,11 @@
6528
6394
  "toPath": "src/runtimeBindings.ts",
6529
6395
  "sourcePath": "src/runtimeDataSourceOperations.ts"
6530
6396
  },
6397
+ {
6398
+ "fromPath": "src/runtimeDataSourceOperations.ts",
6399
+ "toPath": "src/runtimeDatabaseOperationExecutor.ts",
6400
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
6401
+ },
6531
6402
  {
6532
6403
  "fromPath": "src/runtimeDbPersist.test.ts",
6533
6404
  "toPath": "src/runtimeActionRegistry.ts",
@@ -6558,6 +6429,21 @@
6558
6429
  "toPath": "src/RuntimeRendererConfig.tsx",
6559
6430
  "sourcePath": "src/runtimeEventExecution.ts"
6560
6431
  },
6432
+ {
6433
+ "fromPath": "src/runtimeMedia.test.ts",
6434
+ "toPath": "src/runtimeMedia.ts",
6435
+ "sourcePath": "src/runtimeMedia.test.ts"
6436
+ },
6437
+ {
6438
+ "fromPath": "src/runtimeMediaCache.tsx",
6439
+ "toPath": "src/runtimeMedia.ts",
6440
+ "sourcePath": "src/runtimeMediaCache.tsx"
6441
+ },
6442
+ {
6443
+ "fromPath": "src/runtimeMediaConfig.test.ts",
6444
+ "toPath": "src/RuntimeRendererConfig.tsx",
6445
+ "sourcePath": "src/runtimeMediaConfig.test.ts"
6446
+ },
6561
6447
  {
6562
6448
  "fromPath": "src/runtimeNodeProps.test.ts",
6563
6449
  "toPath": "src/runtimeNodeProps.ts",
@@ -6598,6 +6484,16 @@
6598
6484
  "toPath": "src/runtimeBindings.ts",
6599
6485
  "sourcePath": "src/RuntimeRenderer.tsx"
6600
6486
  },
6487
+ {
6488
+ "fromPath": "src/RuntimeRenderer.tsx",
6489
+ "toPath": "src/runtimeMediaCache.tsx",
6490
+ "sourcePath": "src/RuntimeRenderer.tsx"
6491
+ },
6492
+ {
6493
+ "fromPath": "src/RuntimeRenderer.tsx",
6494
+ "toPath": "src/runtimeMedia.ts",
6495
+ "sourcePath": "src/RuntimeRenderer.tsx"
6496
+ },
6601
6497
  {
6602
6498
  "fromPath": "src/RuntimeRenderer.tsx",
6603
6499
  "toPath": "src/runtimeNodeProps.ts",
@@ -6633,6 +6529,11 @@
6633
6529
  "toPath": "src/runtimeDbPersist.ts",
6634
6530
  "sourcePath": "src/RuntimeRenderer.tsx"
6635
6531
  },
6532
+ {
6533
+ "fromPath": "src/RuntimeRenderer.tsx",
6534
+ "toPath": "src/useRuntimeMediaProps.ts",
6535
+ "sourcePath": "src/RuntimeRenderer.tsx"
6536
+ },
6636
6537
  {
6637
6538
  "fromPath": "src/RuntimeRendererConfig.test.tsx",
6638
6539
  "toPath": "src/RuntimeRendererConfig.tsx",
@@ -6648,6 +6549,11 @@
6648
6549
  "toPath": "src/runtimeBindings.ts",
6649
6550
  "sourcePath": "src/RuntimeRendererConfig.tsx"
6650
6551
  },
6552
+ {
6553
+ "fromPath": "src/RuntimeRendererConfig.tsx",
6554
+ "toPath": "src/runtimeMedia.ts",
6555
+ "sourcePath": "src/RuntimeRendererConfig.tsx"
6556
+ },
6651
6557
  {
6652
6558
  "fromPath": "src/runtimeRepeat.test.ts",
6653
6559
  "toPath": "src/runtimeActionRegistry.ts",
@@ -6675,22 +6581,22 @@
6675
6581
  },
6676
6582
  {
6677
6583
  "fromPath": "src/RuntimeScreen.tsx",
6678
- "toPath": "src/runtimeApiLoaders.ts",
6584
+ "toPath": "src/RuntimeRenderer.tsx",
6679
6585
  "sourcePath": "src/RuntimeScreen.tsx"
6680
6586
  },
6681
6587
  {
6682
6588
  "fromPath": "src/RuntimeScreen.tsx",
6683
- "toPath": "src/RuntimeRenderer.tsx",
6589
+ "toPath": "src/RuntimeRendererConfig.tsx",
6684
6590
  "sourcePath": "src/RuntimeScreen.tsx"
6685
6591
  },
6686
6592
  {
6687
6593
  "fromPath": "src/RuntimeScreen.tsx",
6688
- "toPath": "src/RuntimeRendererConfig.tsx",
6594
+ "toPath": "src/runtimeScreenLoaders.ts",
6689
6595
  "sourcePath": "src/RuntimeScreen.tsx"
6690
6596
  },
6691
6597
  {
6692
6598
  "fromPath": "src/RuntimeScreen.tsx",
6693
- "toPath": "src/runtimeScreenLoaders.ts",
6599
+ "toPath": "src/runtimeStateAdapter.ts",
6694
6600
  "sourcePath": "src/RuntimeScreen.tsx"
6695
6601
  },
6696
6602
  {
@@ -6733,6 +6639,11 @@
6733
6639
  "toPath": "src/RuntimeRendererConfig.tsx",
6734
6640
  "sourcePath": "src/runtimeStateAdapterConfig.test.ts"
6735
6641
  },
6642
+ {
6643
+ "fromPath": "src/useRuntimeMediaProps.ts",
6644
+ "toPath": "src/runtimeMedia.ts",
6645
+ "sourcePath": "src/useRuntimeMediaProps.ts"
6646
+ },
6736
6647
  {
6737
6648
  "fromPath": "tests/runtime.test.ts",
6738
6649
  "toPath": "src/runtimeManifest.ts",
@@ -7142,150 +7053,6 @@
7142
7053
  "callExpression": "isRecord",
7143
7054
  "sourcePath": "src/runtimeActionRegistry.ts"
7144
7055
  },
7145
- {
7146
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7147
- "toSymbol": "describe",
7148
- "callExpression": "describe",
7149
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7150
- },
7151
- {
7152
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7153
- "toSymbol": "it",
7154
- "callExpression": "it",
7155
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7156
- },
7157
- {
7158
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7159
- "toSymbol": "expect",
7160
- "callExpression": "expect",
7161
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7162
- },
7163
- {
7164
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7165
- "toSymbol": "materializeRuntimeApiLoaderState",
7166
- "callExpression": "materializeRuntimeApiLoaderState",
7167
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7168
- },
7169
- {
7170
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7171
- "toSymbol": "createRuntimeMemoryStateAdapter",
7172
- "callExpression": "createRuntimeMemoryStateAdapter",
7173
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7174
- },
7175
- {
7176
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7177
- "toSymbol": "executeRuntimeApiLoaders",
7178
- "callExpression": "executeRuntimeApiLoaders",
7179
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7180
- },
7181
- {
7182
- "fromSymbol": "src/runtimeApiLoaders.test.ts",
7183
- "toSymbol": "resolveRuntimeBindings",
7184
- "callExpression": "resolveRuntimeBindings",
7185
- "sourcePath": "src/runtimeApiLoaders.test.ts"
7186
- },
7187
- {
7188
- "fromSymbol": "materializeRuntimeApiLoaderState",
7189
- "toSymbol": "getGeneratedApiCollectionResource",
7190
- "callExpression": "getGeneratedApiCollectionResource",
7191
- "sourcePath": "src/runtimeApiLoaders.ts"
7192
- },
7193
- {
7194
- "fromSymbol": "materializeRuntimeApiLoaderState",
7195
- "toSymbol": "selectApiLoaderValue",
7196
- "callExpression": "selectApiLoaderValue",
7197
- "sourcePath": "src/runtimeApiLoaders.ts"
7198
- },
7199
- {
7200
- "fromSymbol": "materializeRuntimeApiLoaderState",
7201
- "toSymbol": "toStateValue",
7202
- "callExpression": "toStateValue",
7203
- "sourcePath": "src/runtimeApiLoaders.ts"
7204
- },
7205
- {
7206
- "fromSymbol": "materializeRuntimeApiLoaderState",
7207
- "toSymbol": "writeObjectPath",
7208
- "callExpression": "writeObjectPath",
7209
- "sourcePath": "src/runtimeApiLoaders.ts"
7210
- },
7211
- {
7212
- "fromSymbol": "executeRuntimeApiLoaders",
7213
- "toSymbol": "materializeRuntimeApiLoaderState",
7214
- "callExpression": "materializeRuntimeApiLoaderState",
7215
- "sourcePath": "src/runtimeApiLoaders.ts"
7216
- },
7217
- {
7218
- "fromSymbol": "executeRuntimeApiLoaders",
7219
- "toSymbol": "flattenStateEntries",
7220
- "callExpression": "flattenStateEntries",
7221
- "sourcePath": "src/runtimeApiLoaders.ts"
7222
- },
7223
- {
7224
- "fromSymbol": "src/runtimeApiLoaders.ts",
7225
- "toSymbol": "createRuntimeMemoryStateAdapter",
7226
- "callExpression": "createRuntimeMemoryStateAdapter",
7227
- "sourcePath": "src/runtimeApiLoaders.ts"
7228
- },
7229
- {
7230
- "fromSymbol": "src/runtimeApiLoaders.ts",
7231
- "toSymbol": "executeRuntimeApiLoaders",
7232
- "callExpression": "executeRuntimeApiLoaders",
7233
- "sourcePath": "src/runtimeApiLoaders.ts"
7234
- },
7235
- {
7236
- "fromSymbol": "src/runtimeApiLoaders.ts",
7237
- "toSymbol": "setDiagnostics",
7238
- "callExpression": "setDiagnostics",
7239
- "sourcePath": "src/runtimeApiLoaders.ts"
7240
- },
7241
- {
7242
- "fromSymbol": "src/runtimeApiLoaders.ts",
7243
- "toSymbol": "setStateVersion",
7244
- "callExpression": "setStateVersion",
7245
- "sourcePath": "src/runtimeApiLoaders.ts"
7246
- },
7247
- {
7248
- "fromSymbol": "selectApiLoaderValue",
7249
- "toSymbol": "deterministicIndex",
7250
- "callExpression": "deterministicIndex",
7251
- "sourcePath": "src/runtimeApiLoaders.ts"
7252
- },
7253
- {
7254
- "fromSymbol": "selectApiLoaderValue",
7255
- "toSymbol": "normalizePrimitiveId",
7256
- "callExpression": "normalizePrimitiveId",
7257
- "sourcePath": "src/runtimeApiLoaders.ts"
7258
- },
7259
- {
7260
- "fromSymbol": "src/runtimeApiLoaders.ts",
7261
- "toSymbol": "normalizePrimitiveId",
7262
- "callExpression": "normalizePrimitiveId",
7263
- "sourcePath": "src/runtimeApiLoaders.ts"
7264
- },
7265
- {
7266
- "fromSymbol": "writeObjectPath",
7267
- "toSymbol": "isMutableStateRecord",
7268
- "callExpression": "isMutableStateRecord",
7269
- "sourcePath": "src/runtimeApiLoaders.ts"
7270
- },
7271
- {
7272
- "fromSymbol": "writeObjectPath",
7273
- "toSymbol": "writeObjectPath",
7274
- "callExpression": "writeObjectPath",
7275
- "sourcePath": "src/runtimeApiLoaders.ts"
7276
- },
7277
- {
7278
- "fromSymbol": "toStateValue",
7279
- "toSymbol": "toStateValue",
7280
- "callExpression": "toStateValue",
7281
- "sourcePath": "src/runtimeApiLoaders.ts"
7282
- },
7283
- {
7284
- "fromSymbol": "toStateValue",
7285
- "toSymbol": "isUnknownRecord",
7286
- "callExpression": "isUnknownRecord",
7287
- "sourcePath": "src/runtimeApiLoaders.ts"
7288
- },
7289
7056
  {
7290
7057
  "fromSymbol": "src/runtimeBindings.test.ts",
7291
7058
  "toSymbol": "describe",
@@ -7604,6 +7371,252 @@
7604
7371
  "callExpression": "isRecord",
7605
7372
  "sourcePath": "src/runtimeBindings.ts"
7606
7373
  },
7374
+ {
7375
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7376
+ "toSymbol": "resolveOperationPlan",
7377
+ "callExpression": "resolveOperationPlan",
7378
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7379
+ },
7380
+ {
7381
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7382
+ "toSymbol": "failure",
7383
+ "callExpression": "failure",
7384
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7385
+ },
7386
+ {
7387
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7388
+ "toSymbol": "executeList",
7389
+ "callExpression": "executeList",
7390
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7391
+ },
7392
+ {
7393
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7394
+ "toSymbol": "executeRead",
7395
+ "callExpression": "executeRead",
7396
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7397
+ },
7398
+ {
7399
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7400
+ "toSymbol": "executeCreate",
7401
+ "callExpression": "executeCreate",
7402
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7403
+ },
7404
+ {
7405
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7406
+ "toSymbol": "executeUpdate",
7407
+ "callExpression": "executeUpdate",
7408
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7409
+ },
7410
+ {
7411
+ "fromSymbol": "executeRuntimeDatabaseOperation",
7412
+ "toSymbol": "executeDelete",
7413
+ "callExpression": "executeDelete",
7414
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7415
+ },
7416
+ {
7417
+ "fromSymbol": "resolveOperationPlan",
7418
+ "toSymbol": "asRecord",
7419
+ "callExpression": "asRecord",
7420
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7421
+ },
7422
+ {
7423
+ "fromSymbol": "resolveOperationPlan",
7424
+ "toSymbol": "resolveAdapterId",
7425
+ "callExpression": "resolveAdapterId",
7426
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7427
+ },
7428
+ {
7429
+ "fromSymbol": "resolveOperationPlan",
7430
+ "toSymbol": "invalidPlan",
7431
+ "callExpression": "invalidPlan",
7432
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7433
+ },
7434
+ {
7435
+ "fromSymbol": "resolveOperationPlan",
7436
+ "toSymbol": "isGeneratedCrudOperation",
7437
+ "callExpression": "isGeneratedCrudOperation",
7438
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7439
+ },
7440
+ {
7441
+ "fromSymbol": "resolveOperationPlan",
7442
+ "toSymbol": "resolvePrimaryKey",
7443
+ "callExpression": "resolvePrimaryKey",
7444
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7445
+ },
7446
+ {
7447
+ "fromSymbol": "executeList",
7448
+ "toSymbol": "resolvePage",
7449
+ "callExpression": "resolvePage",
7450
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7451
+ },
7452
+ {
7453
+ "fromSymbol": "executeList",
7454
+ "toSymbol": "failure",
7455
+ "callExpression": "failure",
7456
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7457
+ },
7458
+ {
7459
+ "fromSymbol": "executeList",
7460
+ "toSymbol": "resolveDbResult",
7461
+ "callExpression": "resolveDbResult",
7462
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7463
+ },
7464
+ {
7465
+ "fromSymbol": "executeRead",
7466
+ "toSymbol": "resolveIdentity",
7467
+ "callExpression": "resolveIdentity",
7468
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7469
+ },
7470
+ {
7471
+ "fromSymbol": "executeRead",
7472
+ "toSymbol": "failure",
7473
+ "callExpression": "failure",
7474
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7475
+ },
7476
+ {
7477
+ "fromSymbol": "executeRead",
7478
+ "toSymbol": "resolveDbResult",
7479
+ "callExpression": "resolveDbResult",
7480
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7481
+ },
7482
+ {
7483
+ "fromSymbol": "executeCreate",
7484
+ "toSymbol": "resolveDbResult",
7485
+ "callExpression": "resolveDbResult",
7486
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7487
+ },
7488
+ {
7489
+ "fromSymbol": "executeUpdate",
7490
+ "toSymbol": "resolveIdentity",
7491
+ "callExpression": "resolveIdentity",
7492
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7493
+ },
7494
+ {
7495
+ "fromSymbol": "executeUpdate",
7496
+ "toSymbol": "failure",
7497
+ "callExpression": "failure",
7498
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7499
+ },
7500
+ {
7501
+ "fromSymbol": "executeUpdate",
7502
+ "toSymbol": "omitKey",
7503
+ "callExpression": "omitKey",
7504
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7505
+ },
7506
+ {
7507
+ "fromSymbol": "executeUpdate",
7508
+ "toSymbol": "createIdentityFilter",
7509
+ "callExpression": "createIdentityFilter",
7510
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7511
+ },
7512
+ {
7513
+ "fromSymbol": "executeUpdate",
7514
+ "toSymbol": "resolveDbResult",
7515
+ "callExpression": "resolveDbResult",
7516
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7517
+ },
7518
+ {
7519
+ "fromSymbol": "executeDelete",
7520
+ "toSymbol": "resolveIdentity",
7521
+ "callExpression": "resolveIdentity",
7522
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7523
+ },
7524
+ {
7525
+ "fromSymbol": "executeDelete",
7526
+ "toSymbol": "failure",
7527
+ "callExpression": "failure",
7528
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7529
+ },
7530
+ {
7531
+ "fromSymbol": "executeDelete",
7532
+ "toSymbol": "createIdentityFilter",
7533
+ "callExpression": "createIdentityFilter",
7534
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7535
+ },
7536
+ {
7537
+ "fromSymbol": "executeDelete",
7538
+ "toSymbol": "resolveDbResult",
7539
+ "callExpression": "resolveDbResult",
7540
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7541
+ },
7542
+ {
7543
+ "fromSymbol": "resolveDbResult",
7544
+ "toSymbol": "failure",
7545
+ "callExpression": "failure",
7546
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7547
+ },
7548
+ {
7549
+ "fromSymbol": "resolveDbResult",
7550
+ "toSymbol": "toBindingValue",
7551
+ "callExpression": "toBindingValue",
7552
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7553
+ },
7554
+ {
7555
+ "fromSymbol": "resolveDbResult",
7556
+ "toSymbol": "select",
7557
+ "callExpression": "select",
7558
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7559
+ },
7560
+ {
7561
+ "fromSymbol": "resolvePage",
7562
+ "toSymbol": "isOptionalPageNumber",
7563
+ "callExpression": "isOptionalPageNumber",
7564
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7565
+ },
7566
+ {
7567
+ "fromSymbol": "invalidPlan",
7568
+ "toSymbol": "failure",
7569
+ "callExpression": "failure",
7570
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7571
+ },
7572
+ {
7573
+ "fromSymbol": "toBindingValue",
7574
+ "toSymbol": "toBindingValue",
7575
+ "callExpression": "toBindingValue",
7576
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7577
+ },
7578
+ {
7579
+ "fromSymbol": "toBindingValue",
7580
+ "toSymbol": "asRecord",
7581
+ "callExpression": "asRecord",
7582
+ "sourcePath": "src/runtimeDatabaseOperationExecutor.ts"
7583
+ },
7584
+ {
7585
+ "fromSymbol": "createGeneratedDataSource",
7586
+ "toSymbol": "createGeneratedApiDataSource",
7587
+ "callExpression": "createGeneratedApiDataSource",
7588
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7589
+ },
7590
+ {
7591
+ "fromSymbol": "createGeneratedExecutor",
7592
+ "toSymbol": "createRuntimeDataSourceOperationExecutor",
7593
+ "callExpression": "createRuntimeDataSourceOperationExecutor",
7594
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7595
+ },
7596
+ {
7597
+ "fromSymbol": "executeGeneratedOperation",
7598
+ "toSymbol": "createGeneratedDataSource",
7599
+ "callExpression": "createGeneratedDataSource",
7600
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7601
+ },
7602
+ {
7603
+ "fromSymbol": "executeGeneratedOperation",
7604
+ "toSymbol": "__type",
7605
+ "callExpression": "createGeneratedExecutor(adapter)",
7606
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7607
+ },
7608
+ {
7609
+ "fromSymbol": "executeGeneratedOperation",
7610
+ "toSymbol": "createGeneratedExecutor",
7611
+ "callExpression": "createGeneratedExecutor",
7612
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7613
+ },
7614
+ {
7615
+ "fromSymbol": "executeGeneratedOperation",
7616
+ "toSymbol": "getFixtureEndpoint",
7617
+ "callExpression": "getFixtureEndpoint",
7618
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7619
+ },
7607
7620
  {
7608
7621
  "fromSymbol": "src/runtimeDataSourceOperations.test.ts",
7609
7622
  "toSymbol": "describe",
@@ -7618,14 +7631,14 @@
7618
7631
  },
7619
7632
  {
7620
7633
  "fromSymbol": "src/runtimeDataSourceOperations.test.ts",
7621
- "toSymbol": "createDataSources",
7622
- "callExpression": "createDataSources",
7634
+ "toSymbol": "getFixtureDataSource",
7635
+ "callExpression": "getFixtureDataSource",
7623
7636
  "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7624
7637
  },
7625
7638
  {
7626
7639
  "fromSymbol": "src/runtimeDataSourceOperations.test.ts",
7627
- "toSymbol": "getFixtureDataSource",
7628
- "callExpression": "getFixtureDataSource",
7640
+ "toSymbol": "createExternalDataSources",
7641
+ "callExpression": "createExternalDataSources",
7629
7642
  "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7630
7643
  },
7631
7644
  {
@@ -7652,10 +7665,28 @@
7652
7665
  "callExpression": "expect",
7653
7666
  "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7654
7667
  },
7668
+ {
7669
+ "fromSymbol": "src/runtimeDataSourceOperations.test.ts",
7670
+ "toSymbol": "createDatabaseFixture",
7671
+ "callExpression": "createDatabaseFixture",
7672
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7673
+ },
7674
+ {
7675
+ "fromSymbol": "src/runtimeDataSourceOperations.test.ts",
7676
+ "toSymbol": "executeGeneratedOperation",
7677
+ "callExpression": "executeGeneratedOperation",
7678
+ "sourcePath": "src/runtimeDataSourceOperations.test.ts"
7679
+ },
7680
+ {
7681
+ "fromSymbol": "src/runtimeDataSourceOperations.ts",
7682
+ "toSymbol": "missingEndpoint",
7683
+ "callExpression": "missingEndpoint",
7684
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
7685
+ },
7655
7686
  {
7656
7687
  "fromSymbol": "src/runtimeDataSourceOperations.ts",
7657
- "toSymbol": "createRuntimeDataSourceOperationDiagnostic",
7658
- "callExpression": "createRuntimeDataSourceOperationDiagnostic",
7688
+ "toSymbol": "missingOperation",
7689
+ "callExpression": "missingOperation",
7659
7690
  "sourcePath": "src/runtimeDataSourceOperations.ts"
7660
7691
  },
7661
7692
  {
@@ -7665,9 +7696,39 @@
7665
7696
  "sourcePath": "src/runtimeDataSourceOperations.ts"
7666
7697
  },
7667
7698
  {
7668
- "fromSymbol": "src/runtimeDataSourceOperations.ts",
7669
- "toSymbol": "testEndpoint",
7670
- "callExpression": "testEndpoint",
7699
+ "fromSymbol": "src/runtimeDataSourceOperations.ts",
7700
+ "toSymbol": "invalidInput",
7701
+ "callExpression": "invalidInput",
7702
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
7703
+ },
7704
+ {
7705
+ "fromSymbol": "src/runtimeDataSourceOperations.ts",
7706
+ "toSymbol": "executeRuntimeDatabaseOperation",
7707
+ "callExpression": "executeRuntimeDatabaseOperation",
7708
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
7709
+ },
7710
+ {
7711
+ "fromSymbol": "src/runtimeDataSourceOperations.ts",
7712
+ "toSymbol": "testEndpoint",
7713
+ "callExpression": "testEndpoint",
7714
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
7715
+ },
7716
+ {
7717
+ "fromSymbol": "missingEndpoint",
7718
+ "toSymbol": "failure",
7719
+ "callExpression": "failure",
7720
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
7721
+ },
7722
+ {
7723
+ "fromSymbol": "missingOperation",
7724
+ "toSymbol": "failure",
7725
+ "callExpression": "failure",
7726
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
7727
+ },
7728
+ {
7729
+ "fromSymbol": "invalidInput",
7730
+ "toSymbol": "failure",
7731
+ "callExpression": "failure",
7671
7732
  "sourcePath": "src/runtimeDataSourceOperations.ts"
7672
7733
  },
7673
7734
  {
@@ -7814,6 +7875,162 @@
7814
7875
  "callExpression": "report",
7815
7876
  "sourcePath": "src/runtimeEventExecution.ts"
7816
7877
  },
7878
+ {
7879
+ "fromSymbol": "src/runtimeMedia.test.ts",
7880
+ "toSymbol": "describe",
7881
+ "callExpression": "describe",
7882
+ "sourcePath": "src/runtimeMedia.test.ts"
7883
+ },
7884
+ {
7885
+ "fromSymbol": "src/runtimeMedia.test.ts",
7886
+ "toSymbol": "it",
7887
+ "callExpression": "it",
7888
+ "sourcePath": "src/runtimeMedia.test.ts"
7889
+ },
7890
+ {
7891
+ "fromSymbol": "src/runtimeMedia.test.ts",
7892
+ "toSymbol": "expect",
7893
+ "callExpression": "expect",
7894
+ "sourcePath": "src/runtimeMedia.test.ts"
7895
+ },
7896
+ {
7897
+ "fromSymbol": "src/runtimeMedia.test.ts",
7898
+ "toSymbol": "collectRuntimeMediaReferenceIds",
7899
+ "callExpression": "collectRuntimeMediaReferenceIds",
7900
+ "sourcePath": "src/runtimeMedia.test.ts"
7901
+ },
7902
+ {
7903
+ "fromSymbol": "src/runtimeMedia.test.ts",
7904
+ "toSymbol": "createSyncRuntimeMediaResolutionMap",
7905
+ "callExpression": "createSyncRuntimeMediaResolutionMap",
7906
+ "sourcePath": "src/runtimeMedia.test.ts"
7907
+ },
7908
+ {
7909
+ "fromSymbol": "src/runtimeMedia.test.ts",
7910
+ "toSymbol": "replaceRuntimeMediaReferences",
7911
+ "callExpression": "replaceRuntimeMediaReferences",
7912
+ "sourcePath": "src/runtimeMedia.test.ts"
7913
+ },
7914
+ {
7915
+ "fromSymbol": "src/runtimeMedia.test.ts",
7916
+ "toSymbol": "createRuntimeMediaResolutionCache",
7917
+ "callExpression": "createRuntimeMediaResolutionCache",
7918
+ "sourcePath": "src/runtimeMedia.test.ts"
7919
+ },
7920
+ {
7921
+ "fromSymbol": "src/runtimeMedia.test.ts",
7922
+ "toSymbol": "resolveRuntimeMediaAsset",
7923
+ "callExpression": "resolveRuntimeMediaAsset",
7924
+ "sourcePath": "src/runtimeMedia.test.ts"
7925
+ },
7926
+ {
7927
+ "fromSymbol": "collectRuntimeMediaReferenceIds",
7928
+ "toSymbol": "collectMediaReferenceIds",
7929
+ "callExpression": "collectMediaReferenceIds",
7930
+ "sourcePath": "src/runtimeMedia.ts"
7931
+ },
7932
+ {
7933
+ "fromSymbol": "replaceRuntimeMediaReferences",
7934
+ "toSymbol": "replaceMediaValue",
7935
+ "callExpression": "replaceMediaValue",
7936
+ "sourcePath": "src/runtimeMedia.ts"
7937
+ },
7938
+ {
7939
+ "fromSymbol": "resolveRuntimeMediaAsset",
7940
+ "toSymbol": "resolver",
7941
+ "callExpression": "resolver",
7942
+ "sourcePath": "src/runtimeMedia.ts"
7943
+ },
7944
+ {
7945
+ "fromSymbol": "collectMediaReferenceIds",
7946
+ "toSymbol": "isMediaAssetReference",
7947
+ "callExpression": "isMediaAssetReference",
7948
+ "sourcePath": "src/runtimeMedia.ts"
7949
+ },
7950
+ {
7951
+ "fromSymbol": "src/runtimeMedia.ts",
7952
+ "toSymbol": "collectMediaReferenceIds",
7953
+ "callExpression": "collectMediaReferenceIds",
7954
+ "sourcePath": "src/runtimeMedia.ts"
7955
+ },
7956
+ {
7957
+ "fromSymbol": "collectMediaReferenceIds",
7958
+ "toSymbol": "isPlainObject",
7959
+ "callExpression": "isPlainObject",
7960
+ "sourcePath": "src/runtimeMedia.ts"
7961
+ },
7962
+ {
7963
+ "fromSymbol": "replaceMediaValue",
7964
+ "toSymbol": "isMediaAssetReference",
7965
+ "callExpression": "isMediaAssetReference",
7966
+ "sourcePath": "src/runtimeMedia.ts"
7967
+ },
7968
+ {
7969
+ "fromSymbol": "src/runtimeMedia.ts",
7970
+ "toSymbol": "replaceMediaValue",
7971
+ "callExpression": "replaceMediaValue",
7972
+ "sourcePath": "src/runtimeMedia.ts"
7973
+ },
7974
+ {
7975
+ "fromSymbol": "replaceMediaValue",
7976
+ "toSymbol": "isPlainObject",
7977
+ "callExpression": "isPlainObject",
7978
+ "sourcePath": "src/runtimeMedia.ts"
7979
+ },
7980
+ {
7981
+ "fromSymbol": "replaceMediaValue",
7982
+ "toSymbol": "replaceMediaValue",
7983
+ "callExpression": "replaceMediaValue",
7984
+ "sourcePath": "src/runtimeMedia.ts"
7985
+ },
7986
+ {
7987
+ "fromSymbol": "src/runtimeMediaCache.tsx",
7988
+ "toSymbol": "createContext",
7989
+ "callExpression": "createContext",
7990
+ "sourcePath": "src/runtimeMediaCache.tsx"
7991
+ },
7992
+ {
7993
+ "fromSymbol": "useRuntimeMediaResolutionCache",
7994
+ "toSymbol": "useContext",
7995
+ "callExpression": "useContext",
7996
+ "sourcePath": "src/runtimeMediaCache.tsx"
7997
+ },
7998
+ {
7999
+ "fromSymbol": "useRuntimeMediaResolutionCache",
8000
+ "toSymbol": "useMemo",
8001
+ "callExpression": "useMemo",
8002
+ "sourcePath": "src/runtimeMediaCache.tsx"
8003
+ },
8004
+ {
8005
+ "fromSymbol": "src/runtimeMediaCache.tsx",
8006
+ "toSymbol": "createRuntimeMediaResolutionCache",
8007
+ "callExpression": "createRuntimeMediaResolutionCache",
8008
+ "sourcePath": "src/runtimeMediaCache.tsx"
8009
+ },
8010
+ {
8011
+ "fromSymbol": "src/runtimeMediaConfig.test.ts",
8012
+ "toSymbol": "describe",
8013
+ "callExpression": "describe",
8014
+ "sourcePath": "src/runtimeMediaConfig.test.ts"
8015
+ },
8016
+ {
8017
+ "fromSymbol": "src/runtimeMediaConfig.test.ts",
8018
+ "toSymbol": "it",
8019
+ "callExpression": "it",
8020
+ "sourcePath": "src/runtimeMediaConfig.test.ts"
8021
+ },
8022
+ {
8023
+ "fromSymbol": "src/runtimeMediaConfig.test.ts",
8024
+ "toSymbol": "mergeRuntimeRendererConfig",
8025
+ "callExpression": "mergeRuntimeRendererConfig",
8026
+ "sourcePath": "src/runtimeMediaConfig.test.ts"
8027
+ },
8028
+ {
8029
+ "fromSymbol": "src/runtimeMediaConfig.test.ts",
8030
+ "toSymbol": "expect",
8031
+ "callExpression": "expect",
8032
+ "sourcePath": "src/runtimeMediaConfig.test.ts"
8033
+ },
7817
8034
  {
7818
8035
  "fromSymbol": "src/runtimeNodeProps.test.ts",
7819
8036
  "toSymbol": "describe",
@@ -8012,6 +8229,12 @@
8012
8229
  "callExpression": "useRuntimeRendererConfig",
8013
8230
  "sourcePath": "src/RuntimeRenderer.tsx"
8014
8231
  },
8232
+ {
8233
+ "fromSymbol": "RuntimeRenderer",
8234
+ "toSymbol": "useRuntimeMediaResolutionCache",
8235
+ "callExpression": "useRuntimeMediaResolutionCache",
8236
+ "sourcePath": "src/RuntimeRenderer.tsx"
8237
+ },
8015
8238
  {
8016
8239
  "fromSymbol": "src/RuntimeRenderer.tsx",
8017
8240
  "toSymbol": "setLocalOperationResults",
@@ -8090,6 +8313,24 @@
8090
8313
  "callExpression": "effectiveConfig.onDiagnostics",
8091
8314
  "sourcePath": "src/RuntimeRenderer.tsx"
8092
8315
  },
8316
+ {
8317
+ "fromSymbol": "RuntimeRenderer",
8318
+ "toSymbol": "resolveRuntimeNodeProps",
8319
+ "callExpression": "resolveRuntimeNodeProps",
8320
+ "sourcePath": "src/RuntimeRenderer.tsx"
8321
+ },
8322
+ {
8323
+ "fromSymbol": "RuntimeRenderer",
8324
+ "toSymbol": "useRuntimeMediaProps",
8325
+ "callExpression": "useRuntimeMediaProps",
8326
+ "sourcePath": "src/RuntimeRenderer.tsx"
8327
+ },
8328
+ {
8329
+ "fromSymbol": "RuntimeRenderer",
8330
+ "toSymbol": "resolveNodeProps",
8331
+ "callExpression": "effectiveConfig.resolveNodeProps",
8332
+ "sourcePath": "src/RuntimeRenderer.tsx"
8333
+ },
8093
8334
  {
8094
8335
  "fromSymbol": "RuntimeRenderer",
8095
8336
  "toSymbol": "getUnknownComponentDiagnostic",
@@ -8114,12 +8355,6 @@
8114
8355
  "callExpression": "createRuntimeRepeatBindingContext",
8115
8356
  "sourcePath": "src/RuntimeRenderer.tsx"
8116
8357
  },
8117
- {
8118
- "fromSymbol": "RuntimeRenderer",
8119
- "toSymbol": "resolveRuntimeNodeProps",
8120
- "callExpression": "resolveRuntimeNodeProps",
8121
- "sourcePath": "src/RuntimeRenderer.tsx"
8122
- },
8123
8358
  {
8124
8359
  "fromSymbol": "RuntimeRenderer",
8125
8360
  "toSymbol": "wrapRuntimeActionProps",
@@ -8428,20 +8663,8 @@
8428
8663
  },
8429
8664
  {
8430
8665
  "fromSymbol": "src/RuntimeScreen.tsx",
8431
- "toSymbol": "resolveScreenApiLoaders",
8432
- "callExpression": "resolveScreenApiLoaders",
8433
- "sourcePath": "src/RuntimeScreen.tsx"
8434
- },
8435
- {
8436
- "fromSymbol": "src/RuntimeScreen.tsx",
8437
- "toSymbol": "resolveApiLoadersFromBindings",
8438
- "callExpression": "resolveApiLoadersFromBindings",
8439
- "sourcePath": "src/RuntimeScreen.tsx"
8440
- },
8441
- {
8442
- "fromSymbol": "RuntimeScreen",
8443
- "toSymbol": "useRuntimeApiStateLoaders",
8444
- "callExpression": "useRuntimeApiStateLoaders",
8666
+ "toSymbol": "createRuntimeMemoryStateAdapter",
8667
+ "callExpression": "createRuntimeMemoryStateAdapter",
8445
8668
  "sourcePath": "src/RuntimeScreen.tsx"
8446
8669
  },
8447
8670
  {
@@ -8450,12 +8673,6 @@
8450
8673
  "callExpression": "useRuntimeScreenOperationLoaders",
8451
8674
  "sourcePath": "src/RuntimeScreen.tsx"
8452
8675
  },
8453
- {
8454
- "fromSymbol": "resolveApiLoadersFromBindings",
8455
- "toSymbol": "resolveApiLoaderFromPropBinding",
8456
- "callExpression": "resolveApiLoaderFromPropBinding",
8457
- "sourcePath": "src/RuntimeScreen.tsx"
8458
- },
8459
8676
  {
8460
8677
  "fromSymbol": "createOperationResults",
8461
8678
  "toSymbol": "createRuntimeBindingOperationKey",
@@ -8996,6 +9213,54 @@
8996
9213
  "callExpression": "resolveRuntimeBindings",
8997
9214
  "sourcePath": "src/runtimeStateAdapterConfig.test.ts"
8998
9215
  },
9216
+ {
9217
+ "fromSymbol": "useRuntimeMediaProps",
9218
+ "toSymbol": "collectRuntimeMediaReferenceIds",
9219
+ "callExpression": "collectRuntimeMediaReferenceIds",
9220
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9221
+ },
9222
+ {
9223
+ "fromSymbol": "src/useRuntimeMediaProps.ts",
9224
+ "toSymbol": "setAsyncResolved",
9225
+ "callExpression": "setAsyncResolved",
9226
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9227
+ },
9228
+ {
9229
+ "fromSymbol": "src/useRuntimeMediaProps.ts",
9230
+ "toSymbol": "filterResolvedValues",
9231
+ "callExpression": "filterResolvedValues",
9232
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9233
+ },
9234
+ {
9235
+ "fromSymbol": "src/useRuntimeMediaProps.ts",
9236
+ "toSymbol": "resolveRuntimeMediaAsset",
9237
+ "callExpression": "resolveRuntimeMediaAsset",
9238
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9239
+ },
9240
+ {
9241
+ "fromSymbol": "useRuntimeMediaProps",
9242
+ "toSymbol": "createSyncRuntimeMediaResolutionMap",
9243
+ "callExpression": "createSyncRuntimeMediaResolutionMap",
9244
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9245
+ },
9246
+ {
9247
+ "fromSymbol": "useRuntimeMediaProps",
9248
+ "toSymbol": "replaceRuntimeMediaReferences",
9249
+ "callExpression": "replaceRuntimeMediaReferences",
9250
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9251
+ },
9252
+ {
9253
+ "fromSymbol": "useRuntimeMediaProps",
9254
+ "toSymbol": "isRecord",
9255
+ "callExpression": "isRecord",
9256
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9257
+ },
9258
+ {
9259
+ "fromSymbol": "filterResolvedValues",
9260
+ "toSymbol": "mapsEqual",
9261
+ "callExpression": "mapsEqual",
9262
+ "sourcePath": "src/useRuntimeMediaProps.ts"
9263
+ },
8999
9264
  {
9000
9265
  "fromSymbol": "tests/runtime.test.ts",
9001
9266
  "toSymbol": "describe",
@@ -9176,11 +9441,6 @@
9176
9441
  "toType": "UiNode",
9177
9442
  "sourcePath": "src/runtimeActionRegistry.ts"
9178
9443
  },
9179
- {
9180
- "fromSymbol": "RuntimeComponentEventDispatchArgs",
9181
- "toType": "Users",
9182
- "sourcePath": "src/runtimeActionRegistry.ts"
9183
- },
9184
9444
  {
9185
9445
  "fromSymbol": "RuntimeEventPropWrapArgs",
9186
9446
  "toType": "BindingValue",
@@ -9206,11 +9466,6 @@
9206
9466
  "toType": "UiNode",
9207
9467
  "sourcePath": "src/runtimeActionRegistry.ts"
9208
9468
  },
9209
- {
9210
- "fromSymbol": "RuntimeEventPropWrapArgs",
9211
- "toType": "Users",
9212
- "sourcePath": "src/runtimeActionRegistry.ts"
9213
- },
9214
9469
  {
9215
9470
  "fromSymbol": "createComponentEventFromHandlerArgs",
9216
9471
  "toType": "ComponentEventDto",
@@ -9296,81 +9551,6 @@
9296
9551
  "toType": "RuntimeEventPropWrapArgs",
9297
9552
  "sourcePath": "src/runtimeActionRegistry.ts"
9298
9553
  },
9299
- {
9300
- "fromSymbol": "RuntimeApiLoaderExecutionResult",
9301
- "toType": "RuntimeApiLoaderDiagnostic",
9302
- "sourcePath": "src/runtimeApiLoaders.ts"
9303
- },
9304
- {
9305
- "fromSymbol": "RuntimeApiLoaderMaterializationResult",
9306
- "toType": "Readonly",
9307
- "sourcePath": "src/runtimeApiLoaders.ts"
9308
- },
9309
- {
9310
- "fromSymbol": "RuntimeApiLoaderMaterializationResult",
9311
- "toType": "RuntimeApiLoaderDiagnostic",
9312
- "sourcePath": "src/runtimeApiLoaders.ts"
9313
- },
9314
- {
9315
- "fromSymbol": "RuntimeApiLoaderMaterializationResult",
9316
- "toType": "StateValue",
9317
- "sourcePath": "src/runtimeApiLoaders.ts"
9318
- },
9319
- {
9320
- "fromSymbol": "executeRuntimeApiLoaders",
9321
- "toType": "AppDataManifest",
9322
- "sourcePath": "src/runtimeApiLoaders.ts"
9323
- },
9324
- {
9325
- "fromSymbol": "executeRuntimeApiLoaders",
9326
- "toType": "RuntimeApiLoaderDefinition",
9327
- "sourcePath": "src/runtimeApiLoaders.ts"
9328
- },
9329
- {
9330
- "fromSymbol": "executeRuntimeApiLoaders",
9331
- "toType": "RuntimeApiLoaderExecutionResult",
9332
- "sourcePath": "src/runtimeApiLoaders.ts"
9333
- },
9334
- {
9335
- "fromSymbol": "executeRuntimeApiLoaders",
9336
- "toType": "StateAdapter",
9337
- "sourcePath": "src/runtimeApiLoaders.ts"
9338
- },
9339
- {
9340
- "fromSymbol": "materializeRuntimeApiLoaderState",
9341
- "toType": "AppDataManifest",
9342
- "sourcePath": "src/runtimeApiLoaders.ts"
9343
- },
9344
- {
9345
- "fromSymbol": "materializeRuntimeApiLoaderState",
9346
- "toType": "RuntimeApiLoaderDefinition",
9347
- "sourcePath": "src/runtimeApiLoaders.ts"
9348
- },
9349
- {
9350
- "fromSymbol": "materializeRuntimeApiLoaderState",
9351
- "toType": "RuntimeApiLoaderMaterializationResult",
9352
- "sourcePath": "src/runtimeApiLoaders.ts"
9353
- },
9354
- {
9355
- "fromSymbol": "useRuntimeApiStateLoaders",
9356
- "toType": "AppDataManifest",
9357
- "sourcePath": "src/runtimeApiLoaders.ts"
9358
- },
9359
- {
9360
- "fromSymbol": "useRuntimeApiStateLoaders",
9361
- "toType": "RuntimeApiLoaderDefinition",
9362
- "sourcePath": "src/runtimeApiLoaders.ts"
9363
- },
9364
- {
9365
- "fromSymbol": "useRuntimeApiStateLoaders",
9366
- "toType": "RuntimeApiLoaderDiagnostic",
9367
- "sourcePath": "src/runtimeApiLoaders.ts"
9368
- },
9369
- {
9370
- "fromSymbol": "useRuntimeApiStateLoaders",
9371
- "toType": "StateAdapter",
9372
- "sourcePath": "src/runtimeApiLoaders.ts"
9373
- },
9374
9554
  {
9375
9555
  "fromSymbol": "RuntimeBindingOperationExecutionArgs",
9376
9556
  "toType": "BindingOperationRef",
@@ -9436,11 +9616,6 @@
9436
9616
  "toType": "UiNode",
9437
9617
  "sourcePath": "src/runtimeBindings.ts"
9438
9618
  },
9439
- {
9440
- "fromSymbol": "RuntimeBindingResolutionArgs",
9441
- "toType": "Users",
9442
- "sourcePath": "src/runtimeBindings.ts"
9443
- },
9444
9619
  {
9445
9620
  "fromSymbol": "RuntimeBindingResolutionContext",
9446
9621
  "toType": "BindingValue",
@@ -9476,11 +9651,6 @@
9476
9651
  "toType": "StateAdapter",
9477
9652
  "sourcePath": "src/runtimeBindings.ts"
9478
9653
  },
9479
- {
9480
- "fromSymbol": "RuntimeBindingResolutionContext",
9481
- "toType": "Users",
9482
- "sourcePath": "src/runtimeBindings.ts"
9483
- },
9484
9654
  {
9485
9655
  "fromSymbol": "RuntimeBindingResolutionResult",
9486
9656
  "toType": "DataSourceDiagnostic",
@@ -9586,6 +9756,11 @@
9586
9756
  "toType": "Readonly",
9587
9757
  "sourcePath": "src/runtimeBindings.ts"
9588
9758
  },
9759
+ {
9760
+ "fromSymbol": "RuntimeDataSourceOperationExecutorOptions",
9761
+ "toType": "DbAdapter",
9762
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
9763
+ },
9589
9764
  {
9590
9765
  "fromSymbol": "RuntimeDataSourceOperationExecutorOptions",
9591
9766
  "toType": "EndpointTestCredentialResolver",
@@ -9596,6 +9771,11 @@
9596
9771
  "toType": "EndpointTestFetch",
9597
9772
  "sourcePath": "src/runtimeDataSourceOperations.ts"
9598
9773
  },
9774
+ {
9775
+ "fromSymbol": "RuntimeDataSourceOperationExecutorOptions",
9776
+ "toType": "Readonly",
9777
+ "sourcePath": "src/runtimeDataSourceOperations.ts"
9778
+ },
9599
9779
  {
9600
9780
  "fromSymbol": "createRuntimeDataSourceOperationExecutor",
9601
9781
  "toType": "RuntimeBindingOperationExecutor",
@@ -9777,44 +9957,9 @@
9777
9957
  "sourcePath": "src/runtimeManifest.ts"
9778
9958
  },
9779
9959
  {
9780
- "fromSymbol": "createRuntimeManifest",
9781
- "toType": "RuntimeManifest",
9782
- "sourcePath": "src/runtimeManifest.ts"
9783
- },
9784
- {
9785
- "fromSymbol": "createRuntimeManifest",
9786
- "toType": "RuntimeManifestInput",
9787
- "sourcePath": "src/runtimeManifest.ts"
9788
- },
9789
- {
9790
- "fromSymbol": "defineRuntimeAction",
9791
- "toType": "Data",
9792
- "sourcePath": "src/runtimeManifest.ts"
9793
- },
9794
- {
9795
- "fromSymbol": "defineRuntimeAction",
9796
- "toType": "RuntimeActionDescriptor",
9797
- "sourcePath": "src/runtimeManifest.ts"
9798
- },
9799
- {
9800
- "fromSymbol": "defineRuntimeAdapter",
9801
- "toType": "Options",
9802
- "sourcePath": "src/runtimeManifest.ts"
9803
- },
9804
- {
9805
- "fromSymbol": "defineRuntimeAdapter",
9806
- "toType": "RuntimeAdapterDescriptor",
9807
- "sourcePath": "src/runtimeManifest.ts"
9808
- },
9809
- {
9810
- "fromSymbol": "defineRuntimeBinding",
9811
- "toType": "RuntimeBindingDescriptor",
9812
- "sourcePath": "src/runtimeManifest.ts"
9813
- },
9814
- {
9815
- "fromSymbol": "defineRuntimeBinding",
9816
- "toType": "Value",
9817
- "sourcePath": "src/runtimeManifest.ts"
9960
+ "fromSymbol": "RuntimeMediaAssetResolverArgs",
9961
+ "toType": "MediaAsset",
9962
+ "sourcePath": "src/runtimeMedia.ts"
9818
9963
  },
9819
9964
  {
9820
9965
  "fromSymbol": "RuntimeRendererProps",
@@ -9856,6 +10001,11 @@
9856
10001
  "toType": "IntrinsicElements",
9857
10002
  "sourcePath": "src/RuntimeRenderer.tsx"
9858
10003
  },
10004
+ {
10005
+ "fromSymbol": "RuntimeRendererProps",
10006
+ "toType": "MediaAsset",
10007
+ "sourcePath": "src/RuntimeRenderer.tsx"
10008
+ },
9859
10009
  {
9860
10010
  "fromSymbol": "RuntimeRendererProps",
9861
10011
  "toType": "React",
@@ -9883,27 +10033,27 @@
9883
10033
  },
9884
10034
  {
9885
10035
  "fromSymbol": "RuntimeRendererProps",
9886
- "toType": "RuntimeRendererConfig",
10036
+ "toType": "RuntimeMediaAssetResolver",
9887
10037
  "sourcePath": "src/RuntimeRenderer.tsx"
9888
10038
  },
9889
10039
  {
9890
10040
  "fromSymbol": "RuntimeRendererProps",
9891
- "toType": "RuntimeRendererWrapArgs",
10041
+ "toType": "RuntimeRendererConfig",
9892
10042
  "sourcePath": "src/RuntimeRenderer.tsx"
9893
10043
  },
9894
10044
  {
9895
10045
  "fromSymbol": "RuntimeRendererProps",
9896
- "toType": "StateAdapter",
10046
+ "toType": "RuntimeRendererWrapArgs",
9897
10047
  "sourcePath": "src/RuntimeRenderer.tsx"
9898
10048
  },
9899
10049
  {
9900
10050
  "fromSymbol": "RuntimeRendererProps",
9901
- "toType": "UiNode",
10051
+ "toType": "StateAdapter",
9902
10052
  "sourcePath": "src/RuntimeRenderer.tsx"
9903
10053
  },
9904
10054
  {
9905
10055
  "fromSymbol": "RuntimeRendererProps",
9906
- "toType": "Users",
10056
+ "toType": "UiNode",
9907
10057
  "sourcePath": "src/RuntimeRenderer.tsx"
9908
10058
  },
9909
10059
  {
@@ -9996,6 +10146,11 @@
9996
10146
  "toType": "IntrinsicElements",
9997
10147
  "sourcePath": "src/RuntimeRendererConfig.tsx"
9998
10148
  },
10149
+ {
10150
+ "fromSymbol": "RuntimeRendererConfig",
10151
+ "toType": "MediaAsset",
10152
+ "sourcePath": "src/RuntimeRendererConfig.tsx"
10153
+ },
9999
10154
  {
10000
10155
  "fromSymbol": "RuntimeRendererConfig",
10001
10156
  "toType": "React",
@@ -10033,22 +10188,22 @@
10033
10188
  },
10034
10189
  {
10035
10190
  "fromSymbol": "RuntimeRendererConfig",
10036
- "toType": "RuntimeNodePropsResolver",
10191
+ "toType": "RuntimeMediaAssetResolver",
10037
10192
  "sourcePath": "src/RuntimeRendererConfig.tsx"
10038
10193
  },
10039
10194
  {
10040
10195
  "fromSymbol": "RuntimeRendererConfig",
10041
- "toType": "RuntimeRendererWrapArgs",
10196
+ "toType": "RuntimeNodePropsResolver",
10042
10197
  "sourcePath": "src/RuntimeRendererConfig.tsx"
10043
10198
  },
10044
10199
  {
10045
10200
  "fromSymbol": "RuntimeRendererConfig",
10046
- "toType": "StateAdapter",
10201
+ "toType": "RuntimeRendererWrapArgs",
10047
10202
  "sourcePath": "src/RuntimeRendererConfig.tsx"
10048
10203
  },
10049
10204
  {
10050
10205
  "fromSymbol": "RuntimeRendererConfig",
10051
- "toType": "Users",
10206
+ "toType": "StateAdapter",
10052
10207
  "sourcePath": "src/RuntimeRendererConfig.tsx"
10053
10208
  },
10054
10209
  {
@@ -10221,16 +10376,6 @@
10221
10376
  "toType": "ScreenSpec",
10222
10377
  "sourcePath": "src/runtimeScreenLoaders.ts"
10223
10378
  },
10224
- {
10225
- "fromSymbol": "resolveScreenApiLoaders",
10226
- "toType": "ApiScreenDataLoaderDefinition",
10227
- "sourcePath": "src/runtimeScreenLoaders.ts"
10228
- },
10229
- {
10230
- "fromSymbol": "resolveScreenApiLoaders",
10231
- "toType": "ScreenSpec",
10232
- "sourcePath": "src/runtimeScreenLoaders.ts"
10233
- },
10234
10379
  {
10235
10380
  "fromSymbol": "resolveScreenOperationLoaders",
10236
10381
  "toType": "OperationScreenDataLoaderDefinition",
@@ -10341,6 +10486,12 @@
10341
10486
  "jsxElement": "<Component {...propsWithEvents}>",
10342
10487
  "sourcePath": "src/RuntimeRenderer.tsx"
10343
10488
  },
10489
+ {
10490
+ "fromComponent": "RuntimeRenderer",
10491
+ "toComponent": "RuntimeMediaResolutionCacheProvider",
10492
+ "jsxElement": "<RuntimeMediaResolutionCacheProvider value={mediaResolutionCache}>",
10493
+ "sourcePath": "src/RuntimeRenderer.tsx"
10494
+ },
10344
10495
  {
10345
10496
  "fromComponent": "RuntimeRenderer",
10346
10497
  "toComponent": "RuntimeRendererConfigProvider",
@@ -10356,7 +10507,7 @@
10356
10507
  {
10357
10508
  "fromComponent": "RuntimeScreen",
10358
10509
  "toComponent": "RuntimeRenderer",
10359
- "jsxElement": "<RuntimeRenderer\n key={`${screen.id}:${stateVersion}:${screenOperationLoaders.renderVersion}`}\n node={screen.root}\n isRoot\n registry={registry}\n stateAdapter={stateAdapter}\n dataBindings={manifest.dataBindings}\n dataSources={manifest.dataSources}\n operationResults={screenOperationLoaders.operationResults}\n />",
10510
+ "jsxElement": "<RuntimeRenderer\n key={`${screen.id}:${screenOperationLoaders.renderVersion}`}\n node={screen.root}\n isRoot\n registry={registry}\n stateAdapter={stateAdapter}\n dataBindings={manifest.dataBindings}\n dataSources={manifest.dataSources}\n mediaAssets={manifest.media?.assets}\n operationResults={screenOperationLoaders.operationResults}\n />",
10360
10511
  "sourcePath": "src/RuntimeScreen.tsx"
10361
10512
  }
10362
10513
  ]