chore(docs): Updated API Reference (v2) (#9437)

Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action

Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-10-03 07:48:54 +00:00
committed by GitHub
co-authored by Shahed Nasser
parent 97c193be1b
commit 21badd069d
894 changed files with 35649 additions and 28168 deletions
@@ -1,3 +1,93 @@
type: object
description: The payment's payments.
description: The payment's details.
x-schemaName: BasePayment
required:
- id
- amount
- currency_code
- provider_id
properties:
id:
type: string
title: id
description: The payment's ID.
amount:
type: number
title: amount
description: The payment's amount.
authorized_amount:
type: number
title: authorized_amount
description: The amount authorized of the payment.
currency_code:
type: string
title: currency_code
description: The payment's currency code.
provider_id:
type: string
title: provider_id
description: The ID of the payment provider used to process this payment.
cart_id:
type: string
title: cart_id
description: The ID of the associated cart.
order_id:
type: string
title: order_id
description: The ID of the associated order.
order_edit_id:
type: string
title: order_edit_id
description: The ID of the associated order edit.
customer_id:
type: string
title: customer_id
description: ID of the associated customer.
data:
type: object
description: The payment's data, useful for processing by the payment provider.
externalDocs:
url: >-
https://docs.medusajs.com/v2/resources/commerce-modules/payment/payment#whats-a-payment
created_at:
type: string
format: date-time
title: created_at
description: The date the payment was created.
updated_at:
type: string
format: date-time
title: updated_at
description: The date the payment was updated.
captured_at:
type: string
format: date-time
title: captured_at
description: The date the payment was captured.
canceled_at:
type: string
format: date-time
title: canceled_at
description: The date the payment was canceled.
captured_amount:
type: number
title: captured_amount
description: The captured amount of the payment.
refunded_amount:
type: number
title: captured_amount
description: The refunded amount of the payment.
captures:
type: array
description: The details of payment captures.
items:
$ref: ./BaseCapture.yaml
refunds:
type: array
description: The details of payment refunds.
items:
$ref: ./BaseRefund.yaml
payment_collection:
type: object
payment_session:
type: object