@decaf-ts/db-decorators 0.6.16 → 0.6.18
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/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/repository/types.d.ts +1 -2
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/repository/types.d.ts +1 -2
- package/package.json +4 -7
package/lib/esm/index.d.ts
CHANGED
package/lib/esm/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { OperationKeys } from "../operations";
|
|
|
9
9
|
* @typedef {M extends Model ? M : never} ModelExtension
|
|
10
10
|
* @memberOf module:db-decorators
|
|
11
11
|
*/
|
|
12
|
-
type ModelExtension<M extends Model = Model> = M extends Model ? M : never;
|
|
12
|
+
export type ModelExtension<M extends Model = Model> = M extends Model ? M : never;
|
|
13
13
|
/**
|
|
14
14
|
* @description Configuration flags for repository operations.
|
|
15
15
|
* @summary Defines the configuration options that control repository behavior during operations.
|
|
@@ -39,4 +39,3 @@ export type RepositoryFlags = {
|
|
|
39
39
|
breakOnHandlerError: boolean;
|
|
40
40
|
rebuildWithTransient: boolean;
|
|
41
41
|
};
|
|
42
|
-
export {};
|
package/lib/index.cjs
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { OperationKeys } from "../operations";
|
|
|
9
9
|
* @typedef {M extends Model ? M : never} ModelExtension
|
|
10
10
|
* @memberOf module:db-decorators
|
|
11
11
|
*/
|
|
12
|
-
type ModelExtension<M extends Model = Model> = M extends Model ? M : never;
|
|
12
|
+
export type ModelExtension<M extends Model = Model> = M extends Model ? M : never;
|
|
13
13
|
/**
|
|
14
14
|
* @description Configuration flags for repository operations.
|
|
15
15
|
* @summary Defines the configuration options that control repository behavior during operations.
|
|
@@ -39,4 +39,3 @@ export type RepositoryFlags = {
|
|
|
39
39
|
breakOnHandlerError: boolean;
|
|
40
40
|
rebuildWithTransient: boolean;
|
|
41
41
|
};
|
|
42
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/db-decorators",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"description": "Agnostic database decorators and repository",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -74,16 +74,13 @@
|
|
|
74
74
|
},
|
|
75
75
|
"homepage": "https://github.com/decaf-ts/db-decorators#readme",
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@decaf-ts/utils": "latest"
|
|
77
|
+
"@decaf-ts/utils": "latest",
|
|
78
|
+
"@decaf-ts/logging": "latest"
|
|
78
79
|
},
|
|
79
|
-
"
|
|
80
|
+
"dependencies": {
|
|
80
81
|
"@decaf-ts/decoration": "latest",
|
|
81
82
|
"@decaf-ts/decorator-validation": "latest",
|
|
82
83
|
"@decaf-ts/injectable-decorators": "latest",
|
|
83
84
|
"@decaf-ts/reflection": "latest"
|
|
84
|
-
},
|
|
85
|
-
"dependencies": {
|
|
86
|
-
"better-docs": "^2.7.3",
|
|
87
|
-
"taffydb": "^2.7.3"
|
|
88
85
|
}
|
|
89
86
|
}
|