orchid-orm 1.62.2 → 1.62.3

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/dist/index.d.ts CHANGED
@@ -455,7 +455,7 @@ interface ORMTableInput {
455
455
  scopes?: RecordUnknown;
456
456
  readonly softDelete?: true | string;
457
457
  comment?: string;
458
- autoForeignKeys?: TableData.References.BaseOptions;
458
+ autoForeignKeys?: TableData.References.BaseOptions | boolean;
459
459
  }
460
460
  type Queryable<T extends ORMTableInput> = ShallowSimplify<{
461
461
  [K in keyof T['columns']['shape']]?: T['columns']['shape'][K]['queryType'];