orchid-orm 1.10.5 → 1.10.6
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/LICENSE +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +4 -4
package/LICENSE
CHANGED
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/dist/index.d.ts
CHANGED
|
@@ -224,7 +224,7 @@ declare const createBaseTable: <CT extends Record<string, orchid_core.AnyColumnT
|
|
|
224
224
|
(sql: TemplateStringsArray, ...values: unknown[]): orchid_core.RawExpression;
|
|
225
225
|
(sql: string): orchid_core.RawExpression;
|
|
226
226
|
(values: Record<string, unknown>, sql: string): orchid_core.RawExpression;
|
|
227
|
-
(values: Record<string, unknown>): (
|
|
227
|
+
(values: Record<string, unknown>): (strings: TemplateStringsArray, ...values: unknown[]) => orchid_core.RawExpression;
|
|
228
228
|
};
|
|
229
229
|
smallint(): pqb.SmallIntColumn;
|
|
230
230
|
integer(): pqb.IntegerColumn;
|
|
@@ -375,7 +375,7 @@ declare const createBaseTable: <CT extends Record<string, orchid_core.AnyColumnT
|
|
|
375
375
|
(sql: TemplateStringsArray, ...values: unknown[]): orchid_core.RawExpression;
|
|
376
376
|
(sql: string): orchid_core.RawExpression;
|
|
377
377
|
(values: Record<string, unknown>, sql: string): orchid_core.RawExpression;
|
|
378
|
-
(values: Record<string, unknown>): (
|
|
378
|
+
(values: Record<string, unknown>): (strings: TemplateStringsArray, ...values: unknown[]) => orchid_core.RawExpression;
|
|
379
379
|
};
|
|
380
380
|
smallint(): pqb.SmallIntColumn;
|
|
381
381
|
integer(): pqb.IntegerColumn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchid-orm",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.6",
|
|
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.4.14",
|
|
56
|
-
"pqb": "0.12.
|
|
56
|
+
"pqb": "0.12.5"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/prompts": "^2.4.2",
|
|
60
|
-
"orchid-orm-schema-to-zod": "0.3.
|
|
61
|
-
"rake-db": "2.8.
|
|
60
|
+
"orchid-orm-schema-to-zod": "0.3.80",
|
|
61
|
+
"rake-db": "2.8.45",
|
|
62
62
|
"test-utils": "0.0.2"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|