@dbnx/mysql
Advanced tools
Comparing version 1.0.16 to 1.0.17
{ | ||
"name": "@dbnx/mysql", | ||
"version": "1.0.16", | ||
"version": "1.0.17", | ||
"description": "A powerful and enhanced ORM library for MySQL, offering query execution, model creation, and full relational management.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -151,4 +151,2 @@ import { Connection, Pool, ConnectionOptions, PoolOptions } from 'mysql2/promise'; | ||
public create(...args: any): DBnx | Promise<ResponseType>; | ||
/** | ||
@@ -170,3 +168,2 @@ * Retrieves all records from the specified table or model based on the provided configuration. | ||
public findAll<Tables extends string[]>(...args: any): DBnx | Promise<ResponseType>; | ||
@@ -189,3 +186,2 @@ /** | ||
public findOne<Tables extends string[]>(...args: any): DBnx | Promise<ResponseType>; | ||
@@ -207,3 +203,2 @@ /** | ||
): Promise<ResponseType>; | ||
public update<Tables extends string[]>(...args: any): DBnx | Promise<ResponseType>; | ||
@@ -219,3 +214,2 @@ | ||
public delete<Tables extends string[]>(model: typeof Model, conditions: DeleteParamsType<Tables>): Promise<ResponseType>; | ||
public delete<Table extends string[]>(...args: any): DBnx | Promise<ResponseType>; | ||
@@ -222,0 +216,0 @@ /** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79741
1228