polfan-server-js-client 0.2.31 → 0.2.32
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
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="Fix package.json exports" />
|
|
7
|
+
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Fix package.json type exports" />
|
|
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" />
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
<workItem from="1750781391199" duration="2733000" />
|
|
98
98
|
<workItem from="1750982834349" duration="24000" />
|
|
99
99
|
<workItem from="1751050123708" duration="983000" />
|
|
100
|
+
<workItem from="1751060147554" duration="143000" />
|
|
100
101
|
</task>
|
|
101
102
|
<task id="LOCAL-00001" summary="Emoticons objects">
|
|
102
103
|
<option name="closed" value="true" />
|
|
@@ -354,7 +355,15 @@
|
|
|
354
355
|
<option name="project" value="LOCAL" />
|
|
355
356
|
<updated>1751051104070</updated>
|
|
356
357
|
</task>
|
|
357
|
-
<
|
|
358
|
+
<task id="LOCAL-00033" summary="Fix package.json type exports">
|
|
359
|
+
<option name="closed" value="true" />
|
|
360
|
+
<created>1751060289270</created>
|
|
361
|
+
<option name="number" value="00033" />
|
|
362
|
+
<option name="presentableId" value="LOCAL-00033" />
|
|
363
|
+
<option name="project" value="LOCAL" />
|
|
364
|
+
<updated>1751060289270</updated>
|
|
365
|
+
</task>
|
|
366
|
+
<option name="localTasksCounter" value="34" />
|
|
358
367
|
<servers />
|
|
359
368
|
</component>
|
|
360
369
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -391,6 +400,7 @@
|
|
|
391
400
|
<MESSAGE value="Fix module exporting (node + browser)" />
|
|
392
401
|
<MESSAGE value="Fix JoinRoom command response type" />
|
|
393
402
|
<MESSAGE value="Fix package.json exports" />
|
|
394
|
-
<
|
|
403
|
+
<MESSAGE value="Fix package.json type exports" />
|
|
404
|
+
<option name="LAST_COMMIT_MESSAGE" value="Fix package.json type exports" />
|
|
395
405
|
</component>
|
|
396
406
|
</project>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { User } from "./User";
|
|
2
2
|
import { ChatLocation } from "./ChatLocation";
|
|
3
|
-
export type MessageType = 'Text' | 'RoomJoin' | 'RoomLeave' | 'SpaceJoin' | 'SpaceLeave' | 'TopicChange' | 'CustomNickChange';
|
|
3
|
+
export type MessageType = 'Text' | 'RoomJoin' | 'RoomLeave' | 'SpaceJoin' | 'SpaceLeave' | 'TopicChange' | 'CustomNickChange' | 'System';
|
|
4
4
|
export interface MessageAuthor {
|
|
5
5
|
user: User;
|
|
6
6
|
customNick?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {User} from "./User";
|
|
2
2
|
import {ChatLocation} from "./ChatLocation";
|
|
3
3
|
|
|
4
|
-
export type MessageType = 'Text'|'RoomJoin'|'RoomLeave'|'SpaceJoin'|'SpaceLeave'|'TopicChange'|'CustomNickChange';
|
|
4
|
+
export type MessageType = 'Text'|'RoomJoin'|'RoomLeave'|'SpaceJoin'|'SpaceLeave'|'TopicChange'|'CustomNickChange'|'System';
|
|
5
5
|
|
|
6
6
|
export interface MessageAuthor {
|
|
7
7
|
user: User;
|