Skip to content

Commit 2e7bcbf

Browse files
feat(deps-dev): Bump @prettier/plugin-php from 0.22.4 to 0.24.0 (#313)
* feat(deps-dev): Bump @prettier/plugin-php from 0.22.4 to 0.24.0 Bumps [@prettier/plugin-php](https://github.com/prettier/prettier-php) from 0.22.4 to 0.24.0. - [Release notes](https://github.com/prettier/prettier-php/releases) - [Commits](prettier/plugin-php@v0.22.4...v0.24.0) --- updated-dependencies: - dependency-name: "@prettier/plugin-php" dependency-version: 0.24.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * ci: Generate code --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Seam Bot <seambot@getseam.com>
1 parent 5ccf59e commit 2e7bcbf

179 files changed

Lines changed: 842 additions & 839 deletions

File tree

Some content is hidden

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

package-lock.json

Lines changed: 17 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"format": "prettier --write --ignore-path .gitignore ."
1212
},
1313
"devDependencies": {
14-
"@prettier/plugin-php": "^0.22.4",
14+
"@prettier/plugin-php": "^0.24.0",
1515
"@seamapi/nextlove-sdk-generator": "^1.18.1",
1616
"@seamapi/types": "1.423.4",
1717
"del": "^7.1.0",

src/Exceptions/ActionAttemptTimeoutError.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public function __construct(ActionAttempt $actionAttempt, float $timeout)
1010
{
1111
parent::__construct(
1212
"Timed out waiting for action attempt after {$timeout}s",
13-
$actionAttempt
13+
$actionAttempt,
1414
);
1515
$this->name = get_class($this);
1616
}

src/Exceptions/HttpApiError.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class HttpApiError extends \Exception
1212
public function __construct(
1313
object $error,
1414
int $statusCode,
15-
string $requestId
15+
string $requestId,
1616
) {
1717
$message = $error->message ?? "Unknown error";
1818
parent::__construct($message);

src/Exceptions/HttpInvalidInputError.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class HttpInvalidInputError extends HttpApiError
99
public function __construct(
1010
object $error,
1111
int $statusCode,
12-
string $requestId
12+
string $requestId,
1313
) {
1414
parent::__construct($error, $statusCode, $requestId);
1515
$this->errorCode = "invalid_input";

src/Objects/AccessCode.php

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AccessCodeErrors.php

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AccessCodeWarnings.php

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AccessGrant.php

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/AccessGrantRequestedAccessMethods.php

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)