@cubejs-client/core 0.31.9 → 0.31.15

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/index.d.ts CHANGED
@@ -756,7 +756,9 @@ declare module '@cubejs-client/core' {
756
756
  | 'contains'
757
757
  | 'notContains'
758
758
  | 'startsWith'
759
+ | 'notStartsWith'
759
760
  | 'endsWith'
761
+ | 'notEndsWith'
760
762
  | 'gt'
761
763
  | 'gte'
762
764
  | 'lt'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/core",
3
- "version": "0.31.9",
3
+ "version": "0.31.15",
4
4
  "engines": {},
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "core-js": "^3.6.5",
17
17
  "cross-fetch": "^3.0.2",
18
18
  "dayjs": "^1.10.4",
19
- "ramda": "^0.27.0",
19
+ "ramda": "^0.27.2",
20
20
  "url-search-params-polyfill": "^7.0.0",
21
21
  "uuid": "^8.3.2"
22
22
  },
@@ -45,5 +45,5 @@
45
45
  "eslint-plugin-node": "^5.2.1",
46
46
  "jest": "^26.0.1"
47
47
  },
48
- "gitHead": "bf98f799b56361081acff0ba9cdca5fd3ea473c2"
48
+ "gitHead": "b881465f9826f180b1edd778fffecf639dd2e946"
49
49
  }
package/src/Meta.js CHANGED
@@ -15,7 +15,9 @@ const operators = {
15
15
  { name: 'set', title: 'is set' },
16
16
  { name: 'notSet', title: 'is not set' },
17
17
  { name: 'startsWith', title: 'starts with' },
18
+ { name: 'notStartsWith', title: 'starts with' },
18
19
  { name: 'endsWith', title: 'ends with' },
20
+ { name: 'notEndsWith', title: 'ends with' },
19
21
  ],
20
22
  number: [
21
23
  { name: 'equals', title: 'equals' },