Compare commits

..

2 Commits

Author SHA1 Message Date
7606e074a5 5.2.5 2024-06-18 20:11:41 +02:00
7ec39e397e fix(core): update 2024-06-18 20:11:40 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartdata", "name": "@push.rocks/smartdata",
"version": "5.2.4", "version": "5.2.5",
"private": false, "private": false,
"description": "An advanced library for NoSQL data organization and manipulation using TypeScript with support for MongoDB, data validation, collections, and custom data types.", "description": "An advanced library for NoSQL data organization and manipulation using TypeScript with support for MongoDB, data validation, collections, and custom data types.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartdata', name: '@push.rocks/smartdata',
version: '5.2.4', version: '5.2.5',
description: 'An advanced library for NoSQL data organization and manipulation using TypeScript with support for MongoDB, data validation, collections, and custom data types.' description: 'An advanced library for NoSQL data organization and manipulation using TypeScript with support for MongoDB, data validation, collections, and custom data types.'
} }

View File

@ -76,7 +76,7 @@ export const convertFilterForMongoDb = (filterArg: { [key: string]: any }) => {
return convertedFilter; return convertedFilter;
}; };
export class SmartDataDbDoc<T extends TImplements, TImplements, TManager extends IManager = any> { export class SmartDataDbDoc<T extends TImplements, TImplements, TManager = any> {
/** /**
* the collection object an Doc belongs to * the collection object an Doc belongs to
*/ */