orchid-orm 1.9.26 → 1.9.28

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
@@ -220,7 +220,7 @@ declare const createBaseTable: <CT extends Record<string, orchid_core.AnyColumnT
220
220
  decimal<Precision_1 extends number | undefined = undefined, Scale_1 extends number | undefined = undefined>(precision?: Precision_1 | undefined, scale?: Scale_1 | undefined): pqb.DecimalColumn<Precision_1, Scale_1>;
221
221
  real(): pqb.RealColumn;
222
222
  doublePrecision(): pqb.DoublePrecisionColumn;
223
- identity(options?: pqb.TableData.Identity | undefined): pqb.IntegerColumn;
223
+ identity(options?: pqb.TableData.Identity | undefined): pqb.IdentityColumn<pqb.IntegerColumn>;
224
224
  smallSerial(): pqb.SmallSerialColumn;
225
225
  serial(): pqb.SerialColumn;
226
226
  bigSerial(): pqb.BigSerialColumn;
@@ -364,7 +364,7 @@ declare const createBaseTable: <CT extends Record<string, orchid_core.AnyColumnT
364
364
  decimal<Precision_1 extends number | undefined = undefined, Scale_1 extends number | undefined = undefined>(precision?: Precision_1 | undefined, scale?: Scale_1 | undefined): pqb.DecimalColumn<Precision_1, Scale_1>;
365
365
  real(): pqb.RealColumn;
366
366
  doublePrecision(): pqb.DoublePrecisionColumn;
367
- identity(options?: pqb.TableData.Identity | undefined): pqb.IntegerColumn;
367
+ identity(options?: pqb.TableData.Identity | undefined): pqb.IdentityColumn<pqb.IntegerColumn>;
368
368
  smallSerial(): pqb.SmallSerialColumn;
369
369
  serial(): pqb.SerialColumn;
370
370
  bigSerial(): pqb.BigSerialColumn;