🔖 Release Version 1.0.4-hf3

This commit is contained in:
MontaGhanmy
2024-10-25 19:16:09 +01:00
35 changed files with 448 additions and 217 deletions
@@ -47,4 +47,7 @@ export abstract class AbstractConnector<T extends ConnectionOptions> implements
getType(): DatabaseType {
return this.type;
}
getClient() {
return this.getClient();
}
}
@@ -99,6 +99,11 @@ export interface Connector extends Initializable {
* @returns Pagination
*/
getOffsetPagination(options: Paginable): Pagination;
/**
* Get the db client
*/
getClient(): any;
}
export declare type ConnectionOptions = MongoConnectionOptions | PostgresConnectionOptions;