pqb 0.52.0 → 0.52.1
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 +8 -0
- package/dist/index.js +1283 -1271
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1284 -1272
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2774,6 +2774,8 @@ declare class JSONColumn<T, Schema extends ColumnTypeSchemaArg, InputSchema = Sc
|
|
|
2774
2774
|
declare class JSONTextColumn<Schema extends ColumnSchemaConfig> extends ColumnType<Schema, string, ReturnType<Schema['stringSchema']>, OperatorsText> {
|
|
2775
2775
|
dataType: "json";
|
|
2776
2776
|
operators: OperatorsText;
|
|
2777
|
+
private static _instance;
|
|
2778
|
+
static get instance(): JSONTextColumn<DefaultSchemaConfig>;
|
|
2777
2779
|
constructor(schema: Schema);
|
|
2778
2780
|
toCode(ctx: ColumnToCodeCtx, key: string): Code;
|
|
2779
2781
|
}
|
|
@@ -3174,6 +3176,8 @@ declare class TextColumn<Schema extends ColumnSchemaConfig> extends TextBaseColu
|
|
|
3174
3176
|
minArg?: number;
|
|
3175
3177
|
maxArg?: number;
|
|
3176
3178
|
};
|
|
3179
|
+
private static _instance;
|
|
3180
|
+
static get instance(): TextColumn<DefaultSchemaConfig>;
|
|
3177
3181
|
constructor(schema: Schema);
|
|
3178
3182
|
toCode(ctx: ColumnToCodeCtx, key: string): Code;
|
|
3179
3183
|
}
|
|
@@ -3333,6 +3337,8 @@ declare class UUIDColumn<Schema extends ColumnSchemaConfig> extends ColumnType<S
|
|
|
3333
3337
|
declare class XMLColumn<Schema extends ColumnSchemaConfig> extends ColumnType<Schema, string, ReturnType<Schema['stringSchema']>, OperatorsText> {
|
|
3334
3338
|
dataType: "xml";
|
|
3335
3339
|
operators: OperatorsText;
|
|
3340
|
+
private static _instance;
|
|
3341
|
+
static get instance(): XMLColumn<DefaultSchemaConfig>;
|
|
3336
3342
|
constructor(schema: Schema);
|
|
3337
3343
|
toCode(ctx: ColumnToCodeCtx, key: string): Code;
|
|
3338
3344
|
}
|
|
@@ -8572,6 +8578,8 @@ declare abstract class ColumnType<Schema extends ColumnTypeSchemaArg = ColumnTyp
|
|
|
8572
8578
|
declare class BooleanColumn<Schema extends ColumnSchemaConfig> extends ColumnType<Schema, boolean, ReturnType<Schema['boolean']>, OperatorsBoolean> {
|
|
8573
8579
|
dataType: "bool";
|
|
8574
8580
|
operators: OperatorsBoolean;
|
|
8581
|
+
private static _instance;
|
|
8582
|
+
static get instance(): BooleanColumn<DefaultSchemaConfig>;
|
|
8575
8583
|
constructor(schema: Schema);
|
|
8576
8584
|
toCode(ctx: ColumnToCodeCtx, key: string): Code;
|
|
8577
8585
|
}
|