Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Unlimit gateway adapter #1873

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions openapi/components/schemas/GatewayAccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ discriminator:
TrustsPay: ./GatewayAccountConfig/TrustsPay.yaml
Trustly: ./GatewayAccountConfig/Trustly.yaml
TWINT: ./GatewayAccountConfig/TWINT.yaml
Unlimit: ./GatewayAccountConfig/Unlimit.yaml
UPayCard: ./GatewayAccountConfig/UPayCard.yaml
USAePay: ./GatewayAccountConfig/USAePay.yaml
VantivLitle: ./GatewayAccountConfig/VantivLitle.yaml
Expand Down
28 changes: 28 additions & 0 deletions openapi/components/schemas/GatewayAccountConfig/Unlimit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
description: Unlimit gateway configuration.
allOf:
- $ref: ../GatewayAccount.yaml
- type: object
required:
- credentials
properties:
credentials:
type: object
description: Unlimit credentials object.
properties:
terminalId:
type: string
description: ID of the Unlimit terminal.
password:
type: string
description: Password of the Unlimit terminal merchant.
format: password
writeOnly: true
ipnSecret:
type: string
description: IPN secrect of the Unlimit merchant.
format: password
writeOnly: true
required:
- terminalId
- password
- ipnSecret
1 change: 1 addition & 0 deletions openapi/components/schemas/GatewayName.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ enum:
- TrustsPay
- Trustly
- TWINT
- Unlimit
ashkarpetin marked this conversation as resolved.
Show resolved Hide resolved
- UPayCard
- USAePay
- VantivLitle
Expand Down
1 change: 1 addition & 0 deletions openapi/components/schemas/PaymentMethod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ enum:
- SMSVoucher
- Sofort
- SparkPay
- SPEI
- swift-dbt
- Tele2
- Telr
Expand Down