ApiLogicServer 15.0.37__py3-none-any.whl → 15.0.40__py3-none-any.whl

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 (55) hide show
  1. api_logic_server_cli/api_logic_server.py +2 -2
  2. api_logic_server_cli/api_logic_server_info.yaml +2 -2
  3. api_logic_server_cli/genai/genai_svcs.py +4 -3
  4. api_logic_server_cli/prototypes/base/.copilot-instructions.md +10 -0
  5. api_logic_server_cli/prototypes/base/.vscode/.copilot-instructions.md +178 -0
  6. api_logic_server_cli/prototypes/base/README_PROJECT.md +43 -0
  7. api_logic_server_cli/prototypes/base/api_logic_server_run.py +20 -8
  8. api_logic_server_cli/prototypes/base/docs/training/react_map.prompt.md +13 -0
  9. api_logic_server_cli/prototypes/base/docs/training/react_tree.prompt.md +10 -0
  10. api_logic_server_cli/prototypes/base/integration/mcp/readme-mcp.md +9 -0
  11. api_logic_server_cli/prototypes/base/logic/logic_discovery/readme_logic_discovery.md +9 -0
  12. api_logic_server_cli/prototypes/base/logic/logic_discovery/use_case.py +27 -0
  13. api_logic_server_cli/prototypes/base/logic/{readme_declare_logic.md → readme_logic.md} +70 -1
  14. api_logic_server_cli/prototypes/base/readme.md +30 -5
  15. api_logic_server_cli/prototypes/base/security/readme_security.md +17 -0
  16. api_logic_server_cli/prototypes/manager/.copilot-instructions.md +13 -0
  17. api_logic_server_cli/prototypes/manager/.vscode/.copilot-instructions.md +58 -0
  18. api_logic_server_cli/prototypes/manager/.vscode/ApiLogicServer.code-workspace +2 -2
  19. api_logic_server_cli/prototypes/manager/README.md +13 -1
  20. api_logic_server_cli/prototypes/manager/system/Manager_workspace.code-workspace +3 -3
  21. api_logic_server_cli/prototypes/nw/api/api_discovery/authentication_expose_api_models.py +53 -0
  22. api_logic_server_cli/prototypes/nw/api/api_discovery/auto_discovery.py +27 -0
  23. api_logic_server_cli/prototypes/nw/api/api_discovery/count_orders_by_month.html +76 -0
  24. api_logic_server_cli/prototypes/nw/api/api_discovery/count_orders_by_month.sql +1 -0
  25. api_logic_server_cli/prototypes/nw/api/api_discovery/dashboard_services.py +143 -0
  26. api_logic_server_cli/prototypes/nw/api/api_discovery/mcp_discovery.py +97 -0
  27. api_logic_server_cli/prototypes/nw/api/api_discovery/new_service.py +21 -0
  28. api_logic_server_cli/prototypes/nw/api/api_discovery/newer_service.py +21 -0
  29. api_logic_server_cli/prototypes/nw/api/api_discovery/number_of_sales_per_category.html +76 -0
  30. api_logic_server_cli/prototypes/nw/api/api_discovery/number_of_sales_per_category.sql +1 -0
  31. api_logic_server_cli/prototypes/nw/api/api_discovery/ontimize_api.py +495 -0
  32. api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.html +76 -0
  33. api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.sql +1 -0
  34. api_logic_server_cli/prototypes/nw/api/api_discovery/system.py +77 -0
  35. api_logic_server_cli/prototypes/nw/database/database_discovery/graphics_services.py +173 -0
  36. api_logic_server_cli/prototypes/nw/ui/admin/home.js +5 -0
  37. api_logic_server_cli/prototypes/nw/ui/reference_react_app/DEPARTMENT_TREE_VIEW.md +66 -0
  38. api_logic_server_cli/prototypes/nw/ui/reference_react_app/README.md +21 -4
  39. api_logic_server_cli/prototypes/nw/ui/reference_react_app/package.json +4 -0
  40. api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/index.html +3 -0
  41. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/App.js +8 -1
  42. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/CustomLayout.js +20 -0
  43. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Department.js +511 -24
  44. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/DepartmentTree.js +147 -0
  45. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Employee.js +230 -18
  46. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/LandingPage.js +264 -0
  47. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Supplier.js +359 -121
  48. api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/index.js +1 -0
  49. {apilogicserver-15.0.37.dist-info → apilogicserver-15.0.40.dist-info}/METADATA +1 -1
  50. {apilogicserver-15.0.37.dist-info → apilogicserver-15.0.40.dist-info}/RECORD +54 -25
  51. api_logic_server_cli/prototypes/base/docs/training/admin_app_unused.md +0 -156
  52. {apilogicserver-15.0.37.dist-info → apilogicserver-15.0.40.dist-info}/WHEEL +0 -0
  53. {apilogicserver-15.0.37.dist-info → apilogicserver-15.0.40.dist-info}/entry_points.txt +0 -0
  54. {apilogicserver-15.0.37.dist-info → apilogicserver-15.0.40.dist-info}/licenses/LICENSE +0 -0
  55. {apilogicserver-15.0.37.dist-info → apilogicserver-15.0.40.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  api_logic_server_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- api_logic_server_cli/api_logic_server.py,sha256=DvsEm6bDYUHuR9nrDsjYiwgs_yZkuk90WiiW6jXVuHI,97737
3
- api_logic_server_cli/api_logic_server_info.yaml,sha256=8zbPG4nv00dFI02f9s1R2UPRWHel3-DILSeLA82-sfU,125
2
+ api_logic_server_cli/api_logic_server.py,sha256=rJ6Hm_re-okF3LT7mqQXIQP3_FwUi84jVi_tLZNSSsM,97756
3
+ api_logic_server_cli/api_logic_server_info.yaml,sha256=eD8F4qFpRiq6-4BXKyrUL8oncYpgkunTFMnJhj8QgaY,125
4
4
  api_logic_server_cli/cli.py,sha256=3GdpAcaXsMeuMnWa-jx7tpi0x6OjIRoau4BeVT-Pw3A,87286
5
5
  api_logic_server_cli/cli_args_base.py,sha256=7cVM6BeizwttYAwUu1FUyuLuvWufvgt0TFeA8FI6tu0,3304
6
6
  api_logic_server_cli/cli_args_project.py,sha256=I5no_fGRV_ZsK3SuttVDAaQYI4Q5zCjx6LojGkM024w,4645
@@ -482,7 +482,7 @@ api_logic_server_cli/genai/genai_fatal_excp.py,sha256=1FmDVcXVRqmG0JMVZ7l4KqMOdp
482
482
  api_logic_server_cli/genai/genai_graphics.py,sha256=9ao0os6rUKY5u2caeLtgyDsNEuVQXq4KcKV575fNC58,20610
483
483
  api_logic_server_cli/genai/genai_logic_builder.py,sha256=u_89UtrALIfcMtW6p0SZ78lCmwRqerA5igyY2hDvjlk,26150
484
484
  api_logic_server_cli/genai/genai_mcp.py,sha256=Q2fVXwoIetYTSHuNHTke_ITsb-nu_L4kusPpTAkze1Q,1434
485
- api_logic_server_cli/genai/genai_svcs.py,sha256=Sh91RYCYEzYZhgO-b4L7LdPL-_60np1oLjKkIU5w1YU,50543
485
+ api_logic_server_cli/genai/genai_svcs.py,sha256=VDgoKOO5jnNhxz8Q0w524LXPJSuK9gBMf8ivsUJ7EYE,50579
486
486
  api_logic_server_cli/genai/genai_utils.py,sha256=DTlWTnW5_2pzX4q1VG1tWqoZPVObDHR97SVe0z8Z3rs,17102
487
487
  api_logic_server_cli/genai/json2rules.py,sha256=ykoxxgZgqllzt8Ud06S-R_3QtumxXfmF5ksYC0Hh2Sk,2645
488
488
  api_logic_server_cli/model_migrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -516,9 +516,11 @@ api_logic_server_cli/prototypes/allocation/images/allocation/logic-diagram.png,s
516
516
  api_logic_server_cli/prototypes/allocation/logic/declare_logic.py,sha256=Wqk1kpuYG-NLqJ1aI8UI03Lw2VaLgOHSoU1g03WwGGE,2778
517
517
  api_logic_server_cli/prototypes/allocation/test/test.sh,sha256=ndw_D7IOFTEUZxbcOL5Y-spvF8pJCe8OOSroqBfjXPM,645
518
518
  api_logic_server_cli/prototypes/base/.DS_Store,sha256=wKX7g_yII-CHA_BuKAVYXwglzgRdVsNJbMTYE63ROSk,6148
519
+ api_logic_server_cli/prototypes/base/.copilot-instructions.md,sha256=Q0XylYa7oKvpCIeBKDuA2NLXsgOzhC8g6DTwZFGOZLo,356
519
520
  api_logic_server_cli/prototypes/base/.gitignore,sha256=PAO98cVvjgAL_mvXCMS_Vfk7bT2Vd1-j9a8_nB2qxqs,190
520
- api_logic_server_cli/prototypes/base/api_logic_server_run.py,sha256=cwVBzF3NHGK5yQucsc5PisswuBc8bUi37pZI2DdmK6I,6691
521
- api_logic_server_cli/prototypes/base/readme.md,sha256=CtWAiMpRfJiA83y90RYVLQ_E1Mntya7Xd8SWcsaHWBc,11710
521
+ api_logic_server_cli/prototypes/base/README_PROJECT.md,sha256=sGJuNF_Qt5ripZBXfTi0OmoV4fUxe7ySxrqcKs7DwOk,1186
522
+ api_logic_server_cli/prototypes/base/api_logic_server_run.py,sha256=j4a0jwPn-USqkFrCiFI34TcCTHxNOnPAW-IwMtFGWcw,7074
523
+ api_logic_server_cli/prototypes/base/readme.md,sha256=nI0jSarNkvM1sOt0LX60rZKaH1Ic-xVPyZRb-4Y3ZbM,12768
522
524
  api_logic_server_cli/prototypes/base/requirements.txt,sha256=we6X5fRBJVqN8SacwV7oPDtGk5IAiNbUDbUwCGHkCrc,107
523
525
  api_logic_server_cli/prototypes/base/run.ps1,sha256=lrZgw8SEntPam3ZYKVzsRo7rOKSGWqgO7qUNJ3CbP44,801
524
526
  api_logic_server_cli/prototypes/base/run.sh,sha256=7kJc-FpK9iqtt9BDXR1XogWXfVDnmPS8kS5fXk2Q5Dk,1442
@@ -532,6 +534,7 @@ api_logic_server_cli/prototypes/base/.idea/runConfigurations/Run_Behave.xml,sha2
532
534
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/Windows_Run_Behave.xml,sha256=TMkGY8PMDhcGGkDw_tC-QljbmXLGT66ubsmRbMmfzi0,1205
533
535
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/run___No_Security.xml,sha256=BBK0h04vSC_hVSi7dKm_8Mo201jGivZRbx4ruFcqAEo,1193
534
536
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/run_docker.xml,sha256=oDHdZ8WEGU1MoWEQHH3jBvbPZt4hGlodUq4IeXv68co,2444
537
+ api_logic_server_cli/prototypes/base/.vscode/.copilot-instructions.md,sha256=fD8-Z0xluWiWMueH7O2UXlBnGCbo_mZsz_WqC85yxZc,5267
535
538
  api_logic_server_cli/prototypes/base/.vscode/launch.json,sha256=_QjN3aCBJwk2SIqA7v6w4pI96oTxYVzs0f45oEgoucU,12628
536
539
  api_logic_server_cli/prototypes/base/.vscode/settings.json,sha256=vS3gt0PpFbZ3fdGeiVGaE4v9PyRydjrrdGWb27w9UUo,470
537
540
  api_logic_server_cli/prototypes/base/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -631,15 +634,17 @@ api_logic_server_cli/prototypes/base/docs/logic_suggestions/readme_logic_suggest
631
634
  api_logic_server_cli/prototypes/base/docs/training/admin_app_1_context.prompt.md,sha256=Vbo9pidg0FFkVEx64Ri8tjTCvg3noLopcDj3mgPVeSY,239
632
635
  api_logic_server_cli/prototypes/base/docs/training/admin_app_2_functionality.prompt.md,sha256=iWMoAkETeQjWWPrNj1AcI4HFGLlgS0-HP9oBYXhdTNI,1705
633
636
  api_logic_server_cli/prototypes/base/docs/training/admin_app_3_architecture.prompt.md,sha256=5KtRBihPbxTQEvLJ51w104Z0HfDGFEmQc3ysek6EsXA,925
634
- api_logic_server_cli/prototypes/base/docs/training/admin_app_unused.md,sha256=sYzoNUccR4-jmEaVXj7UuA_yW2MsHP0IODCkMuvT7gU,3922
635
637
  api_logic_server_cli/prototypes/base/docs/training/logic_bank_api.prompt,sha256=3zZu_AQLPskFzs_UL49-lk8Z6ck7YhQnj8wlz30Ib1k,14606
636
638
  api_logic_server_cli/prototypes/base/docs/training/logic_example.py,sha256=yAot6uHy1gu94ufeYDx3f0iJ1_czsDywSAdm_yu4E2o,1325
639
+ api_logic_server_cli/prototypes/base/docs/training/react_map.prompt.md,sha256=8B9bDjk4sL1t5LzYLKjuf78UPDmhj9assRZTIOvlwN4,891
640
+ api_logic_server_cli/prototypes/base/docs/training/react_tree.prompt.md,sha256=Eoi4Q3H4x-PQOjonUjQ1o6xkiFtcEA_hg8tuFP-qk80,652
637
641
  api_logic_server_cli/prototypes/base/integration/kafka/kafka_consumer.py,sha256=2DOsFpYnsJ71gZzzfJweEmL-i99uCtEFU0hVwIKFGMw,1516
638
642
  api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py,sha256=g0nMAVfz1Y0iKJbbXfvRpdf-QUmyB4uUGZ6lyaVoXag,4470
639
643
  api_logic_server_cli/prototypes/base/integration/kafka/kafka_readme.md,sha256=MlwykHWM2w41KzWh4vPuTnIodR8f-BQzrWpV4P1hrsI,161
640
644
  api_logic_server_cli/prototypes/base/integration/mcp/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
641
645
  api_logic_server_cli/prototypes/base/integration/mcp/mcp_client_executor.py,sha256=AGl6PVq2ss5_HtPzuetNzM2MbBvnjdftJ-mMCLcwxQM,25480
642
646
  api_logic_server_cli/prototypes/base/integration/mcp/mcp_server_discovery.json,sha256=TUyInb67AWoGw7XFE9iDZxmM8UEID-ahQmdmzpF9AmQ,188
647
+ api_logic_server_cli/prototypes/base/integration/mcp/readme-mcp.md,sha256=TuqDgTM7nHVQINmSxO8QO6rBzo_PJ-QxIxhZM3YeLB8,370
643
648
  api_logic_server_cli/prototypes/base/integration/mcp/examples/mcp_context_results.txt,sha256=27a8-MpBoE3i8UnCoMZINgeseFUxGhhwurgoV5EeP1k,8105
644
649
  api_logic_server_cli/prototypes/base/integration/mcp/examples/mcp_discovery_response.json,sha256=f1RP5kuTU8rkqxWsZoATBF8xdaVEgPTaB4MRoExIF-Q,3763
645
650
  api_logic_server_cli/prototypes/base/integration/mcp/examples/mcp_request.prompt,sha256=vmt_fvwOK-C2fnI1LLUMe5WbLk6qxv2RdVJkBUTo9zM,2601
@@ -654,10 +659,13 @@ api_logic_server_cli/prototypes/base/integration/system/FlaskKafka.py,sha256=QK5
654
659
  api_logic_server_cli/prototypes/base/integration/system/RowDictMapper.py,sha256=DSdmeAQZZ_wUWHHiSS_6ZgeTKIuEycNlgX140l3fnSE,19986
655
660
  api_logic_server_cli/prototypes/base/logic/declare_logic.py,sha256=vglpAfVRM3QONLDbWIXcZrXTSttO8vUpwLbSJ51Fmw0,3290
656
661
  api_logic_server_cli/prototypes/base/logic/load_verify_rules.py,sha256=dYEb-UxqQ5N08ry22I04vtFy8JtQe2pL7Jw8gR8nGu4,7742
657
- api_logic_server_cli/prototypes/base/logic/readme_declare_logic.md,sha256=ZC1a0e_tob6UNXcoPGgYEf_BPUlwpdD-bYwtNPUeORQ,7105
662
+ api_logic_server_cli/prototypes/base/logic/readme_logic.md,sha256=teXyg9-7b-1OAj_kLC7gQ37zNllTRFnovdq2LGsyg6E,10178
658
663
  api_logic_server_cli/prototypes/base/logic/logic_discovery/auto_discovery.py,sha256=m97W6DYi6ouTDuFCiU1rPq1UqzJuNnVePyOeLU33D1s,2645
664
+ api_logic_server_cli/prototypes/base/logic/logic_discovery/readme_logic_discovery.md,sha256=SRg3Hrq3vCjqtAL1XijcbPGvfLLgkqsODLtIKfZUEaI,396
665
+ api_logic_server_cli/prototypes/base/logic/logic_discovery/use_case.py,sha256=9qp9e_PwTvIg5mfYLtFxfwFhfivBhk3O6uHeh_lUd5c,822
659
666
  api_logic_server_cli/prototypes/base/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
660
667
  api_logic_server_cli/prototypes/base/security/declare_security.py,sha256=sWi-M7E-dIhvC0hmdCXnTRjHAR5eWVKCYIDCoblISm4,2281
668
+ api_logic_server_cli/prototypes/base/security/readme_security.md,sha256=ZzRl9Nj59rilFWnIfmma2SKbzsQOIkEwIrUeW-nadgo,511
661
669
  api_logic_server_cli/prototypes/base/security/authentication_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
662
670
  api_logic_server_cli/prototypes/base/security/authentication_provider/abstract_authentication_provider.py,sha256=RPPA48kdYiXx5zQ6epbfAEB1se8E10Ra9NxYRjIBShk,895
663
671
  api_logic_server_cli/prototypes/base/security/authentication_provider/keycloak/auth_provider.py,sha256=gnk8CqhlEobRPEBTwimG6OkZhc5gP-Yba1VFlTydt2Q,10437
@@ -810,17 +818,19 @@ api_logic_server_cli/prototypes/genai_demo/logic/load_verify_rules.py,sha256=TWq
810
818
  api_logic_server_cli/prototypes/genai_demo/logic/readme_declare_logic.md,sha256=CFC13f9Z4rTkNiRoJTBEz3A2F_yRThOj-HrHDsSdKsw,6630
811
819
  api_logic_server_cli/prototypes/genai_demo/security/declare_security.py,sha256=L3AL1bgdqIWQxdkJZcFVDOQ0XRpmeLAKqwlAYChFWKo,2108
812
820
  api_logic_server_cli/prototypes/genai_demo/ui/admin/admin.yaml,sha256=vMpr6to6g-h9gSuhxfpTeDMw5_R_eUKbV7qXzMEvIyk,3446
821
+ api_logic_server_cli/prototypes/manager/.copilot-instructions.md,sha256=-88Y2DqCJzjxml1MJ1QRsAjywG-k9UiVGeA9uAuWDa4,558
813
822
  api_logic_server_cli/prototypes/manager/.gitignore,sha256=xfAjNQHokbo6GuN1ghx-eml8tQIzwUczLC_YVzElndI,195
814
- api_logic_server_cli/prototypes/manager/README.md,sha256=9hoALg3YpHMrLiYj22qc77jvOU8aagrEuHbXGYV2Kr8,38617
823
+ api_logic_server_cli/prototypes/manager/README.md,sha256=9n9MDoJAsumLHPqNGWmcVNGei1hp7qg3JTFvLbQw2oc,38802
815
824
  api_logic_server_cli/prototypes/manager/run_sample.sh,sha256=eRA-p_Snr7Pwk14wUw5mja2usEcjAKisHVhHMeSaQ68,781
816
825
  api_logic_server_cli/prototypes/manager/run_web_genai.sh,sha256=sgjB3vKhkao93Ny3VN0AQ-wonvdBcBIT3rTbyNTMoG8,136
817
826
  api_logic_server_cli/prototypes/manager/settings.txt,sha256=_jjL30jomIMxG21edDfrXYRT9Zfgr_0EdUWvcEUOnFQ,368
818
- api_logic_server_cli/prototypes/manager/.vscode/ApiLogicServer.code-workspace,sha256=g062GyCFJ9XfuzVAfxk8Qsl5kWAB_v5Z1AQ3dzpcHMw,294
827
+ api_logic_server_cli/prototypes/manager/.vscode/.copilot-instructions.md,sha256=Gvx2SYFMhMtoqdbw3WSJ1-40kZAy9EUfQ0jIaHc0aYY,1923
828
+ api_logic_server_cli/prototypes/manager/.vscode/ApiLogicServer.code-workspace,sha256=vMyLxVo-gn2P_Uw2nk4opIVo6CyFY7R48jrnpGzhtkw,270
819
829
  api_logic_server_cli/prototypes/manager/.vscode/launch.json,sha256=alh_fiuqMjY-uIk4ghfwyMs3y-U2dYr1W6rS9ncpNEY,33491
820
830
  api_logic_server_cli/prototypes/manager/.vscode/settings.json,sha256=wQgpFvviPbZCmsf02UgrJSGAz7g3i4chDZ_AdSIOr5Y,625
821
831
  api_logic_server_cli/prototypes/manager/samples/readme_samples.md,sha256=JyUOm5mcmLXtBCE30OFzfZaSCw7k_PKLZmGNanS4fwc,171
822
832
  api_logic_server_cli/prototypes/manager/samples/dbs/readme_samples.md,sha256=FvxzBqR00Kgc5Z76JOslHju6HYmsYOwkoARe_U-dnY0,570
823
- api_logic_server_cli/prototypes/manager/system/Manager_workspace.code-workspace,sha256=g062GyCFJ9XfuzVAfxk8Qsl5kWAB_v5Z1AQ3dzpcHMw,294
833
+ api_logic_server_cli/prototypes/manager/system/Manager_workspace.code-workspace,sha256=ieWHaqLQ8uXoSzNSklVdDKoIjD-H3d6H4aUP1d_Jy1s,305
824
834
  api_logic_server_cli/prototypes/manager/system/readme_ssystem.md,sha256=52zXRh5KJ4GSRWyNLwzbXqKMDJmR7M6PhS71-DIUoBI,106
825
835
  api_logic_server_cli/prototypes/manager/system/style-guide.yaml,sha256=JaP3NDE29k4_e9ELeLTZfnWf2L8VgS1X7hO8J_BNqJU,673
826
836
  api_logic_server_cli/prototypes/manager/system/app_model_editor/.gitignore,sha256=07msA6EiXJT_unwoat2B8vI6ANcIn9E-ntgIpQZj7g0,477
@@ -1909,14 +1919,29 @@ api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/unused/
1909
1919
  api_logic_server_cli/prototypes/nw/.DS_Store,sha256=XMHbsE_C3zE5kWGvbJxLXLEcm-1tQYgww6iV7toZ03M,6148
1910
1920
  api_logic_server_cli/prototypes/nw/Tutorial.md,sha256=2ohG6joATpLXQaNT3_0lx1nBJ7Oz8A5JhCsqur7FXCg,16390
1911
1921
  api_logic_server_cli/prototypes/nw/api/customize_api.py,sha256=_c1BwR8NtAdtp1KQz4cwt0NY50K9-b6S9lvoWUyRhLE,17637
1922
+ api_logic_server_cli/prototypes/nw/api/api_discovery/authentication_expose_api_models.py,sha256=UCjaITQ17CbufeAlraSxKC733MJBegNGb9Z5JVAFOFU,1837
1923
+ api_logic_server_cli/prototypes/nw/api/api_discovery/auto_discovery.py,sha256=y6uQ_i9t8qqmjsM69rZzzp2q3OaAbSrwlfeRIrR_sRY,1099
1924
+ api_logic_server_cli/prototypes/nw/api/api_discovery/count_orders_by_month.html,sha256=8SD5apjtIcWiCveBQfbxXzX1g2Yb_K9BHt6mXejZeTA,2690
1925
+ api_logic_server_cli/prototypes/nw/api/api_discovery/count_orders_by_month.sql,sha256=c8n_sBaBVxX73dgAutn2MrnjlW_6TvQeCuHUJa2BLEo,186
1926
+ api_logic_server_cli/prototypes/nw/api/api_discovery/dashboard_services.py,sha256=icDnDCZ54cP5XEiS9d1b5YoCQksJ13jT66twNO8bPSE,5504
1927
+ api_logic_server_cli/prototypes/nw/api/api_discovery/mcp_discovery.py,sha256=4hXYBCg_3XP2mJ_UJFnxyI7agN_TCUEuOSmf_w29vDw,4088
1928
+ api_logic_server_cli/prototypes/nw/api/api_discovery/new_service.py,sha256=xe2AAFvpQwjrwwGAXs4pdZ8dWtcqAJ5KKYL_QKyqvGg,638
1929
+ api_logic_server_cli/prototypes/nw/api/api_discovery/newer_service.py,sha256=p1ah8Pj2kjuTIlktYrtvdiuzGUEaPy7qLa7Cvu0GgbA,659
1930
+ api_logic_server_cli/prototypes/nw/api/api_discovery/number_of_sales_per_category.html,sha256=t9flvEeRdsBVdOFP_kCQGtnUui2eUhgugs652iAHpGA,2697
1931
+ api_logic_server_cli/prototypes/nw/api/api_discovery/number_of_sales_per_category.sql,sha256=4YgbJDeJf0mbe4LXvGpNu9TjxigCPlUlioQ9yIf_y_8,329
1932
+ api_logic_server_cli/prototypes/nw/api/api_discovery/ontimize_api.py,sha256=_gNyxbx6ExbrCy3uzz8JzBBDZRxPyHoyRH7vJRqV1NM,20340
1933
+ api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.html,sha256=_wizixU1mCk3l4HVgDptSx3eD0IpaAsrKlxXqvJlwb0,2686
1912
1934
  api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.py,sha256=0iJQK0SNJfu5iTcpcYTe9KBwZKZDNEvhEU2c4FJHD_Q,1919
1935
+ api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.sql,sha256=FircB2vuDdxnwlRtAbewuTCO_gCivlOznwEzCGx9zBw,384
1913
1936
  api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category_bar_chart.html,sha256=PF3LY2q7eVxFy4780pO829Fdj-TiS-vb8jGlB4AANss,2004
1914
1937
  api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category_bar_chart_app.request,sha256=6t7PSmXiXgIsS1myQ3oTj-bBlk-B7JP4-JVkxJXFBn4,473
1915
1938
  api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category_bar_chart_query.request,sha256=lpaJhkCKGvGudAHWIjUMQr3G8h11ddROjgXwPx_o27s,94
1916
1939
  api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category_result.png,sha256=cPdUAmr0_nzoWDGxDYfs35zoZBABHu-vOpecAuK_AyI,490065
1940
+ api_logic_server_cli/prototypes/nw/api/api_discovery/system.py,sha256=Cv4qtnEG5s6vtk2alHmPAvwKlbtlHsd3Ugse_YKIk7Q,3345
1917
1941
  api_logic_server_cli/prototypes/nw/api/multi-table-example/multi-table.json,sha256=gq3FReXrnmVBaPJrGhd2DpekoJaWJzv6MLJP_xPezME,34142
1918
1942
  api_logic_server_cli/prototypes/nw/api/multi-table-example/multi-table.txt,sha256=dxb4t1aA8BzrE-P_dnrB2sMjzE2aymKmvD80UkguSX0,650
1919
1943
  api_logic_server_cli/prototypes/nw/database/customize_models.py,sha256=pZQr0cPXYBk7qtD86vHOjNrWXF8Oxx5E7jr1LWuUroQ,3039
1944
+ api_logic_server_cli/prototypes/nw/database/database_discovery/graphics_services.py,sha256=2obLKcpeNNWqCxnVmyTz98wI7ohqmhUZdvaQ_q-20Oo,6370
1920
1945
  api_logic_server_cli/prototypes/nw/docs/graphics/count_orders_by_category.prompt,sha256=a8IZYviDfssu2PH8VfQKFywRUcbLJYwvUWXe-otzBJc,49
1921
1946
  api_logic_server_cli/prototypes/nw/docs/graphics/order_count_by_month.prompt,sha256=SD0znLnHObF_7lWHL-mjENfKbIGexkHjW6ucC80W89Q,27
1922
1947
  api_logic_server_cli/prototypes/nw/docs/graphics/request copy.json,sha256=NEl_qRHlmsMP8PfKndkEdW9mNxzxJGygnlzZdNZF1DY,17803
@@ -1972,7 +1997,7 @@ api_logic_server_cli/prototypes/nw/test/basic/results/PRUNE_test_-_ReqdDate.log,
1972
1997
  api_logic_server_cli/prototypes/nw/ui/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
1973
1998
  api_logic_server_cli/prototypes/nw/ui/app_model_custom.yaml,sha256=Qtl2Gr_cQaTZuZMAHx3Upf1IBarW4KM-mv1dkhZr3tc,46017
1974
1999
  api_logic_server_cli/prototypes/nw/ui/admin/admin.yaml,sha256=oL30V8ehn5SFXZPdMjM8nwSafv3A_LK6-eJCJ4P7V4Y,18030
1975
- api_logic_server_cli/prototypes/nw/ui/admin/home.js,sha256=nsd1uk96npfTAgfq8q-g1NCOXLG4txz0TRFYx47FkiI,4222
2000
+ api_logic_server_cli/prototypes/nw/ui/admin/home.js,sha256=DaNB-mtJa5k3j7q8K8QYIx-mLL0fh-7Iom6Ho5qbOEA,4416
1976
2001
  api_logic_server_cli/prototypes/nw/ui/admin/multi_app_project.yaml,sha256=zDPBx72WWY83eCS1jOzYhXC5-H1J_23MWNsTn4fvQm8,8798
1977
2002
  api_logic_server_cli/prototypes/nw/ui/images/Category/beverages.gif,sha256=iRKl6wL3jV5M8rFK_PeM0OIcLBtYpMPRBch-M-SOlxs,6054
1978
2003
  api_logic_server_cli/prototypes/nw/ui/images/Category/cereals.gif,sha256=E4pc2eFuWRD8N8gQYGtCSLeb6NwmROJfgr5LFTLV98w,7324
@@ -1992,28 +2017,32 @@ api_logic_server_cli/prototypes/nw/ui/images/Employee/leverling.jpg,sha256=w02cB
1992
2017
  api_logic_server_cli/prototypes/nw/ui/images/Employee/peacock.jpg,sha256=UIfxEKOKruPKNW0w17bMebIaUsa1nD2vSVfFTk7uaCs,3862
1993
2018
  api_logic_server_cli/prototypes/nw/ui/images/Employee/suyama.jpg,sha256=bp0xCJ-8EqQp_B7uR4glL6fVGxVlS10d5IHLNdw7rcA,4375
1994
2019
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/.DS_Store,sha256=AnV79PLm6F_E6PkLoTv-GaJZpUGP_xdRkNEqrAYGYuE,6148
1995
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/README.md,sha256=y4qGb4ZgovIFEzPyq18AbQjnpeYF8RrlCxsRTTwYujk,565
2020
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/DEPARTMENT_TREE_VIEW.md,sha256=2zF0Ai6ohVjiFqGx6gJci9BPFwr5zBKuoZtuuNFB5QY,2736
2021
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/README.md,sha256=-divyJqdAK-3y0mUgyN4QLif7cQQ3CaJE4YNWj7dLv0,1469
1996
2022
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/README_create_react_app.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
1997
2023
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/compile-errors.txt,sha256=HIYSnI2VW_Lz1MNCCw3TxZoeXFtuhpvxEDgDGY0A544,30782
1998
2024
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/package-lock.json,sha256=IzEHCLrrRzluTL-bw_d_u57dKsn8a9feoY2BKx7DjRc,699130
1999
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/package.json,sha256=6_nHZ8UzSaDWUPv6DyGJ3QAO392tc2rc8JPOp7V7gz4,1114
2025
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/package.json,sha256=-NojVIkHK9vGoql6_I5DVSGu5E8TODDgjvgI_I2kX9k,1241
2000
2026
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/favicon.ico,sha256=PRD32mxgMXg0AIFmjErFs66XQ8qaJiqw_NMS-7n0i90,3870
2001
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/index.html,sha256=IK_Be2NYv99ddFEyJc1Kc0Q_oL0VuUSvceFD9pSlz3w,1721
2027
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/index.html,sha256=a1KgHcM9eLkxmRUSt9O-CtMUHSjRLRxuQvdzah6eDvE,1905
2002
2028
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/logo192.png,sha256=w4Y5bscNs2CAdbX7-qxKscyqhroFpoqzk-xVHrZsPgA,5347
2003
2029
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/logo512.png,sha256=nqT02nBQwMxAiSb2o5wlNiTpursdQ8eXfNghRFpgtGE,9664
2004
2030
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
2005
2031
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/public/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
2006
2032
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/App.css,sha256=xaxC5Wv4w063QddSvIeRRPGG18oKSPy7c7lnF396kkA,564
2007
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/App.js,sha256=cGZBCkbjQjrBx9RgXIBXRDfKqqGPdTX1Pfec-x2mcmQ,5065
2033
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/App.js,sha256=b3WaE02DQi-jKTJR21AJmF0l4oywNZaDS_vxlI8QTKM,5254
2008
2034
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/App.test.js,sha256=93hGkxlLhlfRv3DDfqcPSi1pTEVm7EFVCo5lDrYAqqQ,246
2009
2035
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Category.js,sha256=Nx1ILnyLn-QlHsBlEAVq-W_YIu0rJT8ERDPNmLTQMWo,5964
2010
2036
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Config.js,sha256=c2H9MMc3h2STlHPfjFRnu1FR-drNTRKzC8zVeZk7UkI,15025
2037
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/CustomLayout.js,sha256=VI0RLjojnd75pTjqyRE8mv9t3iX9Izt0WrLKajdT8LE,468
2011
2038
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Customer.js,sha256=yY97oX1RIYVhe2ERtkrT0CXNniYg5mQcknUvKG88deQ,12358
2012
2039
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/CustomerDemographic.js,sha256=teJ2S5rLK1Ojp9meKhETE_bwU4lGvdu2q-hkpZ0Djd8,4109
2013
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Department.js,sha256=S0ZaSEZuZ1XeiCEfeKmOlj-4QVHzOUG19rIw3QM4lVE,5739
2014
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Employee.js,sha256=XMBcUfQL1wG1P6wAPTpmJArnJWwHgSlXYV8Z5I8xhsw,10053
2040
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Department.js,sha256=t_JjpyBzJOpZQeZyyMM72HjQzTkLdORmwnFfmZDRYSE,27135
2041
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/DepartmentTree.js,sha256=eh1HT3dz8ziLcRm1IleWEi0YcyrmLu40FsGM1lCuCzc,3680
2042
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Employee.js,sha256=EsoSVd7jC3_M7DW9TmNlbDvBnRaImj6ykQAaBIdAfsk,18006
2015
2043
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/EmployeeAudit.js,sha256=gpUKYNDVHv6KNxyFLj-ZZaWJTPP47uprPysqFs9P9Oc,10095
2016
2044
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/EmployeeTerritory.js,sha256=Rcfp0oaDEd2ff-0zhTcacCxbQhkroAoAPWgVLnoveAs,3844
2045
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/LandingPage.js,sha256=fjWIjvHcvSUOf6fWC6uyopfhOjukHENlFNmDl_I6jCk,12417
2017
2046
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Location.js,sha256=gasDb_i4FagIGBYMI0ZE694vi_i89fHbi8J6DmriWho,6874
2018
2047
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Order.js,sha256=vAH9-6Yt96oLMsLo7yB8QeV5R786O8hkmo2Z6WPmtfk,8450
2019
2048
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/OrderDetail.js,sha256=_Gaqo3RJa7fjaV3M4UUPy8ZxBlHGQgRL8ftkDqVjuV8,9448
@@ -2021,13 +2050,13 @@ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Product.js,sha256=
2021
2050
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Region.js,sha256=5UWXgOHlQm2V3xipKGyz_dCVdvWCrBrtYgXMZJuR5Ac,4040
2022
2051
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/SampleDBVersion.js,sha256=lNel24QmEhiNtdVGr_nSZwWrzqccBvvFYuzziFz7Ukg,1764
2023
2052
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Shipper.js,sha256=WRD5mXj6oFJ8TnnE4r3nSwPZCfJWpCz436cqJavp8Tc,4689
2024
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Supplier.js,sha256=A_HN98opPfQ08rlIEvmHOzVM_QgYM3g-QWhpXXnPGaM,5973
2053
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Supplier.js,sha256=jZ4VNCX23YGRCxke901HvpHDtGqg_HNIg9Xv6qbs9RQ,16448
2025
2054
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Territory.js,sha256=7stMPfeb2xnWljk_AJ_AIVX_6nsYZ3XMY_wNdYn7LhY,5846
2026
2055
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/Union.js,sha256=HFtLT_fLDAto5bqP8mGWQV_6VCpk10MGKcTg08F3Suw,4736
2027
2056
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/app_loader.js,sha256=Q_7ZzwnFdK-yjPC_SBLvXoZnckWNgl7b_QZ-D2Nhq4I,791
2028
2057
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/dataProvider.js,sha256=IImP6XdWjswfamiD4JmV_Cl8yEJTAM06ABXcn4NmzyQ,3289
2029
2058
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/index.css,sha256=2vIsKWyAHT1TMIM2HMWfvcIuW_5SiqS60Zc7VMxUSKQ,366
2030
- api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/index.js,sha256=OfaJG-vOhWzmBOpFDwis4m-huTFBWYWIH7syP2O6Jvs,535
2059
+ api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/index.js,sha256=SlttUTpflgMhhBQmBf3GLPT50NrQQrjt1aQ9A6Pf3XU,570
2031
2060
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/logo.svg,sha256=YACw6bCwWz8RLeBPDQOXaKHbY1iP-bbvcJnb1xYy84M,2632
2032
2061
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/reportWebVitals.js,sha256=cUhRZphWFSgGwon5qsYkC0FLusUMYO5PfmJH8x6sDBw,362
2033
2062
  api_logic_server_cli/prototypes/nw/ui/reference_react_app/src/setupTests.js,sha256=Ilg3WdAEX9-NYsnbCqy6n9i93eecZxqgjJfc_U6TDMY,241
@@ -2340,9 +2369,9 @@ api_logic_server_cli/tools/mini_skel/database/system/SAFRSBaseX.py,sha256=p8C7AF
2340
2369
  api_logic_server_cli/tools/mini_skel/database/system/TestDataBase.py,sha256=U02SYqThsbY5g3DX7XGaiMxjZBuOpzvtPS6RfI1WQFg,371
2341
2370
  api_logic_server_cli/tools/mini_skel/logic/declare_logic.py,sha256=fTrlHyqMeZsw_TyEXFa1VlYBL7fzjZab5ONSXO7aApo,175
2342
2371
  api_logic_server_cli/tools/mini_skel/logic/load_verify_rules.py,sha256=Rr5bySJpYCZmNPF2h-phcPJ53nAOPcT_ohZpCD93-a0,7530
2343
- apilogicserver-15.0.37.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
2344
- apilogicserver-15.0.37.dist-info/METADATA,sha256=OJcnMVszKFzJZnC2_2H22YhIF31oGWRonGO9-MjS6oE,6553
2345
- apilogicserver-15.0.37.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2346
- apilogicserver-15.0.37.dist-info/entry_points.txt,sha256=W9EVNvf09h8n6rJChmVj2gzxVQ6BXXZa2x3wri0lFGc,259
2347
- apilogicserver-15.0.37.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
2348
- apilogicserver-15.0.37.dist-info/RECORD,,
2372
+ apilogicserver-15.0.40.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
2373
+ apilogicserver-15.0.40.dist-info/METADATA,sha256=ih4Xi8Mv6-1Sq0VpcZkKKZBj2OHwnkFESzY7udUlkh4,6553
2374
+ apilogicserver-15.0.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2375
+ apilogicserver-15.0.40.dist-info/entry_points.txt,sha256=W9EVNvf09h8n6rJChmVj2gzxVQ6BXXZa2x3wri0lFGc,259
2376
+ apilogicserver-15.0.40.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
2377
+ apilogicserver-15.0.40.dist-info/RECORD,,
@@ -1,156 +0,0 @@
1
-
2
- Generate a full React Admin application using the following instructions.
3
- The result must be a runnable React app (`npm start`) that connects to the supplied JSON:API, with fully implemented components (no placeholders or empty files).
4
-
5
- ## Backend Description
6
-
7
- The JSON:API backend is described by:
8
-
9
- ### 1. Schema (`docs/db.dbml`):
10
-
11
- ```dbml
12
- Table Customer {
13
- id INTEGER [primary key]
14
- name VARCHAR
15
- balance DECIMAL
16
- credit_limit DECIMAL
17
- email VARCHAR
18
- email_opt_out BOOLEAN
19
- }
20
-
21
- Table Item {
22
- id INTEGER [primary key]
23
- order_id INTEGER
24
- product_id INTEGER
25
- quantity INTEGER
26
- amount DECIMAL
27
- unit_price DECIMAL
28
- }
29
-
30
- Table Order {
31
- id INTEGER [primary key]
32
- notes VARCHAR
33
- customer_id INTEGER
34
- CreatedOn DATE
35
- date_shipped DATE
36
- amount_total DECIMAL
37
- }
38
-
39
- Table Product {
40
- id INTEGER [primary key]
41
- name VARCHAR
42
- unit_price DECIMAL
43
- }
44
-
45
- // Relationships
46
- Ref: Item.(order_id) < Order.(id)
47
- Ref: Item.(product_id) < Product.(id)
48
- Ref: Order.(customer_id) < Customer.(id)
49
- ```
50
-
51
- ### 2. JSON:API Discovery (`docs/mcp_learning/mcp_discovery.json`):
52
-
53
- - Base URL: `http://localhost:5656/api`
54
- - Auth: `http://localhost:5656/api/auth/login`
55
- - Tool type: `json-api`
56
- - Describes four resources: Customer, Order, Item, Product
57
-
58
- ---
59
-
60
- ## App Features
61
-
62
- ### Multi-Page
63
-
64
- For each resource:
65
- - Create a **List page** showing 7 user-friendly columns
66
- - Add **pagination**, **sorting**, and **filtering**
67
- - Link each row to a **Display (Show) page**
68
-
69
- ### Multi-Resource
70
-
71
- Each **Display Page** should:
72
- - Show all fields in a **multi-column layout**
73
- - Include a **tab sheet** (`<TabbedShowLayout>`) for each related resource using `<ReferenceManyField>`
74
- - Link child rows to their own display page
75
-
76
- Example:
77
- - Customer Display has tab for OrderList
78
- - Each Order in the tab links to Order Display
79
-
80
- ### Automatic Joins
81
-
82
- For foreign keys:
83
- - Display joined value (e.g., `product.name` instead of `product_id`)
84
- - Use first string field from parent table containing `name`, `title`, or `description`
85
-
86
- Primary key fields:
87
- - Display at the end of forms/lists
88
-
89
- ### Lookups (Foreign Keys)
90
-
91
- For foreign key fields:
92
- - Provide auto-complete dropdown (`<ReferenceInput>`)
93
- - For numeric foreign keys, use the joined string field as lookup text
94
-
95
- ---
96
-
97
- ## Per-Resource Files (Required)
98
-
99
- For each resource (`Customer`, `Order`, `Product`, `Item`):
100
- - Create a source file under `src/`, e.g., `Customer.js`
101
- - **Each file must fully implement**:
102
- - `CustomerList`
103
- - `CustomerShow`
104
- - `CustomerCreate`
105
- - `CustomerEdit`
106
-
107
- Use:
108
- - `<ReferenceField>` for foreign key displays
109
- - `<ReferenceInput>` for foreign key input
110
- - `<ReferenceManyField>` for tabbed child lists
111
- - `<TabbedShowLayout>` for display pages
112
-
113
- Do **not leave any file empty**.
114
-
115
- ---
116
-
117
- ## App Wiring
118
-
119
- In `App.js`:
120
- - Import each resource file
121
- - Register them in `<Admin>` using:
122
-
123
- ```jsx
124
- <Resource name="Customer" list={CustomerList} show={CustomerShow} edit={CustomerEdit} create={CustomerCreate} />
125
- ```
126
-
127
- ---
128
-
129
- ## Architecture
130
-
131
- - **Framework**: React 18 + react-admin 4.x
132
- - **Data Provider**: Custom `dataProvider.js` using `fetchUtils` (no external `ra-jsonapi-client`)
133
- - Must support: `getList`, `getOne`, `getMany`, `getManyReference`, `create`, `update`, `delete`
134
- - Must support: filters, joins, sorting, pagination
135
- - **Backend**: JSON:API per `mcp_discovery.json`
136
- - **CORS**: Ensure API allows `http://localhost:3000`
137
- ```py
138
- from flask_cors import CORS
139
- CORS(app, origins='*') # or restrict to localhost:3000
140
- ```
141
- - **Project Setup**:
142
- - Use `create-react-app`
143
- - Include: `react-admin`, `@mui/material`, `@emotion/react`, `@emotion/styled`, `react-router-dom`
144
- - Do not use any deprecated or unmaintained libraries
145
- - Include complete and correct `App.js`, `index.js`, `dataProvider.js`, and `index.html`
146
-
147
- ---
148
-
149
- ## Run Instructions
150
-
151
- ```bash
152
- npm install
153
- npm start
154
- ```
155
-
156
- Then open in browser: `http://localhost:3000`