liberty-framework 6.0.67__py3-none-any.whl → 6.0.69__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.
- liberty/framework/alembic/env.py +5 -3
- liberty/framework/alembic.ini +1 -1
- liberty/framework/config/files/liberty.ini +7 -2
- liberty/framework/database/base_dao.py +15 -11
- liberty/framework/postgres/dump/airflow.dump +0 -0
- liberty/framework/postgres/dump/gitea.dump +0 -0
- liberty/framework/postgres/dump/keycloak.dump +0 -0
- liberty/framework/postgres/dump/liberty.dump +0 -0
- liberty/framework/postgres/dump/libnarf.dump +0 -0
- liberty/framework/postgres/dump/libnjde.dump +0 -0
- liberty/framework/postgres/dump/libnsx1.dump +0 -0
- liberty/framework/postgres/dump/nomaarf.dump +0 -0
- liberty/framework/postgres/dump/nomajde.dump +0 -0
- liberty/framework/postgres/dump/nomasx1.dump +0 -0
- liberty/framework/public/frontend/assets/{index-DfARiY0K.js → index-BvsxxjKX.js} +3 -3
- liberty/framework/public/frontend/assets/{index-DfARiY0K.js.map → index-BvsxxjKX.js.map} +1 -1
- liberty/framework/public/frontend/assets/{index.es-CBlJRKZK-CW68Tgr0.js → index.es-CBlJRKZK-DftBlmxp.js} +2 -2
- liberty/framework/public/frontend/assets/{index.es-CBlJRKZK-CW68Tgr0.js.map → index.es-CBlJRKZK-DftBlmxp.js.map} +1 -1
- liberty/framework/public/frontend/index.html +1 -1
- liberty/framework/services/api_services.py +2 -3
- liberty/framework/setup/data/liberty.json +28162 -28143
- liberty/framework/setup/data/libnarf.json +5272 -0
- liberty/framework/setup/data/libnjde.json +8882 -8880
- liberty/framework/setup/data/libnsx1.json +30663 -29478
- liberty/framework/setup/data/nomaarf.json +3 -0
- liberty/framework/setup/models/nomaarf.py +36 -0
- liberty/framework/setup/models/nomasx1.py +62 -0
- liberty/framework/setup/services/setup.py +8 -4
- {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.69.dist-info}/METADATA +3 -2
- {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.69.dist-info}/RECORD +34 -31
- {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.69.dist-info}/WHEEL +1 -1
- liberty/framework/postgres/dump/libnetl.dump +0 -0
- liberty/framework/setup/data/libnetl.json +0 -1809
- {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.69.dist-info}/entry_points.txt +0 -0
- {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.69.dist-info/licenses}/LICENSE.md +0 -0
- {liberty_framework-6.0.67.dist-info → liberty_framework-6.0.69.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-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BvsxxjKX.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:
|