roboto-js 1.6.18 → 1.7.1
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/.cursorignore +2 -0
- package/dist/cjs/index.cjs +14 -2
- package/dist/cjs/rbt_api.cjs +891 -328
- package/dist/cjs/rbt_object.cjs +166 -29
- package/dist/esm/index.js +9 -1
- package/dist/esm/rbt_api.js +418 -44
- package/dist/esm/rbt_object.js +133 -17
- package/dist/index.js +547 -0
- package/dist/rbt_api.js +1951 -0
- package/dist/rbt_file.js +229 -0
- package/dist/rbt_metrics_api.js +206 -0
- package/dist/rbt_object.js +671 -0
- package/dist/rbt_user.js +241 -0
- package/package.json +3 -2
- package/src/index.js +10 -1
- package/src/rbt_api.js +391 -38
- package/src/rbt_object.js +117 -19
package/.cursorignore
ADDED
package/dist/cjs/index.cjs
CHANGED
|
@@ -108,7 +108,7 @@ var Roboto = exports["default"] = /*#__PURE__*/function () {
|
|
|
108
108
|
_createClass(Roboto, [{
|
|
109
109
|
key: "getVersion",
|
|
110
110
|
value: function getVersion() {
|
|
111
|
-
return '1.
|
|
111
|
+
return '1.7.0';
|
|
112
112
|
}
|
|
113
113
|
}, {
|
|
114
114
|
key: "setSiteEnv",
|
|
@@ -493,7 +493,19 @@ var Roboto = exports["default"] = /*#__PURE__*/function () {
|
|
|
493
493
|
return _query.apply(this, arguments);
|
|
494
494
|
}
|
|
495
495
|
return query;
|
|
496
|
-
}() //
|
|
496
|
+
}() // WebSocket methods
|
|
497
|
+
}, {
|
|
498
|
+
key: "getWebSocketClient",
|
|
499
|
+
value: function getWebSocketClient() {
|
|
500
|
+
return this.api.getWebSocketClient();
|
|
501
|
+
}
|
|
502
|
+
}, {
|
|
503
|
+
key: "closeWebSocket",
|
|
504
|
+
value: function closeWebSocket() {
|
|
505
|
+
return this.api.closeWebSocket();
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
//
|
|
497
509
|
//
|
|
498
510
|
//
|
|
499
511
|
}, {
|