chore(building-block-operations-config): checkpoint pending development updates
This commit is contained in:
parent
b329958da4
commit
ecea7695e3
@ -3,8 +3,8 @@
|
|||||||
<Authors>AgileWebs</Authors>
|
<Authors>AgileWebs</Authors>
|
||||||
<Company>AgileWebs</Company>
|
<Company>AgileWebs</Company>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<RepositoryUrl>http://192.168.10.100:3000/AgileWebs/building-block-operations-config</RepositoryUrl>
|
<RepositoryUrl>https://gitea.dream-views.com/AgileWebs/building-block-operations-config</RepositoryUrl>
|
||||||
<PackageProjectUrl>http://192.168.10.100:3000/AgileWebs/building-block-operations-config</PackageProjectUrl>
|
<PackageProjectUrl>https://gitea.dream-views.com/AgileWebs/building-block-operations-config</PackageProjectUrl>
|
||||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
18
docs/roadmap/feature-epics.md
Normal file
18
docs/roadmap/feature-epics.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Feature Epics
|
||||||
|
|
||||||
|
## Repository
|
||||||
|
building-block-operations-config
|
||||||
|
|
||||||
|
## Core Epics
|
||||||
|
- Epic 1: Expand domain-aligned capabilities for restaurant operations.
|
||||||
|
- Epic 2: Stabilize service contracts for containerized runtime integration.
|
||||||
|
- Epic 3: Improve observability and operational readiness for demo compose environments.
|
||||||
|
|
||||||
|
## Domain-Specific Candidate Features
|
||||||
|
- Order lifecycle consistency and state transitions.
|
||||||
|
- Kitchen queue and dispatch optimization hooks.
|
||||||
|
- Operations control-plane policies (flags, service windows, overrides).
|
||||||
|
- POS closeout and settlement summary alignment.
|
||||||
|
|
||||||
|
## Documentation Contract
|
||||||
|
Any code change in this repository must include docs updates in the same branch.
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
namespace BuildingBlock.OperationsConfig.Contracts.Contracts;
|
||||||
|
|
||||||
|
public sealed record OperationalOverrideContract(
|
||||||
|
string Key,
|
||||||
|
string Value,
|
||||||
|
DateTime EffectiveFromUtc,
|
||||||
|
DateTime? EffectiveToUtc,
|
||||||
|
string SetBy);
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
using BuildingBlock.OperationsConfig.Contracts.Contracts;
|
||||||
|
|
||||||
|
namespace BuildingBlock.OperationsConfig.Contracts.Responses;
|
||||||
|
|
||||||
|
public sealed record GetEffectiveOperationalControlPlaneResponse(
|
||||||
|
string Version,
|
||||||
|
IReadOnlyCollection<ServiceWindowContract> ServiceWindows,
|
||||||
|
IReadOnlyCollection<FeatureFlagContract> FeatureFlags,
|
||||||
|
IReadOnlyCollection<OperationalOverrideContract> Overrides);
|
||||||
Loading…
Reference in New Issue
Block a user