Skip to content

Commit

Permalink
Add BVNK gateway config (#1857)
Browse files Browse the repository at this point in the history
* Add BVNK gateway config

* Remove settings

* Add tolerancePercentage

* Remove settings
  • Loading branch information
XaosSintez authored Apr 5, 2024
1 parent 2d67c72 commit a6d0914
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions openapi/components/schemas/AcquirerName.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ enum:
- Borgun
- BraintreePayments
- Buckaroo
- BVNK
- Cardknox
- CASHlib
- Cashterminal
Expand Down
1 change: 1 addition & 0 deletions openapi/components/schemas/GatewayAccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ discriminator:
BlueSnap: ./GatewayAccountConfig/BlueSnap.yaml
BraintreePayments: ./GatewayAccountConfig/BraintreePayments.yaml
Buckaroo: ./GatewayAccountConfig/Buckaroo.yaml
BVNK: ./GatewayAccountConfig/BVNK.yaml
CASHlib: ./GatewayAccountConfig/CASHlib.yaml
CODVoucher: ./GatewayAccountConfig/CODVoucher.yaml
Coinbase: ./GatewayAccountConfig/Coinbase.yaml
Expand Down
28 changes: 28 additions & 0 deletions openapi/components/schemas/GatewayAccountConfig/BVNK.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
description: BVNK gateway configuration.
allOf:
- $ref: ../GatewayAccount.yaml
- type: object
required:
- credentials
properties:
credentials:
type: object
description: BVNK credentials object.
properties:
merchantId:
type: string
description: Merchant ID of the BVNK merchant.
hawkAuthId:
type: string
description: HAWK auth ID.
format: password
writeOnly: true
hawkAuthKey:
type: string
description: HAWK auth key.
format: password
writeOnly: true
required:
- merchantId
- hawkAuthId
- hawkAuthKey
1 change: 1 addition & 0 deletions openapi/components/schemas/GatewayName.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ enum:
- BlueSnap
- BraintreePayments
- Buckaroo
- BVNK
- Cardknox
- Cashflows
- CASHlib
Expand Down

0 comments on commit a6d0914

Please sign in to comment.