functualize-lambda 0.1.0__tar.gz → 0.1.2__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.2}/.gitignore +18 -6
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/PKG-INFO +2 -2
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/pyproject.toml +1 -1
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/README.md +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/README.md +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/lambda_handler/README.md +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/lambda_handler/pyproject.toml +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/lambda_handler/src/lambda_service/__init__.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/lambda_handler/src/lambda_service/app.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/lambda_handler/src/lambda_service/jobs.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/examples/lambda_handler/tests/test_lambda_jobs.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/src/functualize_lambda/__init__.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/src/functualize_lambda/py.typed +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/tests/__init__.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/tests/conftest.py +0 -0
- {functualize_lambda-0.1.0 → functualize_lambda-0.1.2}/tests/test_plugin.py +0 -0
|
@@ -11,13 +11,17 @@ 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
|
-
|
|
19
|
-
.spec/
|
|
20
|
-
|
|
19
|
+
# A one-hour spec-gate bypass token, not a repository artifact. The *ledger* of
|
|
20
|
+
# uses (.spec/exemptions.log) is committed and is the real mitigation; the token
|
|
21
|
+
# itself is per-session, and committing it would hand everyone else a live
|
|
22
|
+
# bypass. Ignored because the documented escape hatch otherwise sits in
|
|
23
|
+
# `git status` waiting to be added by accident.
|
|
24
|
+
.spec/EXEMPT
|
|
21
25
|
.opencode/
|
|
22
26
|
|
|
23
27
|
|
|
@@ -86,6 +90,15 @@ site/
|
|
|
86
90
|
.sidecar-base
|
|
87
91
|
.td-root
|
|
88
92
|
.functualize/
|
|
93
|
+
# ...except the committed example plugin, which the blanket rule above swallowed.
|
|
94
|
+
# Git will not descend into an excluded directory, so every level must be un-excluded
|
|
95
|
+
# in turn, and each level re-ignores its own contents so that only the plugin sources
|
|
96
|
+
# become trackable — never the cache, state or lock files a run drops beside them.
|
|
97
|
+
!examples/plugins/file_based_plugin/.functualize/
|
|
98
|
+
examples/plugins/file_based_plugin/.functualize/*
|
|
99
|
+
!examples/plugins/file_based_plugin/.functualize/plugins/
|
|
100
|
+
examples/plugins/file_based_plugin/.functualize/plugins/*
|
|
101
|
+
!examples/plugins/file_based_plugin/.functualize/plugins/*.py
|
|
89
102
|
.import_linter_cache/
|
|
90
103
|
.mypy_cache/
|
|
91
104
|
.pytest_cache/
|
|
@@ -94,8 +107,7 @@ site/
|
|
|
94
107
|
# OmO / OpenCode agent run-continuation scratch state
|
|
95
108
|
.omo/
|
|
96
109
|
.mcp.json
|
|
97
|
-
.agentsroom/handoff-transcript-*.txt
|
|
98
|
-
.agentsroom/handoff-summary-*.md
|
|
99
110
|
|
|
100
111
|
# Internal pre-release audit reports (contain session IDs / local infra notes)
|
|
101
112
|
.release/
|
|
113
|
+
.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.2
|
|
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.2}/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
|