@secrecy/lib 1.0.0-dev.46 → 1.0.0-dev.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/BaseClient.d.ts +0 -4
- package/dist/BaseClient.js +1 -1
- package/dist/client/convert/node.js +5 -1
- package/dist/client/index.d.ts +2 -4
- package/dist/client/index.js +78 -75
- package/dist/client/types/Node.d.ts +5 -0
- package/dist/client/types/Node.js +1 -1
- package/dist/client/types/selectors.d.ts +16 -0
- package/dist/client/types/selectors.js +5 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/zeus/const.js +16 -12
- package/dist/zeus/index.d.ts +2431 -607
- package/dist/zeus/index.js +71 -47
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@secrecy/lib",
|
|
3
3
|
"author": "Anonymize <anonymize@gmail.com>",
|
|
4
4
|
"description": "Anonymize Secrecy Library",
|
|
5
|
-
"version": "1.0.0-dev.
|
|
5
|
+
"version": "1.0.0-dev.49",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/xsecrecy/lib.git"
|
|
@@ -55,45 +55,46 @@
|
|
|
55
55
|
"@babel/preset-typescript": "^7.18.6",
|
|
56
56
|
"@commitlint/cli": "^17.0.3",
|
|
57
57
|
"@commitlint/config-conventional": "^17.0.3",
|
|
58
|
-
"@types/jest": "^
|
|
58
|
+
"@types/jest": "^28.1.4",
|
|
59
59
|
"@types/jsonwebtoken": "^8.5.8",
|
|
60
|
-
"@types/node": "^18.0.
|
|
60
|
+
"@types/node": "^18.0.3",
|
|
61
61
|
"@types/shortid": "^0.0.29",
|
|
62
62
|
"@types/spark-md5": "^3.0.2",
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^5.30.
|
|
64
|
-
"@typescript-eslint/parser": "^5.30.
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
64
|
+
"@typescript-eslint/parser": "^5.30.5",
|
|
65
65
|
"babel-loader": "^8.2.5",
|
|
66
66
|
"babel-plugin-const-enum": "^1.2.0",
|
|
67
67
|
"cross-env": "^7.0.3",
|
|
68
|
-
"eslint": "^8.
|
|
68
|
+
"eslint": "^8.19.0",
|
|
69
69
|
"eslint-config-prettier": "^8.5.0",
|
|
70
|
-
"eslint-plugin-prettier": "^4.1
|
|
71
|
-
"graphql-zeus": "^5.1.
|
|
70
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
71
|
+
"graphql-zeus": "^5.1.6",
|
|
72
72
|
"husky": "^8.0.1",
|
|
73
|
-
"jest": "^
|
|
73
|
+
"jest": "^28.1.2",
|
|
74
|
+
"jest-environment-jsdom": "^28.1.2",
|
|
74
75
|
"jest-fetch-mock": "^3.0.3",
|
|
75
76
|
"npm-run-all": "^4.1.5",
|
|
76
77
|
"prettier": "^2.7.0",
|
|
77
78
|
"rimraf": "^3.0.2",
|
|
78
79
|
"semantic-release": "^19.0.3",
|
|
79
|
-
"ts-jest": "^
|
|
80
|
-
"ts-node": "^10.8.
|
|
81
|
-
"tsup": "^6.1.
|
|
82
|
-
"typedoc": "^0.
|
|
80
|
+
"ts-jest": "^28.0.5",
|
|
81
|
+
"ts-node": "^10.8.2",
|
|
82
|
+
"tsup": "^6.1.3",
|
|
83
|
+
"typedoc": "^0.23.6",
|
|
83
84
|
"typescript": "^4.7.3"
|
|
84
85
|
},
|
|
85
86
|
"dependencies": {
|
|
86
87
|
"@secrecy/lib-utils": "^1.0.18",
|
|
87
88
|
"@types/libsodium-wrappers": "^0.7.9",
|
|
88
89
|
"axios": "^0.27.2",
|
|
89
|
-
"bson": "^4.6.
|
|
90
|
+
"bson": "^4.6.5",
|
|
90
91
|
"graphql": "^16.5.0",
|
|
91
92
|
"jsonwebtoken": "^8.5.1",
|
|
92
|
-
"ky": "^0.
|
|
93
|
+
"ky": "^0.31.0",
|
|
93
94
|
"libsodium-wrappers": "^0.7.10",
|
|
94
95
|
"shortid": "^2.2.16",
|
|
95
96
|
"spark-md5": "^3.0.2",
|
|
96
97
|
"webpack": "^5.73.0"
|
|
97
98
|
},
|
|
98
|
-
"packageManager": "pnpm@7.
|
|
99
|
+
"packageManager": "pnpm@7.5.0"
|
|
99
100
|
}
|