retold 4.0.1 → 4.0.3

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 (78) hide show
  1. package/.claude/settings.local.json +38 -1
  2. package/README.md +92 -2
  3. package/docs/README.md +7 -6
  4. package/docs/_sidebar.md +36 -21
  5. package/docs/_topbar.md +2 -2
  6. package/docs/architecture/comprehensions.md +282 -0
  7. package/docs/architecture/fluid-models.md +355 -0
  8. package/docs/architecture/module-architecture.md +234 -0
  9. package/docs/{modules.md → architecture/modules.md} +25 -22
  10. package/docs/cover.md +2 -2
  11. package/docs/css/docuserve.css +6 -6
  12. package/docs/examples/examples.md +71 -0
  13. package/docs/examples/todolist/todo-list-cli-client.md +178 -0
  14. package/docs/examples/todolist/todo-list-console-client.md +152 -0
  15. package/docs/examples/todolist/todo-list-model.md +114 -0
  16. package/docs/examples/todolist/todo-list-server.md +128 -0
  17. package/docs/examples/todolist/todo-list-web-client.md +177 -0
  18. package/docs/examples/todolist/todo-list.md +162 -0
  19. package/docs/getting-started.md +8 -7
  20. package/docs/index.html +4 -4
  21. package/docs/{meadow.md → modules/meadow.md} +4 -6
  22. package/docs/{orator.md → modules/orator.md} +1 -0
  23. package/docs/{pict.md → modules/pict.md} +30 -8
  24. package/docs/{utility.md → modules/utility.md} +0 -9
  25. package/docs/retold-catalog.json +1792 -231
  26. package/docs/retold-keyword-index.json +136439 -64616
  27. package/examples/todo-list/Dockerfile +45 -0
  28. package/examples/todo-list/README.md +394 -0
  29. package/examples/todo-list/cli-client/package-lock.json +418 -0
  30. package/examples/todo-list/cli-client/package.json +19 -0
  31. package/examples/todo-list/cli-client/source/TodoCLI-CLIProgram.js +30 -0
  32. package/examples/todo-list/cli-client/source/TodoCLI-Run.js +3 -0
  33. package/examples/todo-list/cli-client/source/commands/add/TodoCLI-Command-Add.js +74 -0
  34. package/examples/todo-list/cli-client/source/commands/complete/TodoCLI-Command-Complete.js +84 -0
  35. package/examples/todo-list/cli-client/source/commands/list/TodoCLI-Command-List.js +110 -0
  36. package/examples/todo-list/cli-client/source/commands/remove/TodoCLI-Command-Remove.js +49 -0
  37. package/examples/todo-list/cli-client/source/services/TodoCLI-Service-API.js +92 -0
  38. package/examples/todo-list/console-client/console-client.cjs +913 -0
  39. package/examples/todo-list/console-client/package-lock.json +426 -0
  40. package/examples/todo-list/console-client/package.json +19 -0
  41. package/examples/todo-list/console-client/views/PictView-TUI-Header.cjs +43 -0
  42. package/examples/todo-list/console-client/views/PictView-TUI-Layout.cjs +58 -0
  43. package/examples/todo-list/console-client/views/PictView-TUI-StatusBar.cjs +41 -0
  44. package/examples/todo-list/console-client/views/PictView-TUI-TaskList.cjs +104 -0
  45. package/examples/todo-list/docker-motd.sh +36 -0
  46. package/examples/todo-list/docker-run.sh +2 -0
  47. package/examples/todo-list/docker-shell.sh +2 -0
  48. package/examples/todo-list/model/MeadowSchema-Task.json +152 -0
  49. package/examples/todo-list/model/Task-Compiled.json +25 -0
  50. package/examples/todo-list/model/Task.mddl +15 -0
  51. package/examples/todo-list/model/data/seeded_todo_events.csv +1001 -0
  52. package/examples/todo-list/server/database-initialization-service.cjs +273 -0
  53. package/examples/todo-list/server/package-lock.json +6113 -0
  54. package/examples/todo-list/server/package.json +19 -0
  55. package/examples/todo-list/server/server.cjs +138 -0
  56. package/examples/todo-list/web-client/css/todolist-theme.css +235 -0
  57. package/examples/todo-list/web-client/generate-build-config.cjs +18 -0
  58. package/examples/todo-list/web-client/html/index.html +18 -0
  59. package/examples/todo-list/web-client/package-lock.json +12030 -0
  60. package/examples/todo-list/web-client/package.json +43 -0
  61. package/examples/todo-list/web-client/source/TodoList-Application-Config.json +12 -0
  62. package/examples/todo-list/web-client/source/TodoList-Application.cjs +383 -0
  63. package/examples/todo-list/web-client/source/providers/Provider-TaskData.cjs +243 -0
  64. package/examples/todo-list/web-client/source/providers/Router-Config.json +32 -0
  65. package/examples/todo-list/web-client/source/views/View-Layout.cjs +75 -0
  66. package/examples/todo-list/web-client/source/views/View-TaskForm.cjs +87 -0
  67. package/examples/todo-list/web-client/source/views/View-TaskList.cjs +127 -0
  68. package/examples/todo-list/web-client/source/views/calendar/View-MonthView.cjs +293 -0
  69. package/examples/todo-list/web-client/source/views/calendar/View-WeekView.cjs +149 -0
  70. package/examples/todo-list/web-client/source/views/calendar/View-YearView.cjs +226 -0
  71. package/modules/Include-Retold-Module-List.sh +2 -2
  72. package/package.json +5 -5
  73. package/docs/js/pict.min.js +0 -12
  74. package/docs/js/pict.min.js.map +0 -1
  75. package/docs/pict-docuserve.min.js +0 -58
  76. package/docs/pict-docuserve.min.js.map +0 -1
  77. /package/docs/{architecture.md → architecture/architecture.md} +0 -0
  78. /package/docs/{fable.md → modules/fable.md} +0 -0
