@visactor/vquery 0.2.0 → 0.2.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/index.cjs CHANGED
@@ -27,11 +27,11 @@ var __webpack_require__ = {};
27
27
  var __webpack_exports__ = {};
28
28
  __webpack_require__.r(__webpack_exports__);
29
29
  __webpack_require__.d(__webpack_exports__, {
30
- DatasetSourceBuilder: ()=>DatasetSourceBuilder,
31
- isHttpUrl: ()=>isHttpUrl,
30
+ isUrl: ()=>isUrl,
32
31
  convertDSLToSQL: ()=>convertDSLToSQL,
33
32
  isBase64Url: ()=>isBase64Url,
34
- isUrl: ()=>isUrl,
33
+ isHttpUrl: ()=>isHttpUrl,
34
+ DatasetSourceBuilder: ()=>DatasetSourceBuilder,
35
35
  VQuery: ()=>VQuery
36
36
  });
37
37
  const external_kysely_namespaceObject = require("kysely");
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export { VQuery } from './vquery';
2
2
  export { convertDSLToSQL } from './dataset';
3
3
  export { DatasetSourceBuilder } from './data-source-builder/dataSourceBuilder';
4
4
  export * from './utils';
5
+ export * from './types';
@@ -9,3 +9,4 @@ export interface QueryDSL<Table> {
9
9
  orderBy?: OrderBy<Table>;
10
10
  limit?: number;
11
11
  }
12
+ export type VQueryDSL<Table = Record<string, unknown>> = QueryDSL<Table>;
@@ -1,4 +1,4 @@
1
- export type { QueryDSL } from './QueryDSL';
1
+ export type { QueryDSL, VQueryDSL } from './QueryDSL';
2
2
  export type { GroupBy } from './GroupBy';
3
3
  export type { OrderBy } from './OrderBy';
4
4
  export type { Select } from './Select';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vquery",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "@eslint/js": "^9.35.0",
23
- "@rslib/core": "^0.15.1",
23
+ "@rslib/core": "0.18.1",
24
24
  "@rstest/core": "0.6.5",
25
25
  "@types/node": "^22.18.10",
26
26
  "@rstest/coverage-istanbul": "0.0.5",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "scripts": {
33
33
  "build": "rslib build",
34
- "dev": "rslib build --watch",
34
+ "dev": "rslib build --watch --no-clean",
35
35
  "lint": "eslint .",
36
36
  "test": "rstest",
37
37
  "test:update": "rstest --update",