@achyutlabsau/vue-payment-gateway 0.14.0 → 0.14.1

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 (2) hide show
  1. package/dist/tyro.d.ts +11 -0
  2. package/package.json +108 -108
package/dist/tyro.d.ts CHANGED
@@ -124,6 +124,17 @@ export declare interface TransactionCompleteResponse {
124
124
  */
125
125
  cardType: string;
126
126
  result: TyroTransactionStatus;
127
+ transactionReference: string;
128
+ authorisationCode: string;
129
+ issuerActionCode: string;
130
+ /**
131
+ * Masked card number
132
+ */
133
+ elidedPan: string;
134
+ rrn: string;
135
+ tipAmount: string;
136
+ baseAmount: string;
137
+ transactionAmount: string;
127
138
  }
128
139
 
129
140
  export declare const TYRO_CONSTANTS: {
package/package.json CHANGED
@@ -1,108 +1,108 @@
1
- {
2
- "name": "@achyutlabsau/vue-payment-gateway",
3
- "version": "0.14.0",
4
- "private": false,
5
- "homepage": "https://github.com/Achyut-Labs/al-pay-npm-pkg#readme",
6
- "bugs": {
7
- "url": "https://github.com/Achyut-Labs/al-pay-npm-pkg/issues"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/Achyut-Labs/al-pay-npm-pkg.git"
12
- },
13
- "files": [
14
- "dist"
15
- ],
16
- "type": "module",
17
- "main": "./dist/index.js",
18
- "module": "./dist/index.js",
19
- "exports": {
20
- "./worldline": {
21
- "types": "./dist/worldline.d.ts",
22
- "import": "./dist/worldline.js"
23
- },
24
- "./mx51": {
25
- "types": "./dist/mx51.d.ts",
26
- "import": "./dist/mx51.js"
27
- },
28
- "./till-payment": {
29
- "types": "./dist/till-payment.d.ts",
30
- "import": "./dist/till-payment.js"
31
- },
32
- "./linkly": {
33
- "types": "./dist/linkly.d.ts",
34
- "import": "./dist/linkly.js"
35
- },
36
- "./smartpay": {
37
- "types": "./dist/smartpay.d.ts",
38
- "import": "./dist/smartpay.js"
39
- },
40
- "./tyro": {
41
- "types": "./dist/tyro.d.ts",
42
- "import": "./dist/tyro.js"
43
- },
44
- "./valpay": {
45
- "types": "./dist/valpay.d.ts",
46
- "import": "./dist/valpay.js"
47
- },
48
- ".": {
49
- "types": "./dist/index.d.ts",
50
- "import": "./dist/index.js"
51
- }
52
- },
53
- "scripts": {
54
- "dev": "cd examples && vite",
55
- "build": "vue-tsc -b && vite build",
56
- "preview": "vite preview",
57
- "docs:dev": "vitepress dev docs",
58
- "docs:build": "vitepress build docs",
59
- "docs:preview": "vitepress preview docs",
60
- "lint": "oxlint",
61
- "fmt": "oxfmt",
62
- "fmt:check": "oxfmt --check",
63
- "prepare": "husky"
64
- },
65
- "dependencies": {
66
- "@mx51/spi-client-js": "^2.9.13"
67
- },
68
- "devDependencies": {
69
- "@quasar/extras": "^2.0.2",
70
- "@tailwindcss/vite": "^4.3.2",
71
- "@types/node": "*",
72
- "@vitejs/plugin-vue": "^6.0.8",
73
- "@vue/language-core": "^3.3.7",
74
- "@vueuse/core": "^14.3",
75
- "@vueuse/rxjs": "^14.3.0",
76
- "axios": "^1.18.1",
77
- "dayjs": "^1.11.21",
78
- "dexie": "^4.4.4",
79
- "husky": "^9.1.7",
80
- "lint-staged": "^17.0.8",
81
- "oxfmt": "^0.59.0",
82
- "oxlint": "^1.74.0",
83
- "quasar": "^2.21.3",
84
- "tailwindcss": "^4.3.2",
85
- "typescript": "~6.0.3",
86
- "unplugin-dts": "^1.0.3",
87
- "uuid": "^14.0.1",
88
- "vite": "^8.1.4",
89
- "vitepress": "^2.0.0-alpha.17",
90
- "vue": "^3.5.39",
91
- "vue-tsc": "^3.3.7"
92
- },
93
- "peerDependencies": {
94
- "@vueuse/core": ">=13",
95
- "@vueuse/rxjs": ">=13",
96
- "axios": ">=1.7",
97
- "dayjs": "^1",
98
- "dexie": "^4",
99
- "quasar": "^2",
100
- "uuid": ">=11",
101
- "vue": ">=3.5.0"
102
- },
103
- "lint-staged": {
104
- "*": "oxfmt --no-error-on-unmatched-pattern",
105
- "*.{js,ts,vue}": "oxlint --fix"
106
- },
107
- "packageManager": "bun@1.3.14"
108
- }
1
+ {
2
+ "name": "@achyutlabsau/vue-payment-gateway",
3
+ "version": "0.14.1",
4
+ "private": false,
5
+ "homepage": "https://github.com/Achyut-Labs/al-pay-npm-pkg#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/Achyut-Labs/al-pay-npm-pkg/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Achyut-Labs/al-pay-npm-pkg.git"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "type": "module",
17
+ "main": "./dist/index.js",
18
+ "module": "./dist/index.js",
19
+ "exports": {
20
+ "./worldline": {
21
+ "types": "./dist/worldline.d.ts",
22
+ "import": "./dist/worldline.js"
23
+ },
24
+ "./mx51": {
25
+ "types": "./dist/mx51.d.ts",
26
+ "import": "./dist/mx51.js"
27
+ },
28
+ "./till-payment": {
29
+ "types": "./dist/till-payment.d.ts",
30
+ "import": "./dist/till-payment.js"
31
+ },
32
+ "./linkly": {
33
+ "types": "./dist/linkly.d.ts",
34
+ "import": "./dist/linkly.js"
35
+ },
36
+ "./smartpay": {
37
+ "types": "./dist/smartpay.d.ts",
38
+ "import": "./dist/smartpay.js"
39
+ },
40
+ "./tyro": {
41
+ "types": "./dist/tyro.d.ts",
42
+ "import": "./dist/tyro.js"
43
+ },
44
+ "./valpay": {
45
+ "types": "./dist/valpay.d.ts",
46
+ "import": "./dist/valpay.js"
47
+ },
48
+ ".": {
49
+ "types": "./dist/index.d.ts",
50
+ "import": "./dist/index.js"
51
+ }
52
+ },
53
+ "scripts": {
54
+ "dev": "cd examples && vite",
55
+ "build": "vue-tsc -b && vite build",
56
+ "preview": "vite preview",
57
+ "docs:dev": "vitepress dev docs",
58
+ "docs:build": "vitepress build docs",
59
+ "docs:preview": "vitepress preview docs",
60
+ "lint": "oxlint",
61
+ "fmt": "oxfmt",
62
+ "fmt:check": "oxfmt --check",
63
+ "prepare": "husky"
64
+ },
65
+ "dependencies": {
66
+ "@mx51/spi-client-js": "^2.9.13"
67
+ },
68
+ "devDependencies": {
69
+ "@quasar/extras": "^2.0.2",
70
+ "@tailwindcss/vite": "^4.3.2",
71
+ "@types/node": "*",
72
+ "@vitejs/plugin-vue": "^6.0.8",
73
+ "@vue/language-core": "^3.3.7",
74
+ "@vueuse/core": "^14.3",
75
+ "@vueuse/rxjs": "^14.3.0",
76
+ "axios": "^1.18.1",
77
+ "dayjs": "^1.11.21",
78
+ "dexie": "^4.4.4",
79
+ "husky": "^9.1.7",
80
+ "lint-staged": "^17.0.8",
81
+ "oxfmt": "^0.59.0",
82
+ "oxlint": "^1.74.0",
83
+ "quasar": "^2.21.3",
84
+ "tailwindcss": "^4.3.2",
85
+ "typescript": "~6.0.3",
86
+ "unplugin-dts": "^1.0.3",
87
+ "uuid": "^14.0.1",
88
+ "vite": "^8.1.4",
89
+ "vitepress": "^2.0.0-alpha.17",
90
+ "vue": "^3.5.39",
91
+ "vue-tsc": "^3.3.7"
92
+ },
93
+ "peerDependencies": {
94
+ "@vueuse/core": ">=13",
95
+ "@vueuse/rxjs": ">=13",
96
+ "axios": ">=1.7",
97
+ "dayjs": "^1",
98
+ "dexie": "^4",
99
+ "quasar": "^2",
100
+ "uuid": ">=11",
101
+ "vue": ">=3.5.0"
102
+ },
103
+ "lint-staged": {
104
+ "*": "oxfmt --no-error-on-unmatched-pattern",
105
+ "*.{js,ts,vue}": "oxlint --fix"
106
+ },
107
+ "packageManager": "bun@1.3.14"
108
+ }