@mikro-orm/sql 7.0.0-dev.115 → 7.0.0-dev.117

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.
package/typings.d.ts CHANGED
@@ -162,11 +162,12 @@ export interface IQueryBuilder<T> {
162
162
  getAliasForJoinPath(path: string, options?: ICriteriaNodeProcessOptions): string | undefined;
163
163
  getJoinForPath(path?: string, options?: ICriteriaNodeProcessOptions): JoinOptions | undefined;
164
164
  getNextAlias(entityName?: string | EntityName<T>): string;
165
- clone(reset?: boolean): IQueryBuilder<T>;
165
+ clone(reset?: boolean | string[], preserve?: string[]): IQueryBuilder<T>;
166
166
  setFlag(flag: QueryFlag): this;
167
167
  unsetFlag(flag: QueryFlag): this;
168
168
  hasFlag(flag: QueryFlag): boolean;
169
169
  scheduleFilterCheck(path: string): void;
170
+ withSchema(schema: string): this;
170
171
  }
171
172
  export interface ICriteriaNodeProcessOptions {
172
173
  alias?: string;