@e22m4u/js-repository 0.5.3 → 0.5.5
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/eslint.config.js
CHANGED
|
@@ -28,6 +28,8 @@ export default [
|
|
|
28
28
|
...eslintChaiExpectPlugin.configs['recommended-flat'].rules,
|
|
29
29
|
...eslintJsdocPlugin.configs['flat/recommended-error'].rules,
|
|
30
30
|
'no-unused-vars': ['error', {'caughtErrors': 'none'}],
|
|
31
|
+
'jsdoc/reject-any-type': 0,
|
|
32
|
+
'jsdoc/reject-function-type': 0,
|
|
31
33
|
'jsdoc/require-param-description': 0,
|
|
32
34
|
'jsdoc/require-returns-description': 0,
|
|
33
35
|
'jsdoc/require-property-description': 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e22m4u/js-repository",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Реализация репозитория для работы с базами данных в Node.js",
|
|
5
5
|
"author": "Mikhail Evstropov <e22m4u@yandex.ru>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"prepare": "husky"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@e22m4u/js-empty-values": "~0.0.
|
|
43
|
-
"@e22m4u/js-format": "~0.
|
|
44
|
-
"@e22m4u/js-service": "~0.3.
|
|
42
|
+
"@e22m4u/js-empty-values": "~0.0.3",
|
|
43
|
+
"@e22m4u/js-format": "~0.2.0",
|
|
44
|
+
"@e22m4u/js-service": "~0.3.8"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@commitlint/cli": "~19.8.1",
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"chai": "~6.0.1",
|
|
55
55
|
"chai-as-promised": "~8.0.2",
|
|
56
56
|
"chai-spies": "~1.1.0",
|
|
57
|
-
"esbuild": "~0.25.
|
|
58
|
-
"eslint": "~9.
|
|
57
|
+
"esbuild": "~0.25.10",
|
|
58
|
+
"eslint": "~9.36.0",
|
|
59
59
|
"eslint-config-prettier": "~10.1.8",
|
|
60
60
|
"eslint-plugin-chai-expect": "~3.1.0",
|
|
61
|
-
"eslint-plugin-jsdoc": "~
|
|
61
|
+
"eslint-plugin-jsdoc": "~60.3.0",
|
|
62
62
|
"eslint-plugin-mocha": "~11.1.0",
|
|
63
63
|
"husky": "~9.1.7",
|
|
64
|
-
"mocha": "~11.7.
|
|
64
|
+
"mocha": "~11.7.2",
|
|
65
65
|
"prettier": "~3.6.2",
|
|
66
66
|
"rimraf": "~6.0.1",
|
|
67
67
|
"ts-node": "~10.9.2",
|
|
68
68
|
"typescript": "~5.9.2",
|
|
69
|
-
"typescript-eslint": "~8.
|
|
69
|
+
"typescript-eslint": "~8.44.1"
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -161,7 +161,7 @@ export declare class Repository<
|
|
|
161
161
|
/**
|
|
162
162
|
* Removes id field.
|
|
163
163
|
*/
|
|
164
|
-
type WithoutId<IdName extends string, Data extends
|
|
164
|
+
type WithoutId<IdName extends string, Data extends object> = Flatten<
|
|
165
165
|
Omit<Data, IdName>
|
|
166
166
|
>;
|
|
167
167
|
|