orderly_case_management_operator_inbox 1.0.0
orderly_case_management_operator_inbox: ^1.0.0 copied to clipboard
Flutter overlay and GenUI components for Orderly Case Management operator inbox workflows.
Orderly Case Management Operator Inbox #
Flutter package for embedding the Case Management operator inbox as an overlay in operational apps such as Warehouse. The package also bundles the shared operator GenUI components and their backend catalog manifest.
CaseManagementOperatorInboxOverlay(
endpoint: Uri.parse('https://case-management.example.com'),
authTokenReader: () => warehouseAuth.currentToken(),
child: const WarehouseApp(),
)
The package sends the bearer token to Case Management over gRPC. Case filtering and role access are resolved server-side from the authenticated user id and Case Management role assignments.
The overlay renders shared operator GenUI components from this package by default. Case Management exposes the same package manifest to the agent, so ask_operator may emit those components as ClientComponent nodes without runtime component registration from the inbox.
Test app #
See ../orderly_operator_inbox_test_app for a standalone Flutter iOS app that logs in through Orderly Core AuthService with username/password and passes the returned token to this overlay.