functualize-lambda 0.1.0__tar.gz → 0.1.1__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.
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/.gitignore +12 -6
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/PKG-INFO +2 -2
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/pyproject.toml +1 -1
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/README.md +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/README.md +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/README.md +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/pyproject.toml +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/src/lambda_service/__init__.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/src/lambda_service/app.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/src/lambda_service/jobs.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/tests/test_lambda_jobs.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/src/functualize_lambda/__init__.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/src/functualize_lambda/py.typed +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/tests/__init__.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/tests/conftest.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/tests/test_plugin.py +0 -0
|
@@ -11,13 +11,11 @@ build/
|
|
|
11
11
|
|
|
12
12
|
# Agents
|
|
13
13
|
.spec/archive/
|
|
14
|
-
.spec/features/
|
|
15
14
|
.spec/scrutiny-reports/
|
|
15
|
+
.spec/proposals/
|
|
16
|
+
.spec/plans/
|
|
16
17
|
.spec/.agentic-coding
|
|
17
18
|
.spec/STATE.md
|
|
18
|
-
.spec/PROJECT.md
|
|
19
|
-
.spec/REQUIREMENTS.md
|
|
20
|
-
.spec/ROADMAP.md
|
|
21
19
|
.opencode/
|
|
22
20
|
|
|
23
21
|
|
|
@@ -86,6 +84,15 @@ site/
|
|
|
86
84
|
.sidecar-base
|
|
87
85
|
.td-root
|
|
88
86
|
.functualize/
|
|
87
|
+
# ...except the committed example plugin, which the blanket rule above swallowed.
|
|
88
|
+
# Git will not descend into an excluded directory, so every level must be un-excluded
|
|
89
|
+
# in turn, and each level re-ignores its own contents so that only the plugin sources
|
|
90
|
+
# become trackable — never the cache, state or lock files a run drops beside them.
|
|
91
|
+
!examples/plugins/file_based_plugin/.functualize/
|
|
92
|
+
examples/plugins/file_based_plugin/.functualize/*
|
|
93
|
+
!examples/plugins/file_based_plugin/.functualize/plugins/
|
|
94
|
+
examples/plugins/file_based_plugin/.functualize/plugins/*
|
|
95
|
+
!examples/plugins/file_based_plugin/.functualize/plugins/*.py
|
|
89
96
|
.import_linter_cache/
|
|
90
97
|
.mypy_cache/
|
|
91
98
|
.pytest_cache/
|
|
@@ -94,8 +101,7 @@ site/
|
|
|
94
101
|
# OmO / OpenCode agent run-continuation scratch state
|
|
95
102
|
.omo/
|
|
96
103
|
.mcp.json
|
|
97
|
-
.agentsroom/handoff-transcript-*.txt
|
|
98
|
-
.agentsroom/handoff-summary-*.md
|
|
99
104
|
|
|
100
105
|
# Internal pre-release audit reports (contain session IDs / local infra notes)
|
|
101
106
|
.release/
|
|
107
|
+
.worktrees/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: functualize-lambda
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: AWS Lambda adapter plugin for functualize - supports fat and thin Lambda deployment patterns
|
|
5
5
|
Author-email: Mohammad Hakim Adiprasetya <viltohmyst@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functualize_lambda-0.1.0 → functualize_lambda-0.1.1}/examples/lambda_handler/pyproject.toml
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
|