* feat(core-flows,payment,medusa,types): add ability to set and manage refund reasons * fix(payment): validate total amount when refunding payment (#8437) Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com> * feature: introduce additional_data to the product endpoints (#8405) * chore(docs): Generated References (#8440) Generated the following references: - `product` * chore: align payment database schema * Update packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> * chore: address review --------- Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com> Co-authored-by: Harminder Virk <virk.officials@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
25 lines
547 B
TypeScript
25 lines
547 B
TypeScript
import { defineJoinerConfig, Modules } from "@medusajs/utils"
|
|
import {
|
|
Payment,
|
|
PaymentCollection,
|
|
PaymentProvider,
|
|
PaymentSession,
|
|
RefundReason,
|
|
} from "@models"
|
|
|
|
export const joinerConfig = defineJoinerConfig(Modules.PAYMENT, {
|
|
models: [
|
|
Payment,
|
|
PaymentCollection,
|
|
PaymentProvider,
|
|
PaymentSession,
|
|
RefundReason,
|
|
],
|
|
linkableKeys: {
|
|
payment_id: Payment.name,
|
|
payment_collection_id: PaymentCollection.name,
|
|
payment_provider_id: PaymentProvider.name,
|
|
refund_reason_id: RefundReason.name,
|
|
},
|
|
})
|