polfan-server-js-client 0.2.41 → 0.2.42

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.
@@ -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="Adapt FilesClient to new files API" />
7
+ <list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Fix global emoticons support" />
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="2501000" />
122
123
  </task>
123
124
  <task id="LOCAL-00001" summary="Emoticons objects">
124
125
  <option name="closed" value="true" />
@@ -456,7 +457,15 @@
456
457
  <option name="project" value="LOCAL" />
457
458
  <updated>1752966028333</updated>
458
459
  </task>
459
- <option name="localTasksCounter" value="43" />
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
+ <option name="localTasksCounter" value="44" />
460
469
  <servers />
461
470
  </component>
462
471
  <component name="TypeScriptGeneratedFilesManager">
@@ -498,6 +507,7 @@
498
507
  <MESSAGE value="Dedicated event for user status change" />
499
508
  <MESSAGE value="Fix update the latest message in a room default topic" />
500
509
  <MESSAGE value="Adapt FilesClient to new files API" />
501
- <option name="LAST_COMMIT_MESSAGE" value="Adapt FilesClient to new files API" />
510
+ <MESSAGE value="Fix global emoticons support" />
511
+ <option name="LAST_COMMIT_MESSAGE" value="Fix global emoticons support" />
502
512
  </component>
503
513
  </project>
@@ -5,4 +5,5 @@ export interface Emoticon {
5
5
  name: string;
6
6
  fileId: string;
7
7
  user: User;
8
+ tag?: string;
8
9
  }
@@ -4,4 +4,5 @@ export interface SpaceSummary {
4
4
  description: string;
5
5
  icon?: string;
6
6
  banner?: string;
7
+ memberCount: number;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polfan-server-js-client",
3
- "version": "0.2.41",
3
+ "version": "0.2.42",
4
4
  "description": "JavaScript client library for handling communication with Polfan chat server.",
5
5
  "author": "Jarosław Żak",
6
6
  "license": "MIT",
@@ -6,4 +6,5 @@ export interface Emoticon {
6
6
  name: string;
7
7
  fileId: string;
8
8
  user: User;
9
+ tag?: string;
9
10
  }
@@ -4,4 +4,5 @@ export interface SpaceSummary {
4
4
  description: string;
5
5
  icon?: string;
6
6
  banner?: string;
7
+ memberCount: number;
7
8
  }