feat(medusa): Include external_id in CreateProductInput type (#2498)

This commit is contained in:
Alex Chiu
2023-01-02 09:18:10 +00:00
committed by GitHub
parent 7bc5454810
commit cc10c20f35
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---
Include optional `external_id` property for CreateProductInput type

View File

@@ -133,6 +133,7 @@ export type CreateProductInput = {
mid_code?: string
material?: string
metadata?: Record<string, unknown>
external_id?: string | null
}
export type CreateProductProductTagInput = {