* Confirm delivery of an order (bilateral mode). * @param {string} orderId * @returns {Promise<{ok: boolean, data?: object, error?: string}>}
(orderId)
| 56 | * @returns {Promise<{ok: boolean, data?: object, error?: string}>} |
| 57 | */ |
| 58 | async function confirmDelivery(orderId) { |
| 59 | await ensureInitialized(); |
| 60 | return verifyDelivery(orderId, 'confirm'); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Request AI judge verification. |
nothing calls this directly
no test coverage detected