@@ -1,5 +1,5 @@
1
1
  {
2
- "Generated": "2026-02-11T01:22:53.073Z",
2
+ "Generated": "2026-02-17T15:12:19.628Z",
3
3
  "GitHubOrg": "stevenvelozo",
4
4
  "DefaultBranch": "master",
5
5
  "Groups": [
@@ -372,10 +372,56 @@
372
372
  "Repo": "fable-log-logger-bunyan",
373
373
  "Group": "fable",
374
374
  "Branch": "master",
375
- "HasDocs": false,
376
- "HasCover": false,
377
- "Sidebar": [],
378
- "DocFiles": []
375
+ "HasDocs": true,
376
+ "HasCover": true,
377
+ "Sidebar": [
378
+ {
379
+ "Title": "Getting Started",
380
+ "Children": [
381
+ {
382
+ "Title": "Overview",
383
+ "Path": "README.md"
384
+ },
385
+ {
386
+ "Title": "API Reference",
387
+ "Path": "api.md"
388
+ }
389
+ ]
390
+ },
391
+ {
392
+ "Title": "Retold Ecosystem",
393
+ "Children": [
394
+ {
395
+ "Title": "Fable",
396
+ "Path": "fable/fable/README.md"
397
+ },
398
+ {
399
+ "Title": "Fable-Log",
400
+ "Path": "fable/fable-log/README.md"
401
+ },
402
+ {
403
+ "Title": "Fable-ServiceProviderBase",
404
+ "Path": "fable/fable-serviceproviderbase/README.md"
405
+ },
406
+ {
407
+ "Title": "Fable-Settings",
408
+ "Path": "fable/fable-settings/README.md"
409
+ }
410
+ ]
411
+ }
412
+ ],
413
+ "DocFiles": [
414
+ ".nojekyll",
415
+ "README.md",
416
+ "_sidebar.md",
417
+ "_topbar.md",
418
+ "api.md",
419
+ "cover.md",
420
+ "css/docuserve.css",
421
+ "index.html",
422
+ "retold-catalog.json",
423
+ "retold-keyword-index.json"
424
+ ]
379
425
  },
380
426
  {
381
427
  "Name": "fable-operationstep",
@@ -392,20 +438,127 @@
392
438
  "Repo": "fable-serviceproviderbase",
393
439
  "Group": "fable",
394
440
  "Branch": "master",
395
- "HasDocs": false,
396
- "HasCover": false,
397
- "Sidebar": [],
398
- "DocFiles": []
441
+ "HasDocs": true,
442
+ "HasCover": true,
443
+ "Sidebar": [
444
+ {
445
+ "Title": "Getting Started",
446
+ "Children": [
447
+ {
448
+ "Title": "Overview",
449
+ "Path": "README.md"
450
+ },
451
+ {
452
+ "Title": "Initialization Patterns",
453
+ "Path": "initialization-patterns.md"
454
+ }
455
+ ]
456
+ },
457
+ {
458
+ "Title": "Reference",
459
+ "Children": [
460
+ {
461
+ "Title": "API Reference",
462
+ "Path": "api.md"
463
+ }
464
+ ]
465
+ },
466
+ {
467
+ "Title": "Retold Ecosystem",
468
+ "Children": [
469
+ {
470
+ "Title": "Fable",
471
+ "Path": "fable/fable/README.md"
472
+ },
473
+ {
474
+ "Title": "Fable-Settings",
475
+ "Path": "fable/fable-settings/README.md"
476
+ },
477
+ {
478
+ "Title": "Fable-Log",
479
+ "Path": "fable/fable-log/README.md"
480
+ },
481
+ {
482
+ "Title": "Fable-UUID",
483
+ "Path": "fable/fable-uuid/README.md"
484
+ }
485
+ ]
486
+ }
487
+ ],
488
+ "DocFiles": [
489
+ "README.md",
490
+ "_sidebar.md",
491
+ "_topbar.md",
492
+ "api.md",
493
+ "cover.md",
494
+ "initialization-patterns.md"
495
+ ]
399
496
  },
400
497
  {
401
498
  "Name": "fable-settings",
402
499
  "Repo": "fable-settings",
403
500
  "Group": "fable",
404
501
  "Branch": "master",
405
- "HasDocs": false,
406
- "HasCover": false,
407
- "Sidebar": [],
408
- "DocFiles": []
502
+ "HasDocs": true,
503
+ "HasCover": true,
504
+ "Sidebar": [
505
+ {
506
+ "Title": "Getting Started",
507
+ "Children": [
508
+ {
509
+ "Title": "Overview",
510
+ "Path": "README.md"
511
+ },
512
+ {
513
+ "Title": "Environment Variables",
514
+ "Path": "environment-variables.md"
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "Title": "Reference",
520
+ "Children": [
521
+ {
522
+ "Title": "API Reference",
523
+ "Path": "api.md"
524
+ }
525
+ ]
526
+ },
527
+ {
528
+ "Title": "Retold Ecosystem",
529
+ "Children": [
530
+ {
531
+ "Title": "Fable",
532
+ "Path": "fable/fable/README.md"
533
+ },
534
+ {
535
+ "Title": "Fable-ServiceProviderBase",
536
+ "Path": "fable/fable-serviceproviderbase/README.md"
537
+ },
538
+ {
539
+ "Title": "Fable-Log",
540
+ "Path": "fable/fable-log/README.md"
541
+ },
542
+ {
543
+ "Title": "Fable-UUID",
544
+ "Path": "fable/fable-uuid/README.md"
545
+ }
546
+ ]
547
+ }
548
+ ],
549
+ "DocFiles": [
550
+ ".nojekyll",
551
+ "README.md",
552
+ "_sidebar.md",
553
+ "_topbar.md",
554
+ "api.md",
555
+ "cover.md",
556
+ "css/docuserve.css",
557
+ "environment-variables.md",
558
+ "index.html",
559
+ "retold-catalog.json",
560
+ "retold-keyword-index.json"
561
+ ]
409
562
  },
410
563
  {
411
564
  "Name": "fable-uuid",
@@ -485,10 +638,111 @@
485
638
  "Repo": "bibliograph",
486
639
  "Group": "meadow",
487
640
  "Branch": "master",
488
- "HasDocs": false,
489
- "HasCover": false,
490
- "Sidebar": [],
491
- "DocFiles": []
641
+ "HasDocs": true,
642
+ "HasCover": true,
643
+ "Sidebar": [
644
+ {
645
+ "Title": "Getting Started",
646
+ "Children": [
647
+ {
648
+ "Title": "Overview",
649
+ "Path": "README.md"
650
+ },
651
+ {
652
+ "Title": "Quick Start",
653
+ "Path": "quick-start.md"
654
+ },
655
+ {
656
+ "Title": "Configuration",
657
+ "Path": "configuration.md"
658
+ }
659
+ ]
660
+ },
661
+ {
662
+ "Title": "Architecture",
663
+ "Children": [
664
+ {
665
+ "Title": "Design",
666
+ "Path": "architecture.md"
667
+ },
668
+ {
669
+ "Title": "Storage Providers",
670
+ "Path": "storage-providers.md"
671
+ }
672
+ ]
673
+ },
674
+ {
675
+ "Title": "Data Operations",
676
+ "Children": [
677
+ {
678
+ "Title": "Write",
679
+ "Path": "operations/write.md"
680
+ },
681
+ {
682
+ "Title": "Read",
683
+ "Path": "operations/read.md"
684
+ },
685
+ {
686
+ "Title": "Delete",
687
+ "Path": "operations/delete.md"
688
+ },
689
+ {
690
+ "Title": "Check Existence",
691
+ "Path": "operations/exists.md"
692
+ },
693
+ {
694
+ "Title": "Sources",
695
+ "Path": "operations/sources.md"
696
+ },
697
+ {
698
+ "Title": "Record Keys",
699
+ "Path": "operations/record-keys.md"
700
+ },
701
+ {
702
+ "Title": "Metadata",
703
+ "Path": "operations/metadata.md"
704
+ },
705
+ {
706
+ "Title": "Diff and Deltas",
707
+ "Path": "operations/diff-and-deltas.md"
708
+ }
709
+ ]
710
+ },
711
+ {
712
+ "Title": "Reference",
713
+ "Children": [
714
+ {
715
+ "Title": "API",
716
+ "Path": "api.md"
717
+ },
718
+ {
719
+ "Title": "CLI",
720
+ "Path": "cli.md"
721
+ }
722
+ ]
723
+ }
724
+ ],
725
+ "DocFiles": [
726
+ "README.md",
727
+ "_sidebar.md",
728
+ "_topbar.md",
729
+ "api.md",
730
+ "architecture.md",
731
+ "cli.md",
732
+ "configuration.md",
733
+ "cover.md",
734
+ "index.html",
735
+ "operations/delete.md",
736
+ "operations/diff-and-deltas.md",
737
+ "operations/exists.md",
738
+ "operations/metadata.md",
739
+ "operations/read.md",
740
+ "operations/record-keys.md",
741
+ "operations/sources.md",
742
+ "operations/write.md",
743
+ "quick-start.md",
744
+ "storage-providers.md"
745
+ ]
492
746
  },
493
747
  {
494
748
  "Name": "bibliograph-storage-leveldb",
@@ -787,6 +1041,7 @@
787
1041
  "DocFiles": [
788
1042
  "README.md",
789
1043
  "_sidebar.md",
1044
+ "index.html",
790
1045
  "providers/README.md",
791
1046
  "providers/alasql.md",
792
1047
  "providers/mssql.md",
@@ -806,44 +1061,233 @@
806
1061
  "Repo": "meadow-connection-mssql",
807
1062
  "Group": "meadow",
808
1063
  "Branch": "master",
809
- "HasDocs": false,
810
- "HasCover": false,
811
- "Sidebar": [],
812
- "DocFiles": []
813
- },
814
- {
815
- "Name": "meadow-connection-mysql",
816
- "Repo": "meadow-connection-mysql",
817
- "Group": "meadow",
818
- "Branch": "master",
819
- "HasDocs": false,
820
- "HasCover": false,
821
- "Sidebar": [],
822
- "DocFiles": []
823
- },
824
- {
825
- "Name": "meadow-connection-sqlite",
826
- "Repo": "meadow-connection-sqlite",
827
- "Group": "meadow",
828
- "Branch": "master",
829
- "HasDocs": false,
830
- "HasCover": false,
831
- "Sidebar": [],
832
- "DocFiles": []
833
- },
834
- {
835
- "Name": "meadow-endpoints",
836
- "Repo": "meadow-endpoints",
837
- "Group": "meadow",
838
- "Branch": "master",
839
1064
  "HasDocs": true,
840
- "HasCover": false,
1065
+ "HasCover": true,
841
1066
  "Sidebar": [
842
1067
  {
843
1068
  "Title": "Getting Started",
844
1069
  "Children": [
845
1070
  {
846
- "Title": "Introduction",
1071
+ "Title": "Overview",
1072
+ "Path": "README.md"
1073
+ },
1074
+ {
1075
+ "Title": "Schema & Table Creation",
1076
+ "Path": "schema.md"
1077
+ }
1078
+ ]
1079
+ },
1080
+ {
1081
+ "Title": "Reference",
1082
+ "Children": [
1083
+ {
1084
+ "Title": "API Reference",
1085
+ "Path": "api.md"
1086
+ }
1087
+ ]
1088
+ },
1089
+ {
1090
+ "Title": "Retold Ecosystem",
1091
+ "Children": [
1092
+ {
1093
+ "Title": "Meadow",
1094
+ "Path": "meadow/meadow/README.md"
1095
+ },
1096
+ {
1097
+ "Title": "FoxHound",
1098
+ "Path": "meadow/foxhound/README.md"
1099
+ },
1100
+ {
1101
+ "Title": "Stricture",
1102
+ "Path": "meadow/stricture/README.md"
1103
+ },
1104
+ {
1105
+ "Title": "Meadow Endpoints",
1106
+ "Path": "meadow/meadow-endpoints/README.md"
1107
+ },
1108
+ {
1109
+ "Title": "Fable",
1110
+ "Path": "fable/fable/README.md"
1111
+ }
1112
+ ]
1113
+ }
1114
+ ],
1115
+ "DocFiles": [
1116
+ ".nojekyll",
1117
+ "README.md",
1118
+ "_sidebar.md",
1119
+ "_topbar.md",
1120
+ "api.md",
1121
+ "cover.md",
1122
+ "css/docuserve.css",
1123
+ "index.html",
1124
+ "retold-catalog.json",
1125
+ "retold-keyword-index.json",
1126
+ "schema.md"
1127
+ ]
1128
+ },
1129
+ {
1130
+ "Name": "meadow-connection-mysql",
1131
+ "Repo": "meadow-connection-mysql",
1132
+ "Group": "meadow",
1133
+ "Branch": "master",
1134
+ "HasDocs": true,
1135
+ "HasCover": true,
1136
+ "Sidebar": [
1137
+ {
1138
+ "Title": "Getting Started",
1139
+ "Children": [
1140
+ {
1141
+ "Title": "Overview",
1142
+ "Path": "README.md"
1143
+ },
1144
+ {
1145
+ "Title": "Schema & Table Creation",
1146
+ "Path": "schema.md"
1147
+ }
1148
+ ]
1149
+ },
1150
+ {
1151
+ "Title": "Reference",
1152
+ "Children": [
1153
+ {
1154
+ "Title": "API Reference",
1155
+ "Path": "api.md"
1156
+ }
1157
+ ]
1158
+ },
1159
+ {
1160
+ "Title": "Retold Ecosystem",
1161
+ "Children": [
1162
+ {
1163
+ "Title": "Meadow",
1164
+ "Path": "meadow/meadow/README.md"
1165
+ },
1166
+ {
1167
+ "Title": "FoxHound",
1168
+ "Path": "meadow/foxhound/README.md"
1169
+ },
1170
+ {
1171
+ "Title": "Stricture",
1172
+ "Path": "meadow/stricture/README.md"
1173
+ },
1174
+ {
1175
+ "Title": "Meadow Endpoints",
1176
+ "Path": "meadow/meadow-endpoints/README.md"
1177
+ },
1178
+ {
1179
+ "Title": "Fable",
1180
+ "Path": "fable/fable/README.md"
1181
+ }
1182
+ ]
1183
+ }
1184
+ ],
1185
+ "DocFiles": [
1186
+ ".nojekyll",
1187
+ "README.md",
1188
+ "_sidebar.md",
1189
+ "_topbar.md",
1190
+ "api.md",
1191
+ "cover.md",
1192
+ "css/docuserve.css",
1193
+ "index.html",
1194
+ "retold-catalog.json",
1195
+ "retold-keyword-index.json",
1196
+ "schema.md"
1197
+ ]
1198
+ },
1199
+ {
1200
+ "Name": "meadow-connection-sqlite",
1201
+ "Repo": "meadow-connection-sqlite",
1202
+ "Group": "meadow",
1203
+ "Branch": "master",
1204
+ "HasDocs": true,
1205
+ "HasCover": true,
1206
+ "Sidebar": [
1207
+ {
1208
+ "Title": "Getting Started",
1209
+ "Children": [
1210
+ {
1211
+ "Title": "Overview",
1212
+ "Path": "README.md"
1213
+ }
1214
+ ]
1215
+ },
1216
+ {
1217
+ "Title": "Reference",
1218
+ "Children": [
1219
+ {
1220
+ "Title": "API Reference",
1221
+ "Path": "api.md"
1222
+ }
1223
+ ]
1224
+ },
1225
+ {
1226
+ "Title": "Examples",
1227
+ "Children": [
1228
+ {
1229
+ "Title": "Full Pipeline",
1230
+ "Path": "examples-pipeline.md"
1231
+ }
1232
+ ]
1233
+ },
1234
+ {
1235
+ "Title": "Retold Ecosystem",
1236
+ "Children": [
1237
+ {
1238
+ "Title": "Meadow",
1239
+ "Path": "meadow/meadow/README.md"
1240
+ },
1241
+ {
1242
+ "Title": "FoxHound",
1243
+ "Path": "meadow/foxhound/README.md"
1244
+ },
1245
+ {
1246
+ "Title": "MySQL Connector",
1247
+ "Path": "meadow/meadow-connection-mysql/README.md"
1248
+ },
1249
+ {
1250
+ "Title": "MSSQL Connector",
1251
+ "Path": "meadow/meadow-connection-mssql/README.md"
1252
+ },
1253
+ {
1254
+ "Title": "Fable",
1255
+ "Path": "fable/fable/README.md"
1256
+ },
1257
+ {
1258
+ "Title": "Indoctrinate",
1259
+ "Path": "utility/indoctrinate/README.md"
1260
+ }
1261
+ ]
1262
+ }
1263
+ ],
1264
+ "DocFiles": [
1265
+ ".nojekyll",
1266
+ "README.md",
1267
+ "_sidebar.md",
1268
+ "_topbar.md",
1269
+ "api.md",
1270
+ "cover.md",
1271
+ "css/docuserve.css",
1272
+ "examples-pipeline.md",
1273
+ "index.html",
1274
+ "retold-catalog.json",
1275
+ "retold-keyword-index.json"
1276
+ ]
1277
+ },
1278
+ {
1279
+ "Name": "meadow-endpoints",
1280
+ "Repo": "meadow-endpoints",
1281
+ "Group": "meadow",
1282
+ "Branch": "master",
1283
+ "HasDocs": true,
1284
+ "HasCover": false,
1285
+ "Sidebar": [
1286
+ {
1287
+ "Title": "Getting Started",
1288
+ "Children": [
1289
+ {
1290
+ "Title": "Introduction",
847
1291
  "Path": "README.md"
848
1292
  },
849
1293
  {
@@ -966,7 +1410,8 @@
966
1410
  "crud/delete.md",
967
1411
  "crud/read.md",
968
1412
  "crud/schema.md",
969
- "crud/update.md"
1413
+ "crud/update.md",
1414
+ "index.html"
970
1415
  ]
971
1416
  },
972
1417
  {
@@ -985,11 +1430,138 @@
985
1430
  "Group": "meadow",
986
1431
  "Branch": "master",
987
1432
  "HasDocs": true,
988
- "HasCover": false,
989
- "Sidebar": [],
1433
+ "HasCover": true,
1434
+ "Sidebar": [
1435
+ {
1436
+ "Title": "Getting Started",
1437
+ "Children": [
1438
+ {
1439
+ "Title": "Introduction",
1440
+ "Path": "README.md"
1441
+ },
1442
+ {
1443
+ "Title": "Quick Start",
1444
+ "Path": "README.md"
1445
+ }
1446
+ ]
1447
+ },
1448
+ {
1449
+ "Title": "Concepts",
1450
+ "Children": [
1451
+ {
1452
+ "Title": "Comprehensions",
1453
+ "Path": "comprehensions.md"
1454
+ },
1455
+ {
1456
+ "Title": "Mapping Files",
1457
+ "Path": "mapping-files.md"
1458
+ }
1459
+ ]
1460
+ },
1461
+ {
1462
+ "Title": "Reference",
1463
+ "Children": [
1464
+ {
1465
+ "Title": "CLI Reference",
1466
+ "Path": "cli-reference.md"
1467
+ },
1468
+ {
1469
+ "Title": "REST API Reference",
1470
+ "Path": "rest-api-reference.md"
1471
+ },
1472
+ {
1473
+ "Title": "Programmatic API",
1474
+ "Path": "programmatic-api.md"
1475
+ },
1476
+ {
1477
+ "Title": "Integration Adapter",
1478
+ "Path": "integration-adapter.md"
1479
+ }
1480
+ ]
1481
+ },
1482
+ {
1483
+ "Title": "Examples",
1484
+ "Children": [
1485
+ {
1486
+ "Title": "Examples Walkthrough",
1487
+ "Path": "examples-walkthrough.md"
1488
+ },
1489
+ {
1490
+ "Title": "Bookstore Example",
1491
+ "Path": "examples/bookstore/BookData.md"
1492
+ },
1493
+ {
1494
+ "Title": "Seattle Multi-Set",
1495
+ "Path": "examples/multi_set_integration/multi_set_step_by_step.md"
1496
+ }
1497
+ ]
1498
+ },
1499
+ {
1500
+ "Title": "Vocabulary",
1501
+ "Children": [
1502
+ {
1503
+ "Title": "Comprehension",
1504
+ "Path": "vocabulary/Comprehension.md"
1505
+ },
1506
+ {
1507
+ "Title": "Entity",
1508
+ "Path": "vocabulary/Entity.md"
1509
+ },
1510
+ {
1511
+ "Title": "GUID",
1512
+ "Path": "vocabulary/GUID.md"
1513
+ },
1514
+ {
1515
+ "Title": "Schema",
1516
+ "Path": "vocabulary/Schema.md"
1517
+ },
1518
+ {
1519
+ "Title": "Set",
1520
+ "Path": "vocabulary/Set.md"
1521
+ },
1522
+ {
1523
+ "Title": "Source",
1524
+ "Path": "vocabulary/Source.md"
1525
+ },
1526
+ {
1527
+ "Title": "Column",
1528
+ "Path": "vocabulary/Column.md"
1529
+ },
1530
+ {
1531
+ "Title": "Record",
1532
+ "Path": "vocabulary/Record.md"
1533
+ },
1534
+ {
1535
+ "Title": "Format",
1536
+ "Path": "vocabulary/Format.md"
1537
+ },
1538
+ {
1539
+ "Title": "Join",
1540
+ "Path": "vocabulary/Join.md"
1541
+ },
1542
+ {
1543
+ "Title": "Snapshot",
1544
+ "Path": "vocabulary/Snapshot.md"
1545
+ },
1546
+ {
1547
+ "Title": "Version",
1548
+ "Path": "vocabulary/Version.md"
1549
+ },
1550
+ {
1551
+ "Title": "Confidence",
1552
+ "Path": "vocabulary/Confidence.md"
1553
+ }
1554
+ ]
1555
+ }
1556
+ ],
990
1557
  "DocFiles": [
991
1558
  ".nojekyll",
992
1559
  "README.md",
1560
+ "_sidebar.md",
1561
+ "_topbar.md",
1562
+ "cli-reference.md",
1563
+ "comprehensions.md",
1564
+ "cover.md",
993
1565
  "examples/bookstore/.gitignore",
994
1566
  "examples/bookstore/BookData.md",
995
1567
  "examples/bookstore/Generate_Bookstore_Comprehension.sh",
@@ -1004,7 +1576,12 @@
1004
1576
  "examples/multi_set_integration/multi_set_step_by_step.md",
1005
1577
  "examples/multi_set_integration/multi_set_step_by_step_overview_diagram.excalidraw.svg",
1006
1578
  "examples/multi_set_integration/part_1_getting_data.md",
1579
+ "examples-walkthrough.md",
1007
1580
  "index.html",
1581
+ "integration-adapter.md",
1582
+ "mapping-files.md",
1583
+ "programmatic-api.md",
1584
+ "rest-api-reference.md",
1008
1585
  "vocabulary/Column.md",
1009
1586
  "vocabulary/Comprehension.md",
1010
1587
  "vocabulary/Confidence.md",
@@ -1027,10 +1604,74 @@
1027
1604
  "Repo": "parime",
1028
1605
  "Group": "meadow",
1029
1606
  "Branch": "master",
1030
- "HasDocs": false,
1031
- "HasCover": false,
1032
- "Sidebar": [],
1033
- "DocFiles": []
1607
+ "HasDocs": true,
1608
+ "HasCover": true,
1609
+ "Sidebar": [
1610
+ {
1611
+ "Title": "Getting Started",
1612
+ "Children": [
1613
+ {
1614
+ "Title": "Introduction",
1615
+ "Path": "README.md"
1616
+ },
1617
+ {
1618
+ "Title": "Quick Start",
1619
+ "Path": "quick-start.md"
1620
+ },
1621
+ {
1622
+ "Title": "Architecture",
1623
+ "Path": "architecture.md"
1624
+ }
1625
+ ]
1626
+ },
1627
+ {
1628
+ "Title": "Lake Types",
1629
+ "Children": [
1630
+ {
1631
+ "Title": "Record Lakes",
1632
+ "Path": "record-lakes.md"
1633
+ },
1634
+ {
1635
+ "Title": "Binary Lakes",
1636
+ "Path": "binary-lakes.md"
1637
+ },
1638
+ {
1639
+ "Title": "Combined Lakes",
1640
+ "Path": "combined-lakes.md"
1641
+ }
1642
+ ]
1643
+ },
1644
+ {
1645
+ "Title": "Advanced",
1646
+ "Children": [
1647
+ {
1648
+ "Title": "WebSocket Protocol",
1649
+ "Path": "websocket.md"
1650
+ },
1651
+ {
1652
+ "Title": "Configuration",
1653
+ "Path": "configuration.md"
1654
+ }
1655
+ ]
1656
+ }
1657
+ ],
1658
+ "DocFiles": [
1659
+ ".nojekyll",
1660
+ "README.md",
1661
+ "_sidebar.md",
1662
+ "architecture.md",
1663
+ "binary-lakes.md",
1664
+ "combined-lakes.md",
1665
+ "configuration.md",
1666
+ "cover.md",
1667
+ "css/docuserve.css",
1668
+ "index.html",
1669
+ "quick-start.md",
1670
+ "record-lakes.md",
1671
+ "retold-catalog.json",
1672
+ "retold-keyword-index.json",
1673
+ "websocket.md"
1674
+ ]
1034
1675
  },
1035
1676
  {
1036
1677
  "Name": "retold-data-service",
@@ -1214,10 +1855,28 @@
1214
1855
  "Repo": "stricture",
1215
1856
  "Group": "meadow",
1216
1857
  "Branch": "master",
1217
- "HasDocs": false,
1858
+ "HasDocs": true,
1218
1859
  "HasCover": false,
1219
1860
  "Sidebar": [],
1220
- "DocFiles": []
1861
+ "DocFiles": [
1862
+ "Command-Authorization.md",
1863
+ "Command-Compile.md",
1864
+ "Command-DataDictionary.md",
1865
+ "Command-DictionaryCSV.md",
1866
+ "Command-Documentation.md",
1867
+ "Command-Full.md",
1868
+ "Command-Info.md",
1869
+ "Command-Meadow.md",
1870
+ "Command-MySQL-Migrate.md",
1871
+ "Command-MySQL.md",
1872
+ "Command-Pict.md",
1873
+ "Command-Relationships.md",
1874
+ "Command-RelationshipsFull.md",
1875
+ "Command-TestObjectContainers.md",
1876
+ "Docuserve-Configuration.md",
1877
+ "MicroDDL-Syntax.md",
1878
+ "Stricture-Legacy-Compiler.md"
1879
+ ]
1221
1880
  }
1222
1881
  ]
1223
1882
  },
@@ -1527,42 +2186,221 @@
1527
2186
  "body-parsing.md",
1528
2187
  "configuration.md",
1529
2188
  "cover.md",
1530
- "getting-started.md",
2189
+ "getting-started.md",
2190
+ "index.html",
2191
+ "middleware.md"
2192
+ ]
2193
+ },
2194
+ {
2195
+ "Name": "orator-static-server",
2196
+ "Repo": "orator-static-server",
2197
+ "Group": "orator",
2198
+ "Branch": "master",
2199
+ "HasDocs": true,
2200
+ "HasCover": true,
2201
+ "Sidebar": [
2202
+ {
2203
+ "Title": "Getting Started",
2204
+ "Children": [
2205
+ {
2206
+ "Title": "Introduction",
2207
+ "Path": "README.md"
2208
+ },
2209
+ {
2210
+ "Title": "Getting Started",
2211
+ "Path": "getting-started.md"
2212
+ }
2213
+ ]
2214
+ },
2215
+ {
2216
+ "Title": "Reference",
2217
+ "Children": [
2218
+ {
2219
+ "Title": "API Reference",
2220
+ "Path": "api-reference.md"
2221
+ },
2222
+ {
2223
+ "Title": "Subdomain Routing",
2224
+ "Path": "subdomain-routing.md"
2225
+ }
2226
+ ]
2227
+ }
2228
+ ],
2229
+ "DocFiles": [
2230
+ ".nojekyll",
2231
+ "README.md",
2232
+ "_sidebar.md",
2233
+ "api-reference.md",
2234
+ "cover.md",
2235
+ "getting-started.md",
2236
+ "index.html",
2237
+ "subdomain-routing.md"
2238
+ ]
2239
+ },
2240
+ {
2241
+ "Name": "tidings",
2242
+ "Repo": "tidings",
2243
+ "Group": "orator",
2244
+ "Branch": "master",
2245
+ "HasDocs": true,
2246
+ "HasCover": true,
2247
+ "Sidebar": [
2248
+ {
2249
+ "Title": "Getting Started",
2250
+ "Children": [
2251
+ {
2252
+ "Title": "Overview",
2253
+ "Path": "README.md"
2254
+ },
2255
+ {
2256
+ "Title": "Rendering Pipeline",
2257
+ "Path": "rendering-pipeline.md"
2258
+ },
2259
+ {
2260
+ "Title": "Rasterizers",
2261
+ "Path": "rasterizers.md"
2262
+ }
2263
+ ]
2264
+ },
2265
+ {
2266
+ "Title": "Reference",
2267
+ "Children": [
2268
+ {
2269
+ "Title": "API Reference",
2270
+ "Path": "api.md"
2271
+ }
2272
+ ]
2273
+ },
2274
+ {
2275
+ "Title": "Retold Ecosystem",
2276
+ "Children": [
2277
+ {
2278
+ "Title": "Orator",
2279
+ "Path": "orator/orator/README.md"
2280
+ },
2281
+ {
2282
+ "Title": "Fable",
2283
+ "Path": "fable/fable/README.md"
2284
+ },
2285
+ {
2286
+ "Title": "FoxHound",
2287
+ "Path": "meadow/foxhound/README.md"
2288
+ },
2289
+ {
2290
+ "Title": "Meadow",
2291
+ "Path": "meadow/meadow/README.md"
2292
+ },
2293
+ {
2294
+ "Title": "Indoctrinate",
2295
+ "Path": "utility/indoctrinate/README.md"
2296
+ }
2297
+ ]
2298
+ }
2299
+ ],
2300
+ "DocFiles": [
2301
+ "README.md",
2302
+ "_sidebar.md",
2303
+ "_topbar.md",
2304
+ "api.md",
2305
+ "cover.md",
2306
+ "rasterizers.md",
2307
+ "rendering-pipeline.md"
2308
+ ]
2309
+ }
2310
+ ]
2311
+ },
2312
+ {
2313
+ "Name": "Pict",
2314
+ "Key": "pict",
2315
+ "Description": "MVC framework: views, templates, providers, forms, TUI",
2316
+ "Modules": [
2317
+ {
2318
+ "Name": "cryptbrau",
2319
+ "Repo": "cryptbrau",
2320
+ "Group": "pict",
2321
+ "Branch": "master",
2322
+ "HasDocs": true,
2323
+ "HasCover": true,
2324
+ "Sidebar": [
2325
+ {
2326
+ "Title": "Getting Started",
2327
+ "Children": [
2328
+ {
2329
+ "Title": "Overview",
2330
+ "Path": "README.md"
2331
+ }
2332
+ ]
2333
+ },
2334
+ {
2335
+ "Title": "Reference",
2336
+ "Children": [
2337
+ {
2338
+ "Title": "API Reference",
2339
+ "Path": "api.md"
2340
+ }
2341
+ ]
2342
+ },
2343
+ {
2344
+ "Title": "Retold Ecosystem",
2345
+ "Children": [
2346
+ {
2347
+ "Title": "Pict",
2348
+ "Path": "pict/pict/README.md"
2349
+ },
2350
+ {
2351
+ "Title": "Pict Application",
2352
+ "Path": "pict/pict-application/README.md"
2353
+ },
2354
+ {
2355
+ "Title": "Fable",
2356
+ "Path": "fable/fable/README.md"
2357
+ },
2358
+ {
2359
+ "Title": "Indoctrinate",
2360
+ "Path": "utility/indoctrinate/README.md"
2361
+ }
2362
+ ]
2363
+ }
2364
+ ],
2365
+ "DocFiles": [
2366
+ ".nojekyll",
2367
+ "README.md",
2368
+ "_sidebar.md",
2369
+ "_topbar.md",
2370
+ "api.md",
2371
+ "cover.md",
2372
+ "css/docuserve.css",
1531
2373
  "index.html",
1532
- "middleware.md"
2374
+ "retold-catalog.json",
2375
+ "retold-keyword-index.json"
1533
2376
  ]
1534
2377
  },
1535
2378
  {
1536
- "Name": "orator-static-server",
1537
- "Repo": "orator-static-server",
1538
- "Group": "orator",
2379
+ "Name": "informary",
2380
+ "Repo": "informary",
2381
+ "Group": "pict",
1539
2382
  "Branch": "master",
1540
2383
  "HasDocs": true,
1541
2384
  "HasCover": true,
1542
2385
  "Sidebar": [
1543
2386
  {
1544
- "Title": "Getting Started",
2387
+ "Title": "Home",
2388
+ "Path": "README.md"
2389
+ },
2390
+ {
2391
+ "Title": "Documentation",
1545
2392
  "Children": [
1546
2393
  {
1547
- "Title": "Introduction",
2394
+ "Title": "Getting Started",
1548
2395
  "Path": "README.md"
1549
2396
  },
1550
- {
1551
- "Title": "Getting Started",
1552
- "Path": "getting-started.md"
1553
- }
1554
- ]
1555
- },
1556
- {
1557
- "Title": "Reference",
1558
- "Children": [
1559
2397
  {
1560
2398
  "Title": "API Reference",
1561
- "Path": "api-reference.md"
2399
+ "Path": "api.md"
1562
2400
  },
1563
2401
  {
1564
- "Title": "Subdomain Routing",
1565
- "Path": "subdomain-routing.md"
2402
+ "Title": "Usage Lifecycle",
2403
+ "Path": "lifecycle.md"
1566
2404
  }
1567
2405
  ]
1568
2406
  }
@@ -1571,50 +2409,14 @@
1571
2409
  ".nojekyll",
1572
2410
  "README.md",
1573
2411
  "_sidebar.md",
1574
- "api-reference.md",
2412
+ "_topbar.md",
2413
+ "api.md",
1575
2414
  "cover.md",
1576
- "getting-started.md",
2415
+ "css/docuserve.css",
1577
2416
  "index.html",
1578
- "subdomain-routing.md"
2417
+ "lifecycle.md"
1579
2418
  ]
1580
2419
  },
1581
- {
1582
- "Name": "tidings",
1583
- "Repo": "tidings",
1584
- "Group": "orator",
1585
- "Branch": "master",
1586
- "HasDocs": false,
1587
- "HasCover": false,
1588
- "Sidebar": [],
1589
- "DocFiles": []
1590
- }
1591
- ]
1592
- },
1593
- {
1594
- "Name": "Pict",
1595
- "Key": "pict",
1596
- "Description": "MVC framework: views, templates, providers, forms, TUI",
1597
- "Modules": [
1598
- {
1599
- "Name": "cryptbrau",
1600
- "Repo": "cryptbrau",
1601
- "Group": "pict",
1602
- "Branch": "master",
1603
- "HasDocs": false,
1604
- "HasCover": false,
1605
- "Sidebar": [],
1606
- "DocFiles": []
1607
- },
1608
- {
1609
- "Name": "informary",
1610
- "Repo": "informary",
1611
- "Group": "pict",
1612
- "Branch": "master",
1613
- "HasDocs": false,
1614
- "HasCover": false,
1615
- "Sidebar": [],
1616
- "DocFiles": []
1617
- },
1618
2420
  {
1619
2421
  "Name": "pict",
1620
2422
  "Repo": "pict",
@@ -1746,9 +2548,6 @@
1746
2548
  "application_lifecycle/README.md",
1747
2549
  "applications/README.md",
1748
2550
  "cover.md",
1749
- "dependencies/docsify-4.js",
1750
- "dependencies/pict.min.js",
1751
- "dependencies/vue.css",
1752
2551
  "design_philosophy/applications_providers_views_and_solvers.md",
1753
2552
  "design_philosophy/config.json",
1754
2553
  "design_philosophy/model_view_controller_ohmy.md",
@@ -1899,7 +2698,6 @@
1899
2698
  "configuration.md",
1900
2699
  "content-authoring.md",
1901
2700
  "cover.md",
1902
- "css/docuserve.css",
1903
2701
  "deployment.md",
1904
2702
  "diagrams.md",
1905
2703
  "example_applications/contacts-app/README.md",
@@ -1937,11 +2735,7 @@
1937
2735
  "example_applications/todo-app/tags.md",
1938
2736
  "example_applications/todo-app/tasks.md",
1939
2737
  "index.html",
1940
- "js/pict.min.js",
1941
- "js/pict.min.js.map",
1942
2738
  "latex.md",
1943
- "pict-docuserve.min.js",
1944
- "pict-docuserve.min.js.map",
1945
2739
  "retold-catalog.json",
1946
2740
  "retold-keyword-index.json",
1947
2741
  "README.md",
@@ -1980,46 +2774,247 @@
1980
2774
  "tasks.md"
1981
2775
  ]
1982
2776
  },
1983
- {
1984
- "Name": "pict-nonlinearconfig",
1985
- "Repo": "pict-nonlinearconfig",
1986
- "Group": "pict",
1987
- "Branch": "master",
1988
- "HasDocs": false,
1989
- "HasCover": false,
1990
- "Sidebar": [],
1991
- "DocFiles": []
1992
- },
1993
- {
1994
- "Name": "pict-panel",
1995
- "Repo": "pict-panel",
1996
- "Group": "pict",
1997
- "Branch": "master",
1998
- "HasDocs": false,
1999
- "HasCover": false,
2000
- "Sidebar": [],
2001
- "DocFiles": []
2002
- },
2003
- {
2004
- "Name": "pict-provider",
2005
- "Repo": "pict-provider",
2006
- "Group": "pict",
2007
- "Branch": "master",
2008
- "HasDocs": false,
2009
- "HasCover": false,
2010
- "Sidebar": [],
2011
- "DocFiles": []
2012
- },
2013
- {
2014
- "Name": "pict-router",
2015
- "Repo": "pict-router",
2016
- "Group": "pict",
2017
- "Branch": "master",
2018
- "HasDocs": false,
2019
- "HasCover": false,
2020
- "Sidebar": [],
2021
- "DocFiles": []
2022
- },
2777
+ {
2778
+ "Name": "pict-nonlinearconfig",
2779
+ "Repo": "pict-nonlinearconfig",
2780
+ "Group": "pict",
2781
+ "Branch": "master",
2782
+ "HasDocs": false,
2783
+ "HasCover": false,
2784
+ "Sidebar": [],
2785
+ "DocFiles": []
2786
+ },
2787
+ {
2788
+ "Name": "pict-panel",
2789
+ "Repo": "pict-panel",
2790
+ "Group": "pict",
2791
+ "Branch": "master",
2792
+ "HasDocs": false,
2793
+ "HasCover": false,
2794
+ "Sidebar": [],
2795
+ "DocFiles": []
2796
+ },
2797
+ {
2798
+ "Name": "pict-provider",
2799
+ "Repo": "pict-provider",
2800
+ "Group": "pict",
2801
+ "Branch": "master",
2802
+ "HasDocs": true,
2803
+ "HasCover": true,
2804
+ "Sidebar": [
2805
+ {
2806
+ "Title": "Getting Started",
2807
+ "Children": [
2808
+ {
2809
+ "Title": "Overview",
2810
+ "Path": "README.md"
2811
+ },
2812
+ {
2813
+ "Title": "Lifecycle",
2814
+ "Path": "lifecycle.md"
2815
+ }
2816
+ ]
2817
+ },
2818
+ {
2819
+ "Title": "Reference",
2820
+ "Children": [
2821
+ {
2822
+ "Title": "API Reference",
2823
+ "Path": "api.md"
2824
+ }
2825
+ ]
2826
+ },
2827
+ {
2828
+ "Title": "Retold Ecosystem",
2829
+ "Children": [
2830
+ {
2831
+ "Title": "Pict",
2832
+ "Path": "pict/pict/README.md"
2833
+ },
2834
+ {
2835
+ "Title": "Pict Application",
2836
+ "Path": "pict/pict-application/README.md"
2837
+ },
2838
+ {
2839
+ "Title": "Pict View",
2840
+ "Path": "pict/pict-view/README.md"
2841
+ },
2842
+ {
2843
+ "Title": "Fable",
2844
+ "Path": "fable/fable/README.md"
2845
+ },
2846
+ {
2847
+ "Title": "Fable Service Base",
2848
+ "Path": "fable/fable-serviceproviderbase/README.md"
2849
+ },
2850
+ {
2851
+ "Title": "Indoctrinate",
2852
+ "Path": "utility/indoctrinate/README.md"
2853
+ }
2854
+ ]
2855
+ }
2856
+ ],
2857
+ "DocFiles": [
2858
+ ".nojekyll",
2859
+ "README.md",
2860
+ "_sidebar.md",
2861
+ "_topbar.md",
2862
+ "api.md",
2863
+ "cover.md",
2864
+ "css/docuserve.css",
2865
+ "index.html",
2866
+ "lifecycle.md",
2867
+ "retold-catalog.json",
2868
+ "retold-keyword-index.json"
2869
+ ]
2870
+ },
2871
+ {
2872
+ "Name": "pict-router",
2873
+ "Repo": "pict-router",
2874
+ "Group": "pict",
2875
+ "Branch": "master",
2876
+ "HasDocs": true,
2877
+ "HasCover": true,
2878
+ "Sidebar": [
2879
+ {
2880
+ "Title": "Getting Started",
2881
+ "Children": [
2882
+ {
2883
+ "Title": "Overview",
2884
+ "Path": "README.md"
2885
+ }
2886
+ ]
2887
+ },
2888
+ {
2889
+ "Title": "Reference",
2890
+ "Children": [
2891
+ {
2892
+ "Title": "API Reference",
2893
+ "Path": "api.md"
2894
+ }
2895
+ ]
2896
+ },
2897
+ {
2898
+ "Title": "Retold Ecosystem",
2899
+ "Children": [
2900
+ {
2901
+ "Title": "Pict",
2902
+ "Path": "pict/pict/README.md"
2903
+ },
2904
+ {
2905
+ "Title": "Pict Application",
2906
+ "Path": "pict/pict-application/README.md"
2907
+ },
2908
+ {
2909
+ "Title": "Pict View",
2910
+ "Path": "pict/pict-view/README.md"
2911
+ },
2912
+ {
2913
+ "Title": "Pict Provider",
2914
+ "Path": "pict/pict-provider/README.md"
2915
+ },
2916
+ {
2917
+ "Title": "Fable",
2918
+ "Path": "fable/fable/README.md"
2919
+ },
2920
+ {
2921
+ "Title": "Indoctrinate",
2922
+ "Path": "utility/indoctrinate/README.md"
2923
+ }
2924
+ ]
2925
+ }
2926
+ ],
2927
+ "DocFiles": [
2928
+ ".nojekyll",
2929
+ "README.md",
2930
+ "_sidebar.md",
2931
+ "_topbar.md",
2932
+ "api.md",
2933
+ "cover.md",
2934
+ "css/docuserve.css",
2935
+ "index.html",
2936
+ "retold-catalog.json",
2937
+ "retold-keyword-index.json"
2938
+ ]
2939
+ },
2940
+ {
2941
+ "Name": "pict-section-content",
2942
+ "Repo": "pict-section-content",
2943
+ "Group": "pict",
2944
+ "Branch": "master",
2945
+ "HasDocs": true,
2946
+ "HasCover": true,
2947
+ "Sidebar": [
2948
+ {
2949
+ "Title": "Getting Started",
2950
+ "Children": [
2951
+ {
2952
+ "Title": "Overview",
2953
+ "Path": "README.md"
2954
+ },
2955
+ {
2956
+ "Title": "Link Resolver",
2957
+ "Path": "link-resolver.md"
2958
+ },
2959
+ {
2960
+ "Title": "Extending the View",
2961
+ "Path": "extending.md"
2962
+ }
2963
+ ]
2964
+ },
2965
+ {
2966
+ "Title": "Reference",
2967
+ "Children": [
2968
+ {
2969
+ "Title": "API Reference",
2970
+ "Path": "api.md"
2971
+ }
2972
+ ]
2973
+ },
2974
+ {
2975
+ "Title": "Retold Ecosystem",
2976
+ "Children": [
2977
+ {
2978
+ "Title": "Pict",
2979
+ "Path": "pict/pict/README.md"
2980
+ },
2981
+ {
2982
+ "Title": "Pict Application",
2983
+ "Path": "pict/pict-application/README.md"
2984
+ },
2985
+ {
2986
+ "Title": "Pict View",
2987
+ "Path": "pict/pict-view/README.md"
2988
+ },
2989
+ {
2990
+ "Title": "Pict Provider",
2991
+ "Path": "pict/pict-provider/README.md"
2992
+ },
2993
+ {
2994
+ "Title": "Pict Docuserve",
2995
+ "Path": "pict/pict-docuserve/README.md"
2996
+ },
2997
+ {
2998
+ "Title": "Fable",
2999
+ "Path": "fable/fable/README.md"
3000
+ },
3001
+ {
3002
+ "Title": "Fable Service Base",
3003
+ "Path": "fable/fable-serviceproviderbase/README.md"
3004
+ }
3005
+ ]
3006
+ }
3007
+ ],
3008
+ "DocFiles": [
3009
+ "README.md",
3010
+ "_sidebar.md",
3011
+ "_topbar.md",
3012
+ "api.md",
3013
+ "cover.md",
3014
+ "extending.md",
3015
+ "link-resolver.md"
3016
+ ]
3017
+ },
2023
3018
  {
2024
3019
  "Name": "pict-section-entitymanagement",
2025
3020
  "Repo": "pict-section-entitymanagement",
@@ -2314,10 +3309,74 @@
2314
3309
  "Repo": "pict-section-tuigrid",
2315
3310
  "Group": "pict",
2316
3311
  "Branch": "master",
2317
- "HasDocs": false,
2318
- "HasCover": false,
2319
- "Sidebar": [],
2320
- "DocFiles": []
3312
+ "HasDocs": true,
3313
+ "HasCover": true,
3314
+ "Sidebar": [
3315
+ {
3316
+ "Title": "Getting Started",
3317
+ "Children": [
3318
+ {
3319
+ "Title": "Overview",
3320
+ "Path": "README.md"
3321
+ },
3322
+ {
3323
+ "Title": "Configuration",
3324
+ "Path": "configuration.md"
3325
+ }
3326
+ ]
3327
+ },
3328
+ {
3329
+ "Title": "Reference",
3330
+ "Children": [
3331
+ {
3332
+ "Title": "API Reference",
3333
+ "Path": "api.md"
3334
+ }
3335
+ ]
3336
+ },
3337
+ {
3338
+ "Title": "Retold Ecosystem",
3339
+ "Children": [
3340
+ {
3341
+ "Title": "Pict",
3342
+ "Path": "pict/pict/README.md"
3343
+ },
3344
+ {
3345
+ "Title": "Pict Application",
3346
+ "Path": "pict/pict-application/README.md"
3347
+ },
3348
+ {
3349
+ "Title": "Pict View",
3350
+ "Path": "pict/pict-view/README.md"
3351
+ },
3352
+ {
3353
+ "Title": "Pict Provider",
3354
+ "Path": "pict/pict-provider/README.md"
3355
+ },
3356
+ {
3357
+ "Title": "Fable",
3358
+ "Path": "fable/fable/README.md"
3359
+ },
3360
+ {
3361
+ "Title": "Indoctrinate",
3362
+ "Path": "utility/indoctrinate/README.md"
3363
+ }
3364
+ ]
3365
+ }
3366
+ ],
3367
+ "DocFiles": [
3368
+ ".nojekyll",
3369
+ "README.md",
3370
+ "_sidebar.md",
3371
+ "_topbar.md",
3372
+ "api.md",
3373
+ "configuration.md",
3374
+ "cover.md",
3375
+ "css/docuserve.css",
3376
+ "index.html",
3377
+ "retold-catalog.json",
3378
+ "retold-keyword-index.json"
3379
+ ]
2321
3380
  },
2322
3381
  {
2323
3382
  "Name": "pict-service-commandlineutility",
@@ -2416,16 +3475,259 @@
2416
3475
  "index.html"
2417
3476
  ]
2418
3477
  },
2419
- {
2420
- "Name": "pict-template",
2421
- "Repo": "pict-template",
2422
- "Group": "pict",
2423
- "Branch": "master",
2424
- "HasDocs": false,
2425
- "HasCover": false,
2426
- "Sidebar": [],
2427
- "DocFiles": []
2428
- },
3478
+ {
3479
+ "Name": "pict-template",
3480
+ "Repo": "pict-template",
3481
+ "Group": "pict",
3482
+ "Branch": "master",
3483
+ "HasDocs": true,
3484
+ "HasCover": true,
3485
+ "Sidebar": [
3486
+ {
3487
+ "Title": "Getting Started",
3488
+ "Children": [
3489
+ {
3490
+ "Title": "Overview",
3491
+ "Path": "README.md"
3492
+ }
3493
+ ]
3494
+ },
3495
+ {
3496
+ "Title": "Reference",
3497
+ "Children": [
3498
+ {
3499
+ "Title": "API Reference",
3500
+ "Path": "api.md"
3501
+ }
3502
+ ]
3503
+ },
3504
+ {
3505
+ "Title": "Examples",
3506
+ "Children": [
3507
+ {
3508
+ "Title": "Data & Lists",
3509
+ "Path": "examples-data-and-lists.md"
3510
+ },
3511
+ {
3512
+ "Title": "Conditionals & Logic",
3513
+ "Path": "examples-conditionals-and-logic.md"
3514
+ },
3515
+ {
3516
+ "Title": "Custom Expressions",
3517
+ "Path": "examples-custom-expressions.md"
3518
+ }
3519
+ ]
3520
+ },
3521
+ {
3522
+ "Title": "Retold Ecosystem",
3523
+ "Children": [
3524
+ {
3525
+ "Title": "Pict",
3526
+ "Path": "pict/pict/README.md"
3527
+ },
3528
+ {
3529
+ "Title": "Pict Application",
3530
+ "Path": "pict/pict-application/README.md"
3531
+ },
3532
+ {
3533
+ "Title": "Pict View",
3534
+ "Path": "pict/pict-view/README.md"
3535
+ },
3536
+ {
3537
+ "Title": "Pict Provider",
3538
+ "Path": "pict/pict-provider/README.md"
3539
+ },
3540
+ {
3541
+ "Title": "Fable",
3542
+ "Path": "fable/fable/README.md"
3543
+ },
3544
+ {
3545
+ "Title": "Indoctrinate",
3546
+ "Path": "utility/indoctrinate/README.md"
3547
+ }
3548
+ ]
3549
+ }
3550
+ ],
3551
+ "DocFiles": [
3552
+ "README.md",
3553
+ "_sidebar.md",
3554
+ "_topbar.md",
3555
+ "api.md",
3556
+ "cover.md",
3557
+ "examples-conditionals-and-logic.md",
3558
+ "examples-custom-expressions.md",
3559
+ "examples-data-and-lists.md"
3560
+ ]
3561
+ },
3562
+ {
3563
+ "Name": "pict-terminalui",
3564
+ "Repo": "pict-terminalui",
3565
+ "Group": "pict",
3566
+ "Branch": "master",
3567
+ "HasDocs": true,
3568
+ "HasCover": true,
3569
+ "Sidebar": [
3570
+ {
3571
+ "Title": "Getting Started",
3572
+ "Children": [
3573
+ {
3574
+ "Title": "Quick Start",
3575
+ "Path": "README.md"
3576
+ },
3577
+ {
3578
+ "Title": "Building an App",
3579
+ "Path": "building-an-app.md"
3580
+ }
3581
+ ]
3582
+ },
3583
+ {
3584
+ "Title": "Containers",
3585
+ "Children": [
3586
+ {
3587
+ "Title": "Box",
3588
+ "Path": "widgets/box.md"
3589
+ },
3590
+ {
3591
+ "Title": "Form",
3592
+ "Path": "widgets/form.md"
3593
+ },
3594
+ {
3595
+ "Title": "Scrollable Box",
3596
+ "Path": "widgets/scrollablebox.md"
3597
+ }
3598
+ ]
3599
+ },
3600
+ {
3601
+ "Title": "Text Display",
3602
+ "Children": [
3603
+ {
3604
+ "Title": "Text",
3605
+ "Path": "widgets/text.md"
3606
+ },
3607
+ {
3608
+ "Title": "Log",
3609
+ "Path": "widgets/log.md"
3610
+ },
3611
+ {
3612
+ "Title": "Table",
3613
+ "Path": "widgets/table.md"
3614
+ },
3615
+ {
3616
+ "Title": "List Table",
3617
+ "Path": "widgets/listtable.md"
3618
+ }
3619
+ ]
3620
+ },
3621
+ {
3622
+ "Title": "Text Input",
3623
+ "Children": [
3624
+ {
3625
+ "Title": "Textbox",
3626
+ "Path": "widgets/textbox.md"
3627
+ },
3628
+ {
3629
+ "Title": "Textarea",
3630
+ "Path": "widgets/textarea.md"
3631
+ }
3632
+ ]
3633
+ },
3634
+ {
3635
+ "Title": "Selection",
3636
+ "Children": [
3637
+ {
3638
+ "Title": "List",
3639
+ "Path": "widgets/list.md"
3640
+ },
3641
+ {
3642
+ "Title": "List Bar",
3643
+ "Path": "widgets/listbar.md"
3644
+ },
3645
+ {
3646
+ "Title": "Checkbox",
3647
+ "Path": "widgets/checkbox.md"
3648
+ },
3649
+ {
3650
+ "Title": "Radio Button",
3651
+ "Path": "widgets/radiobutton.md"
3652
+ }
3653
+ ]
3654
+ },
3655
+ {
3656
+ "Title": "Actions",
3657
+ "Children": [
3658
+ {
3659
+ "Title": "Button",
3660
+ "Path": "widgets/button.md"
3661
+ },
3662
+ {
3663
+ "Title": "Progress Bar",
3664
+ "Path": "widgets/progressbar.md"
3665
+ }
3666
+ ]
3667
+ },
3668
+ {
3669
+ "Title": "Dialogs",
3670
+ "Children": [
3671
+ {
3672
+ "Title": "Prompt",
3673
+ "Path": "widgets/prompt.md"
3674
+ },
3675
+ {
3676
+ "Title": "Question",
3677
+ "Path": "widgets/question.md"
3678
+ },
3679
+ {
3680
+ "Title": "Message",
3681
+ "Path": "widgets/message.md"
3682
+ },
3683
+ {
3684
+ "Title": "Loading",
3685
+ "Path": "widgets/loading.md"
3686
+ }
3687
+ ]
3688
+ },
3689
+ {
3690
+ "Title": "File System",
3691
+ "Children": [
3692
+ {
3693
+ "Title": "File Manager",
3694
+ "Path": "widgets/filemanager.md"
3695
+ }
3696
+ ]
3697
+ }
3698
+ ],
3699
+ "DocFiles": [
3700
+ ".nojekyll",
3701
+ "README.md",
3702
+ "_sidebar.md",
3703
+ "_topbar.md",
3704
+ "building-an-app.md",
3705
+ "cover.md",
3706
+ "index.html",
3707
+ "retold-catalog.json",
3708
+ "retold-keyword-index.json",
3709
+ "widgets/box.md",
3710
+ "widgets/button.md",
3711
+ "widgets/checkbox.md",
3712
+ "widgets/filemanager.md",
3713
+ "widgets/form.md",
3714
+ "widgets/list.md",
3715
+ "widgets/listbar.md",
3716
+ "widgets/listtable.md",
3717
+ "widgets/loading.md",
3718
+ "widgets/log.md",
3719
+ "widgets/message.md",
3720
+ "widgets/progressbar.md",
3721
+ "widgets/prompt.md",
3722
+ "widgets/question.md",
3723
+ "widgets/radiobutton.md",
3724
+ "widgets/scrollablebox.md",
3725
+ "widgets/table.md",
3726
+ "widgets/text.md",
3727
+ "widgets/textarea.md",
3728
+ "widgets/textbox.md"
3729
+ ]
3730
+ },
2429
3731
  {
2430
3732
  "Name": "pict-view",
2431
3733
  "Repo": "pict-view",
@@ -2529,16 +3831,6 @@
2529
3831
  "Sidebar": [],
2530
3832
  "DocFiles": []
2531
3833
  },
2532
- {
2533
- "Name": "choreographic",
2534
- "Repo": "choreographic",
2535
- "Group": "utility",
2536
- "Branch": "master",
2537
- "HasDocs": false,
2538
- "HasCover": false,
2539
- "Sidebar": [],
2540
- "DocFiles": []
2541
- },
2542
3834
  {
2543
3835
  "Name": "cumulation",
2544
3836
  "Repo": "cumulation",
@@ -2549,16 +3841,6 @@
2549
3841
  "Sidebar": [],
2550
3842
  "DocFiles": []
2551
3843
  },
2552
- {
2553
- "Name": "elucidator",
2554
- "Repo": "elucidator",
2555
- "Group": "utility",
2556
- "Branch": "master",
2557
- "HasDocs": false,
2558
- "HasCover": false,
2559
- "Sidebar": [],
2560
- "DocFiles": []
2561
- },
2562
3844
  {
2563
3845
  "Name": "indoctrinate",
2564
3846
  "Repo": "indoctrinate",
@@ -2667,16 +3949,6 @@
2667
3949
  "architecture.md"
2668
3950
  ]
2669
3951
  },
2670
- {
2671
- "Name": "js-editor-extension",
2672
- "Repo": "js-editor-extension",
2673
- "Group": "utility",
2674
- "Branch": "master",
2675
- "HasDocs": false,
2676
- "HasCover": false,
2677
- "Sidebar": [],
2678
- "DocFiles": []
2679
- },
2680
3952
  {
2681
3953
  "Name": "manyfest",
2682
3954
  "Repo": "manyfest",
@@ -2753,16 +4025,6 @@
2753
4025
  "writing.md"
2754
4026
  ]
2755
4027
  },
