chore(building-block-dispatch): checkpoint pending development updates
This commit is contained in:
parent
9fd04e61d2
commit
1c3284a563
@ -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-dispatch</RepositoryUrl>
|
<RepositoryUrl>https://gitea.dream-views.com/AgileWebs/building-block-dispatch</RepositoryUrl>
|
||||||
<PackageProjectUrl>http://192.168.10.100:3000/AgileWebs/building-block-dispatch</PackageProjectUrl>
|
<PackageProjectUrl>https://gitea.dream-views.com/AgileWebs/building-block-dispatch</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-dispatch
|
||||||
|
|
||||||
|
## 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,5 @@
|
|||||||
|
namespace BuildingBlock.Dispatch.Contracts.Contracts;
|
||||||
|
|
||||||
|
public sealed record DispatchConstraintContract(
|
||||||
|
string Key,
|
||||||
|
string Value);
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
using BuildingBlock.Dispatch.Contracts.Contracts;
|
||||||
|
|
||||||
|
namespace BuildingBlock.Dispatch.Contracts.Requests;
|
||||||
|
|
||||||
|
public sealed record EvaluateDispatchPlanRequest(
|
||||||
|
string DispatchContext,
|
||||||
|
IReadOnlyCollection<DispatchCandidateContract> Candidates,
|
||||||
|
IReadOnlyCollection<DispatchConstraintContract> Constraints,
|
||||||
|
int AvailableCapacity,
|
||||||
|
DateTime EvaluationAtUtc);
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
namespace BuildingBlock.Dispatch.Contracts.Responses;
|
||||||
|
|
||||||
|
public sealed record EvaluateDispatchPlanResponse(
|
||||||
|
IReadOnlyCollection<string> SelectedWorkItemIds,
|
||||||
|
IReadOnlyCollection<string> DeferredWorkItemIds,
|
||||||
|
IReadOnlyCollection<string> BlockedWorkItemIds,
|
||||||
|
string SelectionReason);
|
||||||
Loading…
Reference in New Issue
Block a user