retold-data-service 2.1.1 → 2.1.5

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 (89) hide show
  1. package/BUILDING-AND-PUBLISHING.md +2 -2
  2. package/Dockerfile +1 -1
  3. package/README.md +12 -27
  4. package/build-all.js +66 -0
  5. package/diagrams/architecture.excalidraw +2966 -0
  6. package/diagrams/architecture.mmd +17 -0
  7. package/diagrams/architecture.svg +2 -0
  8. package/docs/README.md +12 -12
  9. package/docs/_brand.json +18 -0
  10. package/docs/_cover.md +1 -1
  11. package/docs/_topbar.md +1 -1
  12. package/docs/_version.json +3 -3
  13. package/docs/api/reference.md +8 -8
  14. package/docs/architecture.md +6 -84
  15. package/docs/diagrams/component-diagram.excalidraw +2807 -0
  16. package/docs/diagrams/component-diagram.mmd +14 -0
  17. package/docs/diagrams/component-diagram.svg +2 -0
  18. package/docs/diagrams/component-stack.excalidraw +1169 -0
  19. package/docs/diagrams/component-stack.mmd +6 -0
  20. package/docs/diagrams/component-stack.svg +2 -0
  21. package/docs/diagrams/hook-execution-order.excalidraw +3230 -0
  22. package/docs/diagrams/hook-execution-order.mmd +19 -0
  23. package/docs/diagrams/hook-execution-order.svg +2 -0
  24. package/docs/diagrams/initialization-flow.excalidraw +1800 -0
  25. package/docs/diagrams/initialization-flow.mmd +22 -0
  26. package/docs/diagrams/initialization-flow.svg +2 -0
  27. package/docs/index.html +6 -7
  28. package/docs/lifecycle-hooks.md +2 -21
  29. package/docs/retold-catalog.json +141 -141
  30. package/docs/retold-keyword-index.json +6818 -1608
  31. package/package.json +130 -96
  32. package/source/services/RetoldDataService-Brand.js +13 -0
  33. package/source/services/comprehension-loader/pict-app/Pict-Application-ComprehensionLoader.js +65 -15
  34. package/source/services/comprehension-loader/pict-app/providers/Pict-Provider-ComprehensionLoader.js +2 -2
  35. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Layout.js +68 -114
  36. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Load.js +29 -29
  37. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Schema.js +3 -3
  38. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Session.js +2 -2
  39. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-SettingsPanel.js +62 -0
  40. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Shell.js +142 -0
  41. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Source.js +7 -7
  42. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusBar.js +125 -0
  43. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusDetail.js +89 -0
  44. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-Nav.js +42 -0
  45. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-User.js +48 -0
  46. package/source/services/comprehension-loader/web/comprehension-loader.js +5475 -6243
  47. package/source/services/comprehension-loader/web/comprehension-loader.js.map +1 -1
  48. package/source/services/comprehension-loader/web/comprehension-loader.min.js +75 -1
  49. package/source/services/comprehension-loader/web/comprehension-loader.min.js.map +1 -1
  50. package/source/services/comprehension-loader/web/favicons/favicon-dark.svg +13 -0
  51. package/source/services/comprehension-loader/web/favicons/favicon-light.svg +13 -0
  52. package/source/services/comprehension-loader/web/favicons/favicon.svg +13 -0
  53. package/source/services/comprehension-loader/web/index.html +3 -0
  54. package/source/services/comprehension-loader/web/pict.min.js +12 -0
  55. package/source/services/data-cloner/DataCloner-Command-Headless.js +2 -1
  56. package/source/services/data-cloner/DataCloner-Command-Sync.js +110 -75
  57. package/source/services/data-cloner/pict-app/Pict-Application-DataCloner.js +70 -47
  58. package/source/services/data-cloner/pict-app/providers/Pict-Provider-DataCloner.js +3 -3
  59. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Connection.js +1 -1
  60. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Deploy.js +5 -5
  61. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Export.js +11 -11
  62. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Layout.js +89 -135
  63. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Schema.js +3 -3
  64. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Session.js +2 -2
  65. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-SettingsPanel.js +61 -0
  66. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Shell.js +136 -0
  67. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusBar.js +117 -0
  68. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusDetail.js +81 -0
  69. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Sync.js +38 -38
  70. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-Nav.js +42 -0
  71. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-User.js +48 -0
  72. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-ViewData.js +5 -5
  73. package/source/services/data-cloner/web/data-cloner.js +5855 -8067
  74. package/source/services/data-cloner/web/data-cloner.js.map +1 -1
  75. package/source/services/data-cloner/web/data-cloner.min.js +75 -1
  76. package/source/services/data-cloner/web/data-cloner.min.js.map +1 -1
  77. package/source/services/data-cloner/web/favicons/favicon-dark.svg +13 -0
  78. package/source/services/data-cloner/web/favicons/favicon-light.svg +13 -0
  79. package/source/services/data-cloner/web/favicons/favicon.svg +13 -0
  80. package/source/services/data-cloner/web/favicons/favicons/favicon-dark.svg +13 -0
  81. package/source/services/data-cloner/web/favicons/favicons/favicon-light.svg +13 -0
  82. package/source/services/data-cloner/web/favicons/favicons/favicon.svg +13 -0
  83. package/source/services/data-cloner/web/index.html +3 -0
  84. package/source/services/data-cloner/web/pict.min.js +12 -0
  85. package/test/Bundles_smoke_tests.js +43 -0
  86. package/test/ComprehensionLoader_smoke_tests.js +95 -0
  87. package/test/DataCloner-RuntimeOverrides_tests.js +344 -0
  88. package/test/DataCloner_smoke_tests.js +87 -0
  89. package/docs/css/docuserve.css +0 -327
