docs: fix broken links utility + uncaught broken links (#12637)

* fix broken links

* update broken links utility

* add missing payment evens

* generate llms

* fix segment link
This commit is contained in:
Shahed Nasser
2025-05-28 17:13:27 +03:00
committed by GitHub
parent 9866baa852
commit 40e73c6ea2
64 changed files with 151813 additions and 150840 deletions

View File

@@ -14,7 +14,7 @@ sdk.admin.upload.create(
// file uploaded as a binary string
{
name: "test.txt",
content: "test", // Should be the binary content of the file
content: "test", // Should be the binary string of the file
},
// file uploaded as a File object
new File(["test"], "test.txt", { type: "text/plain" })

View File

@@ -25350,7 +25350,16 @@ paths:
'500':
$ref: '#/components/responses/500_error'
x-workflow: markPaymentCollectionAsPaid
x-events: []
x-events:
- name: payment.captured
payload: |-
```ts
{
id, // the ID of the payment
}
```
description: Emitted when a payment is captured.
deprecated: false
/admin/payments:
get:
operationId: GetPayments
@@ -26200,7 +26209,16 @@ paths:
'500':
$ref: '#/components/responses/500_error'
x-workflow: capturePaymentWorkflow
x-events: []
x-events:
- name: payment.captured
payload: |-
```ts
{
id, // the ID of the payment
}
```
description: Emitted when a payment is captured.
deprecated: false
/admin/payments/{id}/refund:
post:
operationId: PostPaymentsIdRefund
@@ -26292,7 +26310,16 @@ paths:
'500':
$ref: '#/components/responses/500_error'
x-workflow: refundPaymentWorkflow
x-events: []
x-events:
- name: payment.refunded
payload: |-
```ts
{
id, // the ID of the payment
}
```
description: Emitted when a payment is refunded.
deprecated: false
/admin/plugins:
get:
operationId: GetPlugins
@@ -49518,7 +49545,7 @@ paths:
// file uploaded as a binary string
{
name: "test.txt",
content: "test", // Should be the binary content of the file
content: "test", // Should be the binary string of the file
},
// file uploaded as a File object
new File(["test"], "test.txt", { type: "text/plain" })

View File

@@ -81,4 +81,13 @@ post:
'500':
$ref: ../components/responses/500_error.yaml
x-workflow: markPaymentCollectionAsPaid
x-events: []
x-events:
- name: payment.captured
payload: |-
```ts
{
id, // the ID of the payment
}
```
description: Emitted when a payment is captured.
deprecated: false

View File

@@ -76,4 +76,13 @@ post:
'500':
$ref: ../components/responses/500_error.yaml
x-workflow: capturePaymentWorkflow
x-events: []
x-events:
- name: payment.captured
payload: |-
```ts
{
id, // the ID of the payment
}
```
description: Emitted when a payment is captured.
deprecated: false

View File

@@ -84,4 +84,13 @@ post:
'500':
$ref: ../components/responses/500_error.yaml
x-workflow: refundPaymentWorkflow
x-events: []
x-events:
- name: payment.refunded
payload: |-
```ts
{
id, // the ID of the payment
}
```
description: Emitted when a payment is refunded.
deprecated: false