ggez-banking-sdk 0.0.42 → 0.0.49
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/bank-system/constants/enum.js +11 -1
- package/dist/bank-system/helper/dataStructure.js +465 -177
- package/dist/bank-system/helper/index.d.ts +1 -1
- package/dist/bank-system/helper/index.js +53 -45
- package/dist/bank-system/interfaces/accountInterface.d.ts +3 -3
- package/dist/bank-system/interfaces/bankingSystemInterface.d.ts +44 -44
- package/dist/bank-system/interfaces/deviceInterface.d.ts +6 -6
- package/dist/bank-system/interfaces/interface.d.ts +1 -1
- package/dist/bank-system/interfaces/organizationInterface.d.ts +4 -4
- package/dist/bank-system/interfaces/signInterface.d.ts +6 -6
- package/dist/bank-system/interfaces/transactionInterface.d.ts +1 -1
- package/dist/bank-system/restApi/index.js +3 -12
- package/dist/bank-system/services/account.d.ts +2 -2
- package/dist/bank-system/services/account.js +27 -35
- package/dist/bank-system/services/addresses.d.ts +1 -1
- package/dist/bank-system/services/addresses.js +27 -33
- package/dist/bank-system/services/auth.d.ts +1 -1
- package/dist/bank-system/services/auth.js +40 -48
- package/dist/bank-system/services/bankAccount.d.ts +1 -1
- package/dist/bank-system/services/bankAccount.js +24 -33
- package/dist/bank-system/services/device.d.ts +1 -1
- package/dist/bank-system/services/device.js +48 -57
- package/dist/bank-system/services/document.d.ts +1 -1
- package/dist/bank-system/services/document.js +7 -16
- package/dist/bank-system/services/email.d.ts +1 -1
- package/dist/bank-system/services/email.js +34 -43
- package/dist/bank-system/services/history.js +5 -14
- package/dist/bank-system/services/identification.d.ts +1 -1
- package/dist/bank-system/services/identification.js +27 -27
- package/dist/bank-system/services/organization.d.ts +1 -1
- package/dist/bank-system/services/organization.js +30 -36
- package/dist/bank-system/services/personalInfo.d.ts +1 -1
- package/dist/bank-system/services/personalInfo.js +19 -22
- package/dist/bank-system/services/phone.d.ts +1 -1
- package/dist/bank-system/services/phone.js +37 -43
- package/dist/bank-system/services/security.d.ts +1 -1
- package/dist/bank-system/services/security.js +76 -67
- package/dist/bank-system/services/token.d.ts +1 -1
- package/dist/bank-system/services/token.js +12 -22
- package/dist/bank-system/services/transaction.js +6 -15
- package/dist/bank-system/services/verifyAndConfirm.d.ts +1 -1
- package/dist/bank-system/services/verifyAndConfirm.js +68 -72
- package/dist/bank-system/utils/chainAddressMasking.js +1 -1
- package/dist/bank-system/utils/copyText.js +3 -12
- package/dist/bank-system/utils/generateSourceId.js +1 -2
- package/dist/bank-system/utils/getCountryName.js +2 -4
- package/dist/bank-system/utils/getEnumName.js +2 -3
- package/dist/bank-system/utils/getStateByCountryCode.js +1 -1
- package/dist/bank-system/utils/handleEncryption/decryptData.js +23 -34
- package/dist/bank-system/utils/info.js +18 -24
- package/dist/bank-system/utils/sortUserInfo.js +6 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +56 -55
package/package.json
CHANGED
|
@@ -1,55 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"/dist"
|
|
9
|
-
],
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "https://github.com/GGEZLabs/ggez-banking-sdk"
|
|
13
|
-
},
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/GGEZLabs/ggez-banking-sdk/issues"
|
|
16
|
-
},
|
|
17
|
-
"homepage": "https://github.com/GGEZLabs/ggez-banking-sdk#readme",
|
|
18
|
-
"scripts": {
|
|
19
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
|
-
"build": "tsc --build",
|
|
21
|
-
"start": "react-app-rewired start"
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"REST",
|
|
25
|
-
"CRUD",
|
|
26
|
-
"API",
|
|
27
|
-
"endpoints",
|
|
28
|
-
"update",
|
|
29
|
-
"delete",
|
|
30
|
-
"get",
|
|
31
|
-
"post",
|
|
32
|
-
"Node.js"
|
|
33
|
-
],
|
|
34
|
-
"author": "GGEZ1 Foundation DAO LLC",
|
|
35
|
-
"license": "ISC",
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@keplr-wallet/types": "^0.12.39",
|
|
38
|
-
"@types/qs": "^6.9.9",
|
|
39
|
-
"clientjs": "^0.2.1",
|
|
40
|
-
"dayjs": "^1.11.10",
|
|
41
|
-
"dotenv": "^16.3.1",
|
|
42
|
-
"qs": "^6.11.2",
|
|
43
|
-
"react": "^18.2.0",
|
|
44
|
-
"uuid": "^9.0.1"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@types/axios": "^0.14.0",
|
|
48
|
-
"@types/jest": "^29.5.6",
|
|
49
|
-
"@types/node": "^20.8.8",
|
|
50
|
-
"@types/react": "^18.2.35",
|
|
51
|
-
"axios": "^1.5.1",
|
|
52
|
-
"jest": "^29.7.0",
|
|
53
|
-
"ts-jest": "^29.1.1"
|
|
54
|
-
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ggez-banking-sdk",
|
|
3
|
+
"version": "0.0.49",
|
|
4
|
+
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"/dist"
|
|
9
|
+
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/GGEZLabs/ggez-banking-sdk"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/GGEZLabs/ggez-banking-sdk/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/GGEZLabs/ggez-banking-sdk#readme",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
|
+
"build": "tsc --build",
|
|
21
|
+
"start": "react-app-rewired start"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"REST",
|
|
25
|
+
"CRUD",
|
|
26
|
+
"API",
|
|
27
|
+
"endpoints",
|
|
28
|
+
"update",
|
|
29
|
+
"delete",
|
|
30
|
+
"get",
|
|
31
|
+
"post",
|
|
32
|
+
"Node.js"
|
|
33
|
+
],
|
|
34
|
+
"author": "GGEZ1 Foundation DAO LLC",
|
|
35
|
+
"license": "ISC",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@keplr-wallet/types": "^0.12.39",
|
|
38
|
+
"@types/qs": "^6.9.9",
|
|
39
|
+
"clientjs": "^0.2.1",
|
|
40
|
+
"dayjs": "^1.11.10",
|
|
41
|
+
"dotenv": "^16.3.1",
|
|
42
|
+
"qs": "^6.11.2",
|
|
43
|
+
"react": "^18.2.0",
|
|
44
|
+
"uuid": "^9.0.1"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/axios": "^0.14.0",
|
|
48
|
+
"@types/jest": "^29.5.6",
|
|
49
|
+
"@types/node": "^20.8.8",
|
|
50
|
+
"@types/react": "^18.2.35",
|
|
51
|
+
"axios": "^1.5.1",
|
|
52
|
+
"jest": "^29.7.0",
|
|
53
|
+
"ts-jest": "^29.1.1",
|
|
54
|
+
"typescript": "^5.6.3"
|
|
55
|
+
}
|
|
56
|
+
}
|