namirasoft-node 1.4.57 → 1.4.58
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.
|
@@ -34,5 +34,5 @@ export declare abstract class BaseFilterItemBuilder<Table extends {
|
|
|
34
34
|
abstract getLTE(column_name: string, value: any): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
35
35
|
abstract getGT(column_name: string, value: any): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
36
36
|
abstract getGTE(column_name: string, value: any): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
37
|
-
abstract getInSelect(
|
|
37
|
+
abstract getInSelect(table_name: string, not: boolean, join: BaseFilterItemBuilder_JoinTable<WhereOptions>, conditions: WhereOptions[]): Promise<WhereOptions>;
|
|
38
38
|
}
|
package/package.json
CHANGED
|
@@ -135,8 +135,8 @@ export abstract class BaseFilterItemBuilder<Table extends { getName: () => strin
|
|
|
135
135
|
}
|
|
136
136
|
return ans;
|
|
137
137
|
}
|
|
138
|
-
public abstract checkColumn(table_name: string, column_name: string
|
|
139
|
-
public abstract getRealColumnName(table_name: string, column_name: string
|
|
138
|
+
public abstract checkColumn(table_name: string, column_name: string): void;
|
|
139
|
+
public abstract getRealColumnName(table_name: string, column_name: string): string;
|
|
140
140
|
public abstract getIn(column_name: string, not: boolean, values: string[]): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
141
141
|
public abstract getLike(column_name: string, not: boolean, value: string): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
142
142
|
public abstract getRegex(column_name: string, not: boolean, value: string): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
@@ -149,5 +149,5 @@ export abstract class BaseFilterItemBuilder<Table extends { getName: () => strin
|
|
|
149
149
|
public abstract getLTE(column_name: string, value: any): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
150
150
|
public abstract getGT(column_name: string, value: any): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
151
151
|
public abstract getGTE(column_name: string, value: any): BaseFilterItemBuilder_Condition<WhereOptions>;
|
|
152
|
-
public abstract getInSelect(
|
|
152
|
+
public abstract getInSelect(table_name: string, not: boolean, join: BaseFilterItemBuilder_JoinTable<WhereOptions>, conditions: WhereOptions[]): Promise<WhereOptions>;
|
|
153
153
|
}
|