polfan-server-js-client 0.2.41 → 0.2.43
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 +22 -4
- package/build/index.cjs.js +3 -1
- 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/types/src/schemes/Emoticon.d.ts +1 -0
- package/build/types/types/src/schemes/SpaceSummary.d.ts +1 -0
- package/package.json +1 -1
- package/src/state-tracker/RoomsManager.ts +3 -1
- package/src/types/src/schemes/Emoticon.ts +1 -0
- package/src/types/src/schemes/SpaceSummary.ts +1 -0
package/.idea/workspace.xml
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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="
|
|
7
|
+
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Update schemes" />
|
|
8
8
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
9
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
10
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
<workItem from="1752705788150" duration="3566000" />
|
|
120
120
|
<workItem from="1752756543261" duration="1956000" />
|
|
121
121
|
<workItem from="1752834023436" duration="2601000" />
|
|
122
|
+
<workItem from="1753062168800" duration="4435000" />
|
|
122
123
|
</task>
|
|
123
124
|
<task id="LOCAL-00001" summary="Emoticons objects">
|
|
124
125
|
<option name="closed" value="true" />
|
|
@@ -456,7 +457,23 @@
|
|
|
456
457
|
<option name="project" value="LOCAL" />
|
|
457
458
|
<updated>1752966028333</updated>
|
|
458
459
|
</task>
|
|
459
|
-
<
|
|
460
|
+
<task id="LOCAL-00043" summary="Fix global emoticons support">
|
|
461
|
+
<option name="closed" value="true" />
|
|
462
|
+
<created>1753062311408</created>
|
|
463
|
+
<option name="number" value="00043" />
|
|
464
|
+
<option name="presentableId" value="LOCAL-00043" />
|
|
465
|
+
<option name="project" value="LOCAL" />
|
|
466
|
+
<updated>1753062311409</updated>
|
|
467
|
+
</task>
|
|
468
|
+
<task id="LOCAL-00044" summary="Update schemes">
|
|
469
|
+
<option name="closed" value="true" />
|
|
470
|
+
<created>1753215397205</created>
|
|
471
|
+
<option name="number" value="00044" />
|
|
472
|
+
<option name="presentableId" value="LOCAL-00044" />
|
|
473
|
+
<option name="project" value="LOCAL" />
|
|
474
|
+
<updated>1753215397205</updated>
|
|
475
|
+
</task>
|
|
476
|
+
<option name="localTasksCounter" value="45" />
|
|
460
477
|
<servers />
|
|
461
478
|
</component>
|
|
462
479
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -474,7 +491,6 @@
|
|
|
474
491
|
</option>
|
|
475
492
|
</component>
|
|
476
493
|
<component name="VcsManagerConfiguration">
|
|
477
|
-
<MESSAGE value="Emoticons objects" />
|
|
478
494
|
<MESSAGE value="Emoticons support" />
|
|
479
495
|
<MESSAGE value="Emoticon permissions support" />
|
|
480
496
|
<MESSAGE value="Permission related changes in protocol types" />
|
|
@@ -498,6 +514,8 @@
|
|
|
498
514
|
<MESSAGE value="Dedicated event for user status change" />
|
|
499
515
|
<MESSAGE value="Fix update the latest message in a room default topic" />
|
|
500
516
|
<MESSAGE value="Adapt FilesClient to new files API" />
|
|
501
|
-
<
|
|
517
|
+
<MESSAGE value="Fix global emoticons support" />
|
|
518
|
+
<MESSAGE value="Update schemes" />
|
|
519
|
+
<option name="LAST_COMMIT_MESSAGE" value="Update schemes" />
|
|
502
520
|
</component>
|
|
503
521
|
</project>
|
package/build/index.cjs.js
CHANGED
|
@@ -1094,7 +1094,9 @@ class RoomsManager {
|
|
|
1094
1094
|
this.addJoinedRooms(ev.room);
|
|
1095
1095
|
}
|
|
1096
1096
|
handleRoomUpdated(ev) {
|
|
1097
|
-
this.list.
|
|
1097
|
+
if (this.list.has(ev.room)) {
|
|
1098
|
+
this.list.set(ev.room);
|
|
1099
|
+
}
|
|
1098
1100
|
}
|
|
1099
1101
|
handleRoomDeleted(ev) {
|
|
1100
1102
|
this.deleteRoom(ev.id);
|