pqb 0.33.1 → 0.33.2
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3038,7 +3038,7 @@ interface DefaultSchemaConfig extends ColumnSchemaConfig<ColumnType> {
|
|
|
3038
3038
|
dateAsDate(): ParseColumn<DateBaseColumn<DefaultSchemaConfig>, unknown, Date>;
|
|
3039
3039
|
enum<U extends string, T extends readonly [U, ...U[]]>(dataType: string, type: T): EnumColumn<DefaultSchemaConfig, unknown, U, T>;
|
|
3040
3040
|
array<Item extends ArrayColumnValue>(item: Item): ArrayColumn<DefaultSchemaConfig, Item, unknown, unknown, unknown>;
|
|
3041
|
-
json<T extends MaybeArray<string | number | boolean | RecordUnknown
|
|
3041
|
+
json<T>(): JSONColumn<unknown extends T ? MaybeArray<string | number | boolean | RecordUnknown> : T, DefaultSchemaConfig>;
|
|
3042
3042
|
inputSchema(): undefined;
|
|
3043
3043
|
outputSchema(): undefined;
|
|
3044
3044
|
querySchema(): undefined;
|