feat: Introduce order.placed event (#7682)

This commit is contained in:
Oli Juhl
2024-06-12 12:05:13 +02:00
committed by GitHub
parent 6d43daa930
commit 73ca358606
4 changed files with 38 additions and 17 deletions

View File

@@ -0,0 +1,5 @@
export const OrderEvents = {
placed: "order.placed",
canceled: "order.canceled",
completed: "order.completed",
}

View File

@@ -1 +1,3 @@
export * from "./events"
export * from "./status"