validibot-shared 0.5.1__tar.gz → 0.7.0__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.
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/PKG-INFO +1 -1
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/pyproject.toml +1 -1
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/evidence/manifest.py +27 -1
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/.gitignore +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/LICENSE +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/NOTICE +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/README.md +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/__init__.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_energyplus_envelopes.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_energyplus_models.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_evidence_manifest.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_fmu_envelopes.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_fmu_models.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_package_init.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/tests/test_validations_envelopes.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/__init__.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/energyplus/__init__.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/energyplus/envelopes.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/energyplus/models.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/evidence/__init__.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/fmu/__init__.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/fmu/envelopes.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/fmu/models.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/py.typed +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/validations/__init__.py +0 -0
- {validibot_shared-0.5.1 → validibot_shared-0.7.0}/validibot_shared/validations/envelopes.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: validibot-shared
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: Shared library for data interchange between Validibot and validator containers
|
|
5
5
|
Project-URL: Homepage, https://validibot.com
|
|
6
6
|
Project-URL: Documentation, https://docs.validibot.com
|
|
@@ -89,6 +89,25 @@ class StepValidatorRecord(BaseModel):
|
|
|
89
89
|
"verifiers know to expect a legacy-versioning gap there."
|
|
90
90
|
),
|
|
91
91
|
)
|
|
92
|
+
# Trust ADR Phase 5 Session A — the *runtime* identity of the
|
|
93
|
+
# validator backend container that actually executed this step.
|
|
94
|
+
# ``validator_semantic_digest`` describes the validator's
|
|
95
|
+
# *configuration* (slug, version, config bytes); this field
|
|
96
|
+
# describes the *image bytes* that ran. The two are
|
|
97
|
+
# complementary: one proves "the validator was configured this
|
|
98
|
+
# way", the other proves "this exact container ran". Optional
|
|
99
|
+
# because (a) simple-validator steps run inline without a
|
|
100
|
+
# backend, and (b) historical step runs predate the field.
|
|
101
|
+
validator_backend_image_digest: str | None = Field(
|
|
102
|
+
default=None,
|
|
103
|
+
description=(
|
|
104
|
+
"Resolved sha256 digest of the validator backend image "
|
|
105
|
+
"that executed this step (e.g. 'sha256:abc...' or "
|
|
106
|
+
"'registry/...@sha256:abc...'). None for simple-validator "
|
|
107
|
+
"steps that run inline without a container, or for runs "
|
|
108
|
+
"captured before digest capture shipped."
|
|
109
|
+
),
|
|
110
|
+
)
|
|
92
111
|
|
|
93
112
|
|
|
94
113
|
class WorkflowContractSnapshot(BaseModel):
|
|
@@ -105,7 +124,14 @@ class WorkflowContractSnapshot(BaseModel):
|
|
|
105
124
|
model_config = ConfigDict(frozen=True)
|
|
106
125
|
|
|
107
126
|
allowed_file_types: list[str] = Field(default_factory=list)
|
|
108
|
-
data_retention
|
|
127
|
+
# ``input_retention`` was named ``data_retention`` in shared
|
|
128
|
+
# 0.5.x. The rename (shared 0.6.0+) makes the parallel with
|
|
129
|
+
# ``output_retention`` obvious — both fields carry the workflow
|
|
130
|
+
# author's retention choices, one for the user's input bytes and
|
|
131
|
+
# one for the validator's output bytes. The schema-version
|
|
132
|
+
# string stays ``validibot.evidence.v1`` because the field's
|
|
133
|
+
# semantics are unchanged; only the name is clearer.
|
|
134
|
+
input_retention: str = ""
|
|
109
135
|
output_retention: str = ""
|
|
110
136
|
agent_billing_mode: str = ""
|
|
111
137
|
agent_price_cents: int | None = None
|
|
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
|