drizzle-graphql-plus 0.8.6 → 0.8.8
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/package.json +3 -3
- package/src/types.ts +478 -360
- package/src/util/builders/common.ts +2 -0
- package/src/util/builders/mysql.ts +534 -449
- package/src/util/builders/pg.ts +583 -484
- package/src/util/builders/sqlite.ts +589 -491
- package/src/util/builders/types.ts +261 -175
|
@@ -545,10 +545,12 @@ export const generateTableTypes = <WithReturning extends boolean>(
|
|
|
545
545
|
selectArrOutput,
|
|
546
546
|
singleTableItemOutput: singleTableItemOutput!,
|
|
547
547
|
arrTableItemOutput: arrTableItemOutput!,
|
|
548
|
+
tableFieldsInterface,
|
|
548
549
|
}
|
|
549
550
|
: {
|
|
550
551
|
selectSingleOutput,
|
|
551
552
|
selectArrOutput,
|
|
553
|
+
tableFieldsInterface,
|
|
552
554
|
}
|
|
553
555
|
) as GeneratedTableTypesOutputs<WithReturning>;
|
|
554
556
|
|