Add FilterableRefundReason filter by description and label (#10606)

This commit is contained in:
Nathan John
2024-12-17 15:54:06 +00:00
committed by GitHub
parent 302c01db3f
commit 2ad08c4c44
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"@medusajs/types": patch
---
Add description and Label to FilterableRefundReasonProps

View File

@@ -645,6 +645,16 @@ export interface FilterableRefundReasonProps
* The IDs to filter the refund reasons by.
*/
id?: string | string[]
/**
* Filter by the description of the refund reason
*/
description?: string | string[]
/**
* Filter by the refund reason label
*/
label?: string | string[]
}
export interface RefundReasonDTO {