2756
- {
2757
- "Name": "merquerial",
2758
- "Repo": "merquerial",
2759
- "Group": "utility",
2760
- "Branch": "master",
2761
- "HasDocs": false,
2762
- "HasCover": false,
2763
- "Sidebar": [],
2764
- "DocFiles": []
2765
- },
2766
4028
  {
2767
4029
  "Name": "pict-cruisecontrol",
2768
4030
  "Repo": "pict-cruisecontrol",
@@ -2778,30 +4040,329 @@
2778
4040
  "Repo": "precedent",
2779
4041
  "Group": "utility",
2780
4042
  "Branch": "master",
2781
- "HasDocs": false,
2782
- "HasCover": false,
2783
- "Sidebar": [],
2784
- "DocFiles": []
4043
+ "HasDocs": true,
4044
+ "HasCover": true,
4045
+ "Sidebar": [
4046
+ {
4047
+ "Title": "Getting Started",
4048
+ "Children": [
4049
+ {
4050
+ "Title": "Overview",
4051
+ "Path": "README.md"
4052
+ }
4053
+ ]
4054
+ },
4055
+ {
4056
+ "Title": "Reference",
4057
+ "Children": [
4058
+ {
4059
+ "Title": "API Reference",
4060
+ "Path": "api.md"
4061
+ }
4062
+ ]
4063
+ },
4064
+ {
4065
+ "Title": "Examples",
4066
+ "Children": [
4067
+ {
4068
+ "Title": "Usage Patterns",
4069
+ "Path": "examples.md"
4070
+ }
4071
+ ]
4072
+ },
4073
+ {
4074
+ "Title": "Retold Ecosystem",
4075
+ "Children": [
4076
+ {
4077
+ "Title": "Pict",
4078
+ "Path": "pict/pict/README.md"
4079
+ },
4080
+ {
4081
+ "Title": "Pict Template",
4082
+ "Path": "pict/pict-template/README.md"
4083
+ },
4084
+ {
4085
+ "Title": "Fable",
4086
+ "Path": "fable/fable/README.md"
4087
+ },
4088
+ {
4089
+ "Title": "Fable Settings",
4090
+ "Path": "fable/fable-settings/README.md"
4091
+ },
4092
+ {
4093
+ "Title": "Indoctrinate",
4094
+ "Path": "utility/indoctrinate/README.md"
4095
+ }
4096
+ ]
4097
+ }
4098
+ ],
4099
+ "DocFiles": [
4100
+ ".nojekyll",
4101
+ "README.md",
4102
+ "_sidebar.md",
4103
+ "_topbar.md",
4104
+ "api.md",
4105
+ "cover.md",
4106
+ "css/docuserve.css",
4107
+ "examples.md",
4108
+ "index.html",
4109
+ "retold-catalog.json",
4110
+ "retold-keyword-index.json"
4111
+ ]
2785
4112
  },
