Skip to content

Commit e250484

Browse files
chore: 🐝 Update SDK - Generate SDK 1.0.0-beta.12
1 parent f352a25 commit e250484

File tree

214 files changed

+1210
-3495
lines changed

Some content is hidden

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

214 files changed

+1210
-3495
lines changed

β€Ž.speakeasy/gen.lock

Lines changed: 924 additions & 928 deletions
Large diffs are not rendered by default.

β€Ž.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.11
21+
version: 1.0.0-beta.12
2222
additionalDependencies:
2323
autoload: {}
2424
autoload-dev: {}

β€Ž.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ speakeasyVersion: 1.555.0
22
sources:
33
openapi:
44
sourceNamespace: openapi
5-
sourceRevisionDigest: sha256:dd6dfd147c86305f94b763b745e759f08a8e2d153879ac6b4df4bb4b824ec0e2
6-
sourceBlobDigest: sha256:f3fbd9a6810177a19d1b3b5bd7f8e861558e1cffac837db5a9d2171967aa1624
5+
sourceRevisionDigest: sha256:998da938eb9ac185da28adfd825d1f6e3c88fe847e2d1d6af9ff533ea67215b4
6+
sourceBlobDigest: sha256:708e1b097346ea3052aa4e38906fdf1cb82cfacabaa16c3ddb84a0ca325eefa3
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1748947396
9+
- speakeasy-sdk-regen-1748952958
1010
- 1.0.0
1111
targets:
1212
php:
1313
source: openapi
1414
sourceNamespace: openapi
15-
sourceRevisionDigest: sha256:dd6dfd147c86305f94b763b745e759f08a8e2d153879ac6b4df4bb4b824ec0e2
16-
sourceBlobDigest: sha256:f3fbd9a6810177a19d1b3b5bd7f8e861558e1cffac837db5a9d2171967aa1624
15+
sourceRevisionDigest: sha256:998da938eb9ac185da28adfd825d1f6e3c88fe847e2d1d6af9ff533ea67215b4
16+
sourceBlobDigest: sha256:708e1b097346ea3052aa4e38906fdf1cb82cfacabaa16c3ddb84a0ca325eefa3
1717
codeSamplesNamespace: openapi-php-code-samples
18-
codeSamplesRevisionDigest: sha256:40a6ebeec05874e8e5ef5ac7e43a8a9f81a8caef9d7f5748564f17548a1ce204
18+
codeSamplesRevisionDigest: sha256:19fc1f3323c55593864668628acfbe6280f8576f4e8c1a0a2a77a2b854643159
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest
@@ -31,7 +31,7 @@ workflow:
3131
- location: ./.speakeasy/overlays/mid-global.yaml
3232
- location: ./.speakeasy/overlays/fix-base-model.yaml
3333
- location: ./.speakeasy/overlays/fix-checkout-session-body.yaml
34-
- location: ./.speakeasy/overlays/fix-remove-timeout-in-seconds.yaml
34+
- location: ./.speakeasy/overlays/fix-remove-unwanted-headers.yaml
3535
registry:
3636
location: registry.speakeasyapi.dev/gr4vy/gr4vy/openapi
3737
targets:

β€ŽREADME.md

Lines changed: 4 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ $sdk = Gr4vy\SDK::builder()
218218
->setSecurity(
219219
'<YOUR_BEARER_TOKEN_HERE>'
220220
)
221-
->setMerchantAccountId('default')
222221
->build();
223222

224223
$accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
@@ -230,7 +229,6 @@ $accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
230229

231230
$response = $sdk->accountUpdater->jobs->create(
232231
accountUpdaterJobCreate: $accountUpdaterJobCreate,
233-
applicationName: 'core-api',
234232
merchantAccountId: 'default'
235233

236234
);
@@ -441,15 +439,12 @@ $sdk = Gr4vy\SDK::builder()
441439
->setSecurity(
442440
'<YOUR_BEARER_TOKEN_HERE>'
443441
)
444-
->setMerchantAccountId('default')
445442
->build();
446443

