Skip to content

Commit 86c873a

Browse files
chore: 🐝 Update SDK - Generate SDK 1.0.0-beta.18
1 parent a8ffb84 commit 86c873a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1286
-37
lines changed

.speakeasy/gen.lock

Lines changed: 84 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 16ed6937-9038-4c34-a8b6-e4732948f250
33
management:
4-
docChecksum: 24139dd9245c2b92230ce95662487e9d
4+
docChecksum: 105ad65718fb6237dcacc71a806d7789
55
docVersion: 1.0.0
6-
speakeasyVersion: 1.555.2
7-
generationVersion: 2.620.2
8-
releaseVersion: 1.0.0-beta.17
9-
configChecksum: ed661667f2247162168e20dcd7e00c15
6+
speakeasyVersion: 1.556.2
7+
generationVersion: 2.621.3
8+
releaseVersion: 1.0.0-beta.18
9+
configChecksum: bef8bcee664c8a796dd97b9e567b2830
1010
repoURL: https://github.com/gr4vy/gr4vy-php.git
1111
installationURL: https://github.com/gr4vy/gr4vy-php
1212
published: true
@@ -185,6 +185,8 @@ generatedFiles:
185185
- docs/GetTransactionRefundResponse.md
186186
- docs/GetTransactionRequest.md
187187
- docs/GetTransactionResponse.md
188+
- docs/GetTransactionSettlementRequest.md
189+
- docs/GetTransactionSettlementResponse.md
188190
- docs/GiftCard.md
189191
- docs/GiftCardBalanceRequest.md
190192
- docs/GiftCardCreate.md
@@ -253,6 +255,8 @@ generatedFiles:
253255
- docs/ListTransactionEventsResponse.md
254256
- docs/ListTransactionRefundsRequest.md
255257
- docs/ListTransactionRefundsResponse.md
258+
- docs/ListTransactionSettlementsRequest.md
259+
- docs/ListTransactionSettlementsResponse.md
256260
- docs/ListTransactionsRequest.md
257261
- docs/ListTransactionsResponse.md
258262
- docs/Loc.md
@@ -321,6 +325,8 @@ generatedFiles:
321325
- docs/ResumePaymentMethodNetworkTokenRequest.md
322326
- docs/ResumePaymentMethodNetworkTokenResponse.md
323327
- docs/Security.md
328+
- docs/Settlement.md
329+
- docs/Settlements.md
324330
- docs/ShippingDetails.md
325331
- docs/ShippingDetailsCreate.md
326332
- docs/ShippingDetailsList.md
@@ -424,6 +430,7 @@ generatedFiles:
424430
- docs/sdks/sessions/README.md
425431
- docs/sdks/transactions/README.md
426432
- docs/sdks/transactionsrefunds/README.md
433+
- docs/sdks/transactionssettlements/README.md
427434
- phpstan.neon
428435
- phpunit.xml
429436
- pint.json
@@ -593,6 +600,8 @@ generatedFiles:
593600
- src/GetTransactionRefundResponse.php
594601
- src/GetTransactionRequest.php
595602
- src/GetTransactionResponse.php
603+
- src/GetTransactionSettlementRequest.php
604+
- src/GetTransactionSettlementResponse.php
596605
- src/GiftCard.php
597606
- src/GiftCardBalanceRequest.php
598607
- src/GiftCardCreate.php
@@ -676,6 +685,8 @@ generatedFiles:
676685
- src/ListTransactionEventsResponse.php
677686
- src/ListTransactionRefundsRequest.php
678687
- src/ListTransactionRefundsResponse.php
688+
- src/ListTransactionSettlementsRequest.php
689+
- src/ListTransactionSettlementsResponse.php
679690
- src/ListTransactionsRequest.php
680691
- src/ListTransactionsResponse.php
681692
- src/MerchantAccount.php
@@ -755,6 +766,8 @@ generatedFiles:
755766
- src/SDKConfiguration.php
756767
- src/Security.php
757768
- src/Sessions.php
769+
- src/Settlement.php
770+
- src/Settlements.php
758771
- src/ShippingDetails.php
759772
- src/ShippingDetailsCreate.php
760773
- src/ShippingDetailsList.php
@@ -788,6 +801,7 @@ generatedFiles:
788801
- src/Transactions.php
789802
- src/TransactionsRefunds.php
790803
- src/TransactionsReportSpec.php
804+
- src/TransactionsSettlements.php
791805
- src/UnregisterDigitalWalletDomainRequest.php
792806
- src/UnregisterDigitalWalletDomainResponse.php
793807
- src/UpdateBuyerRequest.php
@@ -4094,5 +4108,70 @@ examples:
40944108
application/json: {"type": "error", "code": "bad_gateway", "status": 502, "message": "Request could not be processed"}
40954109
"504":
40964110
application/json: {"type": "error", "code": "gateway_timeout", "status": 504, "message": "Request could not be processed"}
4111+
get_transaction_settlement:
4112+
speakeasy-default-get-transaction-settlement:
4113+
parameters:
4114+
path:
4115+
transaction_id: "7099948d-7286-47e4-aad8-b68f7eb44591"
4116+
settlement_id: "b1e2c3d4-5678-1234-9abc-1234567890ab"
4117+
responses:
4118+
"200":
4119+
application/json: {"type": "settlement", "id": "b1e2c3d4-5678-1234-9abc-1234567890ab", "merchant_account_id": "default", "created_at": "2024-06-01T12:00:00.000Z", "updated_at": "2024-06-01T12:00:00.000Z", "posted_at": "2024-06-01T12:00:00.000Z", "ingested_at": "2024-06-01T12:00:00.000Z", "currency": "EUR", "amount": 1100, "commission": 100, "payment_service_report_id": "a1b2c3d4-5678-1234-9abc-1234567890ab", "payment_service_report_file_ids": ["f1e2d3c4-5678-1234-9abc-1234567890ab"], "transaction_id": "7099948d-7286-47e4-aad8-b68f7eb44591"}
4120+
"400":
4121+
application/json: {"type": "error", "code": "bad_request", "status": 400, "message": "Request failed validation"}
4122+
"401":
4123+
application/json: {"type": "error", "code": "unauthorized", "status": 401, "message": "No valid API authentication found"}
4124+
"403":
4125+
application/json: {"type": "error", "code": "forbidden", "status": 403, "message": "Request failed validation"}
4126+
"404":
4127+
application/json: {"type": "error", "code": "not_found", "status": 404, "message": "The resource could not be found"}
4128+
"405":
4129+
application/json: {"type": "error", "code": "method_not_allowed", "status": 405, "message": "Method Not Allowed"}
4130+
"409":
4131+
application/json: {"type": "error", "code": "duplicate_record", "status": 409, "message": "Request failed validation"}
4132+
"422":
4133+
application/json: {}
4134+
"425":
4135+
application/json: {"type": "error", "code": "too_early", "status": 425, "message": "Request failed validation"}
4136+
"429":
4137+
application/json: {"type": "error", "code": "too_many_requests", "status": 429, "message": "Request failed validation"}
4138+
"500":
4139+
application/json: {"type": "error", "code": "server_error", "status": 500, "message": "Request could not be processed"}
4140+
"502":
4141+
application/json: {"type": "error", "code": "bad_gateway", "status": 502, "message": "Request could not be processed"}
4142+
"504":
4143+
application/json: {"type": "error", "code": "gateway_timeout", "status": 504, "message": "Request could not be processed"}
4144+
list_transaction_settlements:
4145+
speakeasy-default-list-transaction-settlements:
4146+
parameters:
4147+
path:
4148+
transaction_id: "7099948d-7286-47e4-aad8-b68f7eb44591"
4149+
responses:
4150+
"200":
4151+
application/json: {"items": []}
4152+
"400":
4153+
application/json: {"type": "error", "code": "bad_request", "status": 400, "message": "Request failed validation"}
4154+
"401":
4155+
application/json: {"type": "error", "code": "unauthorized", "status": 401, "message": "No valid API authentication found"}
4156+
"403":
4157+
application/json: {"type": "error", "code": "forbidden", "status": 403, "message": "Request failed validation"}
4158+
"404":
4159+
application/json: {"type": "error", "code": "not_found", "status": 404, "message": "The resource could not be found"}
4160+
"405":
4161+
application/json: {"type": "error", "code": "method_not_allowed", "status": 405, "message": "Method Not Allowed"}
4162+
"409":
4163+
application/json: {"type": "error", "code": "duplicate_record", "status": 409, "message": "Request failed validation"}
4164+
"422":
4165+
application/json: {}
4166+
"425":
4167+
application/json: {"type": "error", "code": "too_early", "status": 425, "message": "Request failed validation"}
4168+
"429":
4169+
application/json: {"type": "error", "code": "too_many_requests", "status": 429, "message": "Request failed validation"}
4170+
"500":
4171+
application/json: {"type": "error", "code": "server_error", "status": 500, "message": "Request could not be processed"}
4172+
"502":
4173+
application/json: {"type": "error", "code": "bad_gateway", "status": 502, "message": "Request could not be processed"}
4174+
"504":
4175+
application/json: {"type": "error", "code": "gateway_timeout", "status": 504, "message": "Request could not be processed"}
40974176
examplesVersion: 1.0.2
40984177
generatedTests: {}

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2PasswordEnabled: false
1919
sdkHooksConfigAccess: true
2020
php:
21-
version: 1.0.0-beta.17
21+
version: 1.0.0-beta.18
2222
additionalDependencies:
2323
autoload: {}
2424
autoload-dev: {}

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.555.2
1+
speakeasyVersion: 1.556.2
22
sources:
33
openapi:
44
sourceNamespace: openapi
5-
sourceRevisionDigest: sha256:6773dd13ad24c1be8290b003ab9e4a71795e5890da88c26f78f48592837d0fbe
6-
sourceBlobDigest: sha256:69afccc95f5defb708dedd8b4c30e7a075d6f94c6268cd47e9a8af48d796ff8a
5+
sourceRevisionDigest: sha256:502705bff9ee1675b304cb9fafcaadcaf9bf7ad920f6b899fe4fd4a687597fbc
6+
sourceBlobDigest: sha256:6565ab219ae184d0e4ed4d14e48c8d5e597dd5fe617ac6ea23e9a99610f19404
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1749055466
9+
- speakeasy-sdk-regen-1749141138
1010
- 1.0.0
1111
targets:
1212
php:
1313
source: openapi
1414
sourceNamespace: openapi
15-
sourceRevisionDigest: sha256:6773dd13ad24c1be8290b003ab9e4a71795e5890da88c26f78f48592837d0fbe
16-
sourceBlobDigest: sha256:69afccc95f5defb708dedd8b4c30e7a075d6f94c6268cd47e9a8af48d796ff8a
15+
sourceRevisionDigest: sha256:502705bff9ee1675b304cb9fafcaadcaf9bf7ad920f6b899fe4fd4a687597fbc
16+
sourceBlobDigest: sha256:6565ab219ae184d0e4ed4d14e48c8d5e597dd5fe617ac6ea23e9a99610f19404
1717
codeSamplesNamespace: openapi-php-code-samples
18-
codeSamplesRevisionDigest: sha256:0fb898af9791357a40ffbefed4b240ec8bb1c3c2693a0618b937e508a3c67cc0
18+
codeSamplesRevisionDigest: sha256:2dfa51a29ec493365f28820d8fe6eaebd6ff75c13962bcfaf48a4d014908deb3
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,11 @@ if ($response->accountUpdaterJob !== null) {
427427

428428
* [create](docs/sdks/all/README.md#create) - Create batch transaction refund
429429

430+
#### [transactions->settlements](docs/sdks/transactionssettlements/README.md)
431+
432+
* [get](docs/sdks/transactionssettlements/README.md#get) - Get transaction settlement
433+
* [list](docs/sdks/transactionssettlements/README.md#list) - List transaction settlements
434+
430435
</details>
431436
<!-- End Available Resources and Operations [operations] -->
432437

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,14 @@ Based on:
128128
### Generated
129129
- [php v1.0.0-beta.17] .
130130
### Releases
131-
- [Composer v1.0.0-beta.17] https://packagist.org/packages/gr4vy/gr4vy-php#v1.0.0-beta.17 - .
131+
- [Composer v1.0.0-beta.17] https://packagist.org/packages/gr4vy/gr4vy-php#v1.0.0-beta.17 - .
132+
133+
## 2025-06-05 16:32:03
134+
### Changes
135+
Based on:
136+
- OpenAPI Doc
137+
- Speakeasy CLI 1.556.2 (2.621.3) https://github.com/speakeasy-api/speakeasy
138+
### Generated
139+
- [php v1.0.0-beta.18] .
140+
### Releases
141+
- [Composer v1.0.0-beta.18] https://packagist.org/packages/gr4vy/gr4vy-php#v1.0.0-beta.18 - .

docs/CaptureTransactionRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `transactionId` | *string* | :heavy_check_mark: | N/A | 7099948d-7286-47e4-aad8-b68f7eb44591 |
8+
| `transactionId` | *string* | :heavy_check_mark: | The ID of the transaction | 7099948d-7286-47e4-aad8-b68f7eb44591 |
99
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
1010
| `transactionCapture` | [TransactionCapture](./TransactionCapture.md) | :heavy_check_mark: | N/A | |

docs/CreateFullTransactionRefundRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description | Example |
77
| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- |
8-
| `transactionId` | *string* | :heavy_check_mark: | N/A | 7099948d-7286-47e4-aad8-b68f7eb44591 |
8+
| `transactionId` | *string* | :heavy_check_mark: | The ID of the transaction | 7099948d-7286-47e4-aad8-b68f7eb44591 |
99
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
1010
| `transactionRefundAllCreate` | [?TransactionRefundAllCreate](./TransactionRefundAllCreate.md) | :heavy_minus_sign: | N/A | |

docs/CreateTransactionRefundRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `transactionId` | *string* | :heavy_check_mark: | N/A | 7099948d-7286-47e4-aad8-b68f7eb44591 |
8+
| `transactionId` | *string* | :heavy_check_mark: | The ID of the transaction | 7099948d-7286-47e4-aad8-b68f7eb44591 |
99
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
1010
| `transactionRefundCreate` | [TransactionRefundCreate](./TransactionRefundCreate.md) | :heavy_check_mark: | N/A | |

docs/GetRefundRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `refundId` | *string* | :heavy_check_mark: | N/A | 6a1d4e46-14ed-4fe1-a45f-eff4e025d211 |
8+
| `refundId` | *string* | :heavy_check_mark: | The ID of the refund | 6a1d4e46-14ed-4fe1-a45f-eff4e025d211 |
99
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |

docs/GetTransactionRefundRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `transactionId` | *string* | :heavy_check_mark: | N/A | 7099948d-7286-47e4-aad8-b68f7eb44591 |
9-
| `refundId` | *string* | :heavy_check_mark: | N/A | 6a1d4e46-14ed-4fe1-a45f-eff4e025d211 |
8+
| `transactionId` | *string* | :heavy_check_mark: | The ID of the transaction | 7099948d-7286-47e4-aad8-b68f7eb44591 |
9+
| `refundId` | *string* | :heavy_check_mark: | The ID of the refund | 6a1d4e46-14ed-4fe1-a45f-eff4e025d211 |
1010
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |

0 commit comments

Comments
 (0)