chore(building-block-workflow): checkpoint pending development updates
This commit is contained in:
parent
3088118b45
commit
a09d4f0f77
@ -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-workflow</RepositoryUrl>
|
<RepositoryUrl>https://gitea.dream-views.com/AgileWebs/building-block-workflow</RepositoryUrl>
|
||||||
<PackageProjectUrl>http://192.168.10.100:3000/AgileWebs/building-block-workflow</PackageProjectUrl>
|
<PackageProjectUrl>https://gitea.dream-views.com/AgileWebs/building-block-workflow</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-workflow
|
||||||
|
|
||||||
|
## 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.
|
||||||
@ -5,6 +5,10 @@ namespace BuildingBlock.Workflow.Contracts.Abstractions;
|
|||||||
|
|
||||||
public interface IWorkflowCapabilityContract
|
public interface IWorkflowCapabilityContract
|
||||||
{
|
{
|
||||||
|
Task<CreateWorkflowWorkItemResponse> CreateWorkflowWorkItemAsync(
|
||||||
|
CreateWorkflowWorkItemRequest request,
|
||||||
|
CancellationToken cancellationToken);
|
||||||
|
|
||||||
Task<TransitionWorkflowStateResponse> TransitionWorkflowStateAsync(
|
Task<TransitionWorkflowStateResponse> TransitionWorkflowStateAsync(
|
||||||
TransitionWorkflowStateRequest request,
|
TransitionWorkflowStateRequest request,
|
||||||
CancellationToken cancellationToken);
|
CancellationToken cancellationToken);
|
||||||
|
|||||||
@ -0,0 +1,11 @@
|
|||||||
|
using BuildingBlock.Workflow.Contracts.Contracts;
|
||||||
|
|
||||||
|
namespace BuildingBlock.Workflow.Contracts.Requests;
|
||||||
|
|
||||||
|
public sealed record CreateWorkflowWorkItemRequest(
|
||||||
|
string WorkItemId,
|
||||||
|
string WorkType,
|
||||||
|
int Priority,
|
||||||
|
DateTime RequestedAtUtc,
|
||||||
|
WorkflowState InitialState,
|
||||||
|
string CorrelationId);
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
using BuildingBlock.Workflow.Contracts.Contracts;
|
||||||
|
|
||||||
|
namespace BuildingBlock.Workflow.Contracts.Responses;
|
||||||
|
|
||||||
|
public sealed record CreateWorkflowWorkItemResponse(
|
||||||
|
string WorkItemId,
|
||||||
|
WorkflowState State,
|
||||||
|
bool Created,
|
||||||
|
string? RejectionReason);
|
||||||
Loading…
Reference in New Issue
Block a user