@continuonai/rcan-ts 1.2.1 → 1.2.2

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.
@@ -766,9 +766,9 @@ declare function makeTransparencyMessage(ruri: string, disclosure: string, deleg
766
766
  * §3.5 — Protocol Version Compatibility
767
767
  */
768
768
  /** The RCAN spec version this SDK implements. */
769
- declare const SPEC_VERSION = "2.2.0";
769
+ declare const SPEC_VERSION = "2.2.1";
770
770
  /** The SDK release version. */
771
- declare const SDK_VERSION = "1.2.1";
771
+ declare const SDK_VERSION = "1.2.2";
772
772
  /**
773
773
  * Validate version compatibility.
774
774
  *
package/dist/browser.mjs CHANGED
@@ -99,8 +99,8 @@ var RobotURI = class _RobotURI {
99
99
  };
100
100
 
101
101
  // src/version.ts
102
- var SPEC_VERSION = "2.2.0";
103
- var SDK_VERSION = "1.2.1";
102
+ var SPEC_VERSION = "2.2.1";
103
+ var SDK_VERSION = "1.2.2";
104
104
  function validateVersionCompat(incomingVersion, localVersion = SPEC_VERSION) {
105
105
  const parseParts = (v) => {
106
106
  const parts = v.split(".");