orchid-orm 1.17.10 → 1.17.12
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 +4 -4
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -454,8 +454,8 @@ declare const createBaseTable: <ColumnTypes extends Record<string, orchid_core.A
|
|
|
454
454
|
money(): pqb.MoneyColumn;
|
|
455
455
|
varchar<Limit extends number | undefined = undefined>(limit?: Limit | undefined): pqb.VarCharColumn<Limit>;
|
|
456
456
|
char<Limit_1 extends number | undefined = undefined>(limit?: Limit_1 | undefined): pqb.CharColumn<Limit_1>;
|
|
457
|
-
text
|
|
458
|
-
string
|
|
457
|
+
text(min: number, max: number): pqb.TextColumn;
|
|
458
|
+
string<Limit_2 extends number = 255>(limit?: Limit_2): pqb.VarCharColumn<Limit_2>;
|
|
459
459
|
citext(min: number, max: number): pqb.CitextColumn;
|
|
460
460
|
bytea(): pqb.ByteaColumn;
|
|
461
461
|
date(): pqb.DateColumn;
|
|
@@ -594,8 +594,8 @@ declare const createBaseTable: <ColumnTypes extends Record<string, orchid_core.A
|
|
|
594
594
|
money(): pqb.MoneyColumn;
|
|
595
595
|
varchar<Limit extends number | undefined = undefined>(limit?: Limit | undefined): pqb.VarCharColumn<Limit>;
|
|
596
596
|
char<Limit_1 extends number | undefined = undefined>(limit?: Limit_1 | undefined): pqb.CharColumn<Limit_1>;
|
|
597
|
-
text
|
|
598
|
-
string
|
|
597
|
+
text(min: number, max: number): pqb.TextColumn;
|
|
598
|
+
string<Limit_2 extends number = 255>(limit?: Limit_2): pqb.VarCharColumn<Limit_2>;
|
|
599
599
|
citext(min: number, max: number): pqb.CitextColumn;
|
|
600
600
|
bytea(): pqb.ByteaColumn;
|
|
601
601
|
date(): pqb.DateColumn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchid-orm",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.12",
|
|
4
4
|
"description": "Postgres ORM",
|
|
5
5
|
"homepage": "https://orchid-orm.netlify.app/guide/orm-and-query-builder.html",
|
|
6
6
|
"repository": {
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
"inflection": "*",
|
|
54
54
|
"prompts": "^2.4.2",
|
|
55
55
|
"orchid-core": "0.10.8",
|
|
56
|
-
"pqb": "0.18.
|
|
56
|
+
"pqb": "0.18.12"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/prompts": "^2.4.2",
|
|
60
|
-
"orchid-orm-schema-to-zod": "0.4.
|
|
61
|
-
"rake-db": "2.10.
|
|
60
|
+
"orchid-orm-schema-to-zod": "0.4.15",
|
|
61
|
+
"rake-db": "2.10.45",
|
|
62
62
|
"test-utils": "0.0.3"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|