Skip to content

Commit

Permalink
chore(deps): update dependency @interledger/open-payments to v6.13.2 (#…
Browse files Browse the repository at this point in the history
…3031)

* chore(deps): update dependency @interledger/open-payments to v6.13.2

* chore(backend): use code from OpenPaymentsClientError

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Max Kurapov <[email protected]>
  • Loading branch information
renovate[bot] and mkurapov authored Oct 31, 2024
1 parent 509f9ca commit 60dc11a
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 29 deletions.
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@graphql-tools/load": "^8.0.2",
"@graphql-tools/schema": "^10.0.3",
"@interledger/http-signature-utils": "2.0.2",
"@interledger/open-payments": "6.11.1",
"@interledger/open-payments": "6.13.2",
"@interledger/openapi": "2.0.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@graphql-tools/load": "^8.0.2",
"@graphql-tools/schema": "^10.0.3",
"@interledger/http-signature-utils": "2.0.2",
"@interledger/open-payments": "6.11.1",
"@interledger/open-payments": "6.13.2",
"@interledger/openapi": "2.0.1",
"@interledger/pay": "0.4.0-alpha.9",
"@interledger/stream-receiver": "^0.3.3-alpha.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ async function createIncomingPayment(
{
...baseErrorLog,
errStatus: err.status,
errCode: err.code,
errDescription: err.description
},
`Retrying request after receiving ${err.status} error code when creating incoming payment`
Expand All @@ -161,6 +162,7 @@ async function createIncomingPayment(
{
...baseErrorLog,
errStatus: err.status,
errCode: err.code,
errDescription: err.description,
errMessage: err.message,
errValidation: err.validationErrors
Expand Down Expand Up @@ -258,6 +260,7 @@ async function getIncomingPayment(
{
...baseErrorLog,
errStatus: err.status,
errCode: err.code,
errDescription: err.description
},
`Retrying request after receiving ${err.status} error code when getting incoming payment`
Expand All @@ -276,6 +279,7 @@ async function getIncomingPayment(
{
...baseErrorLog,
errStatus: err.status,
errCode: err.code,
errDescription: err.description,
errMessage: err.message,
errValidation: err.validationErrors
Expand Down
2 changes: 1 addition & 1 deletion packages/token-introspection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"openapi-typescript": "^6.7.5"
},
"dependencies": {
"@interledger/open-payments": "6.11.1",
"@interledger/open-payments": "6.13.2",
"@interledger/openapi": "2.0.1",
"axios": "^1.7.4",
"pino": "^8.19.0"
Expand Down
65 changes: 40 additions & 25 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion test/integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"devDependencies": {
"@apollo/client": "^3.11.4",
"@interledger/http-signature-utils": "2.0.2",
"@interledger/open-payments": "6.13.1",
"@interledger/open-payments": "6.13.2",
"@koa/bodyparser": "^5.1.1",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "^4.3.12",
Expand Down

0 comments on commit 60dc11a

Please sign in to comment.