(data: any)
| 858 | } |
| 859 | |
| 860 | const handleOperationConfirmed = (data: any) => { |
| 861 | const { operationId } = data |
| 862 | logger.debug('Operation confirmed', { operationId }) |
| 863 | confirmOperation(operationId) |
| 864 | if (activeWorkflowId) { |
| 865 | void replayPendingExternalUpdate( |
| 866 | activeWorkflowId, |
| 867 | 'deferred external update after operation confirm' |
| 868 | ) |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | const handleOperationFailed = (data: any) => { |
| 873 | const { operationId, error, retryable } = data |
nothing calls this directly
no test coverage detected