ApiLogicServer 15.4.0__py3-none-any.whl → 15.4.3__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.
@@ -268,6 +268,10 @@ def add_cust(project: Project, models_py_path: Path, project_name: str):
268
268
  is_customized = cocktail_napkin_path.exists()
269
269
  if not is_customized:
270
270
  add_basic_demo_customizations(project=project)
271
+ check_credit_path = project.project_directory_path.joinpath('logic/logic_discovery/check_credit.py')
272
+ if check_credit_path.exists():
273
+ check_credit_path.unlink()
274
+ log.debug(f'.. .. ..Deleted logic_discovery/check_credit.py (from readme_ai_mcp)')
271
275
  else:
272
276
  add_basic_demo_iteration(project=project)
273
277
 
@@ -12,9 +12,10 @@ ApiLogicServer CLI: given a database url, create [and run] customizable ApiLogic
12
12
  Called from api_logic_server_cli.py, by instantiating the ProjectRun object.
13
13
  '''
14
14
 
15
- __version__ = "15.04.00" # last public release: 15.03.02
15
+ __version__ = "15.04.03" # last public release: 15.04.01
16
16
  recent_changes = \
17
17
  f'\n\nRecent Changes:\n' +\
18
+ "\t11/12/2025 - 15.04.03: Copilot rules on updates, tighter basic_demo startup, allow for demo_ai_mcp/then tutorial \n"\
18
19
  "\t11/08/2025 - 15.04.00: Nat lang Copilot data access, fix Manager/Copilot startup, finding venv in project \n"\
19
20
  "\t10/29/2025 - 15.03.00: Stable Tutor 3.3 (working, vibe transtion) \n"\
20
21
  "\t10/26/2025 - 15.02.07: Clarify order created for ship test, security fixes [105], tutor 2.1 \n"\
@@ -5,8 +5,9 @@ Source: ApiLogicServer-src/prototypes/base/.github/.copilot-instructions.md
5
5
  Propagation: CLI create command → created projects (non-basic_demo)
6
6
  Instrucions: Changes must be merged from here to api_logic_server_cli/prototypes/basic_demo/.github - see instructions there
7
7
  Usage: AI assistants read this when user opens any created project
8
- version: 2.5
8
+ version: 2.6
9
9
  changelog:
10
+ - 2.6 (Nov 12, 2025 - Tighten project startup message
10
11
  - 2.5 (Nov 08, 2025 - API Best Practices
11
12
  - 2.4 (Nov 05, 2025 - Added MCP Integration section, Copilot as MCP client capability)
12
13
  - 2.3 (Nov 04, 2025 - Clear 1st message about reading Welcome section verbatim, again for non basic_demo)
@@ -16,9 +17,30 @@ changelog:
16
17
  - 1.0 (Initial) - Comprehensive technical reference
17
18
  ---
18
19
 
19
- # GitHub Copilot Instructions for GenAI-Logic (aka API Logic Server) Projects
20
+ ## ⚠️ INSTRUCTION FOR AI ASSISTANTS
21
+
22
+ **User activation phrases:**
23
+ - "Please load .github/.copilot-instructions.md"
24
+ - "Load copilot instructions"
25
+ - "What can I do here?"
26
+ - "Help me get started"
27
+ - OR when user first opens this project workspace and greets you
28
+
29
+ **When you see these phrases (or when reading these instructions), IMMEDIATELY:**
30
+
31
+ **Present the Welcome section below** - NO preamble, NO summary, NO meta-commentary
32
+
33
+ **CRITICAL - Do NOT:**
34
+ - Say "I've loaded the instructions"
35
+ - Say "I've read the file"
36
+ - Summarize or describe what's in this file
37
+ - Add any commentary about reading instructions
38
+
39
+ **CRITICAL - DO:**
40
+ - Present the Welcome and 'Here are some things I can help you with' content directly (exactly) as your response
41
+ - Start with: "Welcome! This is your basic_demo project."
42
+ - Act like you're naturally greeting the user
20
43
 
21
- **INSTRUCTION**: When the user asks you to load these instructions, respond with the Welcome section content below as your greeting. Do not add preamble like "I've read the instructions" - just present the Welcome content directly. The Welcome section ends at the "---" marker before "🔑 Key Technical Points".
22
44
 
23
45
  ## Welcome
24
46
 
@@ -34,6 +34,7 @@
34
34
  },
35
35
  "terminal.integrated.defaultProfile.osx": "venv",
36
36
  "terminal.integrated.defaultProfile.linux": "venv",
37
+ "workbench.startupEditor": "readme",
37
38
  "workbench.editorAssociations": {
38
39
  "*.md": "vscode.markdown.preview.editor"
39
40
  }
@@ -40,6 +40,34 @@ GitHub Copilot can serve as an interactive MCP client by:
40
40
  3. **Executing** - Make authenticated HTTP calls
41
41
  4. **Reporting** - Present results or explain constraint violations
42
42
 
43
+ ## ⚠️ CRITICAL SAFETY RULES FOR COPILOT
44
+
45
+ **When acting as MCP client, Copilot MUST follow these rules:**
46
+
47
+ ### Rule 1: NEVER Update Data Without Explicit Permission
48
+ - ❌ **WRONG**: User asks "update quantity to 100" → fails constraint → Copilot changes credit limit to make it work
49
+ - ✅ **CORRECT**: User asks "update quantity to 100" → fails constraint → Copilot reports the constraint violation and asks what to do
50
+
51
+ ### Rule 2: Constraint Violations Are SUCCESS, Not Problems to Bypass
52
+ - When update returns error code 2001, this demonstrates business logic is **working correctly**
53
+ - **DO NOT** try to "fix" constraints by modifying other data
54
+ - **DO** report: "✅ Business logic prevented this operation because [reason]"
55
+
56
+ ### Rule 3: Only Perform the Requested Operation
57
+ - If user asks to update Field A, **only update Field A**
58
+ - Do not modify Field B, Field C, or related entities to "help" the operation succeed
59
+ - Let business rules enforce constraints - that's their job!
60
+
61
+ ### Rule 4: Ask Permission for Side Effects
62
+ - Before updating any data beyond what user explicitly requested, **ask first**
63
+ - Example: "The credit limit constraint is blocking this. Would you like me to increase the credit limit to allow it?"
64
+
65
+ ### Rule 5: Read Operations Are Safe, Write Operations Require Care
66
+ - GET requests are safe to execute
67
+ - PATCH/POST/DELETE require user's explicit instruction for each field being modified
68
+
69
+ **Why These Rules Matter**: When demonstrating to customers, accidentally modifying their data (even to "help") destroys trust and demonstrates poor AI safety practices.
70
+
43
71
  ## Copilot Usage Pattern
44
72
 
45
73
  ### Step 1: Authentication
@@ -1,12 +1,13 @@
1
1
  ---
2
- title: Copilot Instructions for GenAI-Logic Projects
2
+ title: Copilot Instructions for basic_demo GenAI-Logic Project
3
3
  Description: Project-level instructions for working with generated projects
4
4
  Source: ApiLogicServer-src/prototypes/base/.github/.copilot-instructions.md
5
5
  Propagation: CLI create command → created projects (non-basic_demo)
6
6
  Instrucions: Changes must be merged from api_logic_server_cli/prototypes/basic_demo/.github - see instructions there
7
7
  Usage: AI assistants read this when user opens any created project
8
- version: 2.5
8
+ version: 2.6
9
9
  changelog:
10
+ - 2.6 (Nov 12, 2025 - Tighten project startup message
10
11
  - 2.5 (Nov 08, 2025 - API Best Practices
11
12
  - 2.4 (Nov 05, 2025 - Added MCP Integration section, Copilot as MCP client capability)
12
13
  - 2.3 (Nov 04, 2025 - Clear 1st message about reading Welcome section verbatim, again for non basic_demo)
@@ -18,7 +19,34 @@ changelog:
18
19
 
19
20
  # GitHub Copilot Instructions for GenAI-Logic (aka API Logic Server) Projects
20
21
 
21
- **INSTRUCTION**: When the user asks you to load these instructions, respond with the Welcome section content below as your greeting. Do not add preamble like "I've read the instructions" - just present the Welcome content directly. The Welcome section ends at the "---" marker before "🔑 Key Technical Points".
22
+ ---
23
+
24
+ ## ⚠️ INSTRUCTION FOR AI ASSISTANTS
25
+
26
+ **User activation phrases:**
27
+ - "Please load .github/.copilot-instructions.md"
28
+ - "Load copilot instructions"
29
+ - "What can I do here?"
30
+ - "Help me get started"
31
+ - OR when user first opens this project workspace and greets you
32
+
33
+ **When you see these phrases (or when reading these instructions), IMMEDIATELY:**
34
+
35
+ **Present the Welcome section below** - NO preamble, NO summary, NO meta-commentary
36
+
37
+ **CRITICAL - Do NOT:**
38
+ - Say "I've loaded the instructions"
39
+ - Say "I've read the file"
40
+ - Summarize or describe what's in this file
41
+ - Add any commentary about reading instructions
42
+
43
+ **CRITICAL - DO:**
44
+ - Present the Welcome content directly (exactly) as your response
45
+ - Start with: "Welcome! This is your basic_demo project."
46
+ - Act like you're naturally greeting the user
47
+ - Include the "guide me through" call-to-action
48
+
49
+ ---
22
50
 
23
51
  ## Welcome
24
52
 
@@ -37,9 +65,9 @@ This is a complete, working microservice auto-generated from a database schema -
37
65
 
38
66
  **First, we'll briefly explore what's automatically created. Then I'll show you how I can help you customize it - adding logic, security, and API endpoints.**
39
67
 
40
- **Ready to explore?** Say **"guide me through"** to begin the interactive tutorial.
68
+ **Ready to learn?** Say **"guide me through"** to begin the interactive tutorial.
41
69
 
42
- **Or, self-demo?** open `basic_demo/readme_ai_mcp.md` or `basic_demo/readme_vibe.md`.
70
+ **Or, self-demo?** Open `basic_demo/readme_ai_mcp.md`.
43
71
 
44
72
  ---
45
73
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ApiLogicServer
3
- Version: 15.4.0
3
+ Version: 15.4.3
4
4
  Author-email: Val Huber <apilogicserver@gmail.com>
5
5
  License-Expression: BSD-3-Clause
6
6
  Project-URL: Homepage, https://www.genai-logic.com
@@ -1,5 +1,5 @@
1
1
  api_logic_server_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- api_logic_server_cli/api_logic_server.py,sha256=BkJ-8sRKDzT5_aiUuteX4FDIJMIHEPgx09I7eUyTGX0,104938
2
+ api_logic_server_cli/api_logic_server.py,sha256=q6jcjEjUMHr333rZB2NR9l6MX96yAdwQdN0oebwkti4,105063
3
3
  api_logic_server_cli/api_logic_server_info.yaml,sha256=wzqFVXFXtbCPMFWmDG5k_cP4efr7YAhyhWIlYdpKGRc,132
4
4
  api_logic_server_cli/cli.py,sha256=xAqTOhq-OnXU2HEQgzsGC9yKrGcAgKUt_8b9U2bV5No,87831
5
5
  api_logic_server_cli/cli_args_base.py,sha256=7cVM6BeizwttYAwUu1FUyuLuvWufvgt0TFeA8FI6tu0,3304
@@ -7,7 +7,7 @@ api_logic_server_cli/cli_args_project.py,sha256=I5no_fGRV_ZsK3SuttVDAaQYI4Q5zCjx
7
7
  api_logic_server_cli/extended_builder.py,sha256=EhtXGAt_RrDR2tCtgvc2U82we7fr-F6pP-e6HS6dQWQ,13867
8
8
  api_logic_server_cli/logging.yml,sha256=vuBoOQVCr04NX2fnKIPmAvutn8FgWcsmpo1pELjDxtE,2228
9
9
  api_logic_server_cli/manager.py,sha256=So_Oa2FIP9h6PBUk1jqIOZveqtf7aOCZUORIZI4zwLY,14323
10
- api_logic_server_cli/add_cust/add_cust.py,sha256=yi_6qoiBm19K1u5VNhDW-KaTVcnsU-uTQ8-GYioojMI,14034
10
+ api_logic_server_cli/add_cust/add_cust.py,sha256=uthLxSiVFa8RKXi6JnYE9YjJlvvt385eTryMFTTF_io,14332
11
11
  api_logic_server_cli/create_from_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  api_logic_server_cli/create_from_model/api_expose_api_models_creator.py,sha256=V-u3Hm404doztw66YuD2A043RCFmtw5QF5tMioC_1b0,7900
13
13
  api_logic_server_cli/create_from_model/api_logic_server_utils.py,sha256=Aj211XUd-Ns81lJqU53owvIEfKVSJA0ssGmlWb1owo4,28730
@@ -423,7 +423,7 @@ api_logic_server_cli/prototypes/base/.devcontainer-option/For_VSCode.dockerfile,
423
423
  api_logic_server_cli/prototypes/base/.devcontainer-option/devcontainer.json,sha256=tk-mGd4XdmbpKUqUeGmcPMzX3RDc6am9-de8c-rFmSo,2361
424
424
  api_logic_server_cli/prototypes/base/.devcontainer-option/readme.md,sha256=-sSneMDne1fqEoox2hXUGmoO8ewgi34y7lJwGTidSpY,104
425
425
  api_logic_server_cli/prototypes/base/.devcontainer-option/setup.sh,sha256=pOvGjZ7jgRQzFkD93mNICmcC2y66Dexrq4bCnSSVwtU,310
426
- api_logic_server_cli/prototypes/base/.github/.copilot-instructions.md,sha256=hNNBZ9Vl8J-v3N6WC6vfIwdGu8uHFFAkErezuBt49eo,44099
426
+ api_logic_server_cli/prototypes/base/.github/.copilot-instructions.md,sha256=8mq70O1M4G3cdHR3igBNX3S_-yINT6E8NXphfrdKme8,44612
427
427
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/ApiLogicServer.xml,sha256=eFzhe9NH-VNjcPWbPsRQy5o-MugJR9IWklA1Fo8wtYg,1127
428
428
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/Report_Behave_Logic.xml,sha256=I3jlEf-TPzc-1NY843v6AcQIQ8QJD3z9KvxTYSZWMtY,1306
429
429
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/Run_Behave.xml,sha256=CTzF0P4w7o4FzOi-eSpru0HczSEGtJsKqkQ7VWRyxPc,1196
@@ -431,7 +431,7 @@ api_logic_server_cli/prototypes/base/.idea/runConfigurations/Windows_Run_Behave.
431
431
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/run___No_Security.xml,sha256=BBK0h04vSC_hVSi7dKm_8Mo201jGivZRbx4ruFcqAEo,1193
432
432
  api_logic_server_cli/prototypes/base/.idea/runConfigurations/run_docker.xml,sha256=oDHdZ8WEGU1MoWEQHH3jBvbPZt4hGlodUq4IeXv68co,2444
433
433
  api_logic_server_cli/prototypes/base/.vscode/launch.json,sha256=iRXpotDogfXa2tPd1C0HRK54rsqbBUkL-uH42B9hTRo,12658
434
- api_logic_server_cli/prototypes/base/.vscode/settings.json,sha256=MuMOqa7sfCmNea4i1ZXALKZQ2NZMVLMQtqrv-dmEmEA,1285
434
+ api_logic_server_cli/prototypes/base/.vscode/settings.json,sha256=gTmhdvh6RmINjfBkAE1aR0PM-CfpDbmKPAGF_5D63hs,1326
435
435
  api_logic_server_cli/prototypes/base/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
436
436
  api_logic_server_cli/prototypes/base/api/customize_api.py,sha256=-_eoaIukB4v1dF1TXTOqRRyU_nLbXXEhphI43GPtdoI,2236
437
437
  api_logic_server_cli/prototypes/base/api/expose_api_models.py,sha256=XhmZe_8HnupiEVuZS5DJ_mHhUOHulzU_XWQC2DZuSj8,1876
@@ -526,7 +526,7 @@ api_logic_server_cli/prototypes/base/devops/python-anywhere/python_anywhere_wsgi
526
526
  api_logic_server_cli/prototypes/base/docs/graphics/readme.md,sha256=GaNOkrzT_nlcrIpmmwLQtoGC6aPZnM8bSGgmc5fM8yk,402
527
527
  api_logic_server_cli/prototypes/base/docs/logic/readme.md,sha256=fIQypEQ7Ny7q385AhpwndYRBFquG6P6xpM41-zrIseE,871
528
528
  api_logic_server_cli/prototypes/base/docs/logic_suggestions/readme_logic_suggestions.md,sha256=44ibQYGOy84J4zGFaChLCOf-GU9pOBrbgBbprujMtIs,184
529
- api_logic_server_cli/prototypes/base/docs/training/MCP_Copilot_Integration.md,sha256=hR88Th7XNaT2051sEMniPTf9v1cVEblpuAXWGmVNd5w,10686
529
+ api_logic_server_cli/prototypes/base/docs/training/MCP_Copilot_Integration.md,sha256=02Pind93xGAA4V3C2slSWkIjE5F2Mdlx4GulgsZKi1E,12287
530
530
  api_logic_server_cli/prototypes/base/docs/training/admin_app_1_context.prompt.md,sha256=IpBkTI7BLdF7885Q0k5CTu_8Gunl5FdqH_t6fHVjAq0,1740
531
531
  api_logic_server_cli/prototypes/base/docs/training/admin_app_2_functionality.prompt.md,sha256=iWMoAkETeQjWWPrNj1AcI4HFGLlgS0-HP9oBYXhdTNI,1705
532
532
  api_logic_server_cli/prototypes/base/docs/training/admin_app_3_architecture.prompt.md,sha256=5KtRBihPbxTQEvLJ51w104Z0HfDGFEmQc3ysek6EsXA,925
@@ -621,7 +621,7 @@ api_logic_server_cli/prototypes/base/venv_setup/venv.sh,sha256=aWX9fa8fe6aO9ifBI
621
621
  api_logic_server_cli/prototypes/basic_demo/_config.yml,sha256=KIUQQpjgj7hP_Z2Fksq90E52UnbKnyom-v9L_eIfqZo,170
622
622
  api_logic_server_cli/prototypes/basic_demo/readme.md,sha256=Ii0WojbHMHpg6bgMlg9WyadzXVZePM2Nk89kmKHuGTM,18722
623
623
  api_logic_server_cli/prototypes/basic_demo/tutor.md,sha256=nlIkqcqkVXBDe3Rktcr4puZxrrTFDl1s_Id8nA5GwA4,45516
624
- api_logic_server_cli/prototypes/basic_demo/.github/.copilot-instructions.md,sha256=k6ZfBQVFdzHsCopJfSuW0VhprpvMfOoplZBu-rFAo64,44644
624
+ api_logic_server_cli/prototypes/basic_demo/.github/.copilot-instructions.md,sha256=l2mqCybozfzIWOubcOqH5gR_eQCeBDyCKVfr_Ld_W8Q,45223
625
625
  api_logic_server_cli/prototypes/basic_demo/.github/welcome.md,sha256=sdT1Jz9rDgkjTQK2IC1EHs_rFI1bRhwTsOZ21i3oJ0k,1077
626
626
  api_logic_server_cli/prototypes/basic_demo/_layouts/redirect.html,sha256=-0kMPGYI88fb787IzYmdi7ySZUhgpUlP0vodrg8-NRM,457
627
627
  api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/openapi.py,sha256=kLQ7Fn1J7tzuNJHBXF2AiwtzvQ-0JxJ6z-MfFryAtLk,3887
@@ -692,7 +692,7 @@ api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml,sha256=
692
692
  api_logic_server_cli/prototypes/basic_demo/logic/declarative-vs-procedural-comparison.html,sha256=GUzgmnWdT709M5mPJGyfF1ARzzz3y5guASDBWeG43PU,3915
693
693
  api_logic_server_cli/prototypes/basic_demo/logic/procedural/credit_service.py,sha256=n_7YzxxssaxfuB8-nu_jPrQ-H6leAqKjJQRfOKcQwR4,7525
694
694
  api_logic_server_cli/prototypes/basic_demo/logic/procedural/declarative-vs-procedural-comparison.md,sha256=RAW9EKd1ngY9Lw6rXbimFFSgBwtzMm9o3-_t4_rNdJ0,15844
695
- api_logic_server_cli/prototypes/basic_demo/logic/procedural/declarative-vs-procedural-comparison.png,sha256=4jZRhM4raP95KOhbUEzlDRT-K9olwbVI6PVMZKi8j84,904211
695
+ api_logic_server_cli/prototypes/basic_demo/logic/procedural/declarative-vs-procedural-comparison.png,sha256=JYukeefOas_GGBVvRGdHGAtD124H6EILQsEtjFxPrPE,842498
696
696
  api_logic_server_cli/prototypes/basic_demo/ui/my-react-app/README.md,sha256=h7ePuwOqn3jv7YkjM4ruaP5rpYBmr_4Q3NChhb8pVJ4,452
697
697
  api_logic_server_cli/prototypes/basic_demo/ui/my-react-app/README_create_react_app.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
698
698
  api_logic_server_cli/prototypes/basic_demo/ui/my-react-app/package-lock.json,sha256=dG1s4WtUFp0ZhVWGwp_Ocv-Ii2c92Xb4FWqHFc0m7KU,698058
@@ -2864,9 +2864,9 @@ api_logic_server_cli/tools/mini_skel/database/system/SAFRSBaseX.py,sha256=p8C7AF
2864
2864
  api_logic_server_cli/tools/mini_skel/database/system/TestDataBase.py,sha256=U02SYqThsbY5g3DX7XGaiMxjZBuOpzvtPS6RfI1WQFg,371
2865
2865
  api_logic_server_cli/tools/mini_skel/logic/declare_logic.py,sha256=fTrlHyqMeZsw_TyEXFa1VlYBL7fzjZab5ONSXO7aApo,175
2866
2866
  api_logic_server_cli/tools/mini_skel/logic/load_verify_rules.py,sha256=Rr5bySJpYCZmNPF2h-phcPJ53nAOPcT_ohZpCD93-a0,7530
2867
- apilogicserver-15.4.0.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
2868
- apilogicserver-15.4.0.dist-info/METADATA,sha256=-t0Ebk60pemljRZiL9WiGYAB3i5ue-B2sBVOK_rdrGk,26461
2869
- apilogicserver-15.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2870
- apilogicserver-15.4.0.dist-info/entry_points.txt,sha256=W9EVNvf09h8n6rJChmVj2gzxVQ6BXXZa2x3wri0lFGc,259
2871
- apilogicserver-15.4.0.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
2872
- apilogicserver-15.4.0.dist-info/RECORD,,
2867
+ apilogicserver-15.4.3.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
2868
+ apilogicserver-15.4.3.dist-info/METADATA,sha256=ePdEO1dFd2u6q85tufYQw-Nf9hkviZHiRtnGsRQWCkw,26461
2869
+ apilogicserver-15.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2870
+ apilogicserver-15.4.3.dist-info/entry_points.txt,sha256=W9EVNvf09h8n6rJChmVj2gzxVQ6BXXZa2x3wri0lFGc,259
2871
+ apilogicserver-15.4.3.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
2872
+ apilogicserver-15.4.3.dist-info/RECORD,,