@mikro-orm/sql 7.0.0-dev.112 → 7.0.0-dev.114

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
@@ -179,7 +179,7 @@ export interface ICriteriaNodeProcessOptions {
179
179
  export interface ICriteriaNode<T extends object> {
180
180
  readonly entityName: string;
181
181
  readonly parent?: ICriteriaNode<T> | undefined;
182
- readonly key?: string | undefined;
182
+ readonly key?: string | symbol | undefined;
183
183
  readonly strict?: boolean;
184
184
  payload: any;
185
185
  prop?: EntityProperty;