api-foundry-query-engine 0.8.71__tar.gz → 0.8.73__tar.gz
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.
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/PKG-INFO +1 -1
- api_foundry_query_engine-0.8.73/api_foundry_query_engine/__init__.py +1 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/api_model.py +14 -3
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/token_decoder.py +0 -2
- api_foundry_query_engine-0.8.71/api_foundry_query_engine/__init__.py +0 -1
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/.gitignore +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/LICENSE +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/.pre-commit-config.yaml +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/adapters/adapter.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/adapters/case_change_adapter.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/adapters/gateway_adapter.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/adapters/security_adapter.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/connectors/connection.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/connectors/connection_factory.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/connectors/oracle_connector.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/connectors/postgres_connection.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/batch_operation_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/dao.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/operation_dao.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_custom_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_delete_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_insert_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_restore_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_select_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_subselect_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/dao/sql_update_query_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/lambda_handler.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/operation.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/services/service.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/services/transactional_service.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/app_exception.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/claims_check.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/dependency_resolver.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/logger.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/api_foundry_query_engine/utils/reference_resolver.py +0 -0
- {api_foundry_query_engine-0.8.71 → api_foundry_query_engine-0.8.73}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: api-foundry-query-engine
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.73
|
|
4
4
|
Summary: The AWS lambda service handler use by the `api_foundry` project is a powerful tool designed to automate the deployment of REST APIs on AWS using Lambda services to access and interact with relational databases (RDBMS). This project leverages the OpenAPI specification to define and manage the APIs
|
|
5
5
|
Project-URL: Documentation, https://github.com/DanRepik/api-foundry
|
|
6
6
|
Project-URL: Source, https://github.com/DanRepik/api-foundry
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.8.73"
|
|
@@ -355,10 +355,21 @@ class APIModel:
|
|
|
355
355
|
def set_api_model(engine_config: Mapping[str, str]):
|
|
356
356
|
global api_model
|
|
357
357
|
if api_model is None:
|
|
358
|
-
|
|
359
|
-
|
|
358
|
+
api_spec_value = engine_config.get("API_SPEC")
|
|
359
|
+
if api_spec_value:
|
|
360
|
+
if isinstance(api_spec_value, str) and os.path.exists(api_spec_value):
|
|
361
|
+
log.info("Loading API model from API_SPEC file path")
|
|
362
|
+
with open(api_spec_value, "r") as file:
|
|
363
|
+
config = yaml.safe_load(file)
|
|
364
|
+
else:
|
|
365
|
+
config = yaml.safe_load(api_spec_value)
|
|
366
|
+
if isinstance(config, str) and os.path.exists(config):
|
|
367
|
+
log.info("Loading API model from API_SPEC file path")
|
|
368
|
+
with open(config, "r") as file:
|
|
369
|
+
config = yaml.safe_load(file)
|
|
360
370
|
else:
|
|
361
371
|
log.info("Loading API model from file")
|
|
362
372
|
with open(os.environ.get("API_SPEC", "/var/task/api_spec.yaml"), "r") as file:
|
|
363
|
-
|
|
373
|
+
config = yaml.safe_load(file)
|
|
374
|
+
api_model = APIModel(config)
|
|
364
375
|
log.info("Loaded API model: %s", api_model)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.8.71"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|