pqb 0.40.3 → 0.40.5
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 +6 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6381,7 +6381,9 @@ const makeColumnsByType = (schema) => {
|
|
|
6381
6381
|
jsonb: schema.json,
|
|
6382
6382
|
smallserial: t.smallSerial,
|
|
6383
6383
|
serial: t.serial,
|
|
6384
|
-
bigserial: t.bigSerial
|
|
6384
|
+
bigserial: t.bigSerial,
|
|
6385
|
+
// requires citext extension
|
|
6386
|
+
citext: t.citext
|
|
6385
6387
|
};
|
|
6386
6388
|
};
|
|
6387
6389
|
|
|
@@ -12860,6 +12862,7 @@ const _initQueryBuilder = (adapter, columnTypes, transactionStorage, commonOptio
|
|
|
12860
12862
|
qb.internal.extensions = arr;
|
|
12861
12863
|
}
|
|
12862
12864
|
qb.internal.domains = options.domains;
|
|
12865
|
+
qb.internal.generatorIgnore = options.generatorIgnore;
|
|
12863
12866
|
return qb.queryBuilder = qb;
|
|
12864
12867
|
};
|
|
12865
12868
|
|