quickpos 1.0.910 → 1.0.912

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.
Files changed (131) hide show
  1. package/PROVIDERS-DETAILS.md +1544 -0
  2. package/examples/example-2checkout.js +78 -0
  3. package/examples/example-bitpay.js +83 -0
  4. package/examples/example-cardcom.js +80 -0
  5. package/examples/example-cashfree.js +109 -0
  6. package/examples/example-checkout.js +85 -0
  7. package/examples/example-coingate.js +101 -0
  8. package/examples/example-coinpayments.js +89 -0
  9. package/examples/example-doku.js +27 -0
  10. package/examples/example-epay.js +64 -0
  11. package/examples/example-epoint.js +91 -0
  12. package/examples/example-freekassa.js +26 -0
  13. package/examples/example-heleket.js +139 -0
  14. package/examples/example-konnect.js +227 -0
  15. package/examples/example-midtrans.js +80 -0
  16. package/examples/example-noonpayments.js +297 -0
  17. package/examples/example-nowpayments.js +289 -0
  18. package/examples/example-omise.js +27 -0
  19. package/examples/example-paycom.js +82 -0
  20. package/{example-paydisini.js → examples/example-paydisini.js} +1 -1
  21. package/examples/example-payid19.js +87 -0
  22. package/examples/example-paykun.js +29 -0
  23. package/examples/example-payme.js +202 -0
  24. package/examples/example-paymentwall.js +201 -0
  25. package/examples/example-paynet.js +104 -0
  26. package/examples/example-paynettr.js +18 -0
  27. package/examples/example-payoneer.js +74 -0
  28. package/examples/example-payop.js +351 -0
  29. package/examples/example-paypal.js +200 -0
  30. package/examples/example-payriff.js +89 -0
  31. package/examples/example-paysend.js +81 -0
  32. package/examples/example-payspace.js +103 -0
  33. package/examples/example-payssion.js +27 -0
  34. package/examples/example-paytabs.js +28 -0
  35. package/examples/example-paytm.js +78 -0
  36. package/examples/example-payuindia.js +108 -0
  37. package/examples/example-payulatam.js +75 -0
  38. package/examples/example-phonepe.js +27 -0
  39. package/examples/example-picpay.js +27 -0
  40. package/examples/example-plisio.js +84 -0
  41. package/examples/example-portwallet.js +90 -0
  42. package/examples/example-primepayments.js +250 -0
  43. package/examples/example-razorpay.js +30 -0
  44. package/examples/example-senangpay.js +28 -0
  45. package/examples/example-shurjopay.js +94 -0
  46. package/examples/example-toyyibpay.js +80 -0
  47. package/examples/example-tripay.js +89 -0
  48. package/examples/example-unitpay.js +26 -0
  49. package/examples/example-urway.js +28 -0
  50. package/examples/example-volet.js +80 -0
  51. package/examples/example-xendit.js +28 -0
  52. package/examples/example-yallapay.js +253 -0
  53. package/examples/example-yookassa.js +27 -0
  54. package/examples/example-youcanpay.js +28 -0
  55. package/examples/example-zarinpal.js +98 -0
  56. package/{example.js → examples/example.js} +1 -1
  57. package/lib/2checkout.js +165 -0
  58. package/lib/amazonpay.js +161 -0
  59. package/lib/bitpay.js +122 -0
  60. package/lib/cardcom.js +193 -0
  61. package/lib/cashfree.js +184 -0
  62. package/lib/checkout.js +248 -0
  63. package/lib/coinbase.js +150 -0
  64. package/lib/coingate.js +137 -0
  65. package/lib/coinpayments.js +245 -0
  66. package/lib/doku.js +173 -0
  67. package/lib/epay.js +175 -0
  68. package/lib/epoint.js +162 -0
  69. package/lib/freekassa.js +128 -0
  70. package/lib/heleket.js +67 -1
  71. package/lib/instamojo.js +158 -0
  72. package/lib/konnect.js +211 -0
  73. package/lib/midtrans.js +227 -0
  74. package/lib/noonpayments.js +650 -0
  75. package/lib/nowpayments.js +311 -0
  76. package/lib/omise.js +150 -0
  77. package/lib/paddle.js +180 -0
  78. package/lib/paycom.js +216 -0
  79. package/lib/payid19.js +211 -0
  80. package/lib/paykun.js +144 -0
  81. package/lib/payme.js +302 -0
  82. package/lib/paymentwall.js +205 -0
  83. package/lib/paynet.js +186 -0
  84. package/lib/paynettr.js +165 -0
  85. package/lib/payoneer.js +128 -0
  86. package/lib/payop.js +256 -0
  87. package/lib/paypal.js +542 -0
  88. package/lib/payriff.js +148 -0
  89. package/lib/paysend.js +189 -0
  90. package/lib/payspace.js +168 -0
  91. package/lib/payssion.js +177 -0
  92. package/lib/paytabs.js +145 -0
  93. package/lib/paytm.js +253 -0
  94. package/lib/payuindia.js +162 -0
  95. package/lib/payulatam.js +179 -0
  96. package/lib/perfectmoney.js +143 -0
  97. package/lib/phonepe.js +174 -0
  98. package/lib/picpay.js +119 -0
  99. package/lib/plisio.js +234 -0
  100. package/lib/portwallet.js +152 -0
  101. package/lib/primepayments.js +256 -0
  102. package/lib/razorpay.js +205 -0
  103. package/lib/senangpay.js +130 -0
  104. package/lib/shurjopay.js +159 -0
  105. package/lib/toyyibpay.js +151 -0
  106. package/lib/tripay.js +220 -0
  107. package/lib/unitpay.js +223 -0
  108. package/lib/urway.js +182 -0
  109. package/lib/volet.js +147 -0
  110. package/lib/xendit.js +206 -0
  111. package/lib/yallapay.js +279 -0
  112. package/lib/yookassa.js +193 -0
  113. package/lib/youcanpay.js +124 -0
  114. package/lib/zarinpal.js +157 -0
  115. package/package.json +138 -64
  116. package/readme.md +348 -105
  117. package/test.js +492 -0
  118. package/example-heleket.js +0 -83
  119. package/lib/vallet.js +0 -22
  120. /package/{example-anypay.js → examples/example-anypay.js} +0 -0
  121. /package/{example-bufpay.js → examples/example-bufpay.js} +0 -0
  122. /package/{example-cryptomus.js → examples/example-cryptomus.js} +0 -0
  123. /package/{example-esnekpos.js → examples/example-esnekpos.js} +0 -0
  124. /package/{example-fedapay.js → examples/example-fedapay.js} +0 -0
  125. /package/{example-iyzico.js → examples/example-iyzico.js} +0 -0
  126. /package/{example-papara.js → examples/example-papara.js} +0 -0
  127. /package/{example-payeer.js → examples/example-payeer.js} +0 -0
  128. /package/{example-paymaya.js → examples/example-paymaya.js} +0 -0
  129. /package/{example-shopier.js → examples/example-shopier.js} +0 -0
  130. /package/{ipaymu.js → examples/ipaymu.js} +0 -0
  131. /package/{oderopay.js → examples/oderopay.js} +0 -0
