@astrojs/db 0.14.6 → 0.14.7

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.
@@ -43,6 +43,6 @@ export declare function defineDb(userConfig: DBConfigInput): {
43
43
  export declare const NOW: import("drizzle-orm").SQL<unknown>;
44
44
  export declare const TRUE: import("drizzle-orm").SQL<unknown>;
45
45
  export declare const FALSE: import("drizzle-orm").SQL<unknown>;
46
- export { sql, eq, gt, gte, lt, lte, ne, isNull, isNotNull, inArray, notInArray, exists, notExists, between, notBetween, like, notIlike, not, asc, desc, and, or, count, countDistinct, avg, avgDistinct, sum, sumDistinct, max, min, } from 'drizzle-orm';
46
+ export { sql, eq, gt, gte, lt, lte, ne, isNull, isNotNull, inArray, notInArray, exists, notExists, between, notBetween, like, ilike, notIlike, not, asc, desc, and, or, count, countDistinct, avg, avgDistinct, sum, sumDistinct, max, min, } from 'drizzle-orm';
47
47
  export { alias } from 'drizzle-orm/sqlite-core';
48
48
  export { isDbError } from './utils.js';
@@ -27,7 +27,7 @@ function printHelp({
27
27
  message.push(
28
28
  linebreak(),
29
29
  ` ${bgGreen(black(` ${commandName} `))} ${green(
30
- `v${"0.14.6"}`
30
+ `v${"0.14.7"}`
31
31
  )} ${headline}`
32
32
  );
33
33
  }
@@ -51,6 +51,7 @@ import {
51
51
  between,
52
52
  notBetween,
53
53
  like,
54
+ ilike,
54
55
  notIlike,
55
56
  not,
56
57
  asc,
@@ -88,6 +89,7 @@ export {
88
89
  exists,
89
90
  gt,
90
91
  gte,
92
+ ilike,
91
93
  inArray,
92
94
  isDbError,
93
95
  isNotNull,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/db",
3
- "version": "0.14.6",
3
+ "version": "0.14.7",
4
4
  "description": "Add libSQL and Astro Studio support to your Astro site",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -72,7 +72,7 @@
72
72
  "open": "^10.1.0",
73
73
  "prompts": "^2.4.2",
74
74
  "yargs-parser": "^21.1.1",
75
- "yocto-spinner": "^0.1.2",
75
+ "yocto-spinner": "^0.2.0",
76
76
  "zod": "^3.24.1",
77
77
  "@astrojs/studio": "0.1.4"
78
78
  },
@@ -82,8 +82,8 @@
82
82
  "@types/yargs-parser": "^21.0.3",
83
83
  "cheerio": "1.0.0",
84
84
  "typescript": "^5.7.3",
85
- "vite": "^6.0.9",
86
- "astro": "5.1.8",
85
+ "vite": "^6.0.11",
86
+ "astro": "5.4.0",
87
87
  "astro-scripts": "0.0.14"
88
88
  },
89
89
  "scripts": {
package/virtual.d.ts CHANGED
@@ -28,6 +28,7 @@ declare module 'astro:db' {
28
28
  export const between: RuntimeConfig['between'];
29
29
  export const notBetween: RuntimeConfig['notBetween'];
30
30
  export const like: RuntimeConfig['like'];
31
+ export const ilike: RuntimeConfig['ilike'];
31
32
  export const notIlike: RuntimeConfig['notIlike'];
32
33
  export const not: RuntimeConfig['not'];
33
34
  export const asc: RuntimeConfig['asc'];