447444

448445

449446
$response = $sdk->merchantAccounts->get(
450-
merchantAccountId: 'merchant-12345',
451-
applicationName: 'core-api'
452-
447+
merchantAccountId: 'merchant-12345'
453448
);
454449

455450
if ($response->merchantAccount !== null) {
@@ -476,14 +471,9 @@ $sdk = Gr4vy\SDK::builder()
476471
->setSecurity(
477472
'<YOUR_BEARER_TOKEN_HERE>'
478473
)
479-
->setMerchantAccountId('default')
480474
->build();
481475

482-
$request = new Gr4vy\ListBuyersRequest(
483-
cursor: 'ZXhhbXBsZTE',
484-
search: 'John',
485-
externalIdentifier: 'buyer-12345',
486-
);
476+
$request = new Gr4vy\ListBuyersRequest();
487477

488478
$responses = $sdk->buyers->list(
489479
request: $request
@@ -516,14 +506,9 @@ $sdk = Gr4vy\SDK::builder()
516506
->setSecurity(
517507
'<YOUR_BEARER_TOKEN_HERE>'
518508
)
519-
->setMerchantAccountId('default')
520509
->build();
521510

522-
$request = new Gr4vy\ListBuyersRequest(
523-
cursor: 'ZXhhbXBsZTE',
524-
search: 'John',
525-
externalIdentifier: 'buyer-12345',
526-
);
511+
$request = new Gr4vy\ListBuyersRequest();
527512

528513
$responses = $sdk->buyers->list(
529514
request: $request,
@@ -567,14 +552,9 @@ $sdk = Gr4vy\SDK::builder()
567552
->setSecurity(
568553
'<YOUR_BEARER_TOKEN_HERE>'
569554
)
570-
->setMerchantAccountId('default')
571555
->build();
572556

573-
$request = new Gr4vy\ListBuyersRequest(
574-
cursor: 'ZXhhbXBsZTE',
575-
search: 'John',
576-
externalIdentifier: 'buyer-12345',
577-
);
557+
$request = new Gr4vy\ListBuyersRequest();
578558

579559
$responses = $sdk->buyers->list(
580560
request: $request
@@ -635,7 +615,6 @@ $sdk = Gr4vy\SDK::builder()
635615
->setSecurity(
636616
'<YOUR_BEARER_TOKEN_HERE>'
637617
)
638-
->setMerchantAccountId('default')
639618
->build();
640619

641620
try {
@@ -648,7 +627,6 @@ try {
648627

649628
$response = $sdk->accountUpdater->jobs->create(
650629
accountUpdaterJobCreate: $accountUpdaterJobCreate,
651-
applicationName: 'core-api',
652630
merchantAccountId: 'default'
653631

654632
);
@@ -732,7 +710,6 @@ $sdk = Gr4vy\SDK::builder()
732710
->setSecurity(
733711
'<YOUR_BEARER_TOKEN_HERE>'
734712
)
735-
->setMerchantAccountId('default')
736713
->build();
737714

738715
$accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
@@ -744,7 +721,6 @@ $accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
744721

745722
$response = $sdk->accountUpdater->jobs->create(
746723
accountUpdaterJobCreate: $accountUpdaterJobCreate,
747-
applicationName: 'core-api',
748724
merchantAccountId: 'default'
749725

750726
);
@@ -769,7 +745,6 @@ $sdk = Gr4vy\SDK::builder()
769745
->setSecurity(
770746
'<YOUR_BEARER_TOKEN_HERE>'
771747
)
772-
->setMerchantAccountId('default')
773748
->build();
774749

775750
$accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
@@ -781,7 +756,6 @@ $accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
781756

782757
$response = $sdk->accountUpdater->jobs->create(
783758
accountUpdaterJobCreate: $accountUpdaterJobCreate,
784-
applicationName: 'core-api',
785759
merchantAccountId: 'default'
786760

787761
);

β€ŽRELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,14 @@ Based on:
6868
### Generated
6969
- [php v1.0.0-beta.11] .
7070
### Releases
71-
- [Composer v1.0.0-beta.11] https://packagist.org/packages/gr4vy/gr4vy-php#v1.0.0-beta.11 - .
71+
- [Composer v1.0.0-beta.11] https://packagist.org/packages/gr4vy/gr4vy-php#v1.0.0-beta.11 - .
72+
73+
## 2025-06-03 12:15:42
74+
### Changes
75+
Based on:
76+
- OpenAPI Doc
77+
- Speakeasy CLI 1.555.0 (2.618.0) https://github.com/speakeasy-api/speakeasy
78+
### Generated
79+
- [php v1.0.0-beta.12] .
80+
### Releases
81+
- [Composer v1.0.0-beta.12] https://packagist.org/packages/gr4vy/gr4vy-php#v1.0.0-beta.12 - .

β€ŽUSAGE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ $sdk = Gr4vy\SDK::builder()
1010
->setSecurity(
1111
'<YOUR_BEARER_TOKEN_HERE>'
1212
)
13-
->setMerchantAccountId('default')
1413
->build();
1514

1615
$accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
@@ -22,7 +21,6 @@ $accountUpdaterJobCreate = new Gr4vy\AccountUpdaterJobCreate(
2221

2322
$response = $sdk->accountUpdater->jobs->create(
2423
accountUpdaterJobCreate: $accountUpdaterJobCreate,
25-
applicationName: 'core-api',
2624
merchantAccountId: 'default'
2725

2826
);

β€Ždocs/AddBuyerRequest.md

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

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
98
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
109
| `buyerCreate` | [BuyerCreate](./BuyerCreate.md) | :heavy_check_mark: | N/A | |

β€Ždocs/AddBuyerShippingDetailsRequest.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
88
| `buyerId` | *string* | :heavy_check_mark: | The ID of the buyer to add shipping details to. | fe26475d-ec3e-4884-9553-f7356683f7f9 |
9-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
109
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
1110
| `shippingDetailsCreate` | [ShippingDetailsCreate](./ShippingDetailsCreate.md) | :heavy_check_mark: | N/A | |

β€Ždocs/CaptureTransactionRequest.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
88
| `transactionId` | *string* | :heavy_check_mark: | N/A | 7099948d-7286-47e4-aad8-b68f7eb44591 |
9-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
109
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
1110
| `transactionCapture` | [TransactionCapture](./TransactionCapture.md) | :heavy_check_mark: | N/A | |

β€Ždocs/ConfigureDigitalWalletRequest.md

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

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
98
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
109
| `digitalWalletCreate` | [DigitalWalletCreate](./DigitalWalletCreate.md) | :heavy_check_mark: | N/A | |

β€Ždocs/CreateAccountUpdaterJobRequest.md

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

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
98
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
109
| `accountUpdaterJobCreate` | [AccountUpdaterJobCreate](./AccountUpdaterJobCreate.md) | :heavy_check_mark: | N/A | |

β€Ždocs/CreateApplePayDigitalWalletSessionRequest.md

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

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
98
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
109
| `applePaySessionRequest` | [ApplePaySessionRequest](./ApplePaySessionRequest.md) | :heavy_check_mark: | N/A | |

β€Ždocs/CreateCheckoutSessionRequest.md

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

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8-
| `applicationName` | *?string* | :heavy_minus_sign: | N/A | |
98
| `merchantAccountId` | *?string* | :heavy_minus_sign: | The ID of the merchant account to use for this request. | default |
109
| `checkoutSessionCreate` | [?CheckoutSessionCreate](./CheckoutSessionCreate.md) | :heavy_minus_sign: | N/A | |

β€Ždocs/CreateClickToPayDigitalWalletSessionRequest.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
Β (0)