feat(medusa): Allow creating DraftOrders without items (#2719)
This commit is contained in:
@@ -39,7 +39,6 @@ import { IsType } from "../../../../utils/validators/is-type"
|
||||
* type: object
|
||||
* required:
|
||||
* - email
|
||||
* - items
|
||||
* - region_id
|
||||
* - shipping_methods
|
||||
* properties:
|
||||
@@ -270,7 +269,8 @@ export class AdminPostDraftOrdersReq {
|
||||
@Type(() => Item)
|
||||
@IsNotEmpty()
|
||||
@ValidateNested({ each: true })
|
||||
items: Item[]
|
||||
@IsOptional()
|
||||
items?: Item[]
|
||||
|
||||
@IsString()
|
||||
region_id: string
|
||||
|
||||
Reference in New Issue
Block a user