liberty-framework 6.0.67__py3-none-any.whl → 6.0.68__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 (34) hide show
  1. liberty/framework/alembic/env.py +5 -3
  2. liberty/framework/alembic.ini +1 -1
  3. liberty/framework/config/files/liberty.ini +7 -2
  4. liberty/framework/database/base_dao.py +15 -11
  5. liberty/framework/postgres/dump/airflow.dump +0 -0
  6. liberty/framework/postgres/dump/gitea.dump +0 -0
  7. liberty/framework/postgres/dump/keycloak.dump +0 -0
  8. liberty/framework/postgres/dump/liberty.dump +0 -0
  9. liberty/framework/postgres/dump/libnarf.dump +0 -0
  10. liberty/framework/postgres/dump/libnjde.dump +0 -0
  11. liberty/framework/postgres/dump/libnsx1.dump +0 -0
  12. liberty/framework/postgres/dump/nomaarf.dump +0 -0
  13. liberty/framework/postgres/dump/nomajde.dump +0 -0
  14. liberty/framework/postgres/dump/nomasx1.dump +0 -0
  15. liberty/framework/public/frontend/assets/{index-DfARiY0K.js → index-BG2cTHbD.js} +3 -3
  16. liberty/framework/public/frontend/assets/{index-DfARiY0K.js.map → index-BG2cTHbD.js.map} +1 -1
  17. liberty/framework/public/frontend/assets/{index.es-CBlJRKZK-CW68Tgr0.js → index.es-CBlJRKZK-BJ6huwhw.js} +2 -2
  18. liberty/framework/public/frontend/assets/{index.es-CBlJRKZK-CW68Tgr0.js.map → index.es-CBlJRKZK-BJ6huwhw.js.map} +1 -1
  19. liberty/framework/public/frontend/index.html +1 -1
  20. liberty/framework/services/api_services.py +2 -3
  21. liberty/framework/setup/data/liberty.json +28164 -28145
  22. liberty/framework/setup/data/{libnetl.json → libnarf.json} +1278 -1351
  23. liberty/framework/setup/data/libnjde.json +8882 -8880
  24. liberty/framework/setup/data/libnsx1.json +28841 -28593
  25. liberty/framework/setup/data/nomaarf.json +3 -0
  26. liberty/framework/setup/models/nomaarf.py +36 -0
  27. liberty/framework/setup/services/setup.py +8 -4
  28. {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.68.dist-info}/METADATA +1 -1
  29. {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.68.dist-info}/RECORD +33 -30
  30. {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.68.dist-info}/WHEEL +1 -1
  31. liberty/framework/postgres/dump/libnetl.dump +0 -0
  32. {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.68.dist-info}/LICENSE.md +0 -0
  33. {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.68.dist-info}/entry_points.txt +0 -0
  34. {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.68.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/svg.xml" href="/assets/logo_ly-HGj2PB94.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>LIBERTY - NOMANA-IT</title>
8
- <script type="module" crossorigin src="/assets/index-DfARiY0K.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-BG2cTHbD.js"></script>
9
9
  </head>
10
10
  <body>
11
11
  <noscript>You need to enable JavaScript to run this app.</noscript>
@@ -293,12 +293,11 @@ class API:
293
293
 
294
294
  # Execute the query
295
295
  results = await self.db_pools.get_pool(target_pool).db_dao.post(data_query, context)
296
-
297
296
  # Return the response
298
297
  return JSONResponse({
299
- "items": [],
298
+ "items": results["rows"],
300
299
  "status": "success",
301
- "count": results
300
+ "count": results["count"]
302
301
  })
303
302
 
304
303
  except Exception as err: