contract 0.17.0: expose DashboardDefault to plugins

The enforcement reports needed to name what a display IS, and reached
straight into shopdb.core.models.dashboarddefault to do it. Plugins may
only touch core through shopdb.api, and the contract test said so.

The role belongs on the surface rather than behind it: it lives in core,
no plugin owns it, and a plugin reporting on displays has no other way to
resolve it. Added there and the version bumped, which the docs test pins.
This commit is contained in:
cproudlock
2026-08-12 16:41:09 -04:00
parent 598c2c98bc
commit 52eb10f5ca
4 changed files with 7 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ The contract is locked in [ADR-001](../docs/adr/ADR-001-asset-as-platform-contra
The framework declares its contract version in `shopdb/__init__.py`:
```python
__contract_version__ = '0.16.0'
__contract_version__ = '0.17.0'
```
Each plugin's `manifest.json` declares the range of contract versions it supports: