@secrecy/lib 1.0.0-dev.51 → 1.0.0-dev.54
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 +6 -0
- package/dist/BaseClient.js +44 -13
- package/dist/client/index.js +3 -5
- package/dist/client/types/UserAppSettings.d.ts +1 -2
- package/dist/client/types/UserAppSettings.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/zeus/const.js +42 -3
- package/dist/zeus/index.d.ts +200 -14
- package/dist/zeus/index.js +51 -37
- package/package.json +21 -21
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.54",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/xsecrecy/lib.git"
|
|
@@ -44,43 +44,43 @@
|
|
|
44
44
|
"semantic-release": "semantic-release"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@babel/cli": "^7.18.
|
|
48
|
-
"@babel/core": "^7.18.
|
|
47
|
+
"@babel/cli": "^7.18.10",
|
|
48
|
+
"@babel/core": "^7.18.10",
|
|
49
49
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
50
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.18.
|
|
50
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
|
|
51
51
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
52
|
-
"@babel/plugin-transform-runtime": "^7.18.
|
|
53
|
-
"@babel/plugin-transform-typescript": "^7.18.
|
|
54
|
-
"@babel/preset-env": "^7.18.
|
|
52
|
+
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
53
|
+
"@babel/plugin-transform-typescript": "^7.18.12",
|
|
54
|
+
"@babel/preset-env": "^7.18.10",
|
|
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": "^28.1.
|
|
58
|
+
"@types/jest": "^28.1.6",
|
|
59
59
|
"@types/jsonwebtoken": "^8.5.8",
|
|
60
|
-
"@types/node": "^18.
|
|
60
|
+
"@types/node": "^18.7.2",
|
|
61
61
|
"@types/shortid": "^0.0.29",
|
|
62
62
|
"@types/spark-md5": "^3.0.2",
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
64
|
-
"@typescript-eslint/parser": "^5.
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
64
|
+
"@typescript-eslint/parser": "^5.33.0",
|
|
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.21.0",
|
|
69
69
|
"eslint-config-prettier": "^8.5.0",
|
|
70
70
|
"eslint-plugin-prettier": "^4.2.1",
|
|
71
|
-
"graphql-zeus": "^5.1.
|
|
71
|
+
"graphql-zeus": "^5.1.7",
|
|
72
72
|
"husky": "^8.0.1",
|
|
73
|
-
"jest": "^28.1.
|
|
74
|
-
"jest-environment-jsdom": "^28.1.
|
|
73
|
+
"jest": "^28.1.3",
|
|
74
|
+
"jest-environment-jsdom": "^28.1.3",
|
|
75
75
|
"jest-fetch-mock": "^3.0.3",
|
|
76
76
|
"npm-run-all": "^4.1.5",
|
|
77
77
|
"prettier": "^2.7.0",
|
|
78
78
|
"rimraf": "^3.0.2",
|
|
79
79
|
"semantic-release": "^19.0.3",
|
|
80
|
-
"ts-jest": "^28.0.
|
|
81
|
-
"ts-node": "^10.
|
|
82
|
-
"tsup": "^6.
|
|
83
|
-
"typedoc": "^0.23.
|
|
80
|
+
"ts-jest": "^28.0.7",
|
|
81
|
+
"ts-node": "^10.9.1",
|
|
82
|
+
"tsup": "^6.2.2",
|
|
83
|
+
"typedoc": "^0.23.10",
|
|
84
84
|
"typescript": "^4.7.3"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
"bson": "^4.6.5",
|
|
91
91
|
"graphql": "^16.5.0",
|
|
92
92
|
"jsonwebtoken": "^8.5.1",
|
|
93
|
-
"ky": "^0.31.
|
|
93
|
+
"ky": "^0.31.1",
|
|
94
94
|
"libsodium-wrappers": "^0.7.10",
|
|
95
95
|
"shortid": "^2.2.16",
|
|
96
96
|
"spark-md5": "^3.0.2",
|
|
97
|
-
"webpack": "^5.
|
|
97
|
+
"webpack": "^5.74.0"
|
|
98
98
|
},
|
|
99
99
|
"packageManager": "pnpm@7.5.0"
|
|
100
100
|
}
|