akeyless-client-commons 1.1.17-test.7 → 1.1.17-test.8
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/components/index.js
CHANGED
|
@@ -1222,9 +1222,9 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
1222
1222
|
this.socket.on("connect", function() {
|
|
1223
1223
|
var _this_socket;
|
|
1224
1224
|
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1225
|
+
});
|
|
1226
|
+
this.connectCallbacks.forEach(function(cb) {
|
|
1227
|
+
return cb();
|
|
1228
1228
|
});
|
|
1229
1229
|
this.socket.on("disconnect", function(reason) {
|
|
1230
1230
|
console.log("Socket disconnected:", reason);
|
|
@@ -1000,9 +1000,9 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
1000
1000
|
this.socket.on("connect", function() {
|
|
1001
1001
|
var _this_socket;
|
|
1002
1002
|
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1003
|
+
});
|
|
1004
|
+
this.connectCallbacks.forEach(function(cb) {
|
|
1005
|
+
return cb();
|
|
1006
1006
|
});
|
|
1007
1007
|
this.socket.on("disconnect", function(reason) {
|
|
1008
1008
|
console.log("Socket disconnected:", reason);
|
package/dist/helpers/index.js
CHANGED
|
@@ -2328,9 +2328,9 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
2328
2328
|
this.socket.on("connect", function() {
|
|
2329
2329
|
var _this_socket;
|
|
2330
2330
|
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2331
|
+
});
|
|
2332
|
+
this.connectCallbacks.forEach(function(cb) {
|
|
2333
|
+
return cb();
|
|
2334
2334
|
});
|
|
2335
2335
|
this.socket.on("disconnect", function(reason) {
|
|
2336
2336
|
console.log("Socket disconnected:", reason);
|
package/dist/helpers/index.mjs
CHANGED
|
@@ -1964,9 +1964,9 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
1964
1964
|
this.socket.on("connect", function() {
|
|
1965
1965
|
var _this_socket;
|
|
1966
1966
|
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1967
|
+
});
|
|
1968
|
+
this.connectCallbacks.forEach(function(cb) {
|
|
1969
|
+
return cb();
|
|
1970
1970
|
});
|
|
1971
1971
|
this.socket.on("disconnect", function(reason) {
|
|
1972
1972
|
console.log("Socket disconnected:", reason);
|
package/dist/hooks/index.js
CHANGED
|
@@ -673,9 +673,9 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
673
673
|
this.socket.on("connect", function() {
|
|
674
674
|
var _this_socket;
|
|
675
675
|
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
676
|
+
});
|
|
677
|
+
this.connectCallbacks.forEach(function(cb) {
|
|
678
|
+
return cb();
|
|
679
679
|
});
|
|
680
680
|
this.socket.on("disconnect", function(reason) {
|
|
681
681
|
console.log("Socket disconnected:", reason);
|
package/dist/hooks/index.mjs
CHANGED
|
@@ -579,9 +579,9 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
579
579
|
this.socket.on("connect", function() {
|
|
580
580
|
var _this_socket;
|
|
581
581
|
console.log("Socket connected:", (_this_socket = _this.socket) === null || _this_socket === void 0 ? void 0 : _this_socket.id);
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
582
|
+
});
|
|
583
|
+
this.connectCallbacks.forEach(function(cb) {
|
|
584
|
+
return cb();
|
|
585
585
|
});
|
|
586
586
|
this.socket.on("disconnect", function(reason) {
|
|
587
587
|
console.log("Socket disconnected:", reason);
|