@abejarano/ts-mongodb-criteria 1.8.4 → 1.8.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare abstract class AggregateRoot {
|
|
2
|
-
abstract getId(): string;
|
|
3
|
-
abstract toPrimitives(): any;
|
|
4
2
|
static fromPrimitives(_data: any): AggregateRoot;
|
|
3
|
+
abstract getId(): string | undefined;
|
|
4
|
+
abstract toPrimitives(): any;
|
|
5
5
|
}
|
|
6
6
|
export type AggregateRootClass<T extends AggregateRoot> = {
|
|
7
7
|
fromPrimitives(data: any): T;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abejarano/ts-mongodb-criteria",
|
|
3
3
|
"author": "angel bejarano / angel.bejarano@jaspesoft.com",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.5",
|
|
5
5
|
"description": "Patrón Criteria para consultas MongoDB en TypeScript",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/esm/index.js",
|