@mikro-orm/sql 7.0.0-dev.320 → 7.0.0-dev.322

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
@@ -171,7 +171,10 @@ export interface IQueryBuilder<T> {
171
171
  readonly alias: string;
172
172
  readonly type: QueryType;
173
173
  /** @internal */
174
- _fields?: InternalField<T>[];
174
+ state: {
175
+ fields?: InternalField<T>[];
176
+ [key: string]: any;
177
+ };
175
178
  /** @internal */
176
179
  helper: any;
177
180
  select(fields: string | RawQueryFragment | (string | RawQueryFragment)[], distinct?: boolean): this;