drizzle-cube 0.1.8 → 0.1.10
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/adapters/hono/index.js +39 -31
- package/dist/client/components/Modal.d.ts +1 -1
- package/dist/client/components/QueryBuilder/FilterBuilder.d.ts +4 -0
- package/dist/client/components/QueryBuilder/FilterGroup.d.ts +4 -0
- package/dist/client/components/QueryBuilder/FilterItem.d.ts +4 -0
- package/dist/client/components/QueryBuilder/FilterValueSelector.d.ts +4 -0
- package/dist/client/components/QueryBuilder/types.d.ts +43 -1
- package/dist/client/components/QueryBuilder/utils.d.ts +76 -1
- package/dist/client/hooks/useCubeQuery.d.ts +1 -0
- package/dist/client/hooks/useDebounce.d.ts +12 -0
- package/dist/client/hooks/useFilterValues.d.ts +16 -0
- package/dist/client/index.js +9382 -8379
- package/dist/client/styles.css +1 -1
- package/dist/client/types.d.ts +12 -5
- package/dist/server/index.d.ts +110 -9
- package/dist/server/index.js +1134 -745
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-cube",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.",
|
|
5
5
|
"main": "./dist/server/index.js",
|
|
6
6
|
"types": "./dist/server/index.d.ts",
|
|
@@ -38,8 +38,10 @@
|
|
|
38
38
|
"build:help": "cd help-site && npm run build",
|
|
39
39
|
"test": "vitest run",
|
|
40
40
|
"test:watch": "vitest --watch",
|
|
41
|
-
"test:postgres": "
|
|
42
|
-
"test:
|
|
41
|
+
"test:postgres": "vitest run",
|
|
42
|
+
"test:mysql": "TEST_DB_TYPE=mysql vitest run",
|
|
43
|
+
"test:all": "vitest run && TEST_DB_TYPE=mysql vitest run",
|
|
44
|
+
"test:setup": "docker-compose up -d",
|
|
43
45
|
"test:teardown": "docker-compose down",
|
|
44
46
|
"typecheck": "tsc --noEmit",
|
|
45
47
|
"lint": "eslint src/**/*.ts",
|
|
@@ -113,6 +115,7 @@
|
|
|
113
115
|
"drizzle-orm": "^0.44.4",
|
|
114
116
|
"eslint": "^8.0.0",
|
|
115
117
|
"hono": "^4.0.0",
|
|
118
|
+
"mysql2": "^3.14.3",
|
|
116
119
|
"postcss": "^8.5.6",
|
|
117
120
|
"postgres": "^3.4.7",
|
|
118
121
|
"tailwindcss": "^3.4.15",
|