package/readme.md CHANGED
@@ -1,174 +1,417 @@
1
- # 💳 QuickPos 🚀
1
+ <div align="center">
2
+ <h1>💳 QuickPos 🚀</h1>
3
+ <p><strong>A powerful, multi-gateway payment integration module for Node.js</strong></p>
4
+ <p>Seamlessly integrate with 50+ payment providers worldwide</p>
5
+
6
+ <img src="https://img.shields.io/badge/version-1.3.0-blue.svg" alt="Version">
7
+ <img src="https://img.shields.io/badge/npm-quickpos-green.svg" alt="NPM">
8
+ <img src="https://img.shields.io/badge/license-MIT-yellow.svg" alt="License">
9
+ <br>
10
+ <img src="https://img.shields.io/badge/Node.js-18+-green.svg" alt="Node.js">
11
+ <img src="https://img.shields.io/badge/platforms-Windows%20%7C%20Linux%20%7C%20macOS-lightgrey.svg" alt="Platforms">
12
+ </div>
2
13
 
3
- QuickPos, farklı ödeme sağlayıcılarını destekleyen güçlü bir ödeme entegrasyon modülüdür. Şu anda PayTR, Shopier, Cryptomus, Payeer, Papara, Anypay, EsnekPos, İyzico, PayMaya, FedaPay, Heleket, Paydisini sağlayıcısını desteklemektedir ve gelecekte birçok yeni sağlayıcı ile özellik eklemeyi planlamaktadır. Yol haritamıza göz atarak gelecek özellikleri keşfedebilirsiniz.
14
+ ---
4
15
 
