@cubejs-client/core 0.29.42 → 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,36 @@
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
+
17
+ ## [0.29.48](https://github.com/cube-js/cube.js/compare/v0.29.47...v0.29.48) (2022-04-14)
18
+
19
+
20
+ ### Features
21
+
22
+ * **query-language:** "total" flag support ([#4134](https://github.com/cube-js/cube.js/issues/4134)) ([51aef5e](https://github.com/cube-js/cube.js/commit/51aef5ede6e9b0c0e0e8749119e98102f168b8ca))
23
+
24
+
25
+
26
+
27
+
28
+ ## [0.29.43](https://github.com/cube-js/cube.js/compare/v0.29.42...v0.29.43) (2022-04-07)
29
+
30
+ **Note:** Version bump only for package @cubejs-client/core
31
+
32
+
33
+
34
+
35
+
6
36
  ## [0.29.42](https://github.com/cube-js/cube.js/compare/v0.29.41...v0.29.42) (2022-04-04)
7
37
 
8
38
 
package/index.d.ts CHANGED
@@ -169,6 +169,7 @@ declare module '@cubejs-client/core' {
169
169
  requestId?: string;
170
170
  usedPreAggregations?: Record<string, UsedPreAggregation>;
171
171
  transformedQuery?: TransformedQuery;
172
+ total?: number
172
173
  };
173
174
 
174
175
  export type LoadResponse<T> = {
@@ -465,7 +466,7 @@ declare module '@cubejs-client/core' {
465
466
  /**
466
467
  * Base method for pivoting [ResultSet](#result-set) data.
467
468
  * Most of the times shouldn't be used directly and [chartPivot](#result-set-chart-pivot)
468
- * or (tablePivot)[#table-pivot] should be used instead.
469
+ * or [tablePivot](#table-pivot) should be used instead.
469
470
  *
470
471
  * You can find the examples of using the `pivotConfig` [here](#types-pivot-config)
471
472
  * ```js
@@ -754,6 +755,8 @@ declare module '@cubejs-client/core' {
754
755
  | 'notEquals'
755
756
  | 'contains'
756
757
  | 'notContains'
758
+ | 'startsWith'
759
+ | 'endsWith'
757
760
  | 'gt'
758
761
  | 'gte'
759
762
  | 'lt'
@@ -791,13 +794,14 @@ declare module '@cubejs-client/core' {
791
794
  filters?: Filter[];
792
795
  timeDimensions?: TimeDimension[];
793
796
  segments?: string[];
794
- limit?: number;
797
+ limit?: null | number;
795
798
  offset?: number;
796
799
  order?: TQueryOrderObject | TQueryOrderArray;
797
800
  timezone?: string;
798
801
  renewQuery?: boolean;
799
802
  ungrouped?: boolean;
800
803
  responseFormat?: 'compact' | 'default';
804
+ total?: boolean;
801
805
  }
802
806
 
803
807
  export class ProgressResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/core",
3
- "version": "0.29.42",
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": "d05b5199da6e06f4d8baaed1baddb56cf1538637"
49
+ "gitHead": "44469b8ce956df50c2288194b550407bdb70c22d"
50
50
  }