simplepay-js-sdk 0.5.0 → 0.6.0

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.d.ts CHANGED
@@ -1,19 +1,65 @@
1
- import { PaymentData, SimplePayResponse, Currency } from './types';
2
- declare const generateSignature: (body: string, merchantKey: string) => string;
3
- declare const checkSignature: (responseText: string, signature: string, merchantKey: string) => boolean;
4
- declare const getSimplePayConfig: (currency: Currency) => {
5
- MERCHANT_KEY: string | undefined;
6
- MERCHANT_ID: string | undefined;
7
- API_URL: string;
8
- SDK_VERSION: string;
9
- };
10
- declare const startPayment: (paymentData: PaymentData) => Promise<SimplePayResponse>;
11
- declare const getCurrencyFromMerchantId: (merchantId: string) => "HUF" | "EUR" | "USD";
12
- declare const getPaymentResponse: (r: string, signature: string) => {
13
- responseCode: number;
14
- transactionId: string;
15
- event: "success" | "fail" | "timeout" | "cancel";
16
- merchantId: string;
17
- orderRef: string;
18
- };
19
- export { startPayment, getPaymentResponse, getSimplePayConfig, generateSignature, checkSignature, getCurrencyFromMerchantId };
1
+ export declare const checkSignature: (responseText: string, signature: string, merchantKey: string) => boolean;
2
+
3
+ declare const CURRENCIES: readonly ["HUF", "EUR", "USD"];
4
+
5
+ declare type Currency = typeof CURRENCIES[number];
6
+
7
+ export declare const generateSignature: (body: string, merchantKey: string) => string;
8
+
9
+ export declare const getCurrencyFromMerchantId: (merchantId: string) => "HUF" | "EUR" | "USD";
10
+
11
+ export declare const getPaymentResponse: (r: string, signature: string) => {
12
+ responseCode: number;
13
+ transactionId: string;
14
+ event: "success" | "fail" | "timeout" | "cancel";
15
+ merchantId: string;
16
+ orderRef: string;
17
+ };
18
+
19
+ export declare const getSimplePayConfig: (currency: Currency) => {
20
+ MERCHANT_KEY: string | undefined;
21
+ MERCHANT_ID: string | undefined;
22
+ API_URL: string;
23
+ SDK_VERSION: string;
24
+ };
25
+
26
+ declare type Language = typeof LANGUAGES[number];
27
+
28
+ declare const LANGUAGES: readonly ["AR", "BG", "CS", "DE", "EN", "ES", "FR", "IT", "HR", "HU", "PL", "RO", "RU", "SK", "TR", "ZH"];
29
+
30
+ declare interface PaymentData {
31
+ orderRef: string;
32
+ total: number | string;
33
+ customerEmail: string;
34
+ currency?: Currency;
35
+ language?: Language;
36
+ method?: PaymentMethod;
37
+ invoice?: {
38
+ name: string;
39
+ country: string;
40
+ state: string;
41
+ city: string;
42
+ zip: string;
43
+ address: string;
44
+ address2?: string;
45
+ phone?: string;
46
+ };
47
+ }
48
+
49
+ declare type PaymentMethod = 'CARD' | 'WIRE';
50
+
51
+ declare interface SimplePayResponse {
52
+ salt: string;
53
+ merchant: string;
54
+ orderRef: string;
55
+ currency: Currency;
56
+ transactionId: string;
57
+ timeout: string;
58
+ total: string;
59
+ paymentUrl: string;
60
+ errorCodes?: string[];
61
+ }
62
+
63
+ export declare const startPayment: (paymentData: PaymentData) => Promise<SimplePayResponse>;
64
+
65
+ export { }
package/dist/index.js CHANGED
@@ -1,125 +1,88 @@
1
- import crypto from 'crypto';
2
- import { CURRENCIES } from './types';
3
- // Existing interfaces remain the same
4
- const simplepayLogger = (...args) => {
5
- if (process.env.SIMPLEPAY_LOGGER !== 'true') {
6
- return;
7
- }
8
- console.log(...args);
1
+ const P = {}, I = ["HUF", "EUR", "USD"], a = (...e) => {
2
+ process.env.SIMPLEPAY_LOGGER === "true" && console.log(...e);
3
+ }, R = (e, t) => {
4
+ const r = P.createHmac("sha384", t.trim());
5
+ return r.update(e, "utf8"), r.digest("base64");
6
+ }, _ = (e, t, r) => t === R(e, r), g = (e) => JSON.stringify(e).replace(/\//g, "\\/"), h = (e) => {
7
+ if (!I.includes(e))
8
+ throw new Error(`Unsupported currency: ${e}`);
9
+ const t = "https://secure.simplepay.hu/payment/v2", r = "https://sandbox.simplepay.hu/payment/v2/start", o = "SimplePayV2.1_Rrd_0.5.0", s = process.env[`SIMPLEPAY_MERCHANT_KEY_${e}`], c = process.env[`SIMPLEPAY_MERCHANT_ID_${e}`], n = process.env.SIMPLEPAY_PRODUCTION === "true" ? t : r;
10
+ return {
11
+ MERCHANT_KEY: s,
12
+ MERCHANT_ID: c,
13
+ API_URL: n,
14
+ SDK_VERSION: o
15
+ };
16
+ }, l = async (e) => {
17
+ const t = e.currency || "HUF", { MERCHANT_KEY: r, MERCHANT_ID: o, API_URL: s, SDK_VERSION: c } = h(t);
18
+ if (a({ MERCHANT_KEY: r, MERCHANT_ID: o, API_URL: s }), !r || !o)
19
+ throw new Error("Missing SimplePay configuration");
20
+ const n = {
21
+ salt: P.randomBytes(16).toString("hex"),
22
+ merchant: o,
23
+ orderRef: e.orderRef,
24
+ currency: t,
25
+ customerEmail: e.customerEmail,
26
+ language: e.language || "HU",
27
+ sdkVersion: c,
28
+ methods: [e.method || "CARD"],
29
+ total: String(e.total),
30
+ timeout: new Date(Date.now() + 30 * 60 * 1e3).toISOString().replace(/\.\d{3}Z$/, "+00:00"),
31
+ url: process.env.SIMPLEPAY_REDIRECT_URL || "http://url.to.redirect",
32
+ invoice: e.invoice
33
+ }, p = g(n), u = R(p, r);
34
+ a({ bodyString: p, signature: u });
35
+ try {
36
+ const i = await fetch(s, {
37
+ method: "POST",
38
+ headers: {
39
+ "Content-Type": "application/json",
40
+ Signature: u
41
+ },
42
+ body: p
43
+ });
44
+ if (a({ response: i }), !i.ok)
45
+ throw new Error(`SimplePay API error: ${i.status}`);
46
+ const S = i.headers.get("Signature");
47
+ if (a({ responseSignature: S }), !S)
48
+ throw new Error("Missing response signature");
49
+ const d = await i.text(), E = JSON.parse(d);
50
+ if (a({ responseText: d, responseJSON: E }), E.errorCodes)
51
+ throw new Error(`SimplePay API error: ${E.errorCodes}`);
52
+ if (!_(d, S, r))
53
+ throw new Error("Invalid response signature");
54
+ return E;
55
+ } catch (i) {
56
+ throw i;
57
+ }
58
+ }, f = (e) => {
59
+ var r, o;
60
+ const t = (o = (r = Object.entries(process.env).find(
61
+ ([s, c]) => s.startsWith("SIMPLEPAY_MERCHANT_ID_") && c === e
62
+ )) == null ? void 0 : r[0]) == null ? void 0 : o.replace("SIMPLEPAY_MERCHANT_ID_", "");
63
+ if (!t)
64
+ throw new Error(`Merchant id not found in the environment: ${e}`);
65
+ return t;
66
+ }, m = (e, t) => {
67
+ t = decodeURIComponent(t), t = Buffer.from(t, "base64").toString("utf-8");
68
+ const r = Buffer.from(e, "base64").toString("utf-8"), o = JSON.parse(r), s = f(o.m), { MERCHANT_KEY: c } = h(s);
69
+ if (!_(r, t, c || ""))
70
+ throw a({ rDecoded: r, signature: t }), new Error("Invalid response signature");
71
+ const n = JSON.parse(r);
72
+ return {
73
+ responseCode: n.r,
74
+ transactionId: n.t,
75
+ event: n.e,
76
+ merchantId: n.m,
77
+ orderRef: n.o
78
+ };
9
79
  };
10
- const generateSignature = (body, merchantKey) => {
11
- const hmac = crypto.createHmac('sha384', merchantKey.trim());
12
- hmac.update(body, 'utf8');
13
- return hmac.digest('base64');
80
+ export {
81
+ _ as checkSignature,
82
+ R as generateSignature,
83
+ f as getCurrencyFromMerchantId,
84
+ m as getPaymentResponse,
85
+ h as getSimplePayConfig,
86
+ l as startPayment
14
87
  };
15
- const checkSignature = (responseText, signature, merchantKey) => signature === generateSignature(responseText, merchantKey);
16
- // escaping slashes for the request body to prevent strange SimplePay API errors (eg Missing Signature)
17
- const prepareRequestBody = (body) => JSON.stringify(body).replace(/\//g, '\\/');
18
- const getSimplePayConfig = (currency) => {
19
- if (!CURRENCIES.includes(currency)) {
20
- throw new Error(`Unsupported currency: ${currency}`);
21
- }
22
- const SIMPLEPAY_API_URL = 'https://secure.simplepay.hu/payment/v2';
23
- const SIMPLEPAY_SANDBOX_URL = 'https://sandbox.simplepay.hu/payment/v2/start';
24
- const SDK_VERSION = 'SimplePayV2.1_Rrd_0.5.0';
25
- const MERCHANT_KEY = process.env[`SIMPLEPAY_MERCHANT_KEY_${currency}`];
26
- const MERCHANT_ID = process.env[`SIMPLEPAY_MERCHANT_ID_${currency}`];
27
- const API_URL = process.env.SIMPLEPAY_PRODUCTION === 'true' ? SIMPLEPAY_API_URL : SIMPLEPAY_SANDBOX_URL;
28
- return {
29
- MERCHANT_KEY,
30
- MERCHANT_ID,
31
- API_URL,
32
- SDK_VERSION
33
- };
34
- };
35
- const startPayment = async (paymentData) => {
36
- const currency = paymentData.currency || 'HUF';
37
- const { MERCHANT_KEY, MERCHANT_ID, API_URL, SDK_VERSION } = getSimplePayConfig(currency);
38
- simplepayLogger({ MERCHANT_KEY, MERCHANT_ID, API_URL });
39
- if (!MERCHANT_KEY || !MERCHANT_ID) {
40
- throw new Error('Missing SimplePay configuration');
41
- }
42
- const requestBody = {
43
- salt: crypto.randomBytes(16).toString('hex'),
44
- merchant: MERCHANT_ID,
45
- orderRef: paymentData.orderRef,
46
- currency,
47
- customerEmail: paymentData.customerEmail,
48
- language: paymentData.language || 'HU',
49
- sdkVersion: SDK_VERSION,
50
- methods: [paymentData.method || 'CARD'],
51
- total: String(paymentData.total),
52
- timeout: new Date(Date.now() + 30 * 60 * 1000)
53
- .toISOString()
54
- .replace(/\.\d{3}Z$/, '+00:00'),
55
- url: process.env.SIMPLEPAY_REDIRECT_URL || 'http://url.to.redirect',
56
- invoice: paymentData.invoice,
57
- };
58
- const bodyString = prepareRequestBody(requestBody);
59
- const signature = generateSignature(bodyString, MERCHANT_KEY);
60
- simplepayLogger({ bodyString, signature });
61
- try {
62
- const response = await fetch(API_URL, {
63
- method: 'POST',
64
- headers: {
65
- 'Content-Type': 'application/json',
66
- 'Signature': signature,
67
- },
68
- body: bodyString,
69
- });
70
- simplepayLogger({ response });
71
- if (!response.ok) {
72
- throw new Error(`SimplePay API error: ${response.status}`);
73
- }
74
- const responseSignature = response.headers.get('Signature');
75
- simplepayLogger({ responseSignature });
76
- if (!responseSignature) {
77
- throw new Error('Missing response signature');
78
- }
79
- const responseText = await response.text();
80
- const responseJSON = JSON.parse(responseText);
81
- simplepayLogger({ responseText, responseJSON });
82
- if (responseJSON.errorCodes) {
83
- throw new Error(`SimplePay API error: ${responseJSON.errorCodes}`);
84
- }
85
- if (!checkSignature(responseText, responseSignature, MERCHANT_KEY)) {
86
- throw new Error('Invalid response signature');
87
- }
88
- return responseJSON;
89
- }
90
- catch (error) {
91
- console.error('SimplePay payment start error:', error);
92
- throw error;
93
- }
94
- };
95
- const getCurrencyFromMerchantId = (merchantId) => {
96
- const currency = Object.entries(process.env)
97
- .find(([key, value]) => key.startsWith('SIMPLEPAY_MERCHANT_ID_') && value === merchantId)?.[0]?.replace('SIMPLEPAY_MERCHANT_ID_', '');
98
- if (!currency) {
99
- throw new Error(`Merchant id not found in the environment: ${merchantId}`);
100
- }
101
- return currency;
102
- };
103
- const getPaymentResponse = (r, signature) => {
104
- signature = decodeURIComponent(signature);
105
- signature = Buffer.from(signature, 'base64').toString('utf-8');
106
- const rDecoded = Buffer.from(r, 'base64').toString('utf-8');
107
- const rDecodedJSON = JSON.parse(rDecoded);
108
- const currency = getCurrencyFromMerchantId(rDecodedJSON.m);
109
- const { MERCHANT_KEY } = getSimplePayConfig(currency);
110
- if (!checkSignature(rDecoded, signature, MERCHANT_KEY || '')) {
111
- simplepayLogger({ rDecoded, signature });
112
- throw new Error('Invalid response signature');
113
- }
114
- const responseJson = JSON.parse(rDecoded);
115
- const response = {
116
- responseCode: responseJson.r,
117
- transactionId: responseJson.t,
118
- event: responseJson.e,
119
- merchantId: responseJson.m,
120
- orderRef: responseJson.o,
121
- };
122
- return response;
123
- };
124
- export { startPayment, getPaymentResponse, getSimplePayConfig, generateSignature, checkSignature, getCurrencyFromMerchantId };
125
- //# sourceMappingURL=index.js.map
88
+ //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../__vite-browser-external","../src/types.ts","../src/index.ts"],"sourcesContent":["export default {}","type PaymentMethod = 'CARD' | 'WIRE'\n\nconst CURRENCIES = ['HUF', 'EUR', 'USD'] as const\ntype Currency = typeof CURRENCIES[number]\n\nconst LANGUAGES = [\n 'AR', // Arabic\n 'BG', // Bulgarian\n 'CS', // Czech\n 'DE', // German\n 'EN', // English\n 'ES', // Spanish\n 'FR', // French\n 'IT', // Italian\n 'HR', // Croatian\n 'HU', // Hungarian\n 'PL', // Polish\n 'RO', // Romanian\n 'RU', // Russian\n 'SK', // Slovak\n 'TR', // Turkish\n 'ZH', // Chinese\n] as const\ntype Language = typeof LANGUAGES[number]\n\ninterface PaymentData {\n orderRef: string\n total: number | string\n customerEmail: string\n currency?: Currency\n language?: Language\n method?: PaymentMethod\n invoice?: {\n name: string\n country: string\n state: string\n city: string\n zip: string\n address: string\n address2?: string\n phone?: string\n }\n}\n\ninterface SimplePayRequestBody extends Omit<PaymentData, 'total'> {\n total: string\n salt: string\n merchant: string\n sdkVersion: string\n methods: PaymentMethod[]\n timeout: string\n url: string\n}\n\ninterface SimplePayResponse {\n salt: string\n merchant: string\n orderRef: string\n currency: Currency\n transactionId: string\n timeout: string\n total: string\n paymentUrl: string\n errorCodes?: string[]\n}\n\ninterface SimplepayResult {\n r: number // response code\n t: string // transaction id\n e: 'success' | 'fail' | 'timeout' | 'cancel' // event\n m: string // merchant id\n o: string // order id\n}\n\nexport { PaymentData, SimplePayRequestBody, SimplePayResponse, SimplepayResult, CURRENCIES, Currency, PaymentMethod, LANGUAGES, Language }","import crypto from 'crypto'\nimport { PaymentData, SimplePayRequestBody, SimplePayResponse, SimplepayResult, Currency, CURRENCIES } from './types'\n\n// Existing interfaces remain the same\n\nconst simplepayLogger = (...args: any[]) => {\n if (process.env.SIMPLEPAY_LOGGER !== 'true') {\n return\n }\n console.log(...args)\n}\n\nconst generateSignature = (body: string, merchantKey: string) => {\n const hmac = crypto.createHmac('sha384', merchantKey.trim())\n hmac.update(body, 'utf8')\n return hmac.digest('base64')\n}\n\nconst checkSignature = (responseText: string, signature: string, merchantKey: string) =>\n signature === generateSignature(responseText, merchantKey)\n\n// escaping slashes for the request body to prevent strange SimplePay API errors (eg Missing Signature)\nconst prepareRequestBody = (body: SimplePayRequestBody) =>\n JSON.stringify(body).replace(/\\//g, '\\\\/')\n\n\nconst getSimplePayConfig = (currency: Currency) => {\n if (!CURRENCIES.includes(currency)) {\n throw new Error(`Unsupported currency: ${currency}`)\n }\n\n const SIMPLEPAY_API_URL = 'https://secure.simplepay.hu/payment/v2'\n const SIMPLEPAY_SANDBOX_URL = 'https://sandbox.simplepay.hu/payment/v2/start'\n const SDK_VERSION = 'SimplePayV2.1_Rrd_0.5.0'\n const MERCHANT_KEY = process.env[`SIMPLEPAY_MERCHANT_KEY_${currency}`]\n const MERCHANT_ID = process.env[`SIMPLEPAY_MERCHANT_ID_${currency}`]\n const API_URL = process.env.SIMPLEPAY_PRODUCTION === 'true' ? SIMPLEPAY_API_URL : SIMPLEPAY_SANDBOX_URL\n\n return {\n MERCHANT_KEY,\n MERCHANT_ID,\n API_URL,\n SDK_VERSION\n }\n}\n\nconst startPayment = async (paymentData: PaymentData) => {\n const currency = paymentData.currency || 'HUF'\n const { MERCHANT_KEY, MERCHANT_ID, API_URL, SDK_VERSION } = getSimplePayConfig(currency)\n simplepayLogger({ MERCHANT_KEY, MERCHANT_ID, API_URL })\n\n if (!MERCHANT_KEY || !MERCHANT_ID) {\n throw new Error('Missing SimplePay configuration')\n }\n\n const requestBody: SimplePayRequestBody = {\n salt: crypto.randomBytes(16).toString('hex'),\n merchant: MERCHANT_ID,\n orderRef: paymentData.orderRef,\n currency,\n customerEmail: paymentData.customerEmail,\n language: paymentData.language || 'HU',\n sdkVersion: SDK_VERSION,\n methods: [paymentData.method || 'CARD'],\n total: String(paymentData.total),\n timeout: new Date(Date.now() + 30 * 60 * 1000)\n .toISOString()\n .replace(/\\.\\d{3}Z$/, '+00:00'),\n url: process.env.SIMPLEPAY_REDIRECT_URL || 'http://url.to.redirect',\n invoice: paymentData.invoice,\n }\n\n const bodyString = prepareRequestBody(requestBody)\n const signature = generateSignature(bodyString, MERCHANT_KEY)\n simplepayLogger({ bodyString, signature })\n\n try {\n const response = await fetch(API_URL, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n 'Signature': signature,\n },\n body: bodyString,\n })\n\n simplepayLogger({ response })\n\n if (!response.ok) {\n throw new Error(`SimplePay API error: ${response.status}`)\n }\n\n const responseSignature = response.headers.get('Signature')\n simplepayLogger({ responseSignature })\n if (!responseSignature) {\n throw new Error('Missing response signature')\n }\n\n const responseText = await response.text()\n const responseJSON = JSON.parse(responseText) as SimplePayResponse\n simplepayLogger({ responseText, responseJSON })\n\n if (responseJSON.errorCodes) {\n throw new Error(`SimplePay API error: ${responseJSON.errorCodes}`)\n }\n\n if (!checkSignature(responseText, responseSignature, MERCHANT_KEY)) {\n throw new Error('Invalid response signature')\n }\n\n return responseJSON\n\n } catch (error) {\n throw error\n }\n}\n\nconst getCurrencyFromMerchantId = (merchantId: string) => {\n const currency = Object.entries(process.env)\n .find(([key, value]) =>\n key.startsWith('SIMPLEPAY_MERCHANT_ID_') && value === merchantId\n )?.[0]?.replace('SIMPLEPAY_MERCHANT_ID_', '') as Currency\n if (!currency) {\n throw new Error(`Merchant id not found in the environment: ${merchantId}`)\n }\n return currency\n}\n\nconst getPaymentResponse = (r: string, signature: string) => {\n signature = decodeURIComponent(signature)\n signature = Buffer.from(signature, 'base64').toString('utf-8')\n const rDecoded = Buffer.from(r, 'base64').toString('utf-8')\n const rDecodedJSON = JSON.parse(rDecoded)\n const currency = getCurrencyFromMerchantId(rDecodedJSON.m)\n const { MERCHANT_KEY } = getSimplePayConfig(currency as Currency)\n\n if (!checkSignature(rDecoded, signature, MERCHANT_KEY || '')) {\n simplepayLogger({ rDecoded, signature })\n throw new Error('Invalid response signature')\n }\n\n const responseJson: SimplepayResult = JSON.parse(rDecoded)\n const response = {\n responseCode: responseJson.r,\n transactionId: responseJson.t,\n event: responseJson.e,\n merchantId: responseJson.m,\n orderRef: responseJson.o,\n }\n\n return response\n}\n\nexport {\n startPayment,\n getPaymentResponse,\n getSimplePayConfig,\n generateSignature,\n checkSignature,\n getCurrencyFromMerchantId\n}"],"names":["crypto","CURRENCIES","simplepayLogger","args","generateSignature","body","merchantKey","hmac","checkSignature","responseText","signature","prepareRequestBody","getSimplePayConfig","currency","SIMPLEPAY_API_URL","SIMPLEPAY_SANDBOX_URL","SDK_VERSION","MERCHANT_KEY","MERCHANT_ID","API_URL","startPayment","paymentData","requestBody","bodyString","response","responseSignature","responseJSON","error","getCurrencyFromMerchantId","merchantId","_a","_b","key","value","getPaymentResponse","r","rDecoded","rDecodedJSON","responseJson"],"mappings":"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"}
package/package.json CHANGED
@@ -1,25 +1,27 @@
1
1
  {
2
2
  "name": "simplepay-js-sdk",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "A Node.js utility for SimplePay payment integration",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/rrd108/simplepay-js-sdk"
8
8
  },
9
9
  "type": "module",
10
- "main": "dist/index.js",
10
+ "main": "./dist/index.js",
11
11
  "exports": {
12
- ".": "./dist/index.js",
13
- "./types": "./dist/types.js"
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js"
15
+ }
14
16
  },
15
- "types": "dist/index.d.ts",
17
+ "types": "./dist/index.d.ts",
16
18
  "files": [
17
19
  "dist",
18
20
  "src"
19
21
  ],
20
22
  "scripts": {
21
- "build": "tsc",
22
- "prepare": "npm run build",
23
+ "build": "vite build",
24
+ "types": "tsc --emitDeclarationOnly",
23
25
  "test": "vitest --run",
24
26
  "test:watch": "vitest",
25
27
  "release": "bash ./release.sh",
@@ -35,10 +37,12 @@
35
37
  "license": "MIT",
36
38
  "devDependencies": {
37
39
  "@types/node": "^22.0.0",
38
- "typescript": "^5.0.0",
40
+ "typescript": "^5.7.2",
41
+ "vite": "^6.0.3",
42
+ "vite-plugin-dts": "^4.3.0",
39
43
  "vitest": "^2.1.6"
40
44
  },
41
45
  "engines": {
42
- "node": ">=18.0.0"
46
+ "node": ">=20.0.0"
43
47
  }
44
48
  }
package/src/index.ts CHANGED
@@ -31,7 +31,7 @@ const getSimplePayConfig = (currency: Currency) => {
31
31
 
32
32
  const SIMPLEPAY_API_URL = 'https://secure.simplepay.hu/payment/v2'
33
33
  const SIMPLEPAY_SANDBOX_URL = 'https://sandbox.simplepay.hu/payment/v2/start'
34
- const SDK_VERSION = 'SimplePayV2.1_Rrd_0.5.0'
34
+ const SDK_VERSION = 'SimplePayV2.1_Rrd_0.6.0'
35
35
  const MERCHANT_KEY = process.env[`SIMPLEPAY_MERCHANT_KEY_${currency}`]
36
36
  const MERCHANT_ID = process.env[`SIMPLEPAY_MERCHANT_ID_${currency}`]
37
37
  const API_URL = process.env.SIMPLEPAY_PRODUCTION === 'true' ? SIMPLEPAY_API_URL : SIMPLEPAY_SANDBOX_URL
@@ -111,7 +111,6 @@ const startPayment = async (paymentData: PaymentData) => {
111
111
  return responseJSON
112
112
 
113
113
  } catch (error) {
114
- console.error('SimplePay payment start error:', error)
115
114
  throw error
116
115
  }
117
116
  }
package/dist/types.d.ts DELETED
@@ -1,51 +0,0 @@
1
- type PaymentMethod = 'CARD' | 'WIRE';
2
- declare const CURRENCIES: readonly ["HUF", "EUR", "USD"];
3
- type Currency = typeof CURRENCIES[number];
4
- declare const LANGUAGES: readonly ["AR", "BG", "CS", "DE", "EN", "ES", "FR", "IT", "HR", "HU", "PL", "RO", "RU", "SK", "TR", "ZH"];
5
- type Language = typeof LANGUAGES[number];
6
- interface PaymentData {
7
- orderRef: string;
8
- total: number | string;
9
- customerEmail: string;
10
- currency?: Currency;
11
- language?: Language;
12
- method?: PaymentMethod;
13
- invoice?: {
14
- name: string;
15
- country: string;
16
- state: string;
17
- city: string;
18
- zip: string;
19
- address: string;
20
- address2?: string;
21
- phone?: string;
22
- };
23
- }
24
- interface SimplePayRequestBody extends Omit<PaymentData, 'total'> {
25
- total: string;
26
- salt: string;
27
- merchant: string;
28
- sdkVersion: string;
29
- methods: PaymentMethod[];
30
- timeout: string;
31
- url: string;
32
- }
33
- interface SimplePayResponse {
34
- salt: string;
35
- merchant: string;
36
- orderRef: string;
37
- currency: Currency;
38
- transactionId: string;
39
- timeout: string;
40
- total: string;
41
- paymentUrl: string;
42
- errorCodes?: string[];
43
- }
44
- interface SimplepayResult {
45
- r: number;
46
- t: string;
47
- e: 'success' | 'fail' | 'timeout' | 'cancel';
48
- m: string;
49
- o: string;
50
- }
51
- export { PaymentData, SimplePayRequestBody, SimplePayResponse, SimplepayResult, CURRENCIES, Currency, PaymentMethod, LANGUAGES, Language };
package/dist/types.js DELETED
@@ -1,21 +0,0 @@
1
- const CURRENCIES = ['HUF', 'EUR', 'USD'];
2
- const LANGUAGES = [
3
- 'AR', // Arabic
4
- 'BG', // Bulgarian
5
- 'CS', // Czech
6
- 'DE', // German
7
- 'EN', // English
8
- 'ES', // Spanish
9
- 'FR', // French
10
- 'IT', // Italian
11
- 'HR', // Croatian
12
- 'HU', // Hungarian
13
- 'PL', // Polish
14
- 'RO', // Romanian
15
- 'RU', // Russian
16
- 'SK', // Slovak
17
- 'TR', // Turkish
18
- 'ZH', // Chinese
19
- ];
20
- export { CURRENCIES, LANGUAGES };
21
- //# sourceMappingURL=types.js.map
package/dist/types.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAU,CAAA;AAGjD,MAAM,SAAS,GAAG;IACd,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,YAAY;IAClB,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,YAAY;IAClB,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,UAAU;CACV,CAAA;AAoDV,OAAO,EAAyE,UAAU,EAA2B,SAAS,EAAY,CAAA"}