Skip to content

Commit

Permalink
Merge branch 'nl-add-wallet-address-to-requests' into integration
Browse files Browse the repository at this point in the history
  • Loading branch information
njlie committed Sep 26, 2023
2 parents 5a6fc1f + 67299fc commit 296e47c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions openapi/resource-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ paths:
$ref: '#/components/responses/403'
description: List all incoming payments on the wallet address
parameters:
- $ref: '#/comonents/parameters/wallet-address'

Check failure on line 283 in openapi/resource-server.yaml

View workflow job for this annotation

GitHub Actions / validate

invalid-ref '#/comonents/parameters/wallet-address' does not exist
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/first'
- $ref: '#/components/parameters/last'
Expand Down Expand Up @@ -491,6 +492,7 @@ paths:
$ref: '#/components/responses/403'
description: List all outgoing payments on the wallet address
parameters:
- $ref: '#/components/parameters/wallet-address'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/first'
- $ref: '#/components/parameters/last'
Expand Down Expand Up @@ -639,7 +641,7 @@ paths:
description: A client can fetch the latest state of an incoming payment to determine the amount received into the wallet address.
parameters:
- $ref: '#/components/parameters/id'
- $ref: '#/components/parameters/walletAddress'
- $ref: '#/components/parameters/wallet-address'
'/incoming-payments/{id}/complete':
post:
summary: Complete an Incoming Payment
Expand Down Expand Up @@ -752,7 +754,7 @@ paths:
- $ref: '#/components/parameters/signature'
parameters:
- $ref: '#/components/parameters/id'
- $ref: '#/components/parameters/walletAddress'
- $ref: '#/components/parameters/wallet-address'
'/quotes/{id}':
get:
summary: Get a Quote
Expand Down Expand Up @@ -1235,7 +1237,7 @@ components:
type: string
description: Sub-resource identifier
required: true
walletAddress:
wallet-address:
name: wallet-address
in: query
schema:
Expand Down

0 comments on commit 296e47c

Please sign in to comment.