2786
4113
  {
2787
4114
  "Name": "quackage",
2788
4115
  "Repo": "quackage",
2789
4116
  "Group": "utility",
2790
4117
  "Branch": "master",
2791
- "HasDocs": false,
2792
- "HasCover": false,
2793
- "Sidebar": [],
2794
- "DocFiles": []
4118
+ "HasDocs": true,
4119
+ "HasCover": true,
4120
+ "Sidebar": [
4121
+ {
4122
+ "Title": "Quackage",
4123
+ "Path": "README.md"
4124
+ },
4125
+ {
4126
+ "Title": "Package Management",
4127
+ "Children": [
4128
+ {
4129
+ "Title": "Overview",
4130
+ "Path": "commands/package-management/README.md"
4131
+ },
4132
+ {
4133
+ "Title": "updatepackage",
4134
+ "Path": "commands/package-management/updatepackage.md"
4135
+ },
4136
+ {
4137
+ "Title": "luxuryupdatepackage",
4138
+ "Path": "commands/package-management/luxuryupdatepackage.md"
4139
+ },
4140
+ {
4141
+ "Title": "lint",
4142
+ "Path": "commands/package-management/lint.md"
4143
+ }
4144
+ ]
4145
+ },
4146
+ {
4147
+ "Title": "Boilerplate",
4148
+ "Children": [
4149
+ {
4150
+ "Title": "Overview",
4151
+ "Path": "commands/boilerplate/README.md"
4152
+ },
4153
+ {
4154
+ "Title": "boilerplate",
4155
+ "Path": "commands/boilerplate/boilerplate.md"
4156
+ },
4157
+ {
4158
+ "Title": "listtemplates",
4159
+ "Path": "commands/boilerplate/listtemplates.md"
4160
+ },
4161
+ {
4162
+ "Title": "buildtemplates",
4163
+ "Path": "commands/boilerplate/buildtemplates.md"
4164
+ }
4165
+ ]
4166
+ },
4167
+ {
4168
+ "Title": "Compiling",
4169
+ "Children": [
4170
+ {
4171
+ "Title": "Overview",
4172
+ "Path": "commands/compiling/README.md"
4173
+ },
4174
+ {
4175
+ "Title": "stricture-compile",
4176
+ "Path": "commands/compiling/stricture-compile.md"
4177
+ },
4178
+ {
4179
+ "Title": "stricture-legaacy",
4180
+ "Path": "commands/compiling/stricture-legaacy.md"
4181
+ },
4182
+ {
4183
+ "Title": "assemble_json_views",
4184
+ "Path": "commands/compiling/assemble_json_views.md"
4185
+ }
4186
+ ]
4187
+ },
4188
+ {
4189
+ "Title": "Building",
4190
+ "Children": [
4191
+ {
4192
+ "Title": "Overview",
4193
+ "Path": "commands/building/README.md"
4194
+ },
4195
+ {
4196
+ "Title": "build",
4197
+ "Path": "commands/building/build.md"
4198
+ },
4199
+ {
4200
+ "Title": "copy-files-from-to",
4201
+ "Path": "commands/building/copy-files-from-to.md"
4202
+ },
4203
+ {
4204
+ "Title": "run-mocha-tests",
4205
+ "Path": "commands/building/run-mocha-tests.md"
4206
+ }
4207
+ ]
4208
+ },
4209
+ {
4210
+ "Title": "Documentation",
4211
+ "Children": [
4212
+ {
4213
+ "Title": "Overview",
4214
+ "Path": "commands/documentation/README.md"
4215
+ },
4216
+ {
4217
+ "Title": "generate-documentation",
4218
+ "Path": "commands/documentation/generate-documentation.md"
4219
+ },
4220
+ {
4221
+ "Title": "indoctrinate",
4222
+ "Path": "commands/documentation/indoctrinate.md"
4223
+ },
4224
+ {
4225
+ "Title": "indoctrinate-index",
4226
+ "Path": "commands/documentation/indoctrinate-index.md"
4227
+ },
4228
+ {
4229
+ "Title": "docuserve-inject",
4230
+ "Path": "commands/documentation/docuserve-inject.md"
4231
+ },
4232
+ {
4233
+ "Title": "prepare-docs",
4234
+ "Path": "commands/documentation/prepare-docs.md"
4235
+ },
4236
+ {
4237
+ "Title": "prepare-local",
4238
+ "Path": "commands/documentation/prepare-local.md"
4239
+ },
4240
+ {
4241
+ "Title": "docs-serve",
4242
+ "Path": "commands/documentation/docs-serve.md"
4243
+ }
4244
+ ]
4245
+ }
4246
+ ],
4247
+ "DocFiles": [
4248
+ ".nojekyll",
4249
+ "README.md",
4250
+ "_sidebar.md",
4251
+ "_topbar.md",
4252
+ "commands/boilerplate/README.md",
4253
+ "commands/boilerplate/boilerplate.md",
4254
+ "commands/boilerplate/buildtemplates.md",
4255
+ "commands/boilerplate/listtemplates.md",
4256
+ "commands/building/README.md",
4257
+ "commands/building/build.md",
4258
+ "commands/building/copy-files-from-to.md",
4259
+ "commands/building/run-mocha-tests.md",
4260
+ "commands/compiling/README.md",
4261
+ "commands/compiling/assemble_json_views.md",
4262
+ "commands/compiling/stricture-compile.md",
4263
+ "commands/compiling/stricture-legaacy.md",
4264
+ "commands/documentation/README.md",
4265
+ "commands/documentation/docs-serve.md",
4266
+ "commands/documentation/docuserve-inject.md",
4267
+ "commands/documentation/generate-documentation.md",
4268
+ "commands/documentation/indoctrinate-index.md",
4269
+ "commands/documentation/indoctrinate.md",
4270
+ "commands/documentation/prepare-docs.md",
4271
+ "commands/documentation/prepare-local.md",
4272
+ "commands/package-management/README.md",
4273
+ "commands/package-management/lint.md",
4274
+ "commands/package-management/luxuryupdatepackage.md",
4275
+ "commands/package-management/updatepackage.md",
4276
+ "cover.md",
4277
+ "errorpage.md",
4278
+ "index.html",
4279
+ "retold-catalog.json",
4280
+ "retold-keyword-index.json"
4281
+ ]
2795
4282
  },
