jsgar 3.4.1 → 3.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.
Files changed (2) hide show
  1. package/dist/gar.umd.js +0 -12
  2. package/package.json +3 -3
package/dist/gar.umd.js CHANGED
@@ -733,8 +733,6 @@
733
733
  * @param {string|null} [excludeKeyFilter=null] - Exclude key filter regex (cannot use with keyName)
734
734
  * @param {string|null} [excludeTopicFilter=null] - Exclude topic filter regex (cannot use with topicName)
735
735
  * @param {string|null} [maxHistory] - Maximum history to include
736
- * @param {boolean} [includeReferencedKeys=false] - Add keys from key references in matched records
737
- * @param {boolean} [includeReferencingKeys=false] - Add keys that have one or more records referencing any matched keys
738
736
  * @param {boolean} [includeDerived=false] - Include derived topics
739
737
  * @param {boolean} [trimDefaultValues=false] - Trim records containing default values from the snapshot
740
738
  * @param {string|null} [workingNamespace] - Namespace for matching relative paths
@@ -757,8 +755,6 @@
757
755
  excludeKeyFilter = null,
758
756
  excludeTopicFilter = null,
759
757
  maxHistory = null,
760
- includeReferencedKeys = false,
761
- includeReferencingKeys = false,
762
758
  includeDerived = false,
763
759
  trimDefaultValues = false,
764
760
  workingNamespace = null,
@@ -837,12 +833,6 @@
837
833
  if (density) {
838
834
  valueDict.density = density;
839
835
  }
840
- if (includeReferencedKeys) {
841
- valueDict.include_referenced_keys = includeReferencedKeys;
842
- }
843
- if (includeReferencingKeys) {
844
- valueDict.include_referencing_keys = includeReferencingKeys;
845
- }
846
836
  if (includeDerived) {
847
837
  valueDict.include_derived = includeDerived;
848
838
  }
@@ -923,8 +913,6 @@
923
913
  null,
924
914
  false,
925
915
  false,
926
- false,
927
- false,
928
916
  null,
929
917
  null,
930
918
  null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsgar",
3
- "version": "3.4.1",
3
+ "version": "3.5.0",
4
4
  "description": "A Javascript client for the GAR protocol",
5
5
  "type": "module",
6
6
  "main": "dist/gar.umd.js",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@eslint/js": "^9.25.0",
27
- "@eslint/json": "^0.12.0",
27
+ "@eslint/json": "^0.13.2",
28
28
  "@rollup/plugin-commonjs": "^24.0.0",
29
29
  "@rollup/plugin-node-resolve": "^15.0.0",
30
- "eslint": "^9.33.0",
30
+ "eslint": "^9.38.0",
31
31
  "globals": "^16.0.0",
32
32
  "rollup": "^3.0.0"
33
33
  }