@stacksjs/database 0.72.5 → 0.72.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.
Files changed (2) hide show
  1. package/dist/utils.d.ts +3 -0
  2. package/package.json +11 -11
package/dist/utils.d.ts CHANGED
@@ -127,6 +127,9 @@ export declare interface FluentChain {
127
127
  orWhereILike: (...args: any[]) => FluentChain
128
128
  orWhereColumn: (...args: any[]) => FluentChain
129
129
  andWhere: (...args: any[]) => FluentChain
130
+ whereAny: (...args: any[]) => FluentChain
131
+ whereAll: (...args: any[]) => FluentChain
132
+ whereNone: (...args: any[]) => FluentChain
130
133
  having: (...args: any[]) => FluentChain
131
134
  groupBy: (...args: any[]) => FluentChain
132
135
  orderBy: (...args: any[]) => FluentChain
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@stacksjs/database",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "0.72.5",
5
+ "version": "0.72.7",
6
6
  "description": "The Stacks database integration.",
7
7
  "author": "Chris Breuer",
8
8
  "contributors": [
@@ -61,19 +61,19 @@
61
61
  },
62
62
  "dependencies": {
63
63
  "@stacksjs/ts-validation": "^0.5.4",
64
- "bun-query-builder": "^0.2.39",
64
+ "bun-query-builder": "^0.2.41",
65
65
  "dynamodb-tooling": "^0.3.2"
66
66
  },
67
67
  "devDependencies": {
68
- "@stacksjs/cli": "0.72.5",
69
- "@stacksjs/config": "0.72.5",
70
- "@stacksjs/logging": "0.72.5",
71
- "@stacksjs/router": "0.72.5",
68
+ "@stacksjs/cli": "0.72.7",
69
+ "@stacksjs/config": "0.72.7",
70
+ "@stacksjs/logging": "0.72.7",
71
+ "@stacksjs/router": "0.72.7",
72
72
  "better-dx": "^0.2.23",
73
- "@stacksjs/path": "0.72.5",
74
- "@stacksjs/query-builder": "0.72.5",
75
- "@stacksjs/storage": "0.72.5",
76
- "@stacksjs/strings": "0.72.5",
77
- "@stacksjs/utils": "0.72.5"
73
+ "@stacksjs/path": "0.72.7",
74
+ "@stacksjs/query-builder": "0.72.7",
75
+ "@stacksjs/storage": "0.72.7",
76
+ "@stacksjs/strings": "0.72.7",
77
+ "@stacksjs/utils": "0.72.7"
78
78
  }
79
79
  }