@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.
- package/dist/browser.d.mts +2 -2
- package/dist/browser.mjs +2 -2
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/rcan-validate.js +1 -1
- package/dist/rcan.iife.js +1 -1
- package/package.json +1 -1
package/dist/browser.d.mts
CHANGED
|
@@ -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.
|
|
769
|
+
declare const SPEC_VERSION = "2.2.1";
|
|
770
770
|
/** The SDK release version. */
|
|
771
|
-
declare const SDK_VERSION = "1.2.
|
|
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.
|
|
103
|
-
var SDK_VERSION = "1.2.
|
|
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(".");
|