@ankhorage/runtime 2.2.10 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +2 -1
- package/dist/RuntimeRenderer.d.ts.map +1 -1
- package/dist/RuntimeRenderer.js +21 -2
- package/dist/RuntimeRenderer.js.map +1 -1
- package/dist/RuntimeRendererConfig.d.ts +3 -0
- package/dist/RuntimeRendererConfig.d.ts.map +1 -1
- package/dist/RuntimeRendererConfig.js +2 -0
- package/dist/RuntimeRendererConfig.js.map +1 -1
- package/dist/bindings.d.ts +2 -0
- package/dist/bindings.d.ts.map +1 -1
- package/dist/bindings.js +1 -0
- package/dist/bindings.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/runtimeActionRegistry.d.ts +3 -0
- package/dist/runtimeActionRegistry.d.ts.map +1 -1
- package/dist/runtimeActionRegistry.js +44 -8
- package/dist/runtimeActionRegistry.js.map +1 -1
- package/dist/runtimeEventOperationLifecycle.d.ts +44 -0
- package/dist/runtimeEventOperationLifecycle.d.ts.map +1 -0
- package/dist/runtimeEventOperationLifecycle.js +76 -0
- package/dist/runtimeEventOperationLifecycle.js.map +1 -0
- package/package.json +3 -2
- package/paradox/badges/npm.svg +4 -4
- package/paradox/components.md +2 -2
- package/paradox/diagrams/architecture-overview.mmd +9 -0
- package/paradox/diagrams/export-graph.mmd +27 -0
- package/paradox/diagrams/module-relationships.mmd +7 -0
- package/paradox/diagrams/sequences/create-runtime-event-operation-binding-context.mmd +5 -0
- package/paradox/exports.json +312 -29
- package/paradox/exports.md +154 -60
- package/paradox/index.html +704 -87
- package/paradox/paradox.json +712 -68
package/paradox/paradox.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"id": "npm",
|
|
16
16
|
"label": "npm",
|
|
17
|
-
"value": "v2.2.
|
|
17
|
+
"value": "v2.2.10",
|
|
18
18
|
"color": "cb3837"
|
|
19
19
|
},
|
|
20
20
|
{
|
|
@@ -95,11 +95,15 @@
|
|
|
95
95
|
"exports": [
|
|
96
96
|
"createRuntimeApiOperationExecutor",
|
|
97
97
|
"createRuntimeBindingOperationKey",
|
|
98
|
+
"createRuntimeEventOperationBindingContext",
|
|
99
|
+
"createRuntimeEventOperationLifecycle",
|
|
100
|
+
"IDLE_RUNTIME_EVENT_OPERATION_STATE",
|
|
98
101
|
"resolveBindingInputMap",
|
|
99
102
|
"resolveRuntimeBindings",
|
|
100
103
|
"resolveRuntimeBindingsAsync",
|
|
101
104
|
"resolveRuntimeBindingValue",
|
|
102
105
|
"resolveRuntimeBindingValueSync",
|
|
106
|
+
"resolveRuntimeEventOperationErrorMessage",
|
|
103
107
|
"RuntimeApiOperationExecutorOptions",
|
|
104
108
|
"RuntimeApiOperationSelection",
|
|
105
109
|
"RuntimeBindingOperationExecutionArgs",
|
|
@@ -111,6 +115,10 @@
|
|
|
111
115
|
"RuntimeBindingResolutionArgs",
|
|
112
116
|
"RuntimeBindingResolutionContext",
|
|
113
117
|
"RuntimeBindingResolutionResult",
|
|
118
|
+
"RuntimeEventOperationInvocation",
|
|
119
|
+
"RuntimeEventOperationLifecycle",
|
|
120
|
+
"RuntimeEventOperationState",
|
|
121
|
+
"RuntimeEventOperationStatus",
|
|
114
122
|
"validateRuntimeBindingOperationRef"
|
|
115
123
|
]
|
|
116
124
|
},
|
|
@@ -136,12 +144,15 @@
|
|
|
136
144
|
"createRuntimeActionRegistry",
|
|
137
145
|
"createRuntimeApiOperationExecutor",
|
|
138
146
|
"createRuntimeBindingOperationKey",
|
|
147
|
+
"createRuntimeEventOperationBindingContext",
|
|
148
|
+
"createRuntimeEventOperationLifecycle",
|
|
139
149
|
"createRuntimeMemoryStateAdapter",
|
|
140
150
|
"createRuntimeScreenLoaderRequestKey",
|
|
141
151
|
"dispatchRuntimeComponentEvent",
|
|
142
152
|
"dispatchRuntimeComponentEventWithReporting",
|
|
143
153
|
"executeDbPersistAction",
|
|
144
154
|
"executeRuntimeScreenOperationLoaders",
|
|
155
|
+
"IDLE_RUNTIME_EVENT_OPERATION_STATE",
|
|
145
156
|
"ManifestContext",
|
|
146
157
|
"ManifestProvider",
|
|
147
158
|
"mergeRuntimeRendererConfig",
|
|
@@ -153,6 +164,7 @@
|
|
|
153
164
|
"resolveRuntimeBindingsAsync",
|
|
154
165
|
"resolveRuntimeBindingValue",
|
|
155
166
|
"resolveRuntimeBindingValueSync",
|
|
167
|
+
"resolveRuntimeEventOperationErrorMessage",
|
|
156
168
|
"resolveScreenOperationLoaders",
|
|
157
169
|
"RuntimeAction",
|
|
158
170
|
"RuntimeActionDescriptor",
|
|
@@ -183,6 +195,10 @@
|
|
|
183
195
|
"RuntimeDbPersistResult",
|
|
184
196
|
"RuntimeDiagnostic",
|
|
185
197
|
"RuntimeEventDiagnosticsReporter",
|
|
198
|
+
"RuntimeEventOperationInvocation",
|
|
199
|
+
"RuntimeEventOperationLifecycle",
|
|
200
|
+
"RuntimeEventOperationState",
|
|
201
|
+
"RuntimeEventOperationStatus",
|
|
186
202
|
"RuntimeEventPropWrapArgs",
|
|
187
203
|
"RuntimeManifest",
|
|
188
204
|
"RuntimeManifestConfig",
|
|
@@ -282,6 +298,7 @@
|
|
|
282
298
|
"dependencies": [
|
|
283
299
|
"src/runtimeApiSelection.ts",
|
|
284
300
|
"src/runtimeBindings.ts",
|
|
301
|
+
"src/runtimeEventOperationLifecycle.ts",
|
|
285
302
|
"src/RuntimeRendererConfig.tsx"
|
|
286
303
|
],
|
|
287
304
|
"exports": [
|
|
@@ -393,6 +410,27 @@
|
|
|
393
410
|
"dependencies": ["src/runtimeActionRegistry.ts", "src/RuntimeRendererConfig.tsx"],
|
|
394
411
|
"exports": ["dispatchRuntimeComponentEventWithReporting", "RuntimeEventDiagnosticsReporter"]
|
|
395
412
|
},
|
|
413
|
+
{
|
|
414
|
+
"path": "src/runtimeEventOperationLifecycle.test.ts",
|
|
415
|
+
"isEntrypoint": false,
|
|
416
|
+
"dependencies": ["src/runtimeActionRegistry.ts", "src/runtimeEventOperationLifecycle.ts"],
|
|
417
|
+
"exports": []
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"path": "src/runtimeEventOperationLifecycle.ts",
|
|
421
|
+
"isEntrypoint": false,
|
|
422
|
+
"dependencies": [],
|
|
423
|
+
"exports": [
|
|
424
|
+
"createRuntimeEventOperationBindingContext",
|
|
425
|
+
"createRuntimeEventOperationLifecycle",
|
|
426
|
+
"IDLE_RUNTIME_EVENT_OPERATION_STATE",
|
|
427
|
+
"resolveRuntimeEventOperationErrorMessage",
|
|
428
|
+
"RuntimeEventOperationInvocation",
|
|
429
|
+
"RuntimeEventOperationLifecycle",
|
|
430
|
+
"RuntimeEventOperationState",
|
|
431
|
+
"RuntimeEventOperationStatus"
|
|
432
|
+
]
|
|
433
|
+
},
|
|
396
434
|
{
|
|
397
435
|
"path": "src/runtimeImageMedia.test.ts",
|
|
398
436
|
"isEntrypoint": false,
|
|
@@ -489,6 +527,7 @@
|
|
|
489
527
|
"src/runtimeBindings.ts",
|
|
490
528
|
"src/runtimeDbPersist.ts",
|
|
491
529
|
"src/runtimeEventExecution.ts",
|
|
530
|
+
"src/runtimeEventOperationLifecycle.ts",
|
|
492
531
|
"src/runtimeMedia.ts",
|
|
493
532
|
"src/runtimeMediaCache.tsx",
|
|
494
533
|
"src/runtimeNodeProps.ts",
|
|
@@ -509,7 +548,12 @@
|
|
|
509
548
|
{
|
|
510
549
|
"path": "src/RuntimeRendererConfig.tsx",
|
|
511
550
|
"isEntrypoint": false,
|
|
512
|
-
"dependencies": [
|
|
551
|
+
"dependencies": [
|
|
552
|
+
"src/registry.tsx",
|
|
553
|
+
"src/runtimeBindings.ts",
|
|
554
|
+
"src/runtimeEventOperationLifecycle.ts",
|
|
555
|
+
"src/runtimeMedia.ts"
|
|
556
|
+
],
|
|
513
557
|
"exports": [
|
|
514
558
|
"composeRuntimeNodePropsResolver",
|
|
515
559
|
"composeRuntimeRendererWrapNode",
|
|
@@ -681,7 +725,7 @@
|
|
|
681
725
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
682
726
|
"sourceLocation": {
|
|
683
727
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
684
|
-
"line":
|
|
728
|
+
"line": 95,
|
|
685
729
|
"column": 1
|
|
686
730
|
},
|
|
687
731
|
"exportPaths": ["src/index.ts"],
|
|
@@ -719,7 +763,7 @@
|
|
|
719
763
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
720
764
|
"sourceLocation": {
|
|
721
765
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
722
|
-
"line":
|
|
766
|
+
"line": 80,
|
|
723
767
|
"column": 1
|
|
724
768
|
},
|
|
725
769
|
"exportPaths": ["src/index.ts"],
|
|
@@ -757,7 +801,7 @@
|
|
|
757
801
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
758
802
|
"sourceLocation": {
|
|
759
803
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
760
|
-
"line":
|
|
804
|
+
"line": 223,
|
|
761
805
|
"column": 1
|
|
762
806
|
},
|
|
763
807
|
"exportPaths": ["src/index.ts"],
|
|
@@ -917,7 +961,7 @@
|
|
|
917
961
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
918
962
|
"sourceLocation": {
|
|
919
963
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
920
|
-
"line":
|
|
964
|
+
"line": 71,
|
|
921
965
|
"column": 1
|
|
922
966
|
},
|
|
923
967
|
"exportPaths": ["src/index.ts"],
|
|
@@ -927,15 +971,16 @@
|
|
|
927
971
|
"RuntimeActionRegistry",
|
|
928
972
|
"RuntimeBindingOperationExecutor",
|
|
929
973
|
"RuntimeBindingOperationResultCache",
|
|
930
|
-
"RuntimeBindingOperationResultWriter"
|
|
974
|
+
"RuntimeBindingOperationResultWriter",
|
|
975
|
+
"RuntimeEventOperationLifecycle"
|
|
931
976
|
],
|
|
932
977
|
"signatures": [
|
|
933
978
|
{
|
|
934
|
-
"label": "(options?: { actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }) => RuntimeActionRegistry",
|
|
979
|
+
"label": "(options?: { actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; eventOperationLifecycle?: RuntimeEventOperationLifecycle; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }) => RuntimeActionRegistry",
|
|
935
980
|
"parameters": [
|
|
936
981
|
{
|
|
937
982
|
"name": "options",
|
|
938
|
-
"type": "{ actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }",
|
|
983
|
+
"type": "{ actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; eventOperationLifecycle?: RuntimeEventOperationLifecycle; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }",
|
|
939
984
|
"required": false,
|
|
940
985
|
"description": null
|
|
941
986
|
}
|
|
@@ -1011,6 +1056,76 @@
|
|
|
1011
1056
|
"members": [],
|
|
1012
1057
|
"structuredRows": []
|
|
1013
1058
|
},
|
|
1059
|
+
{
|
|
1060
|
+
"name": "createRuntimeEventOperationBindingContext",
|
|
1061
|
+
"description": null,
|
|
1062
|
+
"isReadme": false,
|
|
1063
|
+
"examples": [],
|
|
1064
|
+
"kind": "function",
|
|
1065
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1066
|
+
"sourceLocation": {
|
|
1067
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1068
|
+
"line": 92,
|
|
1069
|
+
"column": 1
|
|
1070
|
+
},
|
|
1071
|
+
"exportPaths": ["src/index.ts"],
|
|
1072
|
+
"relatedSymbols": ["RuntimeEventOperationState"],
|
|
1073
|
+
"signatures": [
|
|
1074
|
+
{
|
|
1075
|
+
"label": "(context: Record<string, unknown> | undefined, state: RuntimeEventOperationState) => Record<string, unknown>",
|
|
1076
|
+
"parameters": [
|
|
1077
|
+
{
|
|
1078
|
+
"name": "context",
|
|
1079
|
+
"type": "Record<string, unknown> | undefined",
|
|
1080
|
+
"required": true,
|
|
1081
|
+
"description": null
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"name": "state",
|
|
1085
|
+
"type": "RuntimeEventOperationState",
|
|
1086
|
+
"required": true,
|
|
1087
|
+
"description": null
|
|
1088
|
+
}
|
|
1089
|
+
],
|
|
1090
|
+
"returnType": "Record<string, unknown>",
|
|
1091
|
+
"returnDescription": null
|
|
1092
|
+
}
|
|
1093
|
+
],
|
|
1094
|
+
"members": [],
|
|
1095
|
+
"structuredRows": []
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"name": "createRuntimeEventOperationLifecycle",
|
|
1099
|
+
"description": null,
|
|
1100
|
+
"isReadme": false,
|
|
1101
|
+
"examples": [],
|
|
1102
|
+
"kind": "function",
|
|
1103
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1104
|
+
"sourceLocation": {
|
|
1105
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1106
|
+
"line": 39,
|
|
1107
|
+
"column": 1
|
|
1108
|
+
},
|
|
1109
|
+
"exportPaths": ["src/index.ts"],
|
|
1110
|
+
"relatedSymbols": ["RuntimeEventOperationLifecycle", "RuntimeEventOperationState"],
|
|
1111
|
+
"signatures": [
|
|
1112
|
+
{
|
|
1113
|
+
"label": "(onStateChange: (state: RuntimeEventOperationState) => void) => RuntimeEventOperationLifecycle",
|
|
1114
|
+
"parameters": [
|
|
1115
|
+
{
|
|
1116
|
+
"name": "onStateChange",
|
|
1117
|
+
"type": "(state: RuntimeEventOperationState) => void",
|
|
1118
|
+
"required": true,
|
|
1119
|
+
"description": null
|
|
1120
|
+
}
|
|
1121
|
+
],
|
|
1122
|
+
"returnType": "RuntimeEventOperationLifecycle",
|
|
1123
|
+
"returnDescription": null
|
|
1124
|
+
}
|
|
1125
|
+
],
|
|
1126
|
+
"members": [],
|
|
1127
|
+
"structuredRows": []
|
|
1128
|
+
},
|
|
1014
1129
|
{
|
|
1015
1130
|
"name": "createRuntimeMemoryStateAdapter",
|
|
1016
1131
|
"description": null,
|
|
@@ -1084,7 +1199,7 @@
|
|
|
1084
1199
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1085
1200
|
"sourceLocation": {
|
|
1086
1201
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1087
|
-
"line":
|
|
1202
|
+
"line": 109,
|
|
1088
1203
|
"column": 1
|
|
1089
1204
|
},
|
|
1090
1205
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1212,6 +1327,24 @@
|
|
|
1212
1327
|
"members": [],
|
|
1213
1328
|
"structuredRows": []
|
|
1214
1329
|
},
|
|
1330
|
+
{
|
|
1331
|
+
"name": "IDLE_RUNTIME_EVENT_OPERATION_STATE",
|
|
1332
|
+
"description": null,
|
|
1333
|
+
"isReadme": false,
|
|
1334
|
+
"examples": [],
|
|
1335
|
+
"kind": "value",
|
|
1336
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1337
|
+
"sourceLocation": {
|
|
1338
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1339
|
+
"line": 27,
|
|
1340
|
+
"column": 14
|
|
1341
|
+
},
|
|
1342
|
+
"exportPaths": ["src/index.ts"],
|
|
1343
|
+
"relatedSymbols": [],
|
|
1344
|
+
"signatures": [],
|
|
1345
|
+
"members": [],
|
|
1346
|
+
"structuredRows": []
|
|
1347
|
+
},
|
|
1215
1348
|
{
|
|
1216
1349
|
"name": "ManifestContext",
|
|
1217
1350
|
"description": null,
|
|
@@ -1271,7 +1404,7 @@
|
|
|
1271
1404
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1272
1405
|
"sourceLocation": {
|
|
1273
1406
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1274
|
-
"line":
|
|
1407
|
+
"line": 113,
|
|
1275
1408
|
"column": 1
|
|
1276
1409
|
},
|
|
1277
1410
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1385,7 +1518,7 @@
|
|
|
1385
1518
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1386
1519
|
"sourceLocation": {
|
|
1387
1520
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1388
|
-
"line":
|
|
1521
|
+
"line": 237,
|
|
1389
1522
|
"column": 1
|
|
1390
1523
|
},
|
|
1391
1524
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1423,7 +1556,7 @@
|
|
|
1423
1556
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1424
1557
|
"sourceLocation": {
|
|
1425
1558
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1426
|
-
"line":
|
|
1559
|
+
"line": 248,
|
|
1427
1560
|
"column": 1
|
|
1428
1561
|
},
|
|
1429
1562
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1604,6 +1737,38 @@
|
|
|
1604
1737
|
"members": [],
|
|
1605
1738
|
"structuredRows": []
|
|
1606
1739
|
},
|
|
1740
|
+
{
|
|
1741
|
+
"name": "resolveRuntimeEventOperationErrorMessage",
|
|
1742
|
+
"description": null,
|
|
1743
|
+
"isReadme": false,
|
|
1744
|
+
"examples": [],
|
|
1745
|
+
"kind": "function",
|
|
1746
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1747
|
+
"sourceLocation": {
|
|
1748
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1749
|
+
"line": 113,
|
|
1750
|
+
"column": 1
|
|
1751
|
+
},
|
|
1752
|
+
"exportPaths": ["src/index.ts"],
|
|
1753
|
+
"relatedSymbols": [],
|
|
1754
|
+
"signatures": [
|
|
1755
|
+
{
|
|
1756
|
+
"label": "(diagnostics: readonly DataSourceDiagnostic[]) => string",
|
|
1757
|
+
"parameters": [
|
|
1758
|
+
{
|
|
1759
|
+
"name": "diagnostics",
|
|
1760
|
+
"type": "readonly DataSourceDiagnostic[]",
|
|
1761
|
+
"required": true,
|
|
1762
|
+
"description": null
|
|
1763
|
+
}
|
|
1764
|
+
],
|
|
1765
|
+
"returnType": "string",
|
|
1766
|
+
"returnDescription": null
|
|
1767
|
+
}
|
|
1768
|
+
],
|
|
1769
|
+
"members": [],
|
|
1770
|
+
"structuredRows": []
|
|
1771
|
+
},
|
|
1607
1772
|
{
|
|
1608
1773
|
"name": "resolveScreenOperationLoaders",
|
|
1609
1774
|
"description": null,
|
|
@@ -1645,7 +1810,7 @@
|
|
|
1645
1810
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1646
1811
|
"sourceLocation": {
|
|
1647
1812
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1648
|
-
"line":
|
|
1813
|
+
"line": 46,
|
|
1649
1814
|
"column": 1
|
|
1650
1815
|
},
|
|
1651
1816
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1710,7 +1875,7 @@
|
|
|
1710
1875
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1711
1876
|
"sourceLocation": {
|
|
1712
1877
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1713
|
-
"line":
|
|
1878
|
+
"line": 49,
|
|
1714
1879
|
"column": 1
|
|
1715
1880
|
},
|
|
1716
1881
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1728,7 +1893,7 @@
|
|
|
1728
1893
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1729
1894
|
"sourceLocation": {
|
|
1730
1895
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1731
|
-
"line":
|
|
1896
|
+
"line": 47,
|
|
1732
1897
|
"column": 1
|
|
1733
1898
|
},
|
|
1734
1899
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1746,7 +1911,7 @@
|
|
|
1746
1911
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1747
1912
|
"sourceLocation": {
|
|
1748
1913
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1749
|
-
"line":
|
|
1914
|
+
"line": 39,
|
|
1750
1915
|
"column": 1
|
|
1751
1916
|
},
|
|
1752
1917
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1793,7 +1958,7 @@
|
|
|
1793
1958
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1794
1959
|
"sourceLocation": {
|
|
1795
1960
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1796
|
-
"line":
|
|
1961
|
+
"line": 48,
|
|
1797
1962
|
"column": 1
|
|
1798
1963
|
},
|
|
1799
1964
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1811,7 +1976,7 @@
|
|
|
1811
1976
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1812
1977
|
"sourceLocation": {
|
|
1813
1978
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1814
|
-
"line":
|
|
1979
|
+
"line": 34,
|
|
1815
1980
|
"column": 1
|
|
1816
1981
|
},
|
|
1817
1982
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1844,7 +2009,7 @@
|
|
|
1844
2009
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1845
2010
|
"sourceLocation": {
|
|
1846
2011
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1847
|
-
"line":
|
|
2012
|
+
"line": 45,
|
|
1848
2013
|
"column": 1
|
|
1849
2014
|
},
|
|
1850
2015
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1891,7 +2056,7 @@
|
|
|
1891
2056
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1892
2057
|
"sourceLocation": {
|
|
1893
2058
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1894
|
-
"line":
|
|
2059
|
+
"line": 39,
|
|
1895
2060
|
"column": 1
|
|
1896
2061
|
},
|
|
1897
2062
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2436,14 +2601,15 @@
|
|
|
2436
2601
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
2437
2602
|
"sourceLocation": {
|
|
2438
2603
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
2439
|
-
"line":
|
|
2604
|
+
"line": 49,
|
|
2440
2605
|
"column": 1
|
|
2441
2606
|
},
|
|
2442
2607
|
"exportPaths": ["src/index.ts"],
|
|
2443
2608
|
"relatedSymbols": [
|
|
2444
2609
|
"RuntimeActionHandler",
|
|
2445
2610
|
"RuntimeBindingOperationExecutor",
|
|
2446
|
-
"RuntimeBindingOperationResultWriter"
|
|
2611
|
+
"RuntimeBindingOperationResultWriter",
|
|
2612
|
+
"RuntimeEventOperationLifecycle"
|
|
2447
2613
|
],
|
|
2448
2614
|
"signatures": [],
|
|
2449
2615
|
"members": [
|
|
@@ -2482,6 +2648,13 @@
|
|
|
2482
2648
|
"required": false,
|
|
2483
2649
|
"description": null
|
|
2484
2650
|
},
|
|
2651
|
+
{
|
|
2652
|
+
"name": "eventOperationLifecycle",
|
|
2653
|
+
"kind": "property",
|
|
2654
|
+
"type": "RuntimeEventOperationLifecycle | undefined",
|
|
2655
|
+
"required": false,
|
|
2656
|
+
"description": null
|
|
2657
|
+
},
|
|
2485
2658
|
{
|
|
2486
2659
|
"name": "executeAction",
|
|
2487
2660
|
"kind": "property",
|
|
@@ -2684,6 +2857,144 @@
|
|
|
2684
2857
|
],
|
|
2685
2858
|
"structuredRows": []
|
|
2686
2859
|
},
|
|
2860
|
+
{
|
|
2861
|
+
"name": "RuntimeEventOperationInvocation",
|
|
2862
|
+
"description": null,
|
|
2863
|
+
"isReadme": false,
|
|
2864
|
+
"examples": [],
|
|
2865
|
+
"kind": "type",
|
|
2866
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2867
|
+
"sourceLocation": {
|
|
2868
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2869
|
+
"line": 14,
|
|
2870
|
+
"column": 1
|
|
2871
|
+
},
|
|
2872
|
+
"exportPaths": ["src/index.ts"],
|
|
2873
|
+
"relatedSymbols": [],
|
|
2874
|
+
"signatures": [],
|
|
2875
|
+
"members": [
|
|
2876
|
+
{
|
|
2877
|
+
"name": "id",
|
|
2878
|
+
"kind": "property",
|
|
2879
|
+
"type": "number",
|
|
2880
|
+
"required": true,
|
|
2881
|
+
"description": null
|
|
2882
|
+
}
|
|
2883
|
+
],
|
|
2884
|
+
"structuredRows": []
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
"name": "RuntimeEventOperationLifecycle",
|
|
2888
|
+
"description": null,
|
|
2889
|
+
"isReadme": false,
|
|
2890
|
+
"examples": [],
|
|
2891
|
+
"kind": "type",
|
|
2892
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2893
|
+
"sourceLocation": {
|
|
2894
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2895
|
+
"line": 18,
|
|
2896
|
+
"column": 1
|
|
2897
|
+
},
|
|
2898
|
+
"exportPaths": ["src/index.ts"],
|
|
2899
|
+
"relatedSymbols": ["RuntimeEventOperationInvocation"],
|
|
2900
|
+
"signatures": [],
|
|
2901
|
+
"members": [
|
|
2902
|
+
{
|
|
2903
|
+
"name": "fail",
|
|
2904
|
+
"kind": "method",
|
|
2905
|
+
"type": "(invocation: RuntimeEventOperationInvocation, message: string) => void",
|
|
2906
|
+
"required": true,
|
|
2907
|
+
"description": null
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"name": "start",
|
|
2911
|
+
"kind": "method",
|
|
2912
|
+
"type": "(args: { readonly nodeId: string; readonly operation: BindingOperationRef; }) => RuntimeEventOperationInvocation | undefined",
|
|
2913
|
+
"required": true,
|
|
2914
|
+
"description": null
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"name": "succeed",
|
|
2918
|
+
"kind": "method",
|
|
2919
|
+
"type": "(invocation: RuntimeEventOperationInvocation) => void",
|
|
2920
|
+
"required": true,
|
|
2921
|
+
"description": null
|
|
2922
|
+
}
|
|
2923
|
+
],
|
|
2924
|
+
"structuredRows": []
|
|
2925
|
+
},
|
|
2926
|
+
{
|
|
2927
|
+
"name": "RuntimeEventOperationState",
|
|
2928
|
+
"description": null,
|
|
2929
|
+
"isReadme": false,
|
|
2930
|
+
"examples": [],
|
|
2931
|
+
"kind": "type",
|
|
2932
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2933
|
+
"sourceLocation": {
|
|
2934
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2935
|
+
"line": 6,
|
|
2936
|
+
"column": 1
|
|
2937
|
+
},
|
|
2938
|
+
"exportPaths": ["src/index.ts"],
|
|
2939
|
+
"relatedSymbols": ["RuntimeEventOperationStatus"],
|
|
2940
|
+
"signatures": [],
|
|
2941
|
+
"members": [
|
|
2942
|
+
{
|
|
2943
|
+
"name": "errorMessage",
|
|
2944
|
+
"kind": "property",
|
|
2945
|
+
"type": "string",
|
|
2946
|
+
"required": true,
|
|
2947
|
+
"description": null
|
|
2948
|
+
},
|
|
2949
|
+
{
|
|
2950
|
+
"name": "loading",
|
|
2951
|
+
"kind": "property",
|
|
2952
|
+
"type": "boolean",
|
|
2953
|
+
"required": true,
|
|
2954
|
+
"description": null
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
"name": "nodeId",
|
|
2958
|
+
"kind": "property",
|
|
2959
|
+
"type": "string | undefined",
|
|
2960
|
+
"required": false,
|
|
2961
|
+
"description": null
|
|
2962
|
+
},
|
|
2963
|
+
{
|
|
2964
|
+
"name": "operation",
|
|
2965
|
+
"kind": "property",
|
|
2966
|
+
"type": "BindingOperationRef | undefined",
|
|
2967
|
+
"required": false,
|
|
2968
|
+
"description": null
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
"name": "status",
|
|
2972
|
+
"kind": "property",
|
|
2973
|
+
"type": "RuntimeEventOperationStatus",
|
|
2974
|
+
"required": true,
|
|
2975
|
+
"description": null
|
|
2976
|
+
}
|
|
2977
|
+
],
|
|
2978
|
+
"structuredRows": []
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"name": "RuntimeEventOperationStatus",
|
|
2982
|
+
"description": null,
|
|
2983
|
+
"isReadme": false,
|
|
2984
|
+
"examples": [],
|
|
2985
|
+
"kind": "unknown",
|
|
2986
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2987
|
+
"sourceLocation": {
|
|
2988
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2989
|
+
"line": 4,
|
|
2990
|
+
"column": 1
|
|
2991
|
+
},
|
|
2992
|
+
"exportPaths": ["src/index.ts"],
|
|
2993
|
+
"relatedSymbols": [],
|
|
2994
|
+
"signatures": [],
|
|
2995
|
+
"members": [],
|
|
2996
|
+
"structuredRows": []
|
|
2997
|
+
},
|
|
2687
2998
|
{
|
|
2688
2999
|
"name": "RuntimeEventPropWrapArgs",
|
|
2689
3000
|
"description": null,
|
|
@@ -2693,7 +3004,7 @@
|
|
|
2693
3004
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
2694
3005
|
"sourceLocation": {
|
|
2695
3006
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
2696
|
-
"line":
|
|
3007
|
+
"line": 61,
|
|
2697
3008
|
"column": 1
|
|
2698
3009
|
},
|
|
2699
3010
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3030,7 +3341,7 @@
|
|
|
3030
3341
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
3031
3342
|
"sourceLocation": {
|
|
3032
3343
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
3033
|
-
"line":
|
|
3344
|
+
"line": 81,
|
|
3034
3345
|
"column": 1
|
|
3035
3346
|
},
|
|
3036
3347
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3062,7 +3373,7 @@
|
|
|
3062
3373
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3063
3374
|
"sourceLocation": {
|
|
3064
3375
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3065
|
-
"line":
|
|
3376
|
+
"line": 51,
|
|
3066
3377
|
"column": 1
|
|
3067
3378
|
},
|
|
3068
3379
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3071,6 +3382,8 @@
|
|
|
3071
3382
|
"RuntimeActionHandlers",
|
|
3072
3383
|
"RuntimeBindingOperationExecutor",
|
|
3073
3384
|
"RuntimeBindingOperationResultWriter",
|
|
3385
|
+
"RuntimeEventOperationLifecycle",
|
|
3386
|
+
"RuntimeEventOperationState",
|
|
3074
3387
|
"RuntimeMediaAssetResolver",
|
|
3075
3388
|
"RuntimeNodePropsResolver",
|
|
3076
3389
|
"RuntimeRendererWrapArgs"
|
|
@@ -3126,6 +3439,20 @@
|
|
|
3126
3439
|
"required": false,
|
|
3127
3440
|
"description": null
|
|
3128
3441
|
},
|
|
3442
|
+
{
|
|
3443
|
+
"name": "eventOperationLifecycle",
|
|
3444
|
+
"kind": "property",
|
|
3445
|
+
"type": "RuntimeEventOperationLifecycle | undefined",
|
|
3446
|
+
"required": false,
|
|
3447
|
+
"description": null
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"name": "eventOperationState",
|
|
3451
|
+
"kind": "property",
|
|
3452
|
+
"type": "RuntimeEventOperationState | undefined",
|
|
3453
|
+
"required": false,
|
|
3454
|
+
"description": null
|
|
3455
|
+
},
|
|
3129
3456
|
{
|
|
3130
3457
|
"name": "executeAction",
|
|
3131
3458
|
"kind": "property",
|
|
@@ -3215,7 +3542,7 @@
|
|
|
3215
3542
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3216
3543
|
"sourceLocation": {
|
|
3217
3544
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3218
|
-
"line":
|
|
3545
|
+
"line": 164,
|
|
3219
3546
|
"column": 1
|
|
3220
3547
|
},
|
|
3221
3548
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3247,7 +3574,7 @@
|
|
|
3247
3574
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
3248
3575
|
"sourceLocation": {
|
|
3249
3576
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
3250
|
-
"line":
|
|
3577
|
+
"line": 61,
|
|
3251
3578
|
"column": 1
|
|
3252
3579
|
},
|
|
3253
3580
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3391,7 +3718,7 @@
|
|
|
3391
3718
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3392
3719
|
"sourceLocation": {
|
|
3393
3720
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3394
|
-
"line":
|
|
3721
|
+
"line": 33,
|
|
3395
3722
|
"column": 1
|
|
3396
3723
|
},
|
|
3397
3724
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3755,7 +4082,7 @@
|
|
|
3755
4082
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3756
4083
|
"sourceLocation": {
|
|
3757
4084
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3758
|
-
"line":
|
|
4085
|
+
"line": 177,
|
|
3759
4086
|
"column": 1
|
|
3760
4087
|
},
|
|
3761
4088
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3855,7 +4182,7 @@
|
|
|
3855
4182
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
3856
4183
|
"sourceLocation": {
|
|
3857
4184
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
3858
|
-
"line":
|
|
4185
|
+
"line": 186,
|
|
3859
4186
|
"column": 1
|
|
3860
4187
|
},
|
|
3861
4188
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3954,7 +4281,7 @@
|
|
|
3954
4281
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
3955
4282
|
"sourceLocation": {
|
|
3956
4283
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
3957
|
-
"line":
|
|
4284
|
+
"line": 81,
|
|
3958
4285
|
"column": 1
|
|
3959
4286
|
},
|
|
3960
4287
|
"exportPaths": ["src/index.ts"],
|
|
@@ -4071,7 +4398,7 @@
|
|
|
4071
4398
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
4072
4399
|
"sourceLocation": {
|
|
4073
4400
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
4074
|
-
"line":
|
|
4401
|
+
"line": 164,
|
|
4075
4402
|
"column": 1
|
|
4076
4403
|
},
|
|
4077
4404
|
"exportPaths": ["src/index.ts"],
|
|
@@ -4361,7 +4688,7 @@
|
|
|
4361
4688
|
"description": null,
|
|
4362
4689
|
"sourceLocation": {
|
|
4363
4690
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4364
|
-
"line":
|
|
4691
|
+
"line": 71,
|
|
4365
4692
|
"column": 1
|
|
4366
4693
|
}
|
|
4367
4694
|
},
|
|
@@ -4370,7 +4697,7 @@
|
|
|
4370
4697
|
"description": null,
|
|
4371
4698
|
"sourceLocation": {
|
|
4372
4699
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4373
|
-
"line":
|
|
4700
|
+
"line": 109,
|
|
4374
4701
|
"column": 1
|
|
4375
4702
|
}
|
|
4376
4703
|
},
|
|
@@ -4379,7 +4706,7 @@
|
|
|
4379
4706
|
"description": null,
|
|
4380
4707
|
"sourceLocation": {
|
|
4381
4708
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4382
|
-
"line":
|
|
4709
|
+
"line": 186,
|
|
4383
4710
|
"column": 1
|
|
4384
4711
|
}
|
|
4385
4712
|
},
|
|
@@ -4388,7 +4715,7 @@
|
|
|
4388
4715
|
"description": null,
|
|
4389
4716
|
"sourceLocation": {
|
|
4390
4717
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4391
|
-
"line":
|
|
4718
|
+
"line": 223,
|
|
4392
4719
|
"column": 1
|
|
4393
4720
|
}
|
|
4394
4721
|
},
|
|
@@ -4397,7 +4724,7 @@
|
|
|
4397
4724
|
"description": null,
|
|
4398
4725
|
"sourceLocation": {
|
|
4399
4726
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4400
|
-
"line":
|
|
4727
|
+
"line": 237,
|
|
4401
4728
|
"column": 1
|
|
4402
4729
|
}
|
|
4403
4730
|
},
|
|
@@ -4406,7 +4733,7 @@
|
|
|
4406
4733
|
"description": null,
|
|
4407
4734
|
"sourceLocation": {
|
|
4408
4735
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4409
|
-
"line":
|
|
4736
|
+
"line": 248,
|
|
4410
4737
|
"column": 1
|
|
4411
4738
|
}
|
|
4412
4739
|
},
|
|
@@ -4415,16 +4742,25 @@
|
|
|
4415
4742
|
"description": null,
|
|
4416
4743
|
"sourceLocation": {
|
|
4417
4744
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4418
|
-
"line":
|
|
4745
|
+
"line": 259,
|
|
4419
4746
|
"column": 1
|
|
4420
4747
|
}
|
|
4421
4748
|
},
|
|
4749
|
+
{
|
|
4750
|
+
"name": "failLifecycle",
|
|
4751
|
+
"description": null,
|
|
4752
|
+
"sourceLocation": {
|
|
4753
|
+
"filePath": "src/runtimeActionRegistry.ts",
|
|
4754
|
+
"line": 276,
|
|
4755
|
+
"column": 9
|
|
4756
|
+
}
|
|
4757
|
+
},
|
|
4422
4758
|
{
|
|
4423
4759
|
"name": "resolveRuntimeActionValueEntry",
|
|
4424
4760
|
"description": null,
|
|
4425
4761
|
"sourceLocation": {
|
|
4426
4762
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4427
|
-
"line":
|
|
4763
|
+
"line": 344,
|
|
4428
4764
|
"column": 1
|
|
4429
4765
|
}
|
|
4430
4766
|
},
|
|
@@ -4433,7 +4769,7 @@
|
|
|
4433
4769
|
"description": null,
|
|
4434
4770
|
"sourceLocation": {
|
|
4435
4771
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4436
|
-
"line":
|
|
4772
|
+
"line": 362,
|
|
4437
4773
|
"column": 1
|
|
4438
4774
|
}
|
|
4439
4775
|
},
|
|
@@ -4442,7 +4778,7 @@
|
|
|
4442
4778
|
"description": null,
|
|
4443
4779
|
"sourceLocation": {
|
|
4444
4780
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4445
|
-
"line":
|
|
4781
|
+
"line": 371,
|
|
4446
4782
|
"column": 1
|
|
4447
4783
|
}
|
|
4448
4784
|
},
|
|
@@ -4451,7 +4787,7 @@
|
|
|
4451
4787
|
"description": null,
|
|
4452
4788
|
"sourceLocation": {
|
|
4453
4789
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4454
|
-
"line":
|
|
4790
|
+
"line": 390,
|
|
4455
4791
|
"column": 1
|
|
4456
4792
|
}
|
|
4457
4793
|
},
|
|
@@ -4460,7 +4796,7 @@
|
|
|
4460
4796
|
"description": null,
|
|
4461
4797
|
"sourceLocation": {
|
|
4462
4798
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4463
|
-
"line":
|
|
4799
|
+
"line": 410,
|
|
4464
4800
|
"column": 1
|
|
4465
4801
|
}
|
|
4466
4802
|
},
|
|
@@ -4469,7 +4805,7 @@
|
|
|
4469
4805
|
"description": null,
|
|
4470
4806
|
"sourceLocation": {
|
|
4471
4807
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4472
|
-
"line":
|
|
4808
|
+
"line": 433,
|
|
4473
4809
|
"column": 1
|
|
4474
4810
|
}
|
|
4475
4811
|
},
|
|
@@ -4478,7 +4814,7 @@
|
|
|
4478
4814
|
"description": null,
|
|
4479
4815
|
"sourceLocation": {
|
|
4480
4816
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4481
|
-
"line":
|
|
4817
|
+
"line": 471,
|
|
4482
4818
|
"column": 1
|
|
4483
4819
|
}
|
|
4484
4820
|
},
|
|
@@ -4487,7 +4823,7 @@
|
|
|
4487
4823
|
"description": null,
|
|
4488
4824
|
"sourceLocation": {
|
|
4489
4825
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4490
|
-
"line":
|
|
4826
|
+
"line": 479,
|
|
4491
4827
|
"column": 1
|
|
4492
4828
|
}
|
|
4493
4829
|
},
|
|
@@ -4496,7 +4832,7 @@
|
|
|
4496
4832
|
"description": null,
|
|
4497
4833
|
"sourceLocation": {
|
|
4498
4834
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4499
|
-
"line":
|
|
4835
|
+
"line": 485,
|
|
4500
4836
|
"column": 1
|
|
4501
4837
|
}
|
|
4502
4838
|
},
|
|
@@ -4505,7 +4841,7 @@
|
|
|
4505
4841
|
"description": null,
|
|
4506
4842
|
"sourceLocation": {
|
|
4507
4843
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4508
|
-
"line":
|
|
4844
|
+
"line": 489,
|
|
4509
4845
|
"column": 1
|
|
4510
4846
|
}
|
|
4511
4847
|
},
|
|
@@ -4514,7 +4850,7 @@
|
|
|
4514
4850
|
"description": null,
|
|
4515
4851
|
"sourceLocation": {
|
|
4516
4852
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4517
|
-
"line":
|
|
4853
|
+
"line": 493,
|
|
4518
4854
|
"column": 1
|
|
4519
4855
|
}
|
|
4520
4856
|
},
|
|
@@ -4523,7 +4859,7 @@
|
|
|
4523
4859
|
"description": null,
|
|
4524
4860
|
"sourceLocation": {
|
|
4525
4861
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4526
|
-
"line":
|
|
4862
|
+
"line": 502,
|
|
4527
4863
|
"column": 1
|
|
4528
4864
|
}
|
|
4529
4865
|
},
|
|
@@ -4532,7 +4868,7 @@
|
|
|
4532
4868
|
"description": null,
|
|
4533
4869
|
"sourceLocation": {
|
|
4534
4870
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4535
|
-
"line":
|
|
4871
|
+
"line": 518,
|
|
4536
4872
|
"column": 1
|
|
4537
4873
|
}
|
|
4538
4874
|
},
|
|
@@ -4541,7 +4877,7 @@
|
|
|
4541
4877
|
"description": null,
|
|
4542
4878
|
"sourceLocation": {
|
|
4543
4879
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4544
|
-
"line":
|
|
4880
|
+
"line": 527,
|
|
4545
4881
|
"column": 1
|
|
4546
4882
|
}
|
|
4547
4883
|
},
|
|
@@ -4550,7 +4886,7 @@
|
|
|
4550
4886
|
"description": null,
|
|
4551
4887
|
"sourceLocation": {
|
|
4552
4888
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
4553
|
-
"line":
|
|
4889
|
+
"line": 531,
|
|
4554
4890
|
"column": 1
|
|
4555
4891
|
}
|
|
4556
4892
|
},
|
|
@@ -4977,6 +5313,69 @@
|
|
|
4977
5313
|
"column": 1
|
|
4978
5314
|
}
|
|
4979
5315
|
},
|
|
5316
|
+
{
|
|
5317
|
+
"name": "eventArgs",
|
|
5318
|
+
"description": null,
|
|
5319
|
+
"sourceLocation": {
|
|
5320
|
+
"filePath": "src/runtimeEventOperationLifecycle.test.ts",
|
|
5321
|
+
"line": 54,
|
|
5322
|
+
"column": 1
|
|
5323
|
+
}
|
|
5324
|
+
},
|
|
5325
|
+
{
|
|
5326
|
+
"name": "executeOperation",
|
|
5327
|
+
"description": null,
|
|
5328
|
+
"sourceLocation": {
|
|
5329
|
+
"filePath": "src/runtimeEventOperationLifecycle.test.ts",
|
|
5330
|
+
"line": 85,
|
|
5331
|
+
"column": 11
|
|
5332
|
+
}
|
|
5333
|
+
},
|
|
5334
|
+
{
|
|
5335
|
+
"name": "executeOperation",
|
|
5336
|
+
"description": null,
|
|
5337
|
+
"sourceLocation": {
|
|
5338
|
+
"filePath": "src/runtimeEventOperationLifecycle.test.ts",
|
|
5339
|
+
"line": 128,
|
|
5340
|
+
"column": 11
|
|
5341
|
+
}
|
|
5342
|
+
},
|
|
5343
|
+
{
|
|
5344
|
+
"name": "createRuntimeEventOperationLifecycle",
|
|
5345
|
+
"description": null,
|
|
5346
|
+
"sourceLocation": {
|
|
5347
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
5348
|
+
"line": 39,
|
|
5349
|
+
"column": 1
|
|
5350
|
+
}
|
|
5351
|
+
},
|
|
5352
|
+
{
|
|
5353
|
+
"name": "finish",
|
|
5354
|
+
"description": null,
|
|
5355
|
+
"sourceLocation": {
|
|
5356
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
5357
|
+
"line": 47,
|
|
5358
|
+
"column": 9
|
|
5359
|
+
}
|
|
5360
|
+
},
|
|
5361
|
+
{
|
|
5362
|
+
"name": "createRuntimeEventOperationBindingContext",
|
|
5363
|
+
"description": null,
|
|
5364
|
+
"sourceLocation": {
|
|
5365
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
5366
|
+
"line": 92,
|
|
5367
|
+
"column": 1
|
|
5368
|
+
}
|
|
5369
|
+
},
|
|
5370
|
+
{
|
|
5371
|
+
"name": "resolveRuntimeEventOperationErrorMessage",
|
|
5372
|
+
"description": null,
|
|
5373
|
+
"sourceLocation": {
|
|
5374
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
5375
|
+
"line": 113,
|
|
5376
|
+
"column": 1
|
|
5377
|
+
}
|
|
5378
|
+
},
|
|
4980
5379
|
{
|
|
4981
5380
|
"name": "defineRuntimeAction",
|
|
4982
5381
|
"description": null,
|
|
@@ -5297,7 +5696,7 @@
|
|
|
5297
5696
|
"description": null,
|
|
5298
5697
|
"sourceLocation": {
|
|
5299
5698
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
5300
|
-
"line":
|
|
5699
|
+
"line": 81,
|
|
5301
5700
|
"column": 1
|
|
5302
5701
|
}
|
|
5303
5702
|
},
|
|
@@ -5396,7 +5795,7 @@
|
|
|
5396
5795
|
"description": null,
|
|
5397
5796
|
"sourceLocation": {
|
|
5398
5797
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5399
|
-
"line":
|
|
5798
|
+
"line": 80,
|
|
5400
5799
|
"column": 1
|
|
5401
5800
|
}
|
|
5402
5801
|
},
|
|
@@ -5405,7 +5804,7 @@
|
|
|
5405
5804
|
"description": null,
|
|
5406
5805
|
"sourceLocation": {
|
|
5407
5806
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5408
|
-
"line":
|
|
5807
|
+
"line": 95,
|
|
5409
5808
|
"column": 1
|
|
5410
5809
|
}
|
|
5411
5810
|
},
|
|
@@ -5414,7 +5813,7 @@
|
|
|
5414
5813
|
"description": null,
|
|
5415
5814
|
"sourceLocation": {
|
|
5416
5815
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5417
|
-
"line":
|
|
5816
|
+
"line": 113,
|
|
5418
5817
|
"column": 1
|
|
5419
5818
|
}
|
|
5420
5819
|
},
|
|
@@ -5423,7 +5822,7 @@
|
|
|
5423
5822
|
"description": null,
|
|
5424
5823
|
"sourceLocation": {
|
|
5425
5824
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5426
|
-
"line":
|
|
5825
|
+
"line": 164,
|
|
5427
5826
|
"column": 1
|
|
5428
5827
|
}
|
|
5429
5828
|
},
|
|
@@ -5432,7 +5831,7 @@
|
|
|
5432
5831
|
"description": null,
|
|
5433
5832
|
"sourceLocation": {
|
|
5434
5833
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5435
|
-
"line":
|
|
5834
|
+
"line": 177,
|
|
5436
5835
|
"column": 1
|
|
5437
5836
|
}
|
|
5438
5837
|
},
|
|
@@ -5441,7 +5840,7 @@
|
|
|
5441
5840
|
"description": null,
|
|
5442
5841
|
"sourceLocation": {
|
|
5443
5842
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5444
|
-
"line":
|
|
5843
|
+
"line": 181,
|
|
5445
5844
|
"column": 1
|
|
5446
5845
|
}
|
|
5447
5846
|
},
|
|
@@ -5986,6 +6385,22 @@
|
|
|
5986
6385
|
"description": null,
|
|
5987
6386
|
"isReadme": false
|
|
5988
6387
|
},
|
|
6388
|
+
{
|
|
6389
|
+
"kind": "export",
|
|
6390
|
+
"name": "createRuntimeEventOperationBindingContext",
|
|
6391
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts",
|
|
6392
|
+
"symbolName": "createRuntimeEventOperationBindingContext",
|
|
6393
|
+
"description": null,
|
|
6394
|
+
"isReadme": false
|
|
6395
|
+
},
|
|
6396
|
+
{
|
|
6397
|
+
"kind": "export",
|
|
6398
|
+
"name": "createRuntimeEventOperationLifecycle",
|
|
6399
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts",
|
|
6400
|
+
"symbolName": "createRuntimeEventOperationLifecycle",
|
|
6401
|
+
"description": null,
|
|
6402
|
+
"isReadme": false
|
|
6403
|
+
},
|
|
5989
6404
|
{
|
|
5990
6405
|
"kind": "export",
|
|
5991
6406
|
"name": "createRuntimeMemoryStateAdapter",
|
|
@@ -6114,6 +6529,14 @@
|
|
|
6114
6529
|
"description": null,
|
|
6115
6530
|
"isReadme": false
|
|
6116
6531
|
},
|
|
6532
|
+
{
|
|
6533
|
+
"kind": "export",
|
|
6534
|
+
"name": "resolveRuntimeEventOperationErrorMessage",
|
|
6535
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts",
|
|
6536
|
+
"symbolName": "resolveRuntimeEventOperationErrorMessage",
|
|
6537
|
+
"description": null,
|
|
6538
|
+
"isReadme": false
|
|
6539
|
+
},
|
|
6117
6540
|
{
|
|
6118
6541
|
"kind": "export",
|
|
6119
6542
|
"name": "resolveScreenOperationLoaders",
|
|
@@ -6233,6 +6656,11 @@
|
|
|
6233
6656
|
"toPath": "src/runtimeBindings.ts",
|
|
6234
6657
|
"sourcePath": "src/bindings.ts"
|
|
6235
6658
|
},
|
|
6659
|
+
{
|
|
6660
|
+
"fromPath": "src/bindings.ts",
|
|
6661
|
+
"toPath": "src/runtimeEventOperationLifecycle.ts",
|
|
6662
|
+
"sourcePath": "src/bindings.ts"
|
|
6663
|
+
},
|
|
6236
6664
|
{
|
|
6237
6665
|
"fromPath": "src/index.ts",
|
|
6238
6666
|
"toPath": "src/ManifestContext.tsx",
|
|
@@ -6273,6 +6701,11 @@
|
|
|
6273
6701
|
"toPath": "src/runtimeEventExecution.ts",
|
|
6274
6702
|
"sourcePath": "src/index.ts"
|
|
6275
6703
|
},
|
|
6704
|
+
{
|
|
6705
|
+
"fromPath": "src/index.ts",
|
|
6706
|
+
"toPath": "src/runtimeEventOperationLifecycle.ts",
|
|
6707
|
+
"sourcePath": "src/index.ts"
|
|
6708
|
+
},
|
|
6276
6709
|
{
|
|
6277
6710
|
"fromPath": "src/index.ts",
|
|
6278
6711
|
"toPath": "src/runtimeManifest.ts",
|
|
@@ -6383,6 +6816,11 @@
|
|
|
6383
6816
|
"toPath": "src/runtimeBindings.ts",
|
|
6384
6817
|
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
6385
6818
|
},
|
|
6819
|
+
{
|
|
6820
|
+
"fromPath": "src/runtimeActionRegistry.ts",
|
|
6821
|
+
"toPath": "src/runtimeEventOperationLifecycle.ts",
|
|
6822
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
6823
|
+
},
|
|
6386
6824
|
{
|
|
6387
6825
|
"fromPath": "src/runtimeActionRegistry.ts",
|
|
6388
6826
|
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
@@ -6453,6 +6891,16 @@
|
|
|
6453
6891
|
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
6454
6892
|
"sourcePath": "src/runtimeEventExecution.ts"
|
|
6455
6893
|
},
|
|
6894
|
+
{
|
|
6895
|
+
"fromPath": "src/runtimeEventOperationLifecycle.test.ts",
|
|
6896
|
+
"toPath": "src/runtimeActionRegistry.ts",
|
|
6897
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
6898
|
+
},
|
|
6899
|
+
{
|
|
6900
|
+
"fromPath": "src/runtimeEventOperationLifecycle.test.ts",
|
|
6901
|
+
"toPath": "src/runtimeEventOperationLifecycle.ts",
|
|
6902
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
6903
|
+
},
|
|
6456
6904
|
{
|
|
6457
6905
|
"fromPath": "src/runtimeImageMedia.test.ts",
|
|
6458
6906
|
"toPath": "src/runtimeMedia.ts",
|
|
@@ -6528,6 +6976,11 @@
|
|
|
6528
6976
|
"toPath": "src/runtimeEventExecution.ts",
|
|
6529
6977
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6530
6978
|
},
|
|
6979
|
+
{
|
|
6980
|
+
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6981
|
+
"toPath": "src/runtimeEventOperationLifecycle.ts",
|
|
6982
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6983
|
+
},
|
|
6531
6984
|
{
|
|
6532
6985
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6533
6986
|
"toPath": "src/runtimeMedia.ts",
|
|
@@ -6583,6 +7036,11 @@
|
|
|
6583
7036
|
"toPath": "src/runtimeBindings.ts",
|
|
6584
7037
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
6585
7038
|
},
|
|
7039
|
+
{
|
|
7040
|
+
"fromPath": "src/RuntimeRendererConfig.tsx",
|
|
7041
|
+
"toPath": "src/runtimeEventOperationLifecycle.ts",
|
|
7042
|
+
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
7043
|
+
},
|
|
6586
7044
|
{
|
|
6587
7045
|
"fromPath": "src/RuntimeRendererConfig.tsx",
|
|
6588
7046
|
"toPath": "src/runtimeMedia.ts",
|
|
@@ -7142,6 +7600,30 @@
|
|
|
7142
7600
|
"callExpression": "resolveRuntimeActionValueEntry",
|
|
7143
7601
|
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7144
7602
|
},
|
|
7603
|
+
{
|
|
7604
|
+
"fromSymbol": "dispatchRuntimeOperationEventBinding",
|
|
7605
|
+
"toSymbol": "start",
|
|
7606
|
+
"callExpression": "args.args.eventOperationLifecycle?.start",
|
|
7607
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7608
|
+
},
|
|
7609
|
+
{
|
|
7610
|
+
"fromSymbol": "failLifecycle",
|
|
7611
|
+
"toSymbol": "fail",
|
|
7612
|
+
"callExpression": "args.args.eventOperationLifecycle?.fail",
|
|
7613
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7614
|
+
},
|
|
7615
|
+
{
|
|
7616
|
+
"fromSymbol": "failLifecycle",
|
|
7617
|
+
"toSymbol": "resolveRuntimeEventOperationErrorMessage",
|
|
7618
|
+
"callExpression": "resolveRuntimeEventOperationErrorMessage",
|
|
7619
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7620
|
+
},
|
|
7621
|
+
{
|
|
7622
|
+
"fromSymbol": "dispatchRuntimeOperationEventBinding",
|
|
7623
|
+
"toSymbol": "failLifecycle",
|
|
7624
|
+
"callExpression": "failLifecycle",
|
|
7625
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7626
|
+
},
|
|
7145
7627
|
{
|
|
7146
7628
|
"fromSymbol": "dispatchRuntimeOperationEventBinding",
|
|
7147
7629
|
"toSymbol": "resolveRuntimeBindingOperationSelection",
|
|
@@ -7172,6 +7654,12 @@
|
|
|
7172
7654
|
"callExpression": "args.args.writeOperationResult",
|
|
7173
7655
|
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7174
7656
|
},
|
|
7657
|
+
{
|
|
7658
|
+
"fromSymbol": "dispatchRuntimeOperationEventBinding",
|
|
7659
|
+
"toSymbol": "succeed",
|
|
7660
|
+
"callExpression": "args.args.eventOperationLifecycle?.succeed",
|
|
7661
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
7662
|
+
},
|
|
7175
7663
|
{
|
|
7176
7664
|
"fromSymbol": "resolveRuntimeActionValueEntry",
|
|
7177
7665
|
"toSymbol": "isRecord",
|
|
@@ -7850,6 +8338,90 @@
|
|
|
7850
8338
|
"callExpression": "report",
|
|
7851
8339
|
"sourcePath": "src/runtimeEventExecution.ts"
|
|
7852
8340
|
},
|
|
8341
|
+
{
|
|
8342
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8343
|
+
"toSymbol": "describe",
|
|
8344
|
+
"callExpression": "describe",
|
|
8345
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8346
|
+
},
|
|
8347
|
+
{
|
|
8348
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8349
|
+
"toSymbol": "it",
|
|
8350
|
+
"callExpression": "it",
|
|
8351
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8352
|
+
},
|
|
8353
|
+
{
|
|
8354
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8355
|
+
"toSymbol": "expect",
|
|
8356
|
+
"callExpression": "expect",
|
|
8357
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8358
|
+
},
|
|
8359
|
+
{
|
|
8360
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8361
|
+
"toSymbol": "createRuntimeEventOperationBindingContext",
|
|
8362
|
+
"callExpression": "createRuntimeEventOperationBindingContext",
|
|
8363
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8364
|
+
},
|
|
8365
|
+
{
|
|
8366
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8367
|
+
"toSymbol": "createRuntimeEventOperationLifecycle",
|
|
8368
|
+
"callExpression": "createRuntimeEventOperationLifecycle",
|
|
8369
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8370
|
+
},
|
|
8371
|
+
{
|
|
8372
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8373
|
+
"toSymbol": "resolve",
|
|
8374
|
+
"callExpression": "resolve",
|
|
8375
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8376
|
+
},
|
|
8377
|
+
{
|
|
8378
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8379
|
+
"toSymbol": "dispatchRuntimeComponentEvent",
|
|
8380
|
+
"callExpression": "dispatchRuntimeComponentEvent",
|
|
8381
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8382
|
+
},
|
|
8383
|
+
{
|
|
8384
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8385
|
+
"toSymbol": "eventArgs",
|
|
8386
|
+
"callExpression": "eventArgs",
|
|
8387
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8388
|
+
},
|
|
8389
|
+
{
|
|
8390
|
+
"fromSymbol": "src/runtimeEventOperationLifecycle.test.ts",
|
|
8391
|
+
"toSymbol": "resolveExecution",
|
|
8392
|
+
"callExpression": "resolveExecution",
|
|
8393
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.test.ts"
|
|
8394
|
+
},
|
|
8395
|
+
{
|
|
8396
|
+
"fromSymbol": "finish",
|
|
8397
|
+
"toSymbol": "onStateChange",
|
|
8398
|
+
"callExpression": "onStateChange",
|
|
8399
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
"fromSymbol": "start",
|
|
8403
|
+
"toSymbol": "onStateChange",
|
|
8404
|
+
"callExpression": "onStateChange",
|
|
8405
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
8406
|
+
},
|
|
8407
|
+
{
|
|
8408
|
+
"fromSymbol": "succeed",
|
|
8409
|
+
"toSymbol": "finish",
|
|
8410
|
+
"callExpression": "finish",
|
|
8411
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
8412
|
+
},
|
|
8413
|
+
{
|
|
8414
|
+
"fromSymbol": "fail",
|
|
8415
|
+
"toSymbol": "finish",
|
|
8416
|
+
"callExpression": "finish",
|
|
8417
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
8418
|
+
},
|
|
8419
|
+
{
|
|
8420
|
+
"fromSymbol": "createRuntimeEventOperationBindingContext",
|
|
8421
|
+
"toSymbol": "isRecord",
|
|
8422
|
+
"callExpression": "isRecord",
|
|
8423
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
8424
|
+
},
|
|
7853
8425
|
{
|
|
7854
8426
|
"fromSymbol": "src/runtimeImageMedia.test.ts",
|
|
7855
8427
|
"toSymbol": "test",
|
|
@@ -8258,6 +8830,24 @@
|
|
|
8258
8830
|
"callExpression": "useRuntimeRendererConfig",
|
|
8259
8831
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8260
8832
|
},
|
|
8833
|
+
{
|
|
8834
|
+
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8835
|
+
"toSymbol": "createRuntimeEventOperationLifecycle",
|
|
8836
|
+
"callExpression": "createRuntimeEventOperationLifecycle",
|
|
8837
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8838
|
+
},
|
|
8839
|
+
{
|
|
8840
|
+
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8841
|
+
"toSymbol": "mergeRuntimeRendererConfig",
|
|
8842
|
+
"callExpression": "mergeRuntimeRendererConfig",
|
|
8843
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8844
|
+
},
|
|
8845
|
+
{
|
|
8846
|
+
"fromSymbol": "RuntimeRenderer",
|
|
8847
|
+
"toSymbol": "createRuntimeEventOperationBindingContext",
|
|
8848
|
+
"callExpression": "createRuntimeEventOperationBindingContext",
|
|
8849
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8850
|
+
},
|
|
8261
8851
|
{
|
|
8262
8852
|
"fromSymbol": "RuntimeRenderer",
|
|
8263
8853
|
"toSymbol": "useRuntimeMediaResolutionCache",
|
|
@@ -8270,12 +8860,6 @@
|
|
|
8270
8860
|
"callExpression": "setLocalOperationResults",
|
|
8271
8861
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8272
8862
|
},
|
|
8273
|
-
{
|
|
8274
|
-
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8275
|
-
"toSymbol": "mergeRuntimeRendererConfig",
|
|
8276
|
-
"callExpression": "mergeRuntimeRendererConfig",
|
|
8277
|
-
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8278
|
-
},
|
|
8279
8863
|
{
|
|
8280
8864
|
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8281
8865
|
"toSymbol": "createDbPersistActionHandler",
|
|
@@ -9555,6 +10139,11 @@
|
|
|
9555
10139
|
"toType": "RuntimeBindingOperationResultWriter",
|
|
9556
10140
|
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
9557
10141
|
},
|
|
10142
|
+
{
|
|
10143
|
+
"fromSymbol": "RuntimeComponentEventDispatchArgs",
|
|
10144
|
+
"toType": "RuntimeEventOperationLifecycle",
|
|
10145
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
10146
|
+
},
|
|
9558
10147
|
{
|
|
9559
10148
|
"fromSymbol": "RuntimeComponentEventDispatchArgs",
|
|
9560
10149
|
"toType": "UiNode",
|
|
@@ -9640,6 +10229,11 @@
|
|
|
9640
10229
|
"toType": "RuntimeBindingOperationResultWriter",
|
|
9641
10230
|
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
9642
10231
|
},
|
|
10232
|
+
{
|
|
10233
|
+
"fromSymbol": "createRuntimeActionRegistry",
|
|
10234
|
+
"toType": "RuntimeEventOperationLifecycle",
|
|
10235
|
+
"sourcePath": "src/runtimeActionRegistry.ts"
|
|
10236
|
+
},
|
|
9643
10237
|
{
|
|
9644
10238
|
"fromSymbol": "dispatchRuntimeComponentEvent",
|
|
9645
10239
|
"toType": "DataSourceDiagnostic",
|
|
@@ -10000,6 +10594,46 @@
|
|
|
10000
10594
|
"toType": "Pick",
|
|
10001
10595
|
"sourcePath": "src/runtimeEventExecution.ts"
|
|
10002
10596
|
},
|
|
10597
|
+
{
|
|
10598
|
+
"fromSymbol": "RuntimeEventOperationLifecycle",
|
|
10599
|
+
"toType": "BindingOperationRef",
|
|
10600
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10601
|
+
},
|
|
10602
|
+
{
|
|
10603
|
+
"fromSymbol": "RuntimeEventOperationLifecycle",
|
|
10604
|
+
"toType": "RuntimeEventOperationInvocation",
|
|
10605
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10606
|
+
},
|
|
10607
|
+
{
|
|
10608
|
+
"fromSymbol": "RuntimeEventOperationState",
|
|
10609
|
+
"toType": "BindingOperationRef",
|
|
10610
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10611
|
+
},
|
|
10612
|
+
{
|
|
10613
|
+
"fromSymbol": "RuntimeEventOperationState",
|
|
10614
|
+
"toType": "RuntimeEventOperationStatus",
|
|
10615
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10616
|
+
},
|
|
10617
|
+
{
|
|
10618
|
+
"fromSymbol": "createRuntimeEventOperationBindingContext",
|
|
10619
|
+
"toType": "RuntimeEventOperationState",
|
|
10620
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10621
|
+
},
|
|
10622
|
+
{
|
|
10623
|
+
"fromSymbol": "createRuntimeEventOperationLifecycle",
|
|
10624
|
+
"toType": "RuntimeEventOperationLifecycle",
|
|
10625
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10626
|
+
},
|
|
10627
|
+
{
|
|
10628
|
+
"fromSymbol": "createRuntimeEventOperationLifecycle",
|
|
10629
|
+
"toType": "RuntimeEventOperationState",
|
|
10630
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10631
|
+
},
|
|
10632
|
+
{
|
|
10633
|
+
"fromSymbol": "resolveRuntimeEventOperationErrorMessage",
|
|
10634
|
+
"toType": "DataSourceDiagnostic",
|
|
10635
|
+
"sourcePath": "src/runtimeEventOperationLifecycle.ts"
|
|
10636
|
+
},
|
|
10003
10637
|
{
|
|
10004
10638
|
"fromSymbol": "RuntimeActionDescriptor",
|
|
10005
10639
|
"toType": "Data",
|
|
@@ -10300,6 +10934,16 @@
|
|
|
10300
10934
|
"toType": "RuntimeBindingOperationResultWriter",
|
|
10301
10935
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
10302
10936
|
},
|
|
10937
|
+
{
|
|
10938
|
+
"fromSymbol": "RuntimeRendererConfig",
|
|
10939
|
+
"toType": "RuntimeEventOperationLifecycle",
|
|
10940
|
+
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
10941
|
+
},
|
|
10942
|
+
{
|
|
10943
|
+
"fromSymbol": "RuntimeRendererConfig",
|
|
10944
|
+
"toType": "RuntimeEventOperationState",
|
|
10945
|
+
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
10946
|
+
},
|
|
10303
10947
|
{
|
|
10304
10948
|
"fromSymbol": "RuntimeRendererConfig",
|
|
10305
10949
|
"toType": "RuntimeMediaAssetResolver",
|