orchid-orm 1.12.3 → 1.13.0
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 +2 -2
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -352,7 +352,7 @@ declare const createBaseTable: <CT extends Record<string, orchid_core.AnyColumnT
|
|
|
352
352
|
record: typeof orchid_core.record;
|
|
353
353
|
}) => Type)): pqb.JSONColumn<Type>;
|
|
354
354
|
jsonText(): pqb.JSONTextColumn;
|
|
355
|
-
array<Item extends pqb.ColumnType<unknown,
|
|
355
|
+
array<Item extends pqb.ColumnType<unknown, pqb.BaseOperators, unknown>>(item: Item): pqb.ArrayColumn<Item>;
|
|
356
356
|
type(dataType: string): pqb.CustomTypeColumn;
|
|
357
357
|
domain(dataType: string): pqb.DomainColumn;
|
|
358
358
|
primaryKey(columns: string[], options?: {
|
|
@@ -505,7 +505,7 @@ declare const createBaseTable: <CT extends Record<string, orchid_core.AnyColumnT
|
|
|
505
505
|
record: typeof orchid_core.record;
|
|
506
506
|
}) => Type)): pqb.JSONColumn<Type>;
|
|
507
507
|
jsonText(): pqb.JSONTextColumn;
|
|
508
|
-
array<Item extends pqb.ColumnType<unknown,
|
|
508
|
+
array<Item extends pqb.ColumnType<unknown, pqb.BaseOperators, unknown>>(item: Item): pqb.ArrayColumn<Item>;
|
|
509
509
|
type(dataType: string): pqb.CustomTypeColumn;
|
|
510
510
|
domain(dataType: string): pqb.DomainColumn;
|
|
511
511
|
primaryKey(columns: string[], options?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchid-orm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Postgres ORM",
|
|
5
5
|
"homepage": "https://orchid-orm.netlify.app/guide/orm-and-query-builder.html",
|
|
6
6
|
"repository": {
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"inflection": "*",
|
|
54
54
|
"prompts": "^2.4.2",
|
|
55
|
-
"orchid-core": "0.
|
|
56
|
-
"pqb": "0.
|
|
55
|
+
"orchid-core": "0.7.0",
|
|
56
|
+
"pqb": "0.15.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/prompts": "^2.4.2",
|
|
60
|
-
"orchid-orm-schema-to-zod": "0.3.
|
|
61
|
-
"rake-db": "2.
|
|
60
|
+
"orchid-orm-schema-to-zod": "0.3.89",
|
|
61
|
+
"rake-db": "2.10.0",
|
|
62
62
|
"test-utils": "0.0.2"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|