arkormx 2.8.1 → 2.9.1
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/cli.mjs +4 -0
- package/dist/{index-4mi5sLRA.d.cts → index-18M5gEFk.d.cts} +495 -123
- package/dist/{index-De8zXqTD.d.mts → index-CFXreeV7.d.mts} +495 -123
- package/dist/index.cjs +319 -14
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +319 -14
- package/dist/relationship/index.cjs +1 -1
- package/dist/relationship/index.d.cts +1 -1
- package/dist/relationship/index.d.mts +1 -1
- package/dist/relationship/index.mjs +1 -1
- package/dist/{relationship-WiXlopzY.cjs → relationship-BVYP9lU2.cjs} +160 -0
- package/dist/{relationship--l8RA_yy.mjs → relationship-DtNgcxxv.mjs} +160 -0
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -2712,6 +2712,10 @@ var PrismaDatabaseAdapter = class PrismaDatabaseAdapter {
|
|
|
2712
2712
|
operation: "adapter.select",
|
|
2713
2713
|
meta: { feature: "groupBy" }
|
|
2714
2714
|
});
|
|
2715
|
+
if (spec.having) throw new UnsupportedAdapterFeatureException("Having clauses are not supported by the Prisma compatibility adapter; use a SQL-backed adapter.", {
|
|
2716
|
+
operation: "adapter.select",
|
|
2717
|
+
meta: { feature: "having" }
|
|
2718
|
+
});
|
|
2715
2719
|
if (spec.joins?.length) throw new UnsupportedAdapterFeatureException("Join clauses are not supported by the Prisma compatibility adapter; use a SQL-backed adapter or DB.raw().", {
|
|
2716
2720
|
operation: "adapter.select",
|
|
2717
2721
|
meta: { feature: "joins" }
|