重构订单履约发货流程

This commit is contained in:
yml2213
2026-07-08 21:57:34 +08:00
parent 7b215a66a5
commit 9a24268b5a
17 changed files with 1415 additions and 810 deletions
@@ -0,0 +1,11 @@
import { resolveFulfillmentDeliveryLink } from './executors/registry.js'
import type { FulfillmentDeliveryLink } from './executors/types.js'
import type { TaskRow } from '../../types/repository/rows.js'
export type TaskDeliveryLink = FulfillmentDeliveryLink
export async function resolveTaskDeliveryLink(
task: TaskRow,
): Promise<TaskDeliveryLink | null> {
return resolveFulfillmentDeliveryLink(task)
}