diff --git a/.changeset/little-books-think.md b/.changeset/little-books-think.md new file mode 100644 index 0000000000000..17809bd2aba02 --- /dev/null +++ b/.changeset/little-books-think.md @@ -0,0 +1,5 @@ +--- +"@medusajs/types": patch +--- + +Add description and Label to FilterableRefundReasonProps diff --git a/packages/core/types/src/payment/common.ts b/packages/core/types/src/payment/common.ts index 4dca5c8c7e039..0d668a1bf5d12 100644 --- a/packages/core/types/src/payment/common.ts +++ b/packages/core/types/src/payment/common.ts @@ -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 {