@fabriktor/fx 0.0.57 → 0.0.59
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/src/chat/chat.js +2 -3
- package/dist/src/feed/feed.js +0 -1
- package/package.json +3 -3
package/dist/src/chat/chat.js
CHANGED
|
@@ -8,7 +8,6 @@ import { errRequired, errResolveFailed, errValidation } from "../core/err.js";
|
|
|
8
8
|
import { requiredOperationID } from "../core/id.js";
|
|
9
9
|
import { normalizeSearchPage, normalizeSearchPerPage, normalizeSearchQuery, runSearch, } from "../core/search.js";
|
|
10
10
|
const closeCodeNormal = 1000;
|
|
11
|
-
const closeCodeLeavingPage = 1001;
|
|
12
11
|
const wsRefreshMilliseconds = 40 * 60 * 1000;
|
|
13
12
|
const wsRefreshRetryMilliseconds = 30 * 1000;
|
|
14
13
|
const resourceChat = "chat";
|
|
@@ -229,7 +228,7 @@ export class ChatFX {
|
|
|
229
228
|
closeSession(closeCodeNormal, reason);
|
|
230
229
|
},
|
|
231
230
|
closeLeavingPage(reason) {
|
|
232
|
-
closeSession(
|
|
231
|
+
closeSession(closeCodeNormal, reason);
|
|
233
232
|
},
|
|
234
233
|
};
|
|
235
234
|
}
|
|
@@ -297,7 +296,7 @@ export class ChatFX {
|
|
|
297
296
|
closeSession(closeCodeNormal, reason);
|
|
298
297
|
},
|
|
299
298
|
closeLeavingPage(reason) {
|
|
300
|
-
closeSession(
|
|
299
|
+
closeSession(closeCodeNormal, reason);
|
|
301
300
|
},
|
|
302
301
|
};
|
|
303
302
|
}
|
package/dist/src/feed/feed.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabriktor/fx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.59",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"typescript": "^6.0.3"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@fabriktor/client": "0.0.
|
|
21
|
-
"@fabriktor/schema": "0.0.
|
|
20
|
+
"@fabriktor/client": "0.0.55",
|
|
21
|
+
"@fabriktor/schema": "0.0.36"
|
|
22
22
|
}
|
|
23
23
|
}
|