2796
4283
  {
2797
4284
  "Name": "ultravisor",
2798
4285
  "Repo": "ultravisor",
2799
4286
  "Group": "utility",
2800
4287
  "Branch": "master",
2801
- "HasDocs": false,
2802
- "HasCover": false,
2803
- "Sidebar": [],
2804
- "DocFiles": []
4288
+ "HasDocs": true,
4289
+ "HasCover": true,
4290
+ "Sidebar": [
4291
+ {
4292
+ "Title": "Getting Started",
4293
+ "Children": [
4294
+ {
4295
+ "Title": "Overview",
4296
+ "Path": "overview.md"
4297
+ },
4298
+ {
4299
+ "Title": "Quick Start",
4300
+ "Path": "quickstart.md"
4301
+ },
4302
+ {
4303
+ "Title": "Architecture",
4304
+ "Path": "architecture.md"
4305
+ }
4306
+ ]
4307
+ },
4308
+ {
4309
+ "Title": "Features",
4310
+ "Children": [
4311
+ {
4312
+ "Title": "Tasks",
4313
+ "Path": "features/tasks.md"
4314
+ },
4315
+ {
4316
+ "Title": "Operations",
4317
+ "Path": "features/operations.md"
4318
+ },
4319
+ {
4320
+ "Title": "Scheduling",
4321
+ "Path": "features/scheduling.md"
4322
+ },
4323
+ {
4324
+ "Title": "Manifests",
4325
+ "Path": "features/manifests.md"
4326
+ }
4327
+ ]
4328
+ },
4329
+ {
4330
+ "Title": "Reference",
4331
+ "Children": [
4332
+ {
4333
+ "Title": "API Server",
4334
+ "Path": "features/api.md"
4335
+ },
4336
+ {
4337
+ "Title": "CLI Commands",
4338
+ "Path": "features/cli.md"
4339
+ },
4340
+ {
4341
+ "Title": "Configuration",
4342
+ "Path": "features/configuration.md"
4343
+ }
4344
+ ]
4345
+ }
4346
+ ],
4347
+ "DocFiles": [
4348
+ ".nojekyll",
4349
+ "_sidebar.md",
4350
+ "_topbar.md",
4351
+ "architecture.md",
4352
+ "cover.md",
4353
+ "features/api.md",
4354
+ "features/cli.md",
4355
+ "features/configuration.md",
4356
+ "features/manifests.md",
4357
+ "features/operations.md",
4358
+ "features/scheduling.md",
4359
+ "features/tasks.md",
4360
+ "index.html",
4361
+ "overview.md",
4362
+ "quickstart.md",
4363
+ "retold-catalog.json",
4364
+ "retold-keyword-index.json"
4365
+ ]
2805
4366
  }
2806
4367
  ]
2807
4368
  },