@spot-flow/checkout-inline-js 0.1.33-dev.5 → 0.1.33-dev.7
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/README.md +78 -78
- package/dist/api.d.ts +2 -1
- package/dist/checkout-inline.es.js +10017 -16643
- package/dist/checkout-inline.js +1530 -1230
- package/dist/data/countryStateCode.json.d.ts +22016 -22016
- package/dist/index.css +1 -1
- package/dist/modules/Card.d.ts +5 -3
- package/dist/modules/EFT.d.ts +5 -4
- package/dist/modules/MobileMoney.d.ts +6 -4
- package/dist/modules/Transfer.d.ts +5 -3
- package/dist/modules/Ussd.d.ts +6 -4
- package/dist/types/types.d.ts +12 -0
- package/dist/utils/encryption.d.ts +3 -3
- package/dist/views/eft/authenticate.d.ts +0 -15
- package/dist/views/mobile-money/mobile-money-form.d.ts +3 -0
- package/dist/views/shared/main-footer.d.ts +7 -1
- package/dist/views/shared/main-header.d.ts +3 -3
- package/dist/views/shared/main-page.d.ts +5 -2
- package/dist/views/shared/payment-success.d.ts +0 -1
- package/dist/views/shared/test-card.d.ts +13 -0
- package/dist/views/ussd/ussd-bank-detail-form.d.ts +2 -0
- package/dist/views/ussd/ussd-view-code.d.ts +1 -2
- package/package.json +64 -64
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@spot-flow/checkout-inline-js",
|
|
3
|
-
"version": "0.1.33-dev.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "dist/checkout-inline.js",
|
|
6
|
-
"module": "dist/checkout-inline.es.js",
|
|
7
|
-
"source": "src/index.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
10
|
-
"dev": "vite",
|
|
11
|
-
"build": "vite build",
|
|
12
|
-
"prepare": "husky",
|
|
13
|
-
"commitlint": "commitlint --edit",
|
|
14
|
-
"lint-yarn": "eslint '**/*.{js,ts,tsx}'",
|
|
15
|
-
"format": "prettier --write",
|
|
16
|
-
"lint:fix": "yarn lint --fix"
|
|
17
|
-
},
|
|
18
|
-
"type": "module",
|
|
19
|
-
"types": "dist/index.d.ts",
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@commitlint/cli": "^19.4.0",
|
|
25
|
-
"@commitlint/config-conventional": "^19.2.2",
|
|
26
|
-
"@types/mixpanel-browser": "^2.50.2",
|
|
27
|
-
"@types/node": "^20.14.9",
|
|
28
|
-
"autoprefixer": "^10.4.19",
|
|
29
|
-
"eslint-config-prettier": "^9.1.0",
|
|
30
|
-
"husky": "^9.1.5",
|
|
31
|
-
"lint-staged": "^15.2.9",
|
|
32
|
-
"postcss": "^8.4.39",
|
|
33
|
-
"prettier": "^3.3.3",
|
|
34
|
-
"tailwindcss": "^3.4.4",
|
|
35
|
-
"tailwindcss-scoped-preflight": "^3.4.3",
|
|
36
|
-
"typescript": "^5.5.3",
|
|
37
|
-
"vite": "^5.3.2",
|
|
38
|
-
"vite-plugin-css-injected-by-js": "^3.5.1",
|
|
39
|
-
"vite-plugin-dts": "^3.9.1",
|
|
40
|
-
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
41
|
-
"vite-tsconfig-paths": "^5.0.1"
|
|
42
|
-
},
|
|
43
|
-
"author": "Oluwatomisin Jimoh <jayoluwatosin@gmail.com>",
|
|
44
|
-
"license": "ISC",
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/Spotflow-One/spotflow-checkout-inline"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://github.com/Spotflow-One/spotflow-checkout-inline",
|
|
50
|
-
"bugs": {
|
|
51
|
-
"url": "https://github.com/Spotflow-One/spotflow-checkout-inline/issues"
|
|
52
|
-
},
|
|
53
|
-
"keywords": [
|
|
54
|
-
"cdn",
|
|
55
|
-
"spotflow",
|
|
56
|
-
"checkout",
|
|
57
|
-
"inline",
|
|
58
|
-
"payment"
|
|
59
|
-
],
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"mixpanel-browser": "^2.55.1",
|
|
62
|
-
"pusher-js": "^8.4.0"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@spot-flow/checkout-inline-js",
|
|
3
|
+
"version": "0.1.33-dev.7",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/checkout-inline.js",
|
|
6
|
+
"module": "dist/checkout-inline.es.js",
|
|
7
|
+
"source": "src/index.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
10
|
+
"dev": "vite",
|
|
11
|
+
"build": "vite build",
|
|
12
|
+
"prepare": "husky",
|
|
13
|
+
"commitlint": "commitlint --edit",
|
|
14
|
+
"lint-yarn": "eslint '**/*.{js,ts,tsx}'",
|
|
15
|
+
"format": "prettier --write",
|
|
16
|
+
"lint:fix": "yarn lint --fix"
|
|
17
|
+
},
|
|
18
|
+
"type": "module",
|
|
19
|
+
"types": "dist/index.d.ts",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@commitlint/cli": "^19.4.0",
|
|
25
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
26
|
+
"@types/mixpanel-browser": "^2.50.2",
|
|
27
|
+
"@types/node": "^20.14.9",
|
|
28
|
+
"autoprefixer": "^10.4.19",
|
|
29
|
+
"eslint-config-prettier": "^9.1.0",
|
|
30
|
+
"husky": "^9.1.5",
|
|
31
|
+
"lint-staged": "^15.2.9",
|
|
32
|
+
"postcss": "^8.4.39",
|
|
33
|
+
"prettier": "^3.3.3",
|
|
34
|
+
"tailwindcss": "^3.4.4",
|
|
35
|
+
"tailwindcss-scoped-preflight": "^3.4.3",
|
|
36
|
+
"typescript": "^5.5.3",
|
|
37
|
+
"vite": "^5.3.2",
|
|
38
|
+
"vite-plugin-css-injected-by-js": "^3.5.1",
|
|
39
|
+
"vite-plugin-dts": "^3.9.1",
|
|
40
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
41
|
+
"vite-tsconfig-paths": "^5.0.1"
|
|
42
|
+
},
|
|
43
|
+
"author": "Oluwatomisin Jimoh <jayoluwatosin@gmail.com>",
|
|
44
|
+
"license": "ISC",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/Spotflow-One/spotflow-checkout-inline"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/Spotflow-One/spotflow-checkout-inline",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/Spotflow-One/spotflow-checkout-inline/issues"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"cdn",
|
|
55
|
+
"spotflow",
|
|
56
|
+
"checkout",
|
|
57
|
+
"inline",
|
|
58
|
+
"payment"
|
|
59
|
+
],
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"mixpanel-browser": "^2.55.1",
|
|
62
|
+
"pusher-js": "^8.4.0"
|
|
63
|
+
}
|
|
64
|
+
}
|