Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changeset/spotty-deer-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
"@rebilly/client-php": patch
---
53 changes: 4 additions & 49 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,8 @@
# @rebilly/client-php

## 4.0.0
## 3.1.9

### Major Changes

- ### Added

- Added optional response property `canceledTime` on `Subscription` — `GET /search`, `GET /subscriptions` + 5 more
- Added optional response property `contentBlock` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `contentBlock` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Added optional response property `inputType` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `inputType` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Added optional response property `minimumAge` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `minimumAge` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Added optional response property `placeholder` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `placeholder` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`

### Enum changes

- Enum value added on request `attribute`: `contentBlock` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Enum value added on response `attribute`: `contentBlock` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more

### Other

- response-property-min-decreased (20x) — e.g. the `items/oneOf[#/components/schemas/OneTimeOrder]/_embedded/website/settings/payoutRequest/pendingPeriodHours` respons
- request-property-min-decreased (7x) — e.g. the `oneOf[#/components/schemas/OneTimeOrder]/_embedded/website/settings/payoutRequest/pendingPeriodHours` request prope
### Patch Changes

- ### Added

Expand All @@ -45,34 +23,11 @@

### Other

- response-property-min-decreased (20x) — e.g. the `items/oneOf[#/components/schemas/OneTimeOrder]/_embedded/website/settings/payoutRequest/pendingPeriodHours` respons
- request-property-min-decreased (7x) — e.g. the `oneOf[#/components/schemas/OneTimeOrder]/_embedded/website/settings/payoutRequest/pendingPeriodHours` request prope

### Minor Changes

- ### Added

- Added optional response property `canceledTime` on `Subscription` — `GET /search`, `GET /subscriptions` + 5 more
- Added optional response property `contentBlock` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `contentBlock` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Added optional response property `inputType` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `inputType` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Added optional response property `minimumAge` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `minimumAge` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Added optional response property `placeholder` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more
- Added optional request property `placeholder` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`

### Enum changes

- Enum value added on request `attribute`: `contentBlock` — `POST /account-registration-settings`, `PUT /account-registration-settings/{id}`
- Enum value added on response `attribute`: `contentBlock` — `GET /account-registration-settings`, `POST /account-registration-settings` + 2 more

### Patch Changes
- response-property-min-decreased (20x) — e.g. the `items/oneOf[#/components/schemas/OneTimeOrder]/_embedded/website/settings/payoutRequest/pendingPeriodHours` response property's minimum was decreased.
- request-property-min-decreased (7x) — e.g. the `oneOf[#/components/schemas/OneTimeOrder]/_embedded/website/settings/payoutRequest/pendingPeriodHours` request property's minimum was decreased.

- chore(deps): bump picomatch
- chore(deps-dev): bump fast-uri
- chore(deps-dev): bump fast-uri
-
- fix: Remove snapshot carry on auto-update branches

## 3.1.8
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rebilly/client-php",
"private": true,
"version": "4.0.0",
"version": "3.1.9",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/write": "^0.2.3",
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Client implements GuzzleClientInterface, PsrClientInterface

public const EXPERIMENTAL_BASE = '/experimental';

public const SDK_VERSION = '4.0.0';
public const SDK_VERSION = '3.1.9';

private GuzzleClient $client;

Expand Down
Loading