mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 00:38:11 +00:00
Merge pull request #168 from Tria-plc/feat/payment-microservice
Feat/payment microservice
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- AlterEnum
|
||||
ALTER TYPE "PaymentMethodType" ADD VALUE 'DMONEY';
|
||||
File diff suppressed because it is too large
Load Diff
@@ -422,6 +422,7 @@ async function seedPaymentMethods() {
|
||||
{ type: 'TELEBIRR', displayName: 'Telebirr', region: 'ETHIOPIA' },
|
||||
{ type: 'CBE_BIRR', displayName: 'CBE Birr', region: 'ETHIOPIA' },
|
||||
{ type: 'EBIRR', displayName: 'eBirr', region: 'ETHIOPIA' },
|
||||
{ type: 'WAAFI', displayName: 'Waffi', region: 'DJIBOUTI' },
|
||||
{ type: 'CARD', displayName: 'Credit/Debit Card', region: 'GLOBAL' },
|
||||
{ type: 'WALLET', displayName: 'Wallet', region: 'GLOBAL' },
|
||||
];
|
||||
|
||||
@@ -20,7 +20,8 @@ export enum PaymentMethodTypeEnum {
|
||||
TELEBIRR = "TELEBIRR", // Ethiopia
|
||||
CBE_BIRR = "CBE_BIRR", // Ethiopia
|
||||
EBIRR = "EBIRR", // Ethiopia
|
||||
WAAFI = "WAAFI", // Djibouti
|
||||
WAAFI = "WAAFI",
|
||||
DMONEY= "DMONEY",// Djibouti
|
||||
CARD = "CARD", // International
|
||||
WALLET = "WALLET", // Internal
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user