@isrd-isi-edu/ermrestjs 2.4.2 → 2.5.0

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.
@@ -1325,7 +1325,7 @@ import AuthnService from '@isrd-isi-edu/ermrestjs/src/services/authn';
1325
1325
  });
1326
1326
  }
1327
1327
 
1328
- return {successful: true, filters: result};
1328
+ return {successful: true, filters: result, usedQuantified: canUseQuantified};
1329
1329
  };
1330
1330
 
1331
1331
  export function _stringToDate(_date, _format, _delimiter) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@isrd-isi-edu/ermrestjs",
3
3
  "description": "ERMrest client library in JavaScript",
4
- "version": "2.4.2",
4
+ "version": "2.5.0",
5
5
  "license": "Apache-2.0",
6
6
  "engines": {
7
7
  "node": ">= 20.0.0",
@@ -50,9 +50,9 @@
50
50
  "@types/lodash-es": "^4.17.12",
51
51
  "@types/markdown-it": "^14.1.2",
52
52
  "@types/q": "^1.5.8",
53
- "axios": "1.13.5",
53
+ "axios": "1.15.0",
54
54
  "handlebars": "4.7.9",
55
- "lodash-es": "^4.17.23",
55
+ "lodash-es": "^4.18.1",
56
56
  "lz-string": "^1.5.0",
57
57
  "markdown-it": "12.3.2",
58
58
  "moment": "2.29.4",
@@ -62,8 +62,8 @@
62
62
  "spark-md5": "^3.0.0",
63
63
  "terser": "^5.44.1",
64
64
  "typescript": "~5.9.3",
65
- "vite": "^7.3.1",
66
- "vite-plugin-compression2": "^2.2.1"
65
+ "vite": "^7.3.2",
66
+ "vite-plugin-compression2": "^2.5.3"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@commitlint/cli": "^20.2.0",
@@ -74,13 +74,13 @@
74
74
  "eslint": "^9.39.2",
75
75
  "eslint-config-prettier": "^10.1.8",
76
76
  "eslint-plugin-prettier": "^5.5.4",
77
- "globals": "^16.4.0",
77
+ "globals": "^17.4.0",
78
78
  "husky": "^9.1.7",
79
79
  "jasmine": "2.5.3",
80
80
  "jasmine-expect": "3.7.1",
81
81
  "jasmine-spec-reporter": "2.5.0",
82
82
  "nock": "13.5.4",
83
- "prettier": "^3.7.4",
83
+ "prettier": "^3.8.1",
84
84
  "require-reload": "^0.2.2",
85
85
  "rollup-plugin-visualizer": "^6.0.3",
86
86
  "typescript-eslint": "^8.51.0"
package/src/index.ts CHANGED
@@ -64,6 +64,7 @@ import {
64
64
  processMarkdownPattern,
65
65
  renderMustacheTemplate,
66
66
  _validateMustacheTemplate,
67
+ generateKeyValueFilters,
67
68
  } from '@isrd-isi-edu/ermrestjs/js/utils/helpers';
68
69
  import {
69
70
  AttributeGroupColumn,
@@ -137,6 +138,7 @@ export {
137
138
  setHTTP401Handler,
138
139
  getElapsedTime,
139
140
  onload,
141
+ generateKeyValueFilters,
140
142
 
141
143
  // markdown/template/print
142
144
  processMarkdownPattern,