Skip to content

Commit

Permalink
chore: upgrade op client
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Mar 1, 2024
1 parent 3be48e1 commit afaa594
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
2 changes: 1 addition & 1 deletion openapi/auth-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ paths:
- read
identifier: 'https://ilp.rafiki.money/alice'
limits:
receiver: 'https://ilp.rafiki.money/connections/45a0d0ee-26dc-4c66-89e0-01fbf93156f7'
receiver: 'https://ilp.rafiki.money/incoming-payments/45a0d0ee-26dc-4c66-89e0-01fbf93156f7'
interval: 'R12/2019-08-24T14:15:22Z/P1M'
debitAmount:
value: '500'
Expand Down
7 changes: 4 additions & 3 deletions openapi/schemas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ components:
receiver:
title: Receiver
type: string
description: The URL of the incoming payment or ILP STREAM connection that is being paid.
description: The URL of the incoming payment that is being paid.
format: uri
pattern: '^https://(.+)/(incoming-payments|connections)/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$'
pattern: '^(https|http)://(.+)/incoming-payments/(.+)$'
examples:
- 'https://ilp.rafiki.money/incoming-payments/08394f02-7b7b-45e2-b645-51d04e7c330c'
- 'https://ilp.rafiki.money/connections/016da9d5-c9a4-4c80-a354-86b915a04ff8'
- 'http://ilp.rafiki.money/incoming-payments/08394f02-7b7b-45e2-b645-51d04e7c330c'
- 'https://ilp.rafiki.money/incoming-payments/1'
walletAddress:
title: Wallet Address
type: string
Expand Down
20 changes: 18 additions & 2 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 scripts/fetch-schemas.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

REPO_ROOT=$(git rev-parse --show-toplevel)
BRANCH_OR_TAG="${1:-%40interledger/open-payments%406.5.1}"
BRANCH_OR_TAG="${1:-%40interledger/open-payments%406.7.0}"
BASE_URL="https://raw.githubusercontent.com/interledger/open-payments/$BRANCH_OR_TAG"

OUT_DIR="$REPO_ROOT/openapi"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"devDependencies": {
"@apollo/client": "^3.8.10",
"@interledger/http-signature-utils": "2.0.0",
"@interledger/open-payments": "^6.5.0",
"@interledger/open-payments": "^6.7.0",
"@types/koa": "2.14.0",
"@types/koa-bodyparser": "^4.3.12",
"dotenv": "^16.4.1",
Expand Down

0 comments on commit afaa594

Please sign in to comment.