@cubejs-client/core 0.29.48 → 0.29.51

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.29.51](https://github.com/cube-js/cube.js/compare/v0.29.50...v0.29.51) (2022-04-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * **query-language:** "startsWith", "endsWith" filters support ([#4128](https://github.com/cube-js/cube.js/issues/4128)) ([e8c72d6](https://github.com/cube-js/cube.js/commit/e8c72d630eecd930a8fd36fc52f9b594a45d59c0))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.29.48](https://github.com/cube-js/cube.js/compare/v0.29.47...v0.29.48) (2022-04-14)
7
18
 
8
19
 
package/index.d.ts CHANGED
@@ -755,6 +755,8 @@ declare module '@cubejs-client/core' {
755
755
  | 'notEquals'
756
756
  | 'contains'
757
757
  | 'notContains'
758
+ | 'startsWith'
759
+ | 'endsWith'
758
760
  | 'gt'
759
761
  | 'gte'
760
762
  | 'lt'
@@ -792,7 +794,7 @@ declare module '@cubejs-client/core' {
792
794
  filters?: Filter[];
793
795
  timeDimensions?: TimeDimension[];
794
796
  segments?: string[];
795
- limit?: number;
797
+ limit?: null | number;
796
798
  offset?: number;
797
799
  order?: TQueryOrderObject | TQueryOrderArray;
798
800
  timezone?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/core",
3
- "version": "0.29.48",
3
+ "version": "0.29.51",
4
4
  "engines": {},
5
5
  "repository": {
6
6
  "type": "git",
@@ -46,5 +46,5 @@
46
46
  "eslint-plugin-node": "^5.2.1",
47
47
  "jest": "^26.0.1"
48
48
  },
49
- "gitHead": "1fa9b5fe1c15ae2e790c101381d127d691c944ac"
49
+ "gitHead": "44469b8ce956df50c2288194b550407bdb70c22d"
50
50
  }