@@ -0,0 +1,1169 @@
1
+ {
2
+ "type": "excalidraw",
3
+ "version": 2,
4
+ "source": "pict-section-excalidraw/notebook-generator",
5
+ "elements": [
6
+ {
7
+ "id": "shape-AppCode-000000bs",
8
+ "type": "rectangle",
9
+ "x": 72,
10
+ "y": 16,
11
+ "width": 318,
12
+ "height": 128,
13
+ "angle": 0,
14
+ "strokeColor": "#1B1F23",
15
+ "backgroundColor": "transparent",
16
+ "fillStyle": "solid",
17
+ "strokeWidth": 2,
18
+ "strokeStyle": "solid",
19
+ "roughness": 1,
20
+ "opacity": 100,
21
+ "groupIds": [],
22
+ "frameId": null,
23
+ "roundness": {
24
+ "type": 3
25
+ },
26
+ "seed": 424,
27
+ "version": 1,
28
+ "versionNonce": 424,
29
+ "isDeleted": false,
30
+ "boundElements": [
31
+ {
32
+ "id": "label-AppCode-000000cc",
33
+ "type": "text"
34
+ },
35
+ {
36
+ "id": "arrow-AppCode-RetoldDataService-0000008h",
37
+ "type": "arrow"
38
+ }
39
+ ],
40
+ "updated": 1,
41
+ "link": null,
42
+ "locked": false,
43
+ "index": null
44
+ },
45
+ {
46
+ "id": "label-AppCode-000000cc",
47
+ "type": "text",
48
+ "x": 80,
49
+ "y": 30,
50
+ "width": 302,
51
+ "height": 100,
52
+ "angle": 0,
53
+ "strokeColor": "#1B1F23",
54
+ "backgroundColor": "transparent",
55
+ "fillStyle": "solid",
56
+ "strokeWidth": 1,
57
+ "strokeStyle": "solid",
58
+ "roughness": 1,
59
+ "opacity": 100,
60
+ "groupIds": [],
61
+ "frameId": null,
62
+ "roundness": null,
63
+ "seed": 444,
64
+ "version": 1,
65
+ "versionNonce": 444,
66
+ "isDeleted": false,
67
+ "boundElements": null,
68
+ "updated": 1,
69
+ "link": null,
70
+ "locked": false,
71
+ "text": "Your Application Code\n- Configure options\n- Override lifecycle hooks\n- Inject behaviors",
72
+ "fontSize": 20,
73
+ "fontFamily": 5,
74
+ "textAlign": "center",
75
+ "verticalAlign": "middle",
76
+ "baseline": 15,
77
+ "containerId": "shape-AppCode-000000bs",
78
+ "originalText": "Your Application Code\n- Configure options\n- Override lifecycle hooks\n- Inject behaviors",
79
+ "autoResize": true,
80
+ "lineHeight": 1.25,
81
+ "index": null
82
+ },
83
+ {
84
+ "id": "shape-RetoldDataService-0000006o",
85
+ "type": "rectangle",
86
+ "x": 16,
87
+ "y": 234,
88
+ "width": 429,
89
+ "height": 153,
90
+ "angle": 0,
91
+ "strokeColor": "#1B1F23",
92
+ "backgroundColor": "transparent",
93
+ "fillStyle": "solid",
94
+ "strokeWidth": 2,
95
+ "strokeStyle": "solid",
96
+ "roughness": 1,
97
+ "opacity": 100,
98
+ "groupIds": [],
99
+ "frameId": null,
100
+ "roundness": {
101
+ "type": 3
102
+ },
103
+ "seed": 240,
104
+ "version": 1,
105
+ "versionNonce": 240,
106
+ "isDeleted": false,
107
+ "boundElements": [
108
+ {
109
+ "id": "label-RetoldDataService-0000009s",
110
+ "type": "text"
111
+ },
112
+ {
113
+ "id": "arrow-AppCode-RetoldDataService-0000008h",
114
+ "type": "arrow"
115
+ },
116
+ {
117
+ "id": "arrow-RetoldDataService-Orator-000000e8",
118
+ "type": "arrow"
119
+ }
120
+ ],
121
+ "updated": 1,
122
+ "link": null,
123
+ "locked": false,
124
+ "index": null
125
+ },
126
+ {
127
+ "id": "label-RetoldDataService-0000009s",
128
+ "type": "text",
129
+ "x": 24,
130
+ "y": 248,
131
+ "width": 413,
132
+ "height": 125,
133
+ "angle": 0,
134
+ "strokeColor": "#1B1F23",
135
+ "backgroundColor": "transparent",
136
+ "fillStyle": "solid",
137
+ "strokeWidth": 1,
138
+ "strokeStyle": "solid",
139
+ "roughness": 1,
140
+ "opacity": 100,
141
+ "groupIds": [],
142
+ "frameId": null,
143
+ "roundness": null,
144
+ "seed": 352,
145
+ "version": 1,
146
+ "versionNonce": 352,
147
+ "isDeleted": false,
148
+ "boundElements": null,
149
+ "updated": 1,
150
+ "link": null,
151
+ "locked": false,
152
+ "text": "Retold Data Service\n- Loads Stricture model\n- Creates DAL per entity\n- Creates MeadowEndpoints per entity\n- Manages service lifecycle",
153
+ "fontSize": 20,
154
+ "fontFamily": 5,
155
+ "textAlign": "center",
156
+ "verticalAlign": "middle",
157
+ "baseline": 15,
158
+ "containerId": "shape-RetoldDataService-0000006o",
159
+ "originalText": "Retold Data Service\n- Loads Stricture model\n- Creates DAL per entity\n- Creates MeadowEndpoints per entity\n- Manages service lifecycle",
160
+ "autoResize": true,
161
+ "lineHeight": 1.25,
162
+ "index": null
163
+ },
164
+ {
165
+ "id": "shape-Orator-000000fs",
166
+ "type": "rectangle",
167
+ "x": 77,
168
+ "y": 477,
169
+ "width": 307,
170
+ "height": 128,
171
+ "angle": 0,
172
+ "strokeColor": "#1B1F23",
173
+ "backgroundColor": "transparent",
174
+ "fillStyle": "solid",
175
+ "strokeWidth": 2,
176
+ "strokeStyle": "solid",
177
+ "roughness": 1,
178
+ "opacity": 100,
179
+ "groupIds": [],
180
+ "frameId": null,
181
+ "roundness": {
182
+ "type": 3
183
+ },
184
+ "seed": 568,
185
+ "version": 1,
186
+ "versionNonce": 568,
187
+ "isDeleted": false,
188
+ "boundElements": [
189
+ {
190
+ "id": "label-Orator-000000rh",
191
+ "type": "text"
192
+ },
193
+ {
194
+ "id": "arrow-RetoldDataService-Orator-000000e8",
195
+ "type": "arrow"
196
+ },
197
+ {
198
+ "id": "arrow-Orator-MeadowEndpoints-000000mh",
199
+ "type": "arrow"
200
+ }
201
+ ],
202
+ "updated": 1,
203
+ "link": null,
204
+ "locked": false,
205
+ "index": null
206
+ },
207
+ {
208
+ "id": "label-Orator-000000rh",
209
+ "type": "text",
210
+ "x": 85,
211
+ "y": 491,
212
+ "width": 291,
213
+ "height": 100,
214
+ "angle": 0,
215
+ "strokeColor": "#1B1F23",
216
+ "backgroundColor": "transparent",
217
+ "fillStyle": "solid",
218
+ "strokeWidth": 1,
219
+ "strokeStyle": "solid",
220
+ "roughness": 1,
221
+ "opacity": 100,
222
+ "groupIds": [],
223
+ "frameId": null,
224
+ "roundness": null,
225
+ "seed": 989,
226
+ "version": 1,
227
+ "versionNonce": 989,
228
+ "isDeleted": false,
229
+ "boundElements": null,
230
+ "updated": 1,
231
+ "link": null,
232
+ "locked": false,
233
+ "text": "Orator (API Server)\n- HTTP server via Restify\n- Route registration\n- Request handling",
234
+ "fontSize": 20,
235
+ "fontFamily": 5,
236
+ "textAlign": "center",
237
+ "verticalAlign": "middle",
238
+ "baseline": 15,
239
+ "containerId": "shape-Orator-000000fs",
240
+ "originalText": "Orator (API Server)\n- HTTP server via Restify\n- Route registration\n- Request handling",
241
+ "autoResize": true,
242
+ "lineHeight": 1.25,
243
+ "index": null
244
+ },
245
+ {
246
+ "id": "shape-MeadowEndpoints-000000nk",
247
+ "type": "rectangle",
248
+ "x": 55,
249
+ "y": 695,
250
+ "width": 351,
251
+ "height": 153,
252
+ "angle": 0,
253
+ "strokeColor": "#1B1F23",
254
+ "backgroundColor": "transparent",
255
+ "fillStyle": "solid",
256
+ "strokeWidth": 2,
257
+ "strokeStyle": "solid",
258
+ "roughness": 1,
259
+ "opacity": 100,
260
+ "groupIds": [],
261
+ "frameId": null,
262
+ "roundness": {
263
+ "type": 3
264
+ },
265
+ "seed": 848,
266
+ "version": 1,
267
+ "versionNonce": 848,
268
+ "isDeleted": false,
269
+ "boundElements": [
270
+ {
271
+ "id": "label-MeadowEndpoints-000000ck",
272
+ "type": "text"
273
+ },
274
+ {
275
+ "id": "arrow-Orator-MeadowEndpoints-000000mh",
276
+ "type": "arrow"
277
+ },
278
+ {
279
+ "id": "arrow-MeadowEndpoints-Meadow-0000006x",
280
+ "type": "arrow"
281
+ }
282
+ ],
283
+ "updated": 1,
284
+ "link": null,
285
+ "locked": false,
286
+ "index": null
287
+ },
288
+ {
289
+ "id": "label-MeadowEndpoints-000000ck",
290
+ "type": "text",
291
+ "x": 63,
292
+ "y": 709,
293
+ "width": 335,
294
+ "height": 125,
295
+ "angle": 0,
296
+ "strokeColor": "#1B1F23",
297
+ "backgroundColor": "transparent",
298
+ "fillStyle": "solid",
299
+ "strokeWidth": 1,
300
+ "strokeStyle": "solid",
301
+ "roughness": 1,
302
+ "opacity": 100,
303
+ "groupIds": [],
304
+ "frameId": null,
305
+ "roundness": null,
306
+ "seed": 452,
307
+ "version": 1,
308
+ "versionNonce": 452,
309
+ "isDeleted": false,
310
+ "boundElements": null,
311
+ "updated": 1,
312
+ "link": null,
313
+ "locked": false,
314
+ "text": "Meadow Endpoints (REST Layer)\n- CRUD route handlers\n- Behavior injection hooks\n- Session management\n- Authorization enforcement",
315
+ "fontSize": 20,
316
+ "fontFamily": 5,
317
+ "textAlign": "center",
318
+ "verticalAlign": "middle",
319
+ "baseline": 15,
320
+ "containerId": "shape-MeadowEndpoints-000000nk",
321
+ "originalText": "Meadow Endpoints (REST Layer)\n- CRUD route handlers\n- Behavior injection hooks\n- Session management\n- Authorization enforcement",
322
+ "autoResize": true,
323
+ "lineHeight": 1.25,
324
+ "index": null
325
+ },
326
+ {
327
+ "id": "shape-Meadow-000000p8",
328
+ "type": "rectangle",
329
+ "x": 33,
330
+ "y": 938,
331
+ "width": 396,
332
+ "height": 153,
333
+ "angle": 0,
334
+ "strokeColor": "#1B1F23",
335
+ "backgroundColor": "transparent",
336
+ "fillStyle": "solid",
337
+ "strokeWidth": 2,
338
+ "strokeStyle": "solid",
339
+ "roughness": 1,
340
+ "opacity": 100,
341
+ "groupIds": [],
342
+ "frameId": null,
343
+ "roundness": {
344
+ "type": 3
345
+ },
346
+ "seed": 908,
347
+ "version": 1,
348
+ "versionNonce": 908,
349
+ "isDeleted": false,
350
+ "boundElements": [
351
+ {
352
+ "id": "label-Meadow-00000089",
353
+ "type": "text"
354
+ },
355
+ {
356
+ "id": "arrow-MeadowEndpoints-Meadow-0000006x",
357
+ "type": "arrow"
358
+ },
359
+ {
360
+ "id": "arrow-Meadow-StorageProvider-000000l1",
361
+ "type": "arrow"
362
+ }
363
+ ],
364
+ "updated": 1,
365
+ "link": null,
366
+ "locked": false,
367
+ "index": null
368
+ },
369
+ {
370
+ "id": "label-Meadow-00000089",
371
+ "type": "text",
372
+ "x": 41,
373
+ "y": 952,
374
+ "width": 380,
375
+ "height": 125,
376
+ "angle": 0,
377
+ "strokeColor": "#1B1F23",
378
+ "backgroundColor": "transparent",
379
+ "fillStyle": "solid",
380
+ "strokeWidth": 1,
381
+ "strokeStyle": "solid",
382
+ "roughness": 1,
383
+ "opacity": 100,
384
+ "groupIds": [],
385
+ "frameId": null,
386
+ "roundness": null,
387
+ "seed": 297,
388
+ "version": 1,
389
+ "versionNonce": 297,
390
+ "isDeleted": false,
391
+ "boundElements": null,
392
+ "updated": 1,
393
+ "link": null,
394
+ "locked": false,
395
+ "text": "Meadow (Data Access)\n- Schema management\n- Query building via FoxHound\n- Provider-based query execution\n- Audit stamping and soft deletes",
396
+ "fontSize": 20,
397
+ "fontFamily": 5,
398
+ "textAlign": "center",
399
+ "verticalAlign": "middle",
400
+ "baseline": 15,
401
+ "containerId": "shape-Meadow-000000p8",
402
+ "originalText": "Meadow (Data Access)\n- Schema management\n- Query building via FoxHound\n- Provider-based query execution\n- Audit stamping and soft deletes",
403
+ "autoResize": true,
404
+ "lineHeight": 1.25,
405
+ "index": null
406
+ },
407
+ {
408
+ "id": "shape-StorageProvider-000000cw",
409
+ "type": "rectangle",
410
+ "x": 44,
411
+ "y": 1181,
412
+ "width": 373,
413
+ "height": 78,
414
+ "angle": 0,
415
+ "strokeColor": "#1B1F23",
416
+ "backgroundColor": "transparent",
417
+ "fillStyle": "solid",
418
+ "strokeWidth": 2,
419
+ "strokeStyle": "solid",
420
+ "roughness": 1,
421
+ "opacity": 100,
422
+ "groupIds": [],
423
+ "frameId": null,
424
+ "roundness": {
425
+ "type": 3
426
+ },
427
+ "seed": 464,
428
+ "version": 1,
429
+ "versionNonce": 464,
430
+ "isDeleted": false,
431
+ "boundElements": [
432
+ {
433
+ "id": "arrow-Meadow-StorageProvider-000000l1",
434
+ "type": "arrow"
435
+ }
436
+ ],
437
+ "updated": 1,
438
+ "link": null,
439
+ "locked": false,
440
+ "index": null
441
+ },
442
+ {
443
+ "id": "label-StorageProvider-000000l8",
444
+ "type": "text",
445
+ "x": 44,
446
+ "y": 1222.5,
447
+ "width": 373,
448
+ "height": 20,
449
+ "angle": 0,
450
+ "strokeColor": "#1B1F23",
451
+ "backgroundColor": "transparent",
452
+ "fillStyle": "solid",
453
+ "strokeWidth": 1,
454
+ "strokeStyle": "solid",
455
+ "roughness": 1,
456
+ "opacity": 100,
457
+ "groupIds": [],
458
+ "frameId": null,
459
+ "roundness": null,
460
+ "seed": 764,
461
+ "version": 1,
462
+ "versionNonce": 764,
463
+ "isDeleted": false,
464
+ "boundElements": null,
465
+ "updated": 1,
466
+ "link": null,
467
+ "locked": false,
468
+ "text": "MySQL | SQLite | MSSQL | ALASQL",
469
+ "fontSize": 16,
470
+ "fontFamily": 5,
471
+ "textAlign": "center",
472
+ "verticalAlign": "top",
473
+ "baseline": 15,
474
+ "containerId": null,
475
+ "originalText": "MySQL | SQLite | MSSQL | ALASQL",
476
+ "autoResize": true,
477
+ "lineHeight": 1.25,
478
+ "index": null
479
+ },
480
+ {
481
+ "id": "arrow-AppCode-RetoldDataService-0000008h",
482
+ "type": "arrow",
483
+ "x": 231,
484
+ "y": 144,
485
+ "width": 0.5,
486
+ "height": 90,
487
+ "angle": 0,
488
+ "strokeColor": "#2E7D74",
489
+ "backgroundColor": "transparent",
490
+ "fillStyle": "solid",
491
+ "strokeWidth": 2,
492
+ "strokeStyle": "solid",
493
+ "roughness": 1,
494
+ "opacity": 100,
495
+ "groupIds": [],
496
+ "frameId": null,
497
+ "roundness": null,
498
+ "seed": 305,
499
+ "version": 1,
500
+ "versionNonce": 305,
501
+ "isDeleted": false,
502
+ "boundElements": [],
503
+ "updated": 1,
504
+ "link": null,
505
+ "locked": false,
506
+ "points": [
507
+ [
508
+ 0,
509
+ 0
510
+ ],
511
+ [
512
+ 0,
513
+ 16
514
+ ],
515
+ [
516
+ -0.004458161865613874,
517
+ 19.875171467764034
518
+ ],
519
+ [
520
+ -0.01714677640603668,
521
+ 23.519890260631
522
+ ],
523
+ [
524
+ -0.03703703703700967,
525
+ 26.96296296296299
526
+ ],
527
+ [
528
+ -0.06310013717418883,
529
+ 30.233196159122087
530
+ ],
531
+ [
532
+ -0.09430727023320173,
533
+ 33.35939643347049
534
+ ],
535
+ [
536
+ -0.12962962962959068,
537
+ 36.37037037037041
538
+ ],
539
+ [
540
+ -0.16803840877912535,
541
+ 39.29492455418384
542
+ ],
543
+ [
544
+ -0.20850480109740488,
545
+ 42.161865569272976
546
+ ],
547
+ [
548
+ -0.25,
549
+ 45
550
+ ],
551
+ [
552
+ -0.2914951989025951,
553
+ 47.83813443072705
554
+ ],
555
+ [
556
+ -0.33196159122084623,
557
+ 50.70507544581619
558
+ ],
559
+ [
560
+ -0.3703703703703809,
561
+ 53.62962962962962
562
+ ],
563
+ [
564
+ -0.40569272976679827,
565
+ 56.64060356652948
566
+ ],
567
+ [
568
+ -0.43689986282578275,
569
+ 59.76680384087791
570
+ ],
571
+ [
572
+ -0.4629629629629619,
573
+ 63.03703703703707
574
+ ],
575
+ [
576
+ -0.4828532235939633,
577
+ 66.480109739369
578
+ ],
579
+ [
580
+ -0.49554183813444297,
581
+ 70.12482853223594
582
+ ],
583
+ [
584
+ -0.5,
585
+ 74
586
+ ],
587
+ [
588
+ -0.5,
589
+ 90
590
+ ]
591
+ ],
592
+ "lastCommittedPoint": null,
593
+ "startBinding": {
594
+ "elementId": "shape-AppCode-000000bs",
595
+ "focus": 0,
596
+ "gap": 8
597
+ },
598
+ "endBinding": {
599
+ "elementId": "shape-RetoldDataService-0000006o",
600
+ "focus": 0,
601
+ "gap": 8
602
+ },
603
+ "startArrowhead": null,
604
+ "endArrowhead": "arrow",
605
+ "elbowed": false,
606
+ "index": null
607
+ },
608
+ {
609
+ "id": "arrow-RetoldDataService-Orator-000000e8",
610
+ "type": "arrow",
611
+ "x": 230.5,
612
+ "y": 387,
613
+ "width": 5.684341886080802e-14,
614
+ "height": 90,
615
+ "angle": 0,
616
+ "strokeColor": "#2E7D74",
617
+ "backgroundColor": "transparent",
618
+ "fillStyle": "solid",
619
+ "strokeWidth": 2,
620
+ "strokeStyle": "solid",
621
+ "roughness": 1,
622
+ "opacity": 100,
623
+ "groupIds": [],
624
+ "frameId": null,
625
+ "roundness": null,
626
+ "seed": 512,
627
+ "version": 1,
628
+ "versionNonce": 512,
629
+ "isDeleted": false,
630
+ "boundElements": [],
631
+ "updated": 1,
632
+ "link": null,
633
+ "locked": false,
634
+ "points": [
635
+ [
636
+ 0,
637
+ 0
638
+ ],
639
+ [
640
+ 0,
641
+ 16
642
+ ],
643
+ [
644
+ -2.842170943040401e-14,
645
+ 19.875171467764005
646
+ ],
647
+ [
648
+ 0,
649
+ 23.51989026063103
650
+ ],
651
+ [
652
+ 0,
653
+ 26.96296296296299
654
+ ],
655
+ [
656
+ 2.842170943040401e-14,
657
+ 30.233196159122144
658
+ ],
659
+ [
660
+ 2.842170943040401e-14,
661
+ 33.35939643347052
662
+ ],
663
+ [
664
+ 2.842170943040401e-14,
665
+ 36.37037037037038
666
+ ],
667
+ [
668
+ 2.842170943040401e-14,
669
+ 39.294924554183865
670
+ ],
671
+ [
672
+ 2.842170943040401e-14,
673
+ 42.161865569273004
674
+ ],
675
+ [
676
+ 0,
677
+ 45
678
+ ],
679
+ [
680
+ 0,
681
+ 47.838134430726996
682
+ ],
683
+ [
684
+ -2.842170943040401e-14,
685
+ 50.705075445816135
686
+ ],
687
+ [
688
+ 0,
689
+ 53.629629629629676
690
+ ],
691
+ [
692
+ 0,
693
+ 56.64060356652948
694
+ ],
695
+ [
696
+ 0,
697
+ 59.76680384087791
698
+ ],
699
+ [
700
+ 0,
701
+ 63.03703703703707
702
+ ],
703
+ [
704
+ 0,
705
+ 66.48010973936903
706
+ ],
707
+ [
708
+ 0,
709
+ 70.12482853223594
710
+ ],
711
+ [
712
+ 0,
713
+ 74
714
+ ],
715
+ [
716
+ 0,
717
+ 90
718
+ ]
719
+ ],
720
+ "lastCommittedPoint": null,
721
+ "startBinding": {
722
+ "elementId": "shape-RetoldDataService-0000006o",
723
+ "focus": 0,
724
+ "gap": 8
725
+ },
726
+ "endBinding": {
727
+ "elementId": "shape-Orator-000000fs",
728
+ "focus": 0,
729
+ "gap": 8
730
+ },
731
+ "startArrowhead": null,
732
+ "endArrowhead": "arrow",
733
+ "elbowed": false,
734
+ "index": null
735
+ },
736
+ {
737
+ "id": "arrow-Orator-MeadowEndpoints-000000mh",
738
+ "type": "arrow",
739
+ "x": 230.5,
740
+ "y": 605,
741
+ "width": 5.684341886080802e-14,
742
+ "height": 90,
743
+ "angle": 0,
744
+ "strokeColor": "#2E7D74",
745
+ "backgroundColor": "transparent",
746
+ "fillStyle": "solid",
747
+ "strokeWidth": 2,
748
+ "strokeStyle": "solid",
749
+ "roughness": 1,
750
+ "opacity": 100,
751
+ "groupIds": [],
752
+ "frameId": null,
753
+ "roundness": null,
754
+ "seed": 809,
755
+ "version": 1,
756
+ "versionNonce": 809,
757
+ "isDeleted": false,
758
+ "boundElements": [],
759
+ "updated": 1,
760
+ "link": null,
761
+ "locked": false,
762
+ "points": [
763
+ [
764
+ 0,
765
+ 0
766
+ ],
767
+ [
768
+ 0,
769
+ 16
770
+ ],
771
+ [
772
+ -2.842170943040401e-14,
773
+ 19.875171467764062
774
+ ],
775
+ [
776
+ 0,
777
+ 23.51989026063086
778
+ ],
779
+ [
780
+ 0,
781
+ 26.962962962962933
782
+ ],
783
+ [
784
+ 2.842170943040401e-14,
785
+ 30.23319615912203
786
+ ],
787
+ [
788
+ 2.842170943040401e-14,
789
+ 33.35939643347058
790
+ ],
791
+ [
792
+ 2.842170943040401e-14,
793
+ 36.37037037037044
794
+ ],
795
+ [
796
+ 2.842170943040401e-14,
797
+ 39.29492455418392
798
+ ],
799
+ [
800
+ 2.842170943040401e-14,
801
+ 42.161865569273004
802
+ ],
803
+ [
804
+ 0,
805
+ 45
806
+ ],
807
+ [
808
+ 0,
809
+ 47.83813443072711
810
+ ],
811
+ [
812
+ -2.842170943040401e-14,
813
+ 50.70507544581619
814
+ ],
815
+ [
816
+ 0,
817
+ 53.62962962962956
818
+ ],
819
+ [
820
+ 0,
821
+ 56.640603566529535
822
+ ],
823
+ [
824
+ 0,
825
+ 59.766803840877856
826
+ ],
827
+ [
828
+ 0,
829
+ 63.03703703703707
830
+ ],
831
+ [
832
+ 0,
833
+ 66.48010973936903
834
+ ],
835
+ [
836
+ 0,
837
+ 70.12482853223594
838
+ ],
839
+ [
840
+ 0,
841
+ 74
842
+ ],
843
+ [
844
+ 0,
845
+ 90
846
+ ]
847
+ ],
848
+ "lastCommittedPoint": null,
849
+ "startBinding": {
850
+ "elementId": "shape-Orator-000000fs",
851
+ "focus": 0,
852
+ "gap": 8
853
+ },
854
+ "endBinding": {
855
+ "elementId": "shape-MeadowEndpoints-000000nk",
856
+ "focus": 0,
857
+ "gap": 8
858
+ },
859
+ "startArrowhead": null,
860
+ "endArrowhead": "arrow",
861
+ "elbowed": false,
862
+ "index": null
863
+ },
864
+ {
865
+ "id": "arrow-MeadowEndpoints-Meadow-0000006x",
866
+ "type": "arrow",
867
+ "x": 230.5,
868
+ "y": 848,
869
+ "width": 0.5,
870
+ "height": 90,
871
+ "angle": 0,
872
+ "strokeColor": "#2E7D74",
873
+ "backgroundColor": "transparent",
874
+ "fillStyle": "solid",
875
+ "strokeWidth": 2,
876
+ "strokeStyle": "solid",
877
+ "roughness": 1,
878
+ "opacity": 100,
879
+ "groupIds": [],
880
+ "frameId": null,
881
+ "roundness": null,
882
+ "seed": 249,
883
+ "version": 1,
884
+ "versionNonce": 249,
885
+ "isDeleted": false,
886
+ "boundElements": [],
887
+ "updated": 1,
888
+ "link": null,
889
+ "locked": false,
890
+ "points": [
891
+ [
892
+ 0,
893
+ 0
894
+ ],
895
+ [
896
+ 0,
897
+ 16
898
+ ],
899
+ [
900
+ 0.004458161865557031,
901
+ 19.87517146776395
902
+ ],
903
+ [
904
+ 0.017146776406008257,
905
+ 23.51989026063086
906
+ ],
907
+ [
908
+ 0.03703703703703809,
909
+ 26.962962962963047
910
+ ],
911
+ [
912
+ 0.06310013717424567,
913
+ 30.233196159122144
914
+ ],
915
+ [
916
+ 0.09430727023320173,
917
+ 33.35939643347058
918
+ ],
919
+ [
920
+ 0.1296296296296191,
921
+ 36.37037037037044
922
+ ],
923
+ [
924
+ 0.1680384087791822,
925
+ 39.29492455418392
926
+ ],
927
+ [
928
+ 0.2085048010974333,
929
+ 42.161865569273004
930
+ ],
931
+ [
932
+ 0.25,
933
+ 45
934
+ ],
935
+ [
936
+ 0.29149519890262354,
937
+ 47.838134430726996
938
+ ],
939
+ [
940
+ 0.33196159122084623,
941
+ 50.70507544581608
942
+ ],
943
+ [
944
+ 0.3703703703703809,
945
+ 53.62962962962956
946
+ ],
947
+ [
948
+ 0.4056927297668267,
949
+ 56.640603566529535
950
+ ],
951
+ [
952
+ 0.43689986282578275,
953
+ 59.766803840877856
954
+ ],
955
+ [
956
+ 0.4629629629629619,
957
+ 63.03703703703707
958
+ ],
959
+ [
960
+ 0.48285322359399174,
961
+ 66.48010973936903
962
+ ],
963
+ [
964
+ 0.49554183813441455,
965
+ 70.12482853223594
966
+ ],
967
+ [
968
+ 0.5,
969
+ 74
970
+ ],
971
+ [
972
+ 0.5,
973
+ 90
974
+ ]
975
+ ],
976
+ "lastCommittedPoint": null,
977
+ "startBinding": {
978
+ "elementId": "shape-MeadowEndpoints-000000nk",
979
+ "focus": 0,
980
+ "gap": 8
981
+ },
982
+ "endBinding": {
983
+ "elementId": "shape-Meadow-000000p8",
984
+ "focus": 0,
985
+ "gap": 8
986
+ },
987
+ "startArrowhead": null,
988
+ "endArrowhead": "arrow",
989
+ "elbowed": false,
990
+ "index": null
991
+ },
992
+ {
993
+ "id": "arrow-Meadow-StorageProvider-000000l1",
994
+ "type": "arrow",
995
+ "x": 231,
996
+ "y": 1091,
997
+ "width": 0.5,
998
+ "height": 90,
999
+ "angle": 0,
1000
+ "strokeColor": "#2E7D74",
1001
+ "backgroundColor": "transparent",
1002
+ "fillStyle": "solid",
1003
+ "strokeWidth": 2,
1004
+ "strokeStyle": "solid",
1005
+ "roughness": 1,
1006
+ "opacity": 100,
1007
+ "groupIds": [],
1008
+ "frameId": null,
1009
+ "roundness": null,
1010
+ "seed": 757,
1011
+ "version": 1,
1012
+ "versionNonce": 757,
1013
+ "isDeleted": false,
1014
+ "boundElements": [],
1015
+ "updated": 1,
1016
+ "link": null,
1017
+ "locked": false,
1018
+ "points": [
1019
+ [
1020
+ 0,
1021
+ 0
1022
+ ],
1023
+ [
1024
+ 0,
1025
+ 16
1026
+ ],
1027
+ [
1028
+ -0.004458161865613874,
1029
+ 19.87517146776395
1030
+ ],
1031
+ [
1032
+ -0.01714677640603668,
1033
+ 23.519890260630973
1034
+ ],
1035
+ [
1036
+ -0.03703703703700967,
1037
+ 26.962962962963047
1038
+ ],
1039
+ [
1040
+ -0.06310013717418883,
1041
+ 30.233196159121917
1042
+ ],
1043
+ [
1044
+ -0.09430727023320173,
1045
+ 33.359396433470465
1046
+ ],
1047
+ [
1048
+ -0.12962962962959068,
1049
+ 36.37037037037021
1050
+ ],
1051
+ [
1052
+ -0.16803840877912535,
1053
+ 39.294924554184036
1054
+ ],
1055
+ [
1056
+ -0.20850480109740488,
1057
+ 42.161865569273004
1058
+ ],
1059
+ [
1060
+ -0.25,
1061
+ 45
1062
+ ],
1063
+ [
1064
+ -0.2914951989025951,
1065
+ 47.838134430726996
1066
+ ],
1067
+ [
1068
+ -0.33196159122084623,
1069
+ 50.70507544581619
1070
+ ],
1071
+ [
1072
+ -0.3703703703703809,
1073
+ 53.62962962962956
1074
+ ],
1075
+ [
1076
+ -0.40569272976679827,
1077
+ 56.640603566529535
1078
+ ],
1079
+ [
1080
+ -0.43689986282578275,
1081
+ 59.766803840877856
1082
+ ],
1083
+ [
1084
+ -0.4629629629629619,
1085
+ 63.03703703703718
1086
+ ],
1087
+ [
1088
+ -0.4828532235939633,
1089
+ 66.48010973936903
1090
+ ],
1091
+ [
1092
+ -0.49554183813444297,
1093
+ 70.12482853223582
1094
+ ],
1095
+ [
1096
+ -0.5,
1097
+ 74
1098
+ ],
1099
+ [
1100
+ -0.5,
1101
+ 90
1102
+ ]
1103
+ ],
1104
+ "lastCommittedPoint": null,
1105
+ "startBinding": {
1106
+ "elementId": "shape-Meadow-000000p8",
1107
+ "focus": 0,
1108
+ "gap": 8
1109
+ },
1110
+ "endBinding": {
1111
+ "elementId": "shape-StorageProvider-000000cw",
1112
+ "focus": 0,
1113
+ "gap": 8
1114
+ },
1115
+ "startArrowhead": null,
1116
+ "endArrowhead": "arrow",
1117
+ "elbowed": false,
1118
+ "index": null
1119
+ },
1120
+ {
1121
+ "id": "label-StorageProvider-000000l8_title",
1122
+ "type": "text",
1123
+ "x": 44,
1124
+ "y": 1197.5,
1125
+ "width": 373,
1126
+ "height": 25,
1127
+ "angle": 0,
1128
+ "strokeColor": "#1B1F23",
1129
+ "backgroundColor": "transparent",
1130
+ "fillStyle": "solid",
1131
+ "strokeWidth": 1,
1132
+ "strokeStyle": "solid",
1133
+ "roughness": 1,
1134
+ "opacity": 100,
1135
+ "groupIds": [],
1136
+ "frameId": null,
1137
+ "roundness": null,
1138
+ "seed": 356,
1139
+ "version": 1,
1140
+ "versionNonce": 764,
1141
+ "isDeleted": false,
1142
+ "boundElements": null,
1143
+ "updated": 1,
1144
+ "link": null,
1145
+ "locked": false,
1146
+ "text": "Storage Provider",
1147
+ "fontSize": 20,
1148
+ "fontFamily": 5,
1149
+ "textAlign": "center",
1150
+ "verticalAlign": "top",
1151
+ "baseline": 15,
1152
+ "containerId": null,
1153
+ "originalText": "Storage Provider",
1154
+ "autoResize": true,
1155
+ "lineHeight": 1.25,
1156
+ "index": null
1157
+ }
1158
+ ],
1159
+ "appState": {
1160
+ "viewBackgroundColor": "#FBF7EE",
1161
+ "theme": "light",
1162
+ "gridSize": null,
1163
+ "exportBackground": true,
1164
+ "exportEmbedScene": true,
1165
+ "exportScale": 1,
1166
+ "currentItemFontFamily": 5
1167
+ },
1168
+ "files": {}
1169
+ }