@almadar/std 16.145.0 → 16.147.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 (135) hide show
  1. package/behaviors/lolo/infra/atoms/std-migration-job.lolo +269 -0
  2. package/behaviors/lolo/infra/atoms/std-mod-queue.lolo +1 -1
  3. package/behaviors/lolo/ml/atoms/std-data-collector.lolo +56 -0
  4. package/behaviors/lolo/ml/atoms/std-graph-builder.lolo +90 -0
  5. package/behaviors/lolo/ml/atoms/std-ml-similarity.lolo +25 -13
  6. package/behaviors/lolo/ml/atoms/std-tokenizer.lolo +108 -0
  7. package/behaviors/lolo/ml/atoms/std-weight-validator.lolo +106 -0
  8. package/behaviors/lolo/ui/core/atoms/std-app-layout.lolo +14 -0
  9. package/behaviors/lolo/ui/core/atoms/std-billable-hour.lolo +1 -1
  10. package/behaviors/lolo/ui/core/atoms/std-esign-flow.lolo +3 -3
  11. package/behaviors/lolo/ui/core/atoms/std-esign-request.lolo +4 -4
  12. package/behaviors/lolo/ui/core/atoms/std-event-log.lolo +2 -2
  13. package/behaviors/lolo/ui/core/atoms/std-file-store.lolo +1 -1
  14. package/behaviors/lolo/ui/core/atoms/std-gallery.lolo +1 -1
  15. package/behaviors/lolo/ui/core/atoms/std-image-upload-multi.lolo +2 -2
  16. package/behaviors/lolo/ui/core/atoms/std-import.lolo +132 -0
  17. package/behaviors/lolo/ui/core/atoms/std-recurrence.lolo +5 -5
  18. package/behaviors/lolo/ui/core/atoms/std-saved-search.lolo +1 -1
  19. package/behaviors/lolo/ui/core/atoms/std-signature-capture.lolo +1 -1
  20. package/behaviors/lolo/ui/core/atoms/std-stats.lolo +1 -1
  21. package/behaviors/lolo/ui/core/atoms/std-tag-taxonomy.lolo +3 -3
  22. package/behaviors/lolo/ui/core/molecules/ui-data-grid.lolo +0 -2
  23. package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +0 -2
  24. package/behaviors/lolo/ui/core/molecules/ui-import-preview-tree.lolo +96 -0
  25. package/behaviors/lolo/ui/core/molecules/ui-import-progress.lolo +49 -0
  26. package/behaviors/lolo/ui/core/molecules/ui-import-source-picker.lolo +67 -0
  27. package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +0 -2
  28. package/behaviors/lolo/ui/core/organisms/ui-entity-cards.lolo +0 -2
  29. package/behaviors/lolo/ui/core/organisms/ui-entity-list.lolo +0 -2
  30. package/behaviors/lolo/ui/core/organisms/ui-entity-table.lolo +0 -2
  31. package/behaviors/lolo/ui/core/organisms/ui-timeline.lolo +0 -2
  32. package/behaviors/lolo/ui/game/atoms/std-dungeon-combat.lolo +2 -2
  33. package/behaviors/lolo/ui/game/molecules/std-worldmap-board-2d.lolo +1 -1
  34. package/behaviors/lolo/ui/game/organisms/ui-boardgame-board.lolo +2 -2
  35. package/behaviors/lolo/ui/game/organisms/ui-builder-board.lolo +2 -2
  36. package/behaviors/lolo/ui/game/organisms/ui-debugger-board.lolo +3 -3
  37. package/behaviors/lolo/ui/game/organisms/ui-physics-sandbox-board.lolo +3 -3
  38. package/behaviors/lolo/ui/game/organisms/ui-roguelike-board.lolo +1 -1
  39. package/behaviors/lolo/ui/game/organisms/ui-sequencer-board.lolo +1 -1
  40. package/behaviors/lolo/ui/learning/atoms/std-algo-heapsort.lolo +2 -2
  41. package/behaviors/lolo/ui/learning/atoms/std-algo-mst.lolo +3 -3
  42. package/behaviors/registry/factory-signatures.json +11531 -2142
  43. package/behaviors/registry/infra/atoms/std-migration-job.orb +1310 -0
  44. package/behaviors/registry/infra/atoms/std-mod-queue.orb +5 -5
  45. package/behaviors/registry/ml/atoms/std-data-collector.orb +324 -0
  46. package/behaviors/registry/ml/atoms/std-graph-builder.orb +480 -0
  47. package/behaviors/registry/ml/atoms/std-ml-similarity.orb +127 -72
  48. package/behaviors/registry/ml/atoms/std-tokenizer.orb +570 -0
  49. package/behaviors/registry/ml/atoms/std-weight-validator.orb +624 -0
  50. package/behaviors/registry/ui/core/atoms/std-app-layout.orb +33 -1
  51. package/behaviors/registry/ui/core/atoms/std-billable-hour.orb +2 -2
  52. package/behaviors/registry/ui/core/atoms/std-esign-flow.orb +17 -21
  53. package/behaviors/registry/ui/core/atoms/std-esign-request.orb +7 -13
  54. package/behaviors/registry/ui/core/atoms/std-event-log.orb +2 -4
  55. package/behaviors/registry/ui/core/atoms/std-file-store.orb +3 -4
  56. package/behaviors/registry/ui/core/atoms/std-gallery.orb +11 -20
  57. package/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +4 -4
  58. package/behaviors/registry/ui/core/atoms/std-import.orb +701 -0
  59. package/behaviors/registry/ui/core/atoms/std-recurrence.orb +5 -10
  60. package/behaviors/registry/ui/core/atoms/std-saved-search.orb +2 -2
  61. package/behaviors/registry/ui/core/atoms/std-signature-capture.orb +2 -2
  62. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +12 -25
  63. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +13 -26
  64. package/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +354 -0
  65. package/behaviors/registry/ui/core/molecules/ui-import-progress.orb +195 -0
  66. package/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +279 -0
  67. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +12 -25
  68. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +0 -13
  69. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +8 -21
  70. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +0 -13
  71. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +0 -13
  72. package/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +4 -4
  73. package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +6 -9
  74. package/behaviors/registry/ui/game/organisms/ui-boardgame-board.orb +4 -4
  75. package/behaviors/registry/ui/game/organisms/ui-builder-board.orb +4 -4
  76. package/behaviors/registry/ui/game/organisms/ui-debugger-board.orb +12 -12
  77. package/behaviors/registry/ui/game/organisms/ui-physics-sandbox-board.orb +19 -19
  78. package/behaviors/registry/ui/game/organisms/ui-roguelike-board.orb +1 -1
  79. package/behaviors/registry/ui/game/organisms/ui-sequencer-board.orb +2 -2
  80. package/behaviors/registry/ui/learning/atoms/std-algo-heapsort.orb +8 -8
  81. package/dist/behaviors/behaviors-embeddings.json +568 -496
  82. package/dist/behaviors/behaviors-registry.json +7518 -3936
  83. package/dist/behaviors/exports-reader.js +3093 -2581
  84. package/dist/behaviors/functions/index.d.ts +922 -14
  85. package/dist/behaviors/functions/index.js +3056 -2582
  86. package/dist/behaviors/index.d.ts +1 -1
  87. package/dist/behaviors/index.js +3094 -2582
  88. package/dist/behaviors/knob-embeddings.json +1 -1
  89. package/dist/behaviors/query.js +3093 -2581
  90. package/dist/behaviors/registry/factory-signatures.json +11531 -2142
  91. package/dist/behaviors/registry/infra/atoms/std-migration-job.orb +1310 -0
  92. package/dist/behaviors/registry/infra/atoms/std-mod-queue.orb +5 -5
  93. package/dist/behaviors/registry/ml/atoms/std-data-collector.orb +324 -0
  94. package/dist/behaviors/registry/ml/atoms/std-graph-builder.orb +480 -0
  95. package/dist/behaviors/registry/ml/atoms/std-ml-similarity.orb +127 -72
  96. package/dist/behaviors/registry/ml/atoms/std-tokenizer.orb +570 -0
  97. package/dist/behaviors/registry/ml/atoms/std-weight-validator.orb +624 -0
  98. package/dist/behaviors/registry/ui/core/atoms/std-app-layout.orb +33 -1
  99. package/dist/behaviors/registry/ui/core/atoms/std-billable-hour.orb +2 -2
  100. package/dist/behaviors/registry/ui/core/atoms/std-esign-flow.orb +17 -21
  101. package/dist/behaviors/registry/ui/core/atoms/std-esign-request.orb +7 -13
  102. package/dist/behaviors/registry/ui/core/atoms/std-event-log.orb +2 -4
  103. package/dist/behaviors/registry/ui/core/atoms/std-file-store.orb +3 -4
  104. package/dist/behaviors/registry/ui/core/atoms/std-gallery.orb +11 -20
  105. package/dist/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +4 -4
  106. package/dist/behaviors/registry/ui/core/atoms/std-import.orb +701 -0
  107. package/dist/behaviors/registry/ui/core/atoms/std-recurrence.orb +5 -10
  108. package/dist/behaviors/registry/ui/core/atoms/std-saved-search.orb +2 -2
  109. package/dist/behaviors/registry/ui/core/atoms/std-signature-capture.orb +2 -2
  110. package/dist/behaviors/registry/ui/core/molecules/ui-data-grid.orb +12 -25
  111. package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +13 -26
  112. package/dist/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +354 -0
  113. package/dist/behaviors/registry/ui/core/molecules/ui-import-progress.orb +195 -0
  114. package/dist/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +279 -0
  115. package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +12 -25
  116. package/dist/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +0 -13
  117. package/dist/behaviors/registry/ui/core/organisms/ui-entity-list.orb +8 -21
  118. package/dist/behaviors/registry/ui/core/organisms/ui-entity-table.orb +0 -13
  119. package/dist/behaviors/registry/ui/core/organisms/ui-timeline.orb +0 -13
  120. package/dist/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +4 -4
  121. package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +6 -9
  122. package/dist/behaviors/registry/ui/game/organisms/ui-boardgame-board.orb +4 -4
  123. package/dist/behaviors/registry/ui/game/organisms/ui-builder-board.orb +4 -4
  124. package/dist/behaviors/registry/ui/game/organisms/ui-debugger-board.orb +12 -12
  125. package/dist/behaviors/registry/ui/game/organisms/ui-physics-sandbox-board.orb +19 -19
  126. package/dist/behaviors/registry/ui/game/organisms/ui-roguelike-board.orb +1 -1
  127. package/dist/behaviors/registry/ui/game/organisms/ui-sequencer-board.orb +2 -2
  128. package/dist/behaviors/registry/ui/learning/atoms/std-algo-heapsort.orb +8 -8
  129. package/dist/behaviors-embeddings.json +568 -496
  130. package/dist/behaviors-registry.json +7518 -3936
  131. package/dist/index.d.ts +1 -1
  132. package/dist/index.js +3094 -2582
  133. package/dist/knob-embeddings.json +1 -1
  134. package/dist/registry/factory-signatures.json +11531 -2142
  135. package/package.json +2 -2
