polfan-server-js-client 0.2.95 → 0.2.97
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/.idea/workspace.xml +34 -26
- package/build/index.cjs.js +420 -305
- package/build/index.cjs.js.map +1 -1
- package/build/index.umd.js +1 -1
- package/build/index.umd.js.map +1 -1
- package/build/types/state-tracker/FollowedTopicsManager.d.ts +63 -0
- package/build/types/state-tracker/MessagesManager.d.ts +1 -46
- package/build/types/state-tracker/RoomsManager.d.ts +2 -0
- package/package.json +1 -1
- package/src/IndexedObjectCollection.ts +5 -6
- package/src/state-tracker/FollowedTopicsManager.ts +377 -0
- package/src/state-tracker/MessagesManager.ts +3 -331
- package/src/state-tracker/RoomsManager.ts +4 -1
package/.idea/workspace.xml
CHANGED
|
@@ -4,10 +4,18 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="
|
|
8
|
-
<change afterPath="$PROJECT_DIR$/src/
|
|
9
|
-
<change beforePath="$PROJECT_DIR$/
|
|
10
|
-
<change beforePath="$PROJECT_DIR$/
|
|
7
|
+
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Optimize and fix followed topic caching and summarizing">
|
|
8
|
+
<change afterPath="$PROJECT_DIR$/src/state-tracker/FollowedTopicsManager.ts" afterDir="false" />
|
|
9
|
+
<change beforePath="$PROJECT_DIR$/build/index.cjs.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.cjs.js" afterDir="false" />
|
|
10
|
+
<change beforePath="$PROJECT_DIR$/build/index.cjs.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.cjs.js.map" afterDir="false" />
|
|
11
|
+
<change beforePath="$PROJECT_DIR$/build/index.umd.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.umd.js" afterDir="false" />
|
|
12
|
+
<change beforePath="$PROJECT_DIR$/build/index.umd.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.umd.js.map" afterDir="false" />
|
|
13
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/MessagesManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/MessagesManager.d.ts" afterDir="false" />
|
|
14
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/RoomsManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/RoomsManager.d.ts" afterDir="false" />
|
|
15
|
+
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
16
|
+
<change beforePath="$PROJECT_DIR$/src/IndexedObjectCollection.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/IndexedObjectCollection.ts" afterDir="false" />
|
|
17
|
+
<change beforePath="$PROJECT_DIR$/src/state-tracker/MessagesManager.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/state-tracker/MessagesManager.ts" afterDir="false" />
|
|
18
|
+
<change beforePath="$PROJECT_DIR$/src/state-tracker/RoomsManager.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/state-tracker/RoomsManager.ts" afterDir="false" />
|
|
11
19
|
</list>
|
|
12
20
|
<option name="SHOW_DIALOG" value="false" />
|
|
13
21
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -18,7 +26,7 @@
|
|
|
18
26
|
<execution />
|
|
19
27
|
</component>
|
|
20
28
|
<component name="EmbeddingIndexingInfo">
|
|
21
|
-
<option name="cachedIndexableFilesCount" value="
|
|
29
|
+
<option name="cachedIndexableFilesCount" value="197" />
|
|
22
30
|
</component>
|
|
23
31
|
<component name="Git.Rebase.Settings">
|
|
24
32
|
<option name="NEW_BASE" value="origin/main" />
|
|
@@ -209,23 +217,7 @@
|
|
|
209
217
|
<workItem from="1782579738743" duration="1279000" />
|
|
210
218
|
<workItem from="1782664203095" duration="5539000" />
|
|
211
219
|
<workItem from="1782909199211" duration="2404000" />
|
|
212
|
-
<workItem from="1783939298935" duration="
|
|
213
|
-
</task>
|
|
214
|
-
<task id="LOCAL-00045" summary="Fix for incorrectly emitted RoomUpdated event">
|
|
215
|
-
<option name="closed" value="true" />
|
|
216
|
-
<created>1753379371012</created>
|
|
217
|
-
<option name="number" value="00045" />
|
|
218
|
-
<option name="presentableId" value="LOCAL-00045" />
|
|
219
|
-
<option name="project" value="LOCAL" />
|
|
220
|
-
<updated>1753379371012</updated>
|
|
221
|
-
</task>
|
|
222
|
-
<task id="LOCAL-00046" summary="Fix for incorrectly emitted RoomUpdated event">
|
|
223
|
-
<option name="closed" value="true" />
|
|
224
|
-
<created>1753379410620</created>
|
|
225
|
-
<option name="number" value="00046" />
|
|
226
|
-
<option name="presentableId" value="LOCAL-00046" />
|
|
227
|
-
<option name="project" value="LOCAL" />
|
|
228
|
-
<updated>1753379410620</updated>
|
|
220
|
+
<workItem from="1783939298935" duration="18246000" />
|
|
229
221
|
</task>
|
|
230
222
|
<task id="LOCAL-00047" summary="Fix for incorrectly emitted RoomUpdated event">
|
|
231
223
|
<option name="closed" value="true" />
|
|
@@ -603,7 +595,23 @@
|
|
|
603
595
|
<option name="project" value="LOCAL" />
|
|
604
596
|
<updated>1783945724386</updated>
|
|
605
597
|
</task>
|
|
606
|
-
<
|
|
598
|
+
<task id="LOCAL-00094" summary="SetSessionData command support">
|
|
599
|
+
<option name="closed" value="true" />
|
|
600
|
+
<created>1783946587568</created>
|
|
601
|
+
<option name="number" value="00094" />
|
|
602
|
+
<option name="presentableId" value="LOCAL-00094" />
|
|
603
|
+
<option name="project" value="LOCAL" />
|
|
604
|
+
<updated>1783946587568</updated>
|
|
605
|
+
</task>
|
|
606
|
+
<task id="LOCAL-00095" summary="Optimize and fix followed topic caching and summarizing">
|
|
607
|
+
<option name="closed" value="true" />
|
|
608
|
+
<created>1784021568203</created>
|
|
609
|
+
<option name="number" value="00095" />
|
|
610
|
+
<option name="presentableId" value="LOCAL-00095" />
|
|
611
|
+
<option name="project" value="LOCAL" />
|
|
612
|
+
<updated>1784021568203</updated>
|
|
613
|
+
</task>
|
|
614
|
+
<option name="localTasksCounter" value="96" />
|
|
607
615
|
<servers />
|
|
608
616
|
</component>
|
|
609
617
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -648,8 +656,6 @@
|
|
|
648
656
|
</option>
|
|
649
657
|
</component>
|
|
650
658
|
<component name="VcsManagerConfiguration">
|
|
651
|
-
<MESSAGE value="Ping-pong connection monitoring" />
|
|
652
|
-
<MESSAGE value="Improve reconnect on timeout" />
|
|
653
659
|
<MESSAGE value="Bump version" />
|
|
654
660
|
<MESSAGE value="Fix permission check (caching overwrites)" />
|
|
655
661
|
<MESSAGE value="Remove AuthClient, export AbstractRestClient" />
|
|
@@ -673,7 +679,9 @@
|
|
|
673
679
|
<MESSAGE value="Fix room member update event handle" />
|
|
674
680
|
<MESSAGE value="Add jumpTo message support" />
|
|
675
681
|
<MESSAGE value="Adjust to followed topics changes in protocol" />
|
|
676
|
-
<
|
|
682
|
+
<MESSAGE value="SetSessionData command support" />
|
|
683
|
+
<MESSAGE value="Optimize and fix followed topic caching and summarizing" />
|
|
684
|
+
<option name="LAST_COMMIT_MESSAGE" value="Optimize and fix followed topic caching and summarizing" />
|
|
677
685
|
</component>
|
|
678
686
|
<component name="XSLT-Support.FileAssociations.UIState">
|
|
679
687
|
<expand />
|