modmex-lambda 0.5.7__tar.gz → 0.5.9__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.
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/PKG-INFO +2 -2
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/api_gateway.py +2 -2
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/poetry.lock +6 -6
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/pyproject.toml +2 -2
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_api_gateway.py +15 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/.github/workflows/ci.yml +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/.github/workflows/release.yml +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/.gitignore +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/LICENSE +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/README.md +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/cloudwatch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/eventbridge.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/icloudwatch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/idynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/ieventbridge.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/ilambda.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/is3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/isns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/isqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/lambda_.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/module.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/connectors/sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/api_gateway_authorizer_event.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/api_gateway_proxy_event.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/api_gateway_websocket_event.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/cognito_user_pool_event.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/common.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/dependencies.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/constants.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/content_types.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/cors.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/compat.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/dependant.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/dependency_middleware.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/depends.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/params.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/types.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/exception_handler.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/exceptions.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/gateway_response.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/middlewares.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/params.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/request.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/response.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/routing.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/routing_fallbacks.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/types.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_sources.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/exceptions.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/logging.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/params.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/parser.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/expressions.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/keys.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/materialized_views.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/stream_fields.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/request.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/resolver.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/response.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/routing.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/shared/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/shared/cookies.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/shared/headers_serializer.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/shared/json_encoder.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/shared/types.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/events/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/events/dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/events/kinesis.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/events/s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/events/sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/events/sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/filters/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/filters/content.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/filters/event_type.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/filters/latch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/filters/skip.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/base_flavor.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/cdc.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/collect.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/correlate.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/evaluate.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/expired.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/iflavor.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/job.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/materialize.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/task.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/flavors/update.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/irules_registry.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/cloudwatch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/ioperator.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/lambda_.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/publisher.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/operators/sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/rules_registry.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/runner.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/base.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/kinesis.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/sources/sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/apigateway.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/aws.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/batch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/cloudwatch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/concurrency.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/contracts.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/data_classes/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/data_classes/dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/decorators.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/eventbridge.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/faults.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/filters.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/json_encoder.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/lambda_.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/operators.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/pluralize.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/print.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/retry.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/split.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/tags.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/time.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/uow.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/tracing.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/validation.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/conftest.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/conftest.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_cloudwatch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_lazy_clients.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_simple_connectors.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/connectors/test_sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/data_classes/test_api_gateway_proxy_event.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/data_classes/test_cognito_user_pool_event.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/data_classes/test_common.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_cors.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_dependencies.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_exception_handler.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_gateway_response.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_request.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_response.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/event_handler/test_routing.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/test_dynamodb_expressions.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/test_dynamodb_keys.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/test_dynamodb_materialized_views.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/test_dynamodb_stream_fields.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/shared/test_cookies_headers.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/shared/test_json_encoder.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/conftest.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/events/test_dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/events/test_kinesis.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/events/test_s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/events/test_sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/events/test_sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/filters/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/filters/test_content.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/filters/test_event_type.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/filters/test_latch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/filters/test_skip.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/source_events.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_base_flavor.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_cdc.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_collect.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_correlate.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_evaluate.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_expired.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_job.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_materialize.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_task.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/flavors/test_update.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/test_dependency_resolver.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/test_rules_registry.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/test_runner.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/test_runner_pipeline.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/test_sources.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/__init__.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/faults.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_apigateway.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_aws.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_batch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_cloudwatch.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_concurrency.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_decorators.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_dynamodb.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_eventbridge.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_filters.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_json_encoder.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_lambda.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_operators.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_pluralize.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_print.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_retry.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_s3.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_sns.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_split.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_sqs.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_tags.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_time.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/stream/utils/test_uow.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/test_lazy_imports.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/test_logging.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/test_parser_event_sources.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/test_reexports.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/test_tracing.py +0 -0
- {modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/test_validation.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: modmex-lambda
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.9
|
|
4
4
|
Summary: Ultra-lightweight AWS Lambda utilities for API Gateway routing and event handling.
|
|
5
5
|
Author: Modmex
|
|
6
6
|
License: MIT
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
13
13
|
Requires-Python: <4.0,>=3.10
|
|
14
14
|
Requires-Dist: boto3<2.0.0,>=1.24.66
|
|
15
15
|
Requires-Dist: injector<1.0.0,>=0.24.0
|
|
16
|
-
Requires-Dist: modmex<2.0.0,>=1.1.
|
|
16
|
+
Requires-Dist: modmex<2.0.0,>=1.1.12
|
|
17
17
|
Requires-Dist: pydash<9.0.0,>=5.1.2
|
|
18
18
|
Requires-Dist: reactivex<5.0.0,>=4.0.4
|
|
19
19
|
Requires-Dist: typing-extensions<5.0.0,>=4.5.0
|
|
@@ -168,8 +168,8 @@ class ApiGatewayResolver(BaseRouter, IApiGatewayResolver):
|
|
|
168
168
|
cache_control=cache_control,
|
|
169
169
|
)
|
|
170
170
|
|
|
171
|
-
def include_router(self, router: Router) -> None:
|
|
172
|
-
self._router.include_router(router)
|
|
171
|
+
def include_router(self, router: Router, prefix: str = "") -> None:
|
|
172
|
+
self._router.include_router(router, prefix=prefix)
|
|
173
173
|
|
|
174
174
|
def resolve(self, event: dict[str, Any], context: object) -> dict[str, Any]:
|
|
175
175
|
self.current_event = self._to_proxy_event(event)
|
|
@@ -246,16 +246,16 @@ files = [
|
|
|
246
246
|
|
|
247
247
|
[[package]]
|
|
248
248
|
name = "modmex"
|
|
249
|
-
version = "1.1.
|
|
249
|
+
version = "1.1.12"
|
|
250
250
|
description = "Lightweight Python models built on dataclasses with validation, serialization, and type-safe data mapping"
|
|
251
251
|
optional = false
|
|
252
252
|
python-versions = ">=3.10"
|
|
253
253
|
groups = ["main"]
|
|
254
254
|
files = [
|
|
255
|
-
{file = "modmex-1.1.
|
|
256
|
-
{file = "modmex-1.1.
|
|
257
|
-
{file = "modmex-1.1.
|
|
258
|
-
{file = "modmex-1.1.
|
|
255
|
+
{file = "modmex-1.1.12-cp310-abi3-macosx_11_0_arm64.whl", hash = "sha256:af76140cf31556cfc82dc2c407f9d72cf67594c17348c9eb57e6fb5f883be39f"},
|
|
256
|
+
{file = "modmex-1.1.12-cp310-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:e8394ab4da78bd9ab1c53ef5552fa4a3fef3659f894a0cb1f0bb6a5fa8dd26cb"},
|
|
257
|
+
{file = "modmex-1.1.12-cp310-abi3-win_amd64.whl", hash = "sha256:7cd27992488c233b2ad0c90f83b74debe6dc316c28aa4322b76ddb0d3ae16ec0"},
|
|
258
|
+
{file = "modmex-1.1.12.tar.gz", hash = "sha256:654e276f196bf025d84b58150015cd0ee5de7e1feb52d74e5263de84f259c0f2"},
|
|
259
259
|
]
|
|
260
260
|
|
|
261
261
|
[package.dependencies]
|
|
@@ -604,4 +604,4 @@ injector = ["injector"]
|
|
|
604
604
|
[metadata]
|
|
605
605
|
lock-version = "2.1"
|
|
606
606
|
python-versions = ">=3.10,<4.0"
|
|
607
|
-
content-hash = "
|
|
607
|
+
content-hash = "01ddd2e647add817fae38770a828cea5f1d2c93ca33aa0e8a193b2d5155f318e"
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "modmex-lambda"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.9"
|
|
8
8
|
description = "Ultra-lightweight AWS Lambda utilities for API Gateway routing and event handling."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10,<4.0"
|
|
@@ -18,12 +18,12 @@ classifiers = [
|
|
|
18
18
|
license = { text = "MIT" }
|
|
19
19
|
authors = [{ name = "Modmex" }]
|
|
20
20
|
dependencies = [
|
|
21
|
-
"modmex (>=1.1.10,<2.0.0)",
|
|
22
21
|
"boto3>=1.24.66,<2.0.0",
|
|
23
22
|
"injector>=0.24.0,<1.0.0",
|
|
24
23
|
"pydash>=5.1.2,<9.0.0",
|
|
25
24
|
"reactivex>=4.0.4,<5.0.0",
|
|
26
25
|
"typing-extensions>=4.5.0,<5.0.0",
|
|
26
|
+
"modmex (>=1.1.12,<2.0.0)",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.optional-dependencies]
|
|
@@ -325,6 +325,21 @@ def test_include_router_and_strip_prefixes() -> None:
|
|
|
325
325
|
assert response_body(response) == {"ok": True}
|
|
326
326
|
|
|
327
327
|
|
|
328
|
+
def test_include_router_respects_prefix() -> None:
|
|
329
|
+
router = Router()
|
|
330
|
+
app = APIGatewayHttpResolver()
|
|
331
|
+
|
|
332
|
+
@router.get("/health")
|
|
333
|
+
def health():
|
|
334
|
+
return {"ok": True}
|
|
335
|
+
|
|
336
|
+
app.include_router(router, prefix="/api")
|
|
337
|
+
|
|
338
|
+
response = app.resolve(http_v2_event("GET", "/api/health"), object())
|
|
339
|
+
|
|
340
|
+
assert response_body(response) == {"ok": True}
|
|
341
|
+
|
|
342
|
+
|
|
328
343
|
def test_include_nested_routers() -> None:
|
|
329
344
|
grandchild = Router()
|
|
330
345
|
child = Router()
|
|
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
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/api_gateway_proxy_event.py
RENAMED
|
File without changes
|
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/data_classes/cognito_user_pool_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/__init__.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/compat.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/dependant.py
RENAMED
|
File without changes
|
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/depends.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/params.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/dependencies/types.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/exception_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/event_handler/routing_fallbacks.py
RENAMED
|
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
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/expressions.py
RENAMED
|
File without changes
|
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/materialized_views.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/persistence/dynamodb/stream_fields.py
RENAMED
|
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
|
|
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
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/data_classes/__init__.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/modmex_lambda/stream/utils/data_classes/dynamodb.py
RENAMED
|
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
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/data_classes/test_api_gateway_proxy_event.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/data_classes/test_cognito_user_pool_event.py
RENAMED
|
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
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/test_dynamodb_materialized_views.py
RENAMED
|
File without changes
|
{modmex_lambda-0.5.7 → modmex_lambda-0.5.9}/tests/persistence/test_dynamodb_stream_fields.py
RENAMED
|
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
|
|
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
|