feat: Add payment collection creation for cart (#6527)

This commit is contained in:
Oli Juhl
2024-03-04 09:02:01 +01:00
committed by GitHub
parent 71ed21de4a
commit 883cb0dca7
11 changed files with 371 additions and 8 deletions
+8
View File
@@ -83,3 +83,11 @@ export interface UpdateCartWorkflowInputDTO {
currency_code?: string
metadata?: Record<string, unknown> | null
}
export interface CreatePaymentCollectionForCartWorkflowInputDTO {
cart_id: string
region_id: string
currency_code: string
amount: number
metadata?: Record<string, unknown>
}