@crediblemark/buayar 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -963,10 +963,16 @@ var MidtransProvider = class extends BasePaymentProvider {
|
|
|
963
963
|
qris: { payment_type: "qris", qris: { acquirer: "gopay" } },
|
|
964
964
|
gopay: { payment_type: "gopay", gopay: { enable_callback: true, callback_url: "https://example.com" } },
|
|
965
965
|
shopeepay: { payment_type: "shopeepay", shopeepay: { callback_url: "https://example.com" } },
|
|
966
|
+
ovo: { payment_type: "ovo", ovo: { phone: "081234567890" } },
|
|
967
|
+
dana: { payment_type: "dana" },
|
|
968
|
+
linkaja: { payment_type: "linkaja" },
|
|
966
969
|
bca: { payment_type: "bank_transfer", bank_transfer: { bank: "bca" } },
|
|
967
970
|
bni: { payment_type: "bank_transfer", bank_transfer: { bank: "bni" } },
|
|
968
971
|
bri: { payment_type: "bank_transfer", bank_transfer: { bank: "bri" } },
|
|
969
972
|
cimb: { payment_type: "bank_transfer", bank_transfer: { bank: "cimb" } },
|
|
973
|
+
danamon: { payment_type: "bank_transfer", bank_transfer: { bank: "danamon" } },
|
|
974
|
+
bsi: { payment_type: "bank_transfer", bank_transfer: { bank: "bsi" } },
|
|
975
|
+
seabank: { payment_type: "bank_transfer", bank_transfer: { bank: "seabank" } },
|
|
970
976
|
mandiri: { payment_type: "echannel", echannel: { bill_info1: "Payment", bill_info2: "Probe" } },
|
|
971
977
|
permata: { payment_type: "permata" },
|
|
972
978
|
alfamart: { payment_type: "cstore", cstore: { store: "alfamart", message: "Probe" } },
|
package/dist/index.mjs
CHANGED
|
@@ -921,10 +921,16 @@ var MidtransProvider = class extends BasePaymentProvider {
|
|
|
921
921
|
qris: { payment_type: "qris", qris: { acquirer: "gopay" } },
|
|
922
922
|
gopay: { payment_type: "gopay", gopay: { enable_callback: true, callback_url: "https://example.com" } },
|
|
923
923
|
shopeepay: { payment_type: "shopeepay", shopeepay: { callback_url: "https://example.com" } },
|
|
924
|
+
ovo: { payment_type: "ovo", ovo: { phone: "081234567890" } },
|
|
925
|
+
dana: { payment_type: "dana" },
|
|
926
|
+
linkaja: { payment_type: "linkaja" },
|
|
924
927
|
bca: { payment_type: "bank_transfer", bank_transfer: { bank: "bca" } },
|
|
925
928
|
bni: { payment_type: "bank_transfer", bank_transfer: { bank: "bni" } },
|
|
926
929
|
bri: { payment_type: "bank_transfer", bank_transfer: { bank: "bri" } },
|
|
927
930
|
cimb: { payment_type: "bank_transfer", bank_transfer: { bank: "cimb" } },
|
|
931
|
+
danamon: { payment_type: "bank_transfer", bank_transfer: { bank: "danamon" } },
|
|
932
|
+
bsi: { payment_type: "bank_transfer", bank_transfer: { bank: "bsi" } },
|
|
933
|
+
seabank: { payment_type: "bank_transfer", bank_transfer: { bank: "seabank" } },
|
|
928
934
|
mandiri: { payment_type: "echannel", echannel: { bill_info1: "Payment", bill_info2: "Probe" } },
|
|
929
935
|
permata: { payment_type: "permata" },
|
|
930
936
|
alfamart: { payment_type: "cstore", cstore: { store: "alfamart", message: "Probe" } },
|
package/package.json
CHANGED