* Request AI judge verification. * @param {string} orderId * @returns {Promise<{ok: boolean, data?: object, error?: string}>}
(orderId)
| 66 | * @returns {Promise<{ok: boolean, data?: object, error?: string}>} |
| 67 | */ |
| 68 | async function requestAiJudge(orderId) { |
| 69 | await ensureInitialized(); |
| 70 | return verifyDelivery(orderId, 'ai_judge'); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Force settlement of an order. |
nothing calls this directly
no test coverage detected