jsgar 3.2.0 → 3.3.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 +6 -0
  2. package/package.json +1 -1
package/dist/gar.umd.js CHANGED
@@ -735,6 +735,7 @@
735
735
  * @param {string|null} [maxHistory] - Maximum history to include
736
736
  * @param {boolean} [includeReferencedKeys=false] - Add keys from key references in matched records
737
737
  * @param {boolean} [includeReferencingKeys=false] - Add keys that have one or more records referencing any matched keys
738
+ * @param {boolean} [includeDerived=false] - Include derived topics
738
739
  * @param {boolean} [trimDefaultValues=false] - Trim records containing default values from the snapshot
739
740
  * @param {string|null} [workingNamespace] - Namespace for matching relative paths
740
741
  * @param {string|null} [restrictNamespace=false] - Restricts topics and keys to children of restrict_namespace. Defaults to the working namespace. Use "::" for root / no restriction.
@@ -758,6 +759,7 @@
758
759
  maxHistory = null,
759
760
  includeReferencedKeys = false,
760
761
  includeReferencingKeys = false,
762
+ includeDerived = false,
761
763
  trimDefaultValues = false,
762
764
  workingNamespace = null,
763
765
  restrictNamespace = null,
@@ -841,6 +843,9 @@
841
843
  if (includeReferencingKeys) {
842
844
  valueDict.include_referencing_keys = includeReferencingKeys;
843
845
  }
846
+ if (includeDerived) {
847
+ valueDict.include_derived = includeDerived;
848
+ }
844
849
  if (restrictNamespace) {
845
850
  valueDict.restrict_namespace = restrictNamespace;
846
851
  }
@@ -919,6 +924,7 @@
919
924
  false,
920
925
  false,
921
926
  false,
927
+ false,
922
928
  null,
923
929
  null,
924
930
  null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsgar",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "A Javascript client for the GAR protocol",
5
5
  "type": "module",
6
6
  "main": "dist/gar.umd.js",