namirasoft-node 1.4.47 → 1.4.49

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.
@@ -71,7 +71,7 @@ export interface IFilterableDatabase<WhereOptions> {
71
71
  partial: boolean;
72
72
  required: boolean;
73
73
  };
74
- getInSelect: (t: BaseTable<BaseDatabase, any>, not: boolean, join: BaseDatabase_FilterTable<WhereOptions>, conditions: WhereOptions[]) => WhereOptions;
74
+ getInSelect: (t: BaseTable<BaseDatabase, any>, not: boolean, join: BaseDatabase_FilterTable<WhereOptions>, conditions: WhereOptions[]) => Promise<WhereOptions>;
75
75
  }
76
76
  export declare abstract class BaseDatabase {
77
77
  private tables;
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.4.47",
11
+ "version": "1.4.49",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
@@ -27,7 +27,7 @@ export interface IFilterableDatabase<WhereOptions>
27
27
  getLTE: (column_name: string, value: any) => { condition: WhereOptions, partial: boolean, required: boolean };
28
28
  getGT: (column_name: string, value: any) => { condition: WhereOptions, partial: boolean, required: boolean };
29
29
  getGTE: (column_name: string, value: any) => { condition: WhereOptions, partial: boolean, required: boolean };
30
- getInSelect: (t: BaseTable<BaseDatabase, any>, not: boolean, join: BaseDatabase_FilterTable<WhereOptions>, conditions: WhereOptions[]) => WhereOptions;
30
+ getInSelect: (t: BaseTable<BaseDatabase, any>, not: boolean, join: BaseDatabase_FilterTable<WhereOptions>, conditions: WhereOptions[]) => Promise<WhereOptions>;
31
31
  }
32
32
 
33
33
  export abstract class BaseDatabase