@ankhorage/runtime 2.2.10 → 2.3.1
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 +12 -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/exports.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
27
27
|
"sourceLocation": {
|
|
28
28
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
29
|
-
"line":
|
|
29
|
+
"line": 95,
|
|
30
30
|
"column": 1
|
|
31
31
|
},
|
|
32
32
|
"exportPaths": ["src/index.ts"],
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
65
65
|
"sourceLocation": {
|
|
66
66
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
67
|
-
"line":
|
|
67
|
+
"line": 80,
|
|
68
68
|
"column": 1
|
|
69
69
|
},
|
|
70
70
|
"exportPaths": ["src/index.ts"],
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
103
103
|
"sourceLocation": {
|
|
104
104
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
105
|
-
"line":
|
|
105
|
+
"line": 223,
|
|
106
106
|
"column": 1
|
|
107
107
|
},
|
|
108
108
|
"exportPaths": ["src/index.ts"],
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
263
263
|
"sourceLocation": {
|
|
264
264
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
265
|
-
"line":
|
|
265
|
+
"line": 71,
|
|
266
266
|
"column": 1
|
|
267
267
|
},
|
|
268
268
|
"exportPaths": ["src/index.ts"],
|
|
@@ -272,15 +272,16 @@
|
|
|
272
272
|
"RuntimeActionRegistry",
|
|
273
273
|
"RuntimeBindingOperationExecutor",
|
|
274
274
|
"RuntimeBindingOperationResultCache",
|
|
275
|
-
"RuntimeBindingOperationResultWriter"
|
|
275
|
+
"RuntimeBindingOperationResultWriter",
|
|
276
|
+
"RuntimeEventOperationLifecycle"
|
|
276
277
|
],
|
|
277
278
|
"signatures": [
|
|
278
279
|
{
|
|
279
|
-
"label": "(options?: { actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }) => RuntimeActionRegistry",
|
|
280
|
+
"label": "(options?: { actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; eventOperationLifecycle?: RuntimeEventOperationLifecycle; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }) => RuntimeActionRegistry",
|
|
280
281
|
"parameters": [
|
|
281
282
|
{
|
|
282
283
|
"name": "options",
|
|
283
|
-
"type": "{ actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }",
|
|
284
|
+
"type": "{ actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; eventOperationLifecycle?: RuntimeEventOperationLifecycle; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }",
|
|
284
285
|
"required": false,
|
|
285
286
|
"description": null
|
|
286
287
|
}
|
|
@@ -356,6 +357,76 @@
|
|
|
356
357
|
"members": [],
|
|
357
358
|
"structuredRows": []
|
|
358
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"name": "createRuntimeEventOperationBindingContext",
|
|
362
|
+
"description": null,
|
|
363
|
+
"isReadme": false,
|
|
364
|
+
"examples": [],
|
|
365
|
+
"kind": "function",
|
|
366
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
367
|
+
"sourceLocation": {
|
|
368
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
369
|
+
"line": 92,
|
|
370
|
+
"column": 1
|
|
371
|
+
},
|
|
372
|
+
"exportPaths": ["src/index.ts"],
|
|
373
|
+
"relatedSymbols": ["RuntimeEventOperationState"],
|
|
374
|
+
"signatures": [
|
|
375
|
+
{
|
|
376
|
+
"label": "(context: Record<string, unknown> | undefined, state: RuntimeEventOperationState) => Record<string, unknown>",
|
|
377
|
+
"parameters": [
|
|
378
|
+
{
|
|
379
|
+
"name": "context",
|
|
380
|
+
"type": "Record<string, unknown> | undefined",
|
|
381
|
+
"required": true,
|
|
382
|
+
"description": null
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "state",
|
|
386
|
+
"type": "RuntimeEventOperationState",
|
|
387
|
+
"required": true,
|
|
388
|
+
"description": null
|
|
389
|
+
}
|
|
390
|
+
],
|
|
391
|
+
"returnType": "Record<string, unknown>",
|
|
392
|
+
"returnDescription": null
|
|
393
|
+
}
|
|
394
|
+
],
|
|
395
|
+
"members": [],
|
|
396
|
+
"structuredRows": []
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "createRuntimeEventOperationLifecycle",
|
|
400
|
+
"description": null,
|
|
401
|
+
"isReadme": false,
|
|
402
|
+
"examples": [],
|
|
403
|
+
"kind": "function",
|
|
404
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
405
|
+
"sourceLocation": {
|
|
406
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
407
|
+
"line": 39,
|
|
408
|
+
"column": 1
|
|
409
|
+
},
|
|
410
|
+
"exportPaths": ["src/index.ts"],
|
|
411
|
+
"relatedSymbols": ["RuntimeEventOperationLifecycle", "RuntimeEventOperationState"],
|
|
412
|
+
"signatures": [
|
|
413
|
+
{
|
|
414
|
+
"label": "(onStateChange: (state: RuntimeEventOperationState) => void) => RuntimeEventOperationLifecycle",
|
|
415
|
+
"parameters": [
|
|
416
|
+
{
|
|
417
|
+
"name": "onStateChange",
|
|
418
|
+
"type": "(state: RuntimeEventOperationState) => void",
|
|
419
|
+
"required": true,
|
|
420
|
+
"description": null
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"returnType": "RuntimeEventOperationLifecycle",
|
|
424
|
+
"returnDescription": null
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"members": [],
|
|
428
|
+
"structuredRows": []
|
|
429
|
+
},
|
|
359
430
|
{
|
|
360
431
|
"name": "createRuntimeMemoryStateAdapter",
|
|
361
432
|
"description": null,
|
|
@@ -429,7 +500,7 @@
|
|
|
429
500
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
430
501
|
"sourceLocation": {
|
|
431
502
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
432
|
-
"line":
|
|
503
|
+
"line": 109,
|
|
433
504
|
"column": 1
|
|
434
505
|
},
|
|
435
506
|
"exportPaths": ["src/index.ts"],
|
|
@@ -557,6 +628,24 @@
|
|
|
557
628
|
"members": [],
|
|
558
629
|
"structuredRows": []
|
|
559
630
|
},
|
|
631
|
+
{
|
|
632
|
+
"name": "IDLE_RUNTIME_EVENT_OPERATION_STATE",
|
|
633
|
+
"description": null,
|
|
634
|
+
"isReadme": false,
|
|
635
|
+
"examples": [],
|
|
636
|
+
"kind": "value",
|
|
637
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
638
|
+
"sourceLocation": {
|
|
639
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
640
|
+
"line": 27,
|
|
641
|
+
"column": 14
|
|
642
|
+
},
|
|
643
|
+
"exportPaths": ["src/index.ts"],
|
|
644
|
+
"relatedSymbols": [],
|
|
645
|
+
"signatures": [],
|
|
646
|
+
"members": [],
|
|
647
|
+
"structuredRows": []
|
|
648
|
+
},
|
|
560
649
|
{
|
|
561
650
|
"name": "ManifestContext",
|
|
562
651
|
"description": null,
|
|
@@ -616,7 +705,7 @@
|
|
|
616
705
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
617
706
|
"sourceLocation": {
|
|
618
707
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
619
|
-
"line":
|
|
708
|
+
"line": 113,
|
|
620
709
|
"column": 1
|
|
621
710
|
},
|
|
622
711
|
"exportPaths": ["src/index.ts"],
|
|
@@ -730,7 +819,7 @@
|
|
|
730
819
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
731
820
|
"sourceLocation": {
|
|
732
821
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
733
|
-
"line":
|
|
822
|
+
"line": 237,
|
|
734
823
|
"column": 1
|
|
735
824
|
},
|
|
736
825
|
"exportPaths": ["src/index.ts"],
|
|
@@ -768,7 +857,7 @@
|
|
|
768
857
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
769
858
|
"sourceLocation": {
|
|
770
859
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
771
|
-
"line":
|
|
860
|
+
"line": 248,
|
|
772
861
|
"column": 1
|
|
773
862
|
},
|
|
774
863
|
"exportPaths": ["src/index.ts"],
|
|
@@ -949,6 +1038,38 @@
|
|
|
949
1038
|
"members": [],
|
|
950
1039
|
"structuredRows": []
|
|
951
1040
|
},
|
|
1041
|
+
{
|
|
1042
|
+
"name": "resolveRuntimeEventOperationErrorMessage",
|
|
1043
|
+
"description": null,
|
|
1044
|
+
"isReadme": false,
|
|
1045
|
+
"examples": [],
|
|
1046
|
+
"kind": "function",
|
|
1047
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1048
|
+
"sourceLocation": {
|
|
1049
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
1050
|
+
"line": 113,
|
|
1051
|
+
"column": 1
|
|
1052
|
+
},
|
|
1053
|
+
"exportPaths": ["src/index.ts"],
|
|
1054
|
+
"relatedSymbols": [],
|
|
1055
|
+
"signatures": [
|
|
1056
|
+
{
|
|
1057
|
+
"label": "(diagnostics: readonly DataSourceDiagnostic[]) => string",
|
|
1058
|
+
"parameters": [
|
|
1059
|
+
{
|
|
1060
|
+
"name": "diagnostics",
|
|
1061
|
+
"type": "readonly DataSourceDiagnostic[]",
|
|
1062
|
+
"required": true,
|
|
1063
|
+
"description": null
|
|
1064
|
+
}
|
|
1065
|
+
],
|
|
1066
|
+
"returnType": "string",
|
|
1067
|
+
"returnDescription": null
|
|
1068
|
+
}
|
|
1069
|
+
],
|
|
1070
|
+
"members": [],
|
|
1071
|
+
"structuredRows": []
|
|
1072
|
+
},
|
|
952
1073
|
{
|
|
953
1074
|
"name": "resolveScreenOperationLoaders",
|
|
954
1075
|
"description": null,
|
|
@@ -990,7 +1111,7 @@
|
|
|
990
1111
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
991
1112
|
"sourceLocation": {
|
|
992
1113
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
993
|
-
"line":
|
|
1114
|
+
"line": 46,
|
|
994
1115
|
"column": 1
|
|
995
1116
|
},
|
|
996
1117
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1055,7 +1176,7 @@
|
|
|
1055
1176
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1056
1177
|
"sourceLocation": {
|
|
1057
1178
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1058
|
-
"line":
|
|
1179
|
+
"line": 49,
|
|
1059
1180
|
"column": 1
|
|
1060
1181
|
},
|
|
1061
1182
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1073,7 +1194,7 @@
|
|
|
1073
1194
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1074
1195
|
"sourceLocation": {
|
|
1075
1196
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1076
|
-
"line":
|
|
1197
|
+
"line": 47,
|
|
1077
1198
|
"column": 1
|
|
1078
1199
|
},
|
|
1079
1200
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1091,7 +1212,7 @@
|
|
|
1091
1212
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1092
1213
|
"sourceLocation": {
|
|
1093
1214
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1094
|
-
"line":
|
|
1215
|
+
"line": 39,
|
|
1095
1216
|
"column": 1
|
|
1096
1217
|
},
|
|
1097
1218
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1138,7 +1259,7 @@
|
|
|
1138
1259
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1139
1260
|
"sourceLocation": {
|
|
1140
1261
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1141
|
-
"line":
|
|
1262
|
+
"line": 48,
|
|
1142
1263
|
"column": 1
|
|
1143
1264
|
},
|
|
1144
1265
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1156,7 +1277,7 @@
|
|
|
1156
1277
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1157
1278
|
"sourceLocation": {
|
|
1158
1279
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1159
|
-
"line":
|
|
1280
|
+
"line": 34,
|
|
1160
1281
|
"column": 1
|
|
1161
1282
|
},
|
|
1162
1283
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1189,7 +1310,7 @@
|
|
|
1189
1310
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1190
1311
|
"sourceLocation": {
|
|
1191
1312
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1192
|
-
"line":
|
|
1313
|
+
"line": 45,
|
|
1193
1314
|
"column": 1
|
|
1194
1315
|
},
|
|
1195
1316
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1236,7 +1357,7 @@
|
|
|
1236
1357
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1237
1358
|
"sourceLocation": {
|
|
1238
1359
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1239
|
-
"line":
|
|
1360
|
+
"line": 39,
|
|
1240
1361
|
"column": 1
|
|
1241
1362
|
},
|
|
1242
1363
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1781,14 +1902,15 @@
|
|
|
1781
1902
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
1782
1903
|
"sourceLocation": {
|
|
1783
1904
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
1784
|
-
"line":
|
|
1905
|
+
"line": 49,
|
|
1785
1906
|
"column": 1
|
|
1786
1907
|
},
|
|
1787
1908
|
"exportPaths": ["src/index.ts"],
|
|
1788
1909
|
"relatedSymbols": [
|
|
1789
1910
|
"RuntimeActionHandler",
|
|
1790
1911
|
"RuntimeBindingOperationExecutor",
|
|
1791
|
-
"RuntimeBindingOperationResultWriter"
|
|
1912
|
+
"RuntimeBindingOperationResultWriter",
|
|
1913
|
+
"RuntimeEventOperationLifecycle"
|
|
1792
1914
|
],
|
|
1793
1915
|
"signatures": [],
|
|
1794
1916
|
"members": [
|
|
@@ -1827,6 +1949,13 @@
|
|
|
1827
1949
|
"required": false,
|
|
1828
1950
|
"description": null
|
|
1829
1951
|
},
|
|
1952
|
+
{
|
|
1953
|
+
"name": "eventOperationLifecycle",
|
|
1954
|
+
"kind": "property",
|
|
1955
|
+
"type": "RuntimeEventOperationLifecycle | undefined",
|
|
1956
|
+
"required": false,
|
|
1957
|
+
"description": null
|
|
1958
|
+
},
|
|
1830
1959
|
{
|
|
1831
1960
|
"name": "executeAction",
|
|
1832
1961
|
"kind": "property",
|
|
@@ -2029,6 +2158,144 @@
|
|
|
2029
2158
|
],
|
|
2030
2159
|
"structuredRows": []
|
|
2031
2160
|
},
|
|
2161
|
+
{
|
|
2162
|
+
"name": "RuntimeEventOperationInvocation",
|
|
2163
|
+
"description": null,
|
|
2164
|
+
"isReadme": false,
|
|
2165
|
+
"examples": [],
|
|
2166
|
+
"kind": "type",
|
|
2167
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2168
|
+
"sourceLocation": {
|
|
2169
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2170
|
+
"line": 14,
|
|
2171
|
+
"column": 1
|
|
2172
|
+
},
|
|
2173
|
+
"exportPaths": ["src/index.ts"],
|
|
2174
|
+
"relatedSymbols": [],
|
|
2175
|
+
"signatures": [],
|
|
2176
|
+
"members": [
|
|
2177
|
+
{
|
|
2178
|
+
"name": "id",
|
|
2179
|
+
"kind": "property",
|
|
2180
|
+
"type": "number",
|
|
2181
|
+
"required": true,
|
|
2182
|
+
"description": null
|
|
2183
|
+
}
|
|
2184
|
+
],
|
|
2185
|
+
"structuredRows": []
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"name": "RuntimeEventOperationLifecycle",
|
|
2189
|
+
"description": null,
|
|
2190
|
+
"isReadme": false,
|
|
2191
|
+
"examples": [],
|
|
2192
|
+
"kind": "type",
|
|
2193
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2194
|
+
"sourceLocation": {
|
|
2195
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2196
|
+
"line": 18,
|
|
2197
|
+
"column": 1
|
|
2198
|
+
},
|
|
2199
|
+
"exportPaths": ["src/index.ts"],
|
|
2200
|
+
"relatedSymbols": ["RuntimeEventOperationInvocation"],
|
|
2201
|
+
"signatures": [],
|
|
2202
|
+
"members": [
|
|
2203
|
+
{
|
|
2204
|
+
"name": "fail",
|
|
2205
|
+
"kind": "method",
|
|
2206
|
+
"type": "(invocation: RuntimeEventOperationInvocation, message: string) => void",
|
|
2207
|
+
"required": true,
|
|
2208
|
+
"description": null
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"name": "start",
|
|
2212
|
+
"kind": "method",
|
|
2213
|
+
"type": "(args: { readonly nodeId: string; readonly operation: BindingOperationRef; }) => RuntimeEventOperationInvocation | undefined",
|
|
2214
|
+
"required": true,
|
|
2215
|
+
"description": null
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"name": "succeed",
|
|
2219
|
+
"kind": "method",
|
|
2220
|
+
"type": "(invocation: RuntimeEventOperationInvocation) => void",
|
|
2221
|
+
"required": true,
|
|
2222
|
+
"description": null
|
|
2223
|
+
}
|
|
2224
|
+
],
|
|
2225
|
+
"structuredRows": []
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"name": "RuntimeEventOperationState",
|
|
2229
|
+
"description": null,
|
|
2230
|
+
"isReadme": false,
|
|
2231
|
+
"examples": [],
|
|
2232
|
+
"kind": "type",
|
|
2233
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2234
|
+
"sourceLocation": {
|
|
2235
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2236
|
+
"line": 6,
|
|
2237
|
+
"column": 1
|
|
2238
|
+
},
|
|
2239
|
+
"exportPaths": ["src/index.ts"],
|
|
2240
|
+
"relatedSymbols": ["RuntimeEventOperationStatus"],
|
|
2241
|
+
"signatures": [],
|
|
2242
|
+
"members": [
|
|
2243
|
+
{
|
|
2244
|
+
"name": "errorMessage",
|
|
2245
|
+
"kind": "property",
|
|
2246
|
+
"type": "string",
|
|
2247
|
+
"required": true,
|
|
2248
|
+
"description": null
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
"name": "loading",
|
|
2252
|
+
"kind": "property",
|
|
2253
|
+
"type": "boolean",
|
|
2254
|
+
"required": true,
|
|
2255
|
+
"description": null
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"name": "nodeId",
|
|
2259
|
+
"kind": "property",
|
|
2260
|
+
"type": "string | undefined",
|
|
2261
|
+
"required": false,
|
|
2262
|
+
"description": null
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"name": "operation",
|
|
2266
|
+
"kind": "property",
|
|
2267
|
+
"type": "BindingOperationRef | undefined",
|
|
2268
|
+
"required": false,
|
|
2269
|
+
"description": null
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"name": "status",
|
|
2273
|
+
"kind": "property",
|
|
2274
|
+
"type": "RuntimeEventOperationStatus",
|
|
2275
|
+
"required": true,
|
|
2276
|
+
"description": null
|
|
2277
|
+
}
|
|
2278
|
+
],
|
|
2279
|
+
"structuredRows": []
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"name": "RuntimeEventOperationStatus",
|
|
2283
|
+
"description": null,
|
|
2284
|
+
"isReadme": false,
|
|
2285
|
+
"examples": [],
|
|
2286
|
+
"kind": "unknown",
|
|
2287
|
+
"modulePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2288
|
+
"sourceLocation": {
|
|
2289
|
+
"filePath": "src/runtimeEventOperationLifecycle.ts",
|
|
2290
|
+
"line": 4,
|
|
2291
|
+
"column": 1
|
|
2292
|
+
},
|
|
2293
|
+
"exportPaths": ["src/index.ts"],
|
|
2294
|
+
"relatedSymbols": [],
|
|
2295
|
+
"signatures": [],
|
|
2296
|
+
"members": [],
|
|
2297
|
+
"structuredRows": []
|
|
2298
|
+
},
|
|
2032
2299
|
{
|
|
2033
2300
|
"name": "RuntimeEventPropWrapArgs",
|
|
2034
2301
|
"description": null,
|
|
@@ -2038,7 +2305,7 @@
|
|
|
2038
2305
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
2039
2306
|
"sourceLocation": {
|
|
2040
2307
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
2041
|
-
"line":
|
|
2308
|
+
"line": 61,
|
|
2042
2309
|
"column": 1
|
|
2043
2310
|
},
|
|
2044
2311
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2375,7 +2642,7 @@
|
|
|
2375
2642
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
2376
2643
|
"sourceLocation": {
|
|
2377
2644
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
2378
|
-
"line":
|
|
2645
|
+
"line": 81,
|
|
2379
2646
|
"column": 1
|
|
2380
2647
|
},
|
|
2381
2648
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2407,7 +2674,7 @@
|
|
|
2407
2674
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
2408
2675
|
"sourceLocation": {
|
|
2409
2676
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
2410
|
-
"line":
|
|
2677
|
+
"line": 51,
|
|
2411
2678
|
"column": 1
|
|
2412
2679
|
},
|
|
2413
2680
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2416,6 +2683,8 @@
|
|
|
2416
2683
|
"RuntimeActionHandlers",
|
|
2417
2684
|
"RuntimeBindingOperationExecutor",
|
|
2418
2685
|
"RuntimeBindingOperationResultWriter",
|
|
2686
|
+
"RuntimeEventOperationLifecycle",
|
|
2687
|
+
"RuntimeEventOperationState",
|
|
2419
2688
|
"RuntimeMediaAssetResolver",
|
|
2420
2689
|
"RuntimeNodePropsResolver",
|
|
2421
2690
|
"RuntimeRendererWrapArgs"
|
|
@@ -2471,6 +2740,20 @@
|
|
|
2471
2740
|
"required": false,
|
|
2472
2741
|
"description": null
|
|
2473
2742
|
},
|
|
2743
|
+
{
|
|
2744
|
+
"name": "eventOperationLifecycle",
|
|
2745
|
+
"kind": "property",
|
|
2746
|
+
"type": "RuntimeEventOperationLifecycle | undefined",
|
|
2747
|
+
"required": false,
|
|
2748
|
+
"description": null
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
"name": "eventOperationState",
|
|
2752
|
+
"kind": "property",
|
|
2753
|
+
"type": "RuntimeEventOperationState | undefined",
|
|
2754
|
+
"required": false,
|
|
2755
|
+
"description": null
|
|
2756
|
+
},
|
|
2474
2757
|
{
|
|
2475
2758
|
"name": "executeAction",
|
|
2476
2759
|
"kind": "property",
|
|
@@ -2560,7 +2843,7 @@
|
|
|
2560
2843
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
2561
2844
|
"sourceLocation": {
|
|
2562
2845
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
2563
|
-
"line":
|
|
2846
|
+
"line": 164,
|
|
2564
2847
|
"column": 1
|
|
2565
2848
|
},
|
|
2566
2849
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2592,7 +2875,7 @@
|
|
|
2592
2875
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
2593
2876
|
"sourceLocation": {
|
|
2594
2877
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
2595
|
-
"line":
|
|
2878
|
+
"line": 61,
|
|
2596
2879
|
"column": 1
|
|
2597
2880
|
},
|
|
2598
2881
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2736,7 +3019,7 @@
|
|
|
2736
3019
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
2737
3020
|
"sourceLocation": {
|
|
2738
3021
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
2739
|
-
"line":
|
|
3022
|
+
"line": 33,
|
|
2740
3023
|
"column": 1
|
|
2741
3024
|
},
|
|
2742
3025
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3100,7 +3383,7 @@
|
|
|
3100
3383
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3101
3384
|
"sourceLocation": {
|
|
3102
3385
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3103
|
-
"line":
|
|
3386
|
+
"line": 177,
|
|
3104
3387
|
"column": 1
|
|
3105
3388
|
},
|
|
3106
3389
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3200,7 +3483,7 @@
|
|
|
3200
3483
|
"modulePath": "src/runtimeActionRegistry.ts",
|
|
3201
3484
|
"sourceLocation": {
|
|
3202
3485
|
"filePath": "src/runtimeActionRegistry.ts",
|
|
3203
|
-
"line":
|
|
3486
|
+
"line": 186,
|
|
3204
3487
|
"column": 1
|
|
3205
3488
|
},
|
|
3206
3489
|
"exportPaths": ["src/index.ts"],
|