update CreateOrderFulfillmentWorkflowInput to include optional requires_shipping boolean (#9479)

Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
This commit is contained in:
420coupe
2024-11-21 08:22:54 -05:00
committed by GitHub
parent 2a8811edd9
commit da7a078a7d

View File

@@ -16,4 +16,5 @@ export interface CreateOrderFulfillmentWorkflowInput {
no_notification?: boolean
location_id?: string | null
metadata?: Record<string, any> | null
requires_shipping?: boolean
}