16
+ ## 📋 Table of Contents
5
17
 
6
- - QuickPanel.NET Tarafın'dan Geliştirilmektedir.
18
+ - [✨ Features](#-features)
19
+ - [🌍 Supported Payment Providers](#-supported-payment-providers)
20
+ - [📦 Installation](#-installation)
21
+ - [🚀 Quick Start](#-quick-start)
22
+ - [🛠️ Usage](#️-usage)
23
+ - [📚 API Reference](#-api-reference)
24
+ - [🛣️ Roadmap](#️-roadmap)
25
+ - [🤝 Contributing](#-contributing)
26
+ - [📄 License](#-license)
7
27
 
8
28
  ---
9
29
 
10
- ## ✨ Özellikler
30
+ ## ✨ Features
31
+
32
+ <div align="center">
33
+
34
+ | Feature | Description |
35
+ |---------|-------------|
36
+ | 🔌 **Multi-Provider Support** | Integrate with 50+ payment gateways worldwide |
37
+ | 🛡️ **Secure Transactions** | Enterprise-grade security for all payments |
38
+ | ⚡ **Fast Integration** | Get started in minutes with simple setup |
39
+ | 📊 **Detailed Reporting** | Comprehensive payment analytics and logs |
40
+ | 🌐 **Global Coverage** | Support for traditional and crypto payments |
41
+ | 🔧 **Customizable** | Tailored solutions for business needs |
42
+ | 📱 **Callback Handling** | Automatic webhook processing |
43
+ | 🧪 **Well Tested** | Extensive test coverage for reliability |
44
+
45
+ </div>
46
+
47
+ ---
11
48
 
12
- - 🔌 **Çoklu Ödeme Sağlayıcı Desteği**: Birden fazla ödeme sağlayıcı ile uyumlu.
13
- - 🛡️ **Güvenli Ödeme İşlemleri**: Güvenli ve sorunsuz ödeme işlemleri.
14
- - 🔄 **Kolay Entegrasyon**: Hızlı ve basit entegrasyon.
15
- - 📊 **Detaylı Ödeme Raporları**: Gelişmiş raporlama özellikleri.
16
- - 💼 **İşletmeler için Özelleştirilebilir Çözümler**: Özel ihtiyaçlara yönelik çözümler.
49
+ ## 🌍 Supported Payment Providers
50
+
51
+ ### 💳 Traditional Payment Systems
52
+
53
+ | Provider | Country | Status |
54
+ |----------|---------|--------|
55
+ | **Midtrans** | 🇮🇩 Indonesia | ✅ Active |
56
+ | **Tripay** | 🇮🇩 Indonesia | ✅ Active |
57
+ | **Doku** | 🇮🇩 Indonesia | ✅ Active |
58
+ | **PayID19** | 🇮🇩 Indonesia | ✅ Active |
59
+ | **Xendit** | 🇮🇩 🇵🇭 Indonesia & Philippines | ✅ Active |
60
+ | **ToyyibPay** | 🇲🇾 Malaysia | ✅ Active |
61
+ | **SenangPay** | 🇲🇾 Malaysia | ✅ Active |
62
+ | **Zarinpal** | 🇮🇷 Iran | ✅ Active |
63
+ | **Paytm** | 🇮🇳 India | ✅ Active |
64
+ | **Cashfree** | 🇮🇳 India | ✅ Active |
65
+ | **PayU India** | 🇮🇳 India | ✅ Active |
66
+ | **PayKun** | 🇮🇳 India | ✅ Active |
67
+ | **Razorpay** | 🇮🇳 India | ✅ Active |
68
+ | **Instamojo** | 🇮🇳 India | ✅ Active |
69
+ | **PhonePe** | 🇮🇳 India | ✅ Active |
70
+ | **PayU Latam** | 🇲🇽 🇨🇴 🇵🇪 🇦🇷 Latin America | ✅ Active |
71
+ | **PicPay** | 🇧🇷 Brazil | ✅ Active |
72
+ | **Cardcom** | 🇮🇱 Israel | ✅ Active |
73
+ | **Paycom** | 🇺🇿 Uzbekistan | ✅ Active |
74
+ | **Checkout.com** | 🌐 Global | ✅ Active |
75
+ | **2Checkout** | 🌐 Global | ✅ Active |
76
+ | **İyzico** | 🇹🇷 Turkey | ✅ Active |
77
+ | **PayTR** | 🇹🇷 Turkey | ✅ Active |
78
+ | **Shopier** | 🇹🇷 Turkey | ✅ Active |
79
+ | **Papara** | 🇹🇷 Turkey | ✅ Active |
80
+ | **EsnekPos** | 🇹🇷 Turkey | ✅ Active |
81
+ | **Paydisini** | 🇹🇷 Turkey | ✅ Active |
82
+ | **PayNetTR** | 🇹🇷 Turkey | ✅ Active |
83
+ | **PayPal** | 🌐 Global | ✅ Active |
84
+ | **Amazon Pay** | 🌐 Global | ✅ Active |
85
+ | **Paddle** | 🌐 Global SaaS | ✅ Active |
86
+ | **FedaPay** | 🇧🇯 Benin | ✅ Active |
87
+ | **Konnect** | 🇹🇳 Tunisia | ✅ Active |
88
+ | **PayMaya** | 🇵🇭 Philippines | ✅ Active |
89
+ | **PayME** | 🇻🇳 Vietnam | ✅ Active |
90
+ | **PrimePayments** | 🇦🇪 UAE | ✅ Active |
91
+ | **YallaPay** | 🇦🇪 UAE | ✅ Active |
92
+ | **NoonPayments** | 🇦🇪 UAE | ✅ Active |
93
+ | **PayTabs** | 🇦🇪 🇸🇦 🇴🇲 🇯🇴 🇪🇬 Middle East | ✅ Active |
94
+ | **URWay** | 🇸🇦 Saudi Arabia | ✅ Active |
95
+ | **PayOP** | 🌐 Global | ✅ Active |
96
+ | **Paymentwall** | 🌐 Global | ✅ Active |
97
+ | **Payssion** | 🌐 Global (300+ methods) | ✅ Active |
98
+ | **Paysend** | 🌐 Global | ✅ Active |
99
+ | **Payoneer** | 🌐 Global | ✅ Active |
100
+ | **ShurjoPay** | 🇧🇩 Bangladesh | ✅ Active |
101
+ | **PaySpace** | 🇿🇦 South Africa | ✅ Active |
102
+ | **Payriff** | 🇦🇿 Azerbaijan | ✅ Active |
103
+ | **Epoint** | 🇦🇿 Azerbaijan | ✅ Active |
104
+ | **ePay** | 🇧🇬 Bulgaria | ✅ Active |
105
+ | **PayNet** | 🇲🇩 Moldova | ✅ Active |
106
+ | **PortWallet** | 🌐 Global | ✅ Active |
107
+ | **Omise** | 🇹🇭 Thailand | ✅ Active |
108
+ | **YouCanPay** | 🇲🇦 Morocco | ✅ Active |
109
+ | **YooKassa** | 🇷🇺 Russia | ✅ Active |
110
+ | **FreeKassa** | 🇷🇺 Russia | ✅ Active |
111
+ | **Unitpay** | 🇷🇺 Russia | ✅ Active |
112
+
113
+ ### ₿ Cryptocurrency Payment Systems
114
+
115
+ | Provider | Features | Status |
116
+ |----------|----------|--------|
117
+ | **Plisio** | BTC, ETH, USDT +20 cryptos | ✅ Active |
118
+ | **CoinPayments** | 2000+ cryptocurrencies | ✅ Active |
119
+ | **Cryptomus** | Multi-crypto support | ✅ Active |
120
+ | **Payeer** | Crypto & fiat | ✅ Active |
121
+ | **Anypay** | Crypto solutions | ✅ Active |
122
+ | **NowPayments** | 150+ cryptos | ✅ Active |
123
+ | **Heleket** | Crypto gateway | ✅ Active |
124
+ | **BitPay** | BTC & crypto | ✅ Active |
125
+ | **CoinGate** | 70+ cryptos | ✅ Active |
126
+ | **Volet** | Crypto & fiat gateway | ✅ Active |
127
+ | **Coinbase Commerce** | Crypto gateway | ✅ Active |
128
+ | **Perfect Money** | E-currency | ✅ Active |
17
129
 
18
130
  ---
19
131
 
20
- ## 📦 Kurulum
132
+ ## 📦 Installation
21
133
 
22
134
  ```bash
23
135
  npm install quickpos
24
136
  ```
25
137
 
26
- ---
138
+ **Requirements:**
139
+ - Node.js 18+
140
+ - npm or yarn
27
141
 
28
- ## 🛠️ Kullanım
142
+ ---
29
143
 
30
- ### 1. Sunucu Kurulumu
144
+ ## 🚀 Quick Start
31
145
 
32
146
  ```javascript
33
- const express = require('express');
34
- const bodyParser = require('body-parser');
35
147
  const QuickPos = require('quickpos');
36
148
 
37
- const app = express();
38
- app.use(bodyParser.urlencoded({ extended: true }));
39
- app.use(bodyParser.json());
40
-
41
149
  const quickPos = new QuickPos({
42
150
  providers: {
43
151
  paytr: {
44
- merchantId: 'xXxxXxX',
45
- merchantKey: 'xXxxXxX',
46
- merchantSalt: 'xXxxXxX',
47
- mode: 'test',
152
+ merchantId: 'your-merchant-id',
153
+ merchantKey: 'your-merchant-key',
154
+ merchantSalt: 'your-merchant-salt',
155
+ mode: 'test', // or 'live'
48
156
  }
49
157
  },
50
158
  });
51
159
 
52
- // QuickPos middleware'ini ekleyin
53
- app.use(quickPos.middleware());
160
+ // Create a payment
161
+ const payment = await quickPos.paytr.createPayment({
162
+ name: 'Premium Plan',
163
+ amount: 29.99,
164
+ currency: 'USD',
165
+ callback_link: 'https://yourapp.com/callback',
166
+ callback_id: 'order-123',
167
+ });
168
+
169
+ console.log('Payment URL:', payment.data.url);
170
+ ```
171
+
172
+ ---
54
173
 
55
- // Ödeme oluşturma formu
56
- app.get('/', (req, res) => {
57
- res.send(`
58
- <form action="/payment/paytr" method="post">
59
- <input type="text" name="amount" placeholder="Amount" required>
60
- <select name="currency" required>
61
- <option value="TL">TL</option>
62
- <option value="USD">USD</option>
63
- <option value="EUR">EUR</option>
64
- </select>
65
- <input type="text" name="orderId" placeholder="Order ID" required>
66
- <button type="submit">Pay</button>
67
- </form>
68
- `);
174
+ ## 🛠️ Usage
175
+
176
+ ### Basic Setup
177
+
178
+ ```javascript
179
+ const express = require('express');
180
+ const QuickPos = require('quickpos');
181
+
182
+ const app = express();
183
+ app.use(express.json());
184
+
185
+ const quickPos = new QuickPos({
186
+ providers: {
187
+ // Configure your providers here
188
+ paypal: { /* config */ },
189
+ stripe: { /* config */ },
190
+ },
69
191
  });
70
192
 
71
- // Ödeme oluşturma rotası
72
- app.post('/payment/:provider', async (req, res) => {
73
- const { provider } = req.params;
74
-
75
- if (!req.quickPos[provider]) {
76
- return res.status(400).json({ error: 'Invalid payment provider' });
77
- }
193
+ // Add middleware
194
+ app.use(quickPos.middleware());
78
195
 
196
+ // Create payment endpoint
197
+ app.post('/create-payment', async (req, res) => {
79
198
  try {
80
- const result = await req.quickPos[provider].createPayment({
81
- name: 'Test Product',
199
+ const result = await quickPos.paypal.createPayment({
82
200
  amount: req.body.amount,
83
201
  currency: req.body.currency,
84
- callback_link: `https://mylocalhostx.speedsmm.com/payment-callback/${provider}`,
85
- callback_id: req.body.orderId,
86
- maxInstallment: 1,
87
- expiry_date: '2024-12-25 17:00:00',
88
- email: 'test@gmail.com',
202
+ name: req.body.productName,
89
203
  });
90
-
91
- if (result.status === 'success') {
92
- res.json({ redirectUrl: result.data.url });
93
- } else {
94
- res.status(400).json(result);
95
- }
204
+ res.json(result);
96
205
  } catch (error) {
97
206
  res.status(500).json({ error: error.message });
98
207
  }
99
208
  });
100
209
 
101
- // Callback rotası
102
- app.post('/payment-callback/:provider', quickPos.handleCallback('paytr'), (req, res) => {
210
+ // Handle callbacks
211
+ app.post('/payment-callback/:provider', quickPos.handleCallback(), (req, res) => {
103
212
  console.log('Payment result:', req.paymentResult);
104
-
105
- if (req.paymentResult.status === 'success') {
106
- res.send('OK');
107
- } else {
108
- res.status(400).send('Payment failed');
109
- }
213
+ res.send('OK');
110
214
  });
111
215
 
112
- app.listen(80, () => {
113
- console.log('Server is running on port 80');
114
- });
216
+ app.listen(3000, () => console.log('Server running on port 3000'));
115
217
  ```
116
218
 
117
- ### 2. Konfigürasyon
118
-
119
- `QuickPos` örneğini oluştururken ödeme sağlayıcılarını yapılandırın:
219
+ ### Advanced Configuration
120
220
 
121
221
  ```javascript
122
222
  const quickPos = new QuickPos({
123
223
  providers: {
124
224
  paytr: {
125
- merchantId: 'xXxxXxX',
126
- merchantKey: 'xXxxXxX',
127
- merchantSalt: 'xXxxXxX',
128
- mode: 'test',
129
- }
225
+ merchantId: process.env.PAYTR_MERCHANT_ID,
226
+ merchantKey: process.env.PAYTR_MERCHANT_KEY,
227
+ merchantSalt: process.env.PAYTR_MERCHANT_SALT,
228
+ mode: process.env.NODE_ENV === 'production' ? 'live' : 'test',
229
+ },
230
+ cryptomus: {
231
+ apiKey: process.env.CRYPTOMUS_API_KEY,
232
+ merchantId: process.env.CRYPTOMUS_MERCHANT_ID,
233
+ },
234
+ },
235
+ options: {
236
+ timeout: 30000,
237
+ retryAttempts: 3,
130
238
  },
131
239
  });
132
240
  ```
133
241
 
134
242
  ---
135
243
 
136
- ## Desteklenen Ödeme Sağlayıcıları 🏦
244
+ ## 📚 API Reference
245
+
246
+ ### QuickPos Class
247
+
248
+ #### Constructor
249
+ ```javascript
250
+ new QuickPos(config)
251
+ ```
252
+
253
+ **Parameters:**
254
+ - `config.providers` (Object): Provider configurations
255
+ - `config.options` (Object, optional): Global options
256
+
257
+ #### Methods
137
258
 
138
- - PayTR
139
- - Shopier
140
- - Cryptomus
141
- - Payeer
142
- - Papara
259
+ ##### `createPayment(provider, data)`
260
+ Creates a new payment with specified provider.
261
+
262
+ **Parameters:**
263
+ - `provider` (string): Provider name
264
+ - `data` (Object): Payment data
265
+
266
+ **Returns:** Promise<PaymentResult>
267
+
268
+ ##### `handleCallback(provider)`
269
+ Middleware for handling payment callbacks.
270
+
271
+ **Parameters:**
272
+ - `provider` (string): Provider name
273
+
274
+ **Returns:** Express middleware function
275
+
276
+ ---
277
+
278
+ ## 🛣️ Roadmap
279
+
280
+ ### 🎯 Upcoming Features
281
+
282
+ - [ ] 🏦 **New Payment Providers**: Stripe, Square, Adyen
283
+ - [ ] 🌐 **Multi-Language Support**: i18n integration
284
+ - [ ] 💸 **Multi-Currency Support**: Automatic conversion
285
+ - [ ] 📱 **Mobile SDK**: React Native & Flutter support
286
+ - [ ] 🔍 **Advanced Analytics**: Real-time dashboards
287
+ - [ ] 🤖 **AI-Powered Routing**: Smart provider selection
288
+ - [ ] 📝 **Enhanced Documentation**: Interactive API docs
289
+
290
+ ### ✅ Completed Integrations
291
+
292
+ <div align="center">
293
+
294
+ | Provider | Status | Date |
295
+ |----------|--------|------|
296
+ | PayTR | ✅ | v1.0.0 |
297
+ | Shopier | ✅ | v1.0.1 |
298
+ | Cryptomus | ✅ | v1.0.2 |
299
+ | Payeer | ✅ | v1.0.3 |
300
+ | Papara | ✅ | v1.0.4 |
301
+ | İyzico | ✅ | v1.0.5 |
302
+ | Anypay | ✅ | v1.1.0 |
303
+ | EsnekPos | ✅ | v1.1.1 |
304
+ | PayMaya | ✅ | v1.1.2 |
305
+ | FedaPay | ✅ | v1.1.3 |
306
+ | Heleket | ✅ | v1.1.4 |
307
+ | Paydisini | ✅ | v1.1.5 |
308
+ | PayPal | ✅ | v1.2.0 |
309
+ | Paymentwall | ✅ | v1.2.1 |
310
+ | Konnect | ✅ | v1.2.2 |
311
+ | PayME | ✅ | v1.2.3 |
312
+ | PrimePayments | ✅ | v1.2.4 |
313
+ | YallaPay | ✅ | v1.2.5 |
314
+ | NowPayments | ✅ | v1.2.6 |
315
+ | NoonPayments | ✅ | v1.2.7 |
316
+ | PayOP | ✅ | v1.2.8 |
317
+ | Midtrans | ✅ | v1.2.9 |
318
+ | Plisio | ✅ | v1.3.0 |
319
+ | Tripay | ✅ | v1.3.0 |
320
+ | And 30+ more... | ✅ | Ongoing |
321
+
322
+ </div>
323
+
324
+ ---
325
+
326
+ ## 🤝 Contributing
327
+
328
+ We welcome contributions! Here's how you can help:
329
+
330
+ ### Ways to Contribute
331
+ - 🐛 **Report Bugs**: Open issues for bugs you find
332
+ - 💡 **Suggest Features**: Share your ideas for new features
333
+ - 🔧 **Code Contributions**: Submit pull requests
334
+ - 📖 **Documentation**: Help improve docs
335
+ - 🧪 **Testing**: Add test cases
336
+
337
+ ### Development Setup
338
+
339
+ ```bash
340
+ # Fork and clone the repository
341
+ git clone https://github.com/your-username/QuickPos.git
342
+ cd QuickPos
343
+
344
+ # Install dependencies
345
+ npm install
346
+
347
+ # Run tests
348
+ npm test
349
+
350
+ # Start development
351
+ npm run dev
352
+ ```
353
+
354
+ ### Guidelines
355
+ - Follow the existing code style
356
+ - Add tests for new features
357
+ - Update documentation
358
+ - Use conventional commits
359
+
360
+ ---
361
+
362
+ ## 📄 License
363
+
364
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
143
365
 
144
366
  ---
145
367
 
146
- ## Yol Haritası 🛣️
368
+ <div align="center">
147
369
 
148
- ### Gelecek Özellikler
370
+ **Built with ❤️ by [QuickPanel.NET](https://quickpanel.net)**
149
371
 
150
- - 🏦 Yeni ödeme sağlayıcıları: Öneri'de Bulunun
151
- - 🌐 Çoklu dil desteği
152
- - 💸 Çoklu para birimi desteği
153
- - 📝 Gelişmiş dökümantasyon
372
+ *Empowering businesses with seamless payment solutions worldwide*
154
373
 
155
- ### İlerleme Durumu
374
+ [⭐ Star us on GitHub](https://github.com/codedByCan/QuickPos) • [🐛 Report Issues](https://github.com/codedByCan/QuickPos/issues) • [📧 Contact](mailto:support@quickpanel.net)
156
375
 
157
- - [x] PayTR entegrasyonu
158
- - [x] Shopier entegrasyonu
159
- - [x] Cryptomus entegrasyonu
160
- - [x] Payeer entegrasyonu
161
- - [x] Papara entegrasyonu
162
- - [x] İyzico entegrasyonu
163
- - [x] Anypay entegrasyonu
164
- - [x] EsnekPos entegrasyonu
165
- - [x] PayMaya entegrasyonu
166
- - [x] FedaPay entegrasyonu
167
- - [x] Heleket entegrasyonu
168
- - [x] Paydisini entegrasyonu
376
+ </div>
169
377
 
170
378
  ---
171
379
 
172
- ## Katkıda Bulunma 🤝
380
+ ## 🇹🇷 Türkçe Dokümantasyon
381
+
382
+ ### Özellikler
383
+ - 🔌 **Çoklu Sağlayıcı Desteği**: 50+ ödeme ağ geçidi
384
+ - 🛡️ **Güvenli İşlemler**: Kurumsal düzey güvenlik
385
+ - ⚡ **Hızlı Entegrasyon**: Dakikalar içinde başlayın
386
+ - 📊 **Detaylı Raporlama**: Kapsamlı analizler
387
+
388
+ ### Kurulum
389
+ ```bash
390
+ npm install quickpos
391
+ ```
392
+
393
+ ### Hızlı Başlangıç
394
+ ```javascript
395
+ const QuickPos = require('quickpos');
396
+
397
+ const quickPos = new QuickPos({
398
+ providers: {
399
+ paytr: {
400
+ merchantId: 'merchant-id',
401
+ merchantKey: 'merchant-key',
402
+ merchantSalt: 'merchant-salt',
403
+ mode: 'test',
404
+ }
405
+ },
406
+ });
407
+
408
+ const odeme = await quickPos.paytr.createPayment({
409
+ name: 'Premium Paket',
410
+ amount: 29.99,
411
+ currency: 'TRY',
412
+ callback_link: 'https://uygulamaniz.com/callback',
413
+ callback_id: 'siparis-123',
414
+ });
415
+ ```
173
416
 
174
- Katkılarınızı bekliyoruz! Lütfen [katkı yönergelerimizi](CONTRIBUTING.md) okuyun.
417
+ Daha fazla detay için yukarıdaki İngilizce dokümantasyonu inceleyin.