feat(medusa, medusa-plugin-brightpearl): Inventory management for Brightpearl (#3192)

This commit is contained in:
Philip Korsholm
2023-04-23 12:50:19 +02:00
committed by GitHub
parent 8b6464180a
commit 4a85627435
20 changed files with 855 additions and 227 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
export * from "./reservation-item"
export {ReservationItem} from "./reservation-item"
export * from "./inventory-item"
export * from "./inventory-level"
@@ -18,6 +18,9 @@ export class ReservationItem extends SoftDeletableEntity {
@Column()
quantity: number
@Column({ type: "text", nullable: true })
external_id: string | null
@Column({ type: "jsonb", nullable: true })
metadata: Record<string, unknown> | null