@@ -0,0 +1,480 @@
1
+ {
2
+ "description": "Graph construction atom — builds node/edge structures from an entity collection for downstream GNN pipelines; pure array/object transform, no ML compute.",
3
+ "ledger": {
4
+ "entries": {
5
+ "ent_01KYE96EQ8DPFC0S5GH6TSPD1P": {
6
+ "bakedName": "GraphStructure",
7
+ "curName": "GraphStructure",
8
+ "id": "ent_01KYE96EQ8DPFC0S5GH6TSPD1P",
9
+ "kind": "entity",
10
+ "owner": "workspace",
11
+ "renames": []
12
+ },
13
+ "evt_01KYE96EQ830XWQ2G6P5V7NTR5": {
14
+ "bakedName": "INIT",
15
+ "curName": "INIT",
16
+ "id": "evt_01KYE96EQ830XWQ2G6P5V7NTR5",
17
+ "kind": "event",
18
+ "owner": "workspace",
19
+ "parent": "trt_01KYE96EQ8GNDQNEDM2RGESEWF",
20
+ "renames": []
21
+ },
22
+ "evt_01KYE96EQ880KKBQFDFMB4E32J": {
23
+ "bakedName": "RESET",
24
+ "curName": "RESET",
25
+ "id": "evt_01KYE96EQ880KKBQFDFMB4E32J",
26
+ "kind": "event",
27
+ "owner": "workspace",
28
+ "parent": "trt_01KYE96EQ8GNDQNEDM2RGESEWF",
29
+ "renames": []
30
+ },
31
+ "evt_01KYE96EQ88KJAGCECSHRRGTD1": {
32
+ "bakedName": "GRAPH_READY",
33
+ "curName": "GRAPH_READY",
34
+ "id": "evt_01KYE96EQ88KJAGCECSHRRGTD1",
35
+ "kind": "event",
36
+ "owner": "workspace",
37
+ "parent": "trt_01KYE96EQ8GNDQNEDM2RGESEWF",
38
+ "renames": []
39
+ },
40
+ "evt_01KYE96EQ8F2Q2W859FEBKGPEP": {
41
+ "bakedName": "BUILD_GRAPH",
42
+ "curName": "BUILD_GRAPH",
43
+ "id": "evt_01KYE96EQ8F2Q2W859FEBKGPEP",
44
+ "kind": "event",
45
+ "owner": "workspace",
46
+ "parent": "trt_01KYE96EQ8GNDQNEDM2RGESEWF",
47
+ "renames": []
48
+ },
49
+ "orb_01KYE96EQ88SQNJ3NCGV8F9JNH": {
50
+ "bakedName": "GraphBuilderOrbital",
51
+ "curName": "GraphBuilderOrbital",
52
+ "id": "orb_01KYE96EQ88SQNJ3NCGV8F9JNH",
53
+ "kind": "orbital",
54
+ "owner": "workspace",
55
+ "renames": []
56
+ },
57
+ "pag_01KYE96EQ8SD1205HXPDANVCX0": {
58
+ "bakedName": "GraphBuilderPage",
59
+ "curName": "GraphBuilderPage",
60
+ "id": "pag_01KYE96EQ8SD1205HXPDANVCX0",
61
+ "kind": "page",
62
+ "owner": "workspace",
63
+ "renames": []
64
+ },
65
+ "trt_01KYE96EQ8GNDQNEDM2RGESEWF": {
66
+ "bakedName": "GraphBuilderRun",
67
+ "curName": "GraphBuilderRun",
68
+ "id": "trt_01KYE96EQ8GNDQNEDM2RGESEWF",
69
+ "kind": "trait",
70
+ "owner": "workspace",
71
+ "renames": []
72
+ }
73
+ },
74
+ "schemaVersion": 1
75
+ },
76
+ "name": "std-graph-builder",
77
+ "orbitals": [
78
+ {
79
+ "entity": {
80
+ "fields": [
81
+ {
82
+ "default": [],
83
+ "items": {
84
+ "type": "object"
85
+ },
86
+ "name": "nodes",
87
+ "type": "array"
88
+ },
89
+ {
90
+ "default": [],
91
+ "items": {
92
+ "type": "object"
93
+ },
94
+ "name": "edges",
95
+ "type": "array"
96
+ },
97
+ {
98
+ "default": 0.0,
99
+ "name": "nodeCount",
100
+ "type": "number"
101
+ },
102
+ {
103
+ "default": 0.0,
104
+ "name": "edgeCount",
105
+ "type": "number"
106
+ },
107
+ {
108
+ "default": "idle",
109
+ "name": "status",
110
+ "type": "string",
111
+ "values": [
112
+ "idle",
113
+ "built"
114
+ ]
115
+ }
116
+ ],
117
+ "id": "ent_01KYE96EQ8DPFC0S5GH6TSPD1P",
118
+ "name": "GraphStructure",
119
+ "persistence": "runtime"
120
+ },
121
+ "id": "orb_01KYE96EQ88SQNJ3NCGV8F9JNH",
122
+ "name": "GraphBuilderOrbital",
123
+ "pages": [
124
+ {
125
+ "id": "pag_01KYE96EQ8SD1205HXPDANVCX0",
126
+ "name": "GraphBuilderPage",
127
+ "path": "/graph-builder",
128
+ "traits": [
129
+ {
130
+ "ref": "GraphBuilderRun",
131
+ "refId": "trt_01KYE96EQ8GNDQNEDM2RGESEWF"
132
+ }
133
+ ]
134
+ }
135
+ ],
136
+ "traits": [
137
+ {
138
+ "category": "lifecycle",
139
+ "config": {
140
+ "directed": {
141
+ "default": false,
142
+ "description": "Carried through for downstream consumers; edges are emitted once per adjacency entry, so an undirected reader should treat each edge as bidirectional",
143
+ "label": "Directed",
144
+ "tier": "policy",
145
+ "type": "boolean"
146
+ },
147
+ "edgeField": {
148
+ "default": "",
149
+ "description": "Field on each source entity holding its adjacency — an array of target ids",
150
+ "label": "Edge field",
151
+ "tier": "domain",
152
+ "type": "string"
153
+ },
154
+ "nodeFeatures": {
155
+ "default": [],
156
+ "description": "Entity fields carried onto each node alongside id",
157
+ "items": {
158
+ "type": "string"
159
+ },
160
+ "label": "Node features",
161
+ "tier": "domain",
162
+ "type": "[string]"
163
+ }
164
+ },
165
+ "emits": [
166
+ {
167
+ "description": "Fired when node/edge structures have been built from the source entity collection",
168
+ "event": "GRAPH_READY",
169
+ "eventId": "evt_01KYE96EQ88KJAGCECSHRRGTD1",
170
+ "payloadSchema": [
171
+ {
172
+ "name": "nodes",
173
+ "required": true,
174
+ "type": "[object]"
175
+ },
176
+ {
177
+ "name": "edges",
178
+ "required": true,
179
+ "type": "[object]"
180
+ },
181
+ {
182
+ "name": "nodeCount",
183
+ "required": true,
184
+ "type": "int"
185
+ },
186
+ {
187
+ "name": "edgeCount",
188
+ "required": true,
189
+ "type": "int"
190
+ }
191
+ ],
192
+ "scope": "external",
193
+ "tier": "primary"
194
+ }
195
+ ],
196
+ "entityRefIds": {
197
+ "GraphStructure": "ent_01KYE96EQ8DPFC0S5GH6TSPD1P"
198
+ },
199
+ "id": "trt_01KYE96EQ8GNDQNEDM2RGESEWF",
200
+ "linkedEntity": "GraphStructure",
201
+ "linkedEntityId": "ent_01KYE96EQ8DPFC0S5GH6TSPD1P",
202
+ "name": "GraphBuilderRun",
203
+ "scope": "instance",
204
+ "stateMachine": {
205
+ "events": [
206
+ {
207
+ "id": "evt_01KYE96EQ830XWQ2G6P5V7NTR5",
208
+ "key": "INIT",
209
+ "name": "Initialize"
210
+ },
211
+ {
212
+ "id": "evt_01KYE96EQ8F2Q2W859FEBKGPEP",
213
+ "key": "BUILD_GRAPH",
214
+ "name": "Build Graph",
215
+ "payloadSchema": [
216
+ {
217
+ "name": "entities",
218
+ "required": true,
219
+ "type": "[object]"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "id": "evt_01KYE96EQ880KKBQFDFMB4E32J",
225
+ "key": "RESET",
226
+ "name": "Reset"
227
+ },
228
+ {
229
+ "description": "Fired when node/edge structures have been built from the source entity collection",
230
+ "id": "evt_01KYE96EQ88KJAGCECSHRRGTD1",
231
+ "key": "GRAPH_READY",
232
+ "name": "Graph Ready",
233
+ "payloadSchema": [
234
+ {
235
+ "name": "nodes",
236
+ "required": true,
237
+ "type": "[object]"
238
+ },
239
+ {
240
+ "name": "edges",
241
+ "required": true,
242
+ "type": "[object]"
243
+ },
244
+ {
245
+ "name": "nodeCount",
246
+ "required": true,
247
+ "type": "int"
248
+ },
249
+ {
250
+ "name": "edgeCount",
251
+ "required": true,
252
+ "type": "int"
253
+ }
254
+ ],
255
+ "tier": "primary"
256
+ }
257
+ ],
258
+ "states": [
259
+ {
260
+ "isInitial": true,
261
+ "name": "idle"
262
+ },
263
+ {
264
+ "name": "built"
265
+ }
266
+ ],
267
+ "transitions": [
268
+ {
269
+ "effects": [
270
+ [
271
+ "set",
272
+ "@entity.nodes",
273
+ []
274
+ ],
275
+ [
276
+ "set",
277
+ "@entity.edges",
278
+ []
279
+ ],
280
+ [
281
+ "set",
282
+ "@entity.nodeCount",
283
+ 0.0
284
+ ],
285
+ [
286
+ "set",
287
+ "@entity.edgeCount",
288
+ 0.0
289
+ ],
290
+ [
291
+ "set",
292
+ "@entity.status",
293
+ "idle"
294
+ ]
295
+ ],
296
+ "event": "INIT",
297
+ "eventId": "evt_01KYE96EQ830XWQ2G6P5V7NTR5",
298
+ "from": "idle",
299
+ "to": "idle"
300
+ },
301
+ {
302
+ "effects": [
303
+ [
304
+ "let",
305
+ [
306
+ [
307
+ "nodeFields",
308
+ [
309
+ "array/unique",
310
+ [
311
+ "array/append",
312
+ "@config.nodeFeatures",
313
+ "id"
314
+ ]
315
+ ]
316
+ ],
317
+ [
318
+ "nodes",
319
+ [
320
+ "array/map",
321
+ "@payload.entities",
322
+ [
323
+ "fn",
324
+ "e",
325
+ [
326
+ "object/pick",
327
+ "@e",
328
+ "@nodeFields"
329
+ ]
330
+ ]
331
+ ]
332
+ ],
333
+ [
334
+ "edges",
335
+ [
336
+ "array/flatten",
337
+ [
338
+ "array/map",
339
+ "@payload.entities",
340
+ [
341
+ "fn",
342
+ "e",
343
+ [
344
+ "array/map",
345
+ [
346
+ "object/get",
347
+ "@e",
348
+ "@config.edgeField",
349
+ []
350
+ ],
351
+ [
352
+ "fn",
353
+ "target",
354
+ {
355
+ "source": [
356
+ "object/get",
357
+ "@e",
358
+ "id"
359
+ ],
360
+ "target": "@target"
361
+ }
362
+ ]
363
+ ]
364
+ ]
365
+ ]
366
+ ]
367
+ ]
368
+ ],
369
+ [
370
+ "do",
371
+ [
372
+ "set",
373
+ "@entity.nodes",
374
+ "@nodes"
375
+ ],
376
+ [
377
+ "set",
378
+ "@entity.edges",
379
+ "@edges"
380
+ ],
381
+ [
382
+ "set",
383
+ "@entity.nodeCount",
384
+ [
385
+ "array/len",
386
+ "@nodes"
387
+ ]
388
+ ],
389
+ [
390
+ "set",
391
+ "@entity.edgeCount",
392
+ [
393
+ "array/len",
394
+ "@edges"
395
+ ]
396
+ ],
397
+ [
398
+ "set",
399
+ "@entity.status",
400
+ "built"
401
+ ],
402
+ [
403
+ "emit",
404
+ "GRAPH_READY",
405
+ {
406
+ "edgeCount": [
407
+ "array/len",
408
+ "@edges"
409
+ ],
410
+ "edges": "@edges",
411
+ "nodeCount": [
412
+ "array/len",
413
+ "@nodes"
414
+ ],
415
+ "nodes": "@nodes"
416
+ }
417
+ ]
418
+ ]
419
+ ]
420
+ ],
421
+ "event": "BUILD_GRAPH",
422
+ "eventId": "evt_01KYE96EQ8F2Q2W859FEBKGPEP",
423
+ "from": "idle",
424
+ "to": "built"
425
+ },
426
+ {
427
+ "effects": [
428
+ [
429
+ "set",
430
+ "@entity.status",
431
+ "built"
432
+ ]
433
+ ],
434
+ "event": "INIT",
435
+ "eventId": "evt_01KYE96EQ830XWQ2G6P5V7NTR5",
436
+ "from": "built",
437
+ "to": "built"
438
+ },
439
+ {
440
+ "effects": [
441
+ [
442
+ "set",
443
+ "@entity.nodes",
444
+ []
445
+ ],
446
+ [
447
+ "set",
448
+ "@entity.edges",
449
+ []
450
+ ],
451
+ [
452
+ "set",
453
+ "@entity.nodeCount",
454
+ 0.0
455
+ ],
456
+ [
457
+ "set",
458
+ "@entity.edgeCount",
459
+ 0.0
460
+ ],
461
+ [
462
+ "set",
463
+ "@entity.status",
464
+ "idle"
465
+ ]
466
+ ],
467
+ "event": "RESET",
468
+ "eventId": "evt_01KYE96EQ880KKBQFDFMB4E32J",
469
+ "from": "built",
470
+ "to": "idle"
471
+ }
472
+ ]
473
+ }
474
+ }
475
+ ]
476
+ }
477
+ ],
478
+ "schemaVersion": 1,
479
+ "version": "1.0.0"
480
+ }