polfan-server-js-client 0.3.2 → 0.4.0
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/.gitmodules +3 -3
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_05_08_2026_17_28_[Changes]/shelved.patch +447 -0
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_05_08_2026_17_28_[Changes]1/shelved.patch +0 -0
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_05_08_2026_17_28__Changes_.xml +4 -0
- package/.idea/workspace.xml +228 -49
- package/CODE_OF_CONDUCT.md +76 -76
- package/README.md +44 -44
- package/babel.config.js +5 -5
- package/build/index.cjs.js +181 -15
- 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/index.d.ts +2 -1
- package/build/types/types/src/index.d.ts +3 -3
- package/build/types/types/src/schemes/SessionData.d.ts +6 -0
- package/build/types/types/src/schemes/User.d.ts +15 -0
- package/build/types/types/src/schemes/UserData.d.ts +5 -0
- package/build/types/types/src/schemes/commands/SetSessionData.d.ts +9 -1
- package/build/types/types/src/schemes/commands/SetUserData.d.ts +1 -0
- package/jest.config.ts +199 -199
- package/package.json +43 -43
- package/scripts/getPackageJson.js +24 -24
- package/src/FilesClient.ts +42 -42
- package/src/index.ts +31 -29
- package/src/state-tracker/ChatStateTracker.ts +71 -71
- package/src/state-tracker/UsersManager.ts +51 -51
- package/src/state-tracker/functions.ts +28 -28
- package/src/types/src/index.ts +313 -311
- package/src/types/src/schemes/SessionData.ts +8 -1
- package/src/types/src/schemes/User.ts +17 -1
- package/src/types/src/schemes/UserData.ts +5 -0
- package/src/types/src/schemes/commands/SetSessionData.ts +11 -2
- package/src/types/src/schemes/commands/SetUserData.ts +1 -0
- package/tests/async-utils.test.ts +29 -29
- package/tests/space-roles.test.ts +42 -42
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_26_07_2026_21_26_[Changes]/shelved.patch +0 -174
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_26_07_2026_21_26__Changes_.xml +0 -4
- package/.idea/shelf/Uncommitted_changes_before_rebase_[Changes]/shelved.patch +0 -18
- package/.idea/shelf/Uncommitted_changes_before_rebase__Changes_.xml +0 -4
package/.idea/shelf/Uncommitted_changes_before_Checkout_at_05_08_2026_17_28_[Changes]1/shelved.patch
ADDED
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<changelist name="Uncommitted_changes_before_Checkout_at_05_08_2026_17_28_[Changes]" date="1785943698237" recycled="false" toDelete="true">
|
|
2
|
+
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_05_08_2026_17_28_[Changes]/shelved.patch" />
|
|
3
|
+
<option name="DESCRIPTION" value="Uncommitted changes before Checkout at 05.08.2026 17:28 [Changes]" />
|
|
4
|
+
</changelist>
|
package/.idea/workspace.xml
CHANGED
|
@@ -4,16 +4,191 @@
|
|
|
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="Custom avatars support">
|
|
8
8
|
<change beforePath="$PROJECT_DIR$/build/index.cjs.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.cjs.js" afterDir="false" />
|
|
9
9
|
<change beforePath="$PROJECT_DIR$/build/index.cjs.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.cjs.js.map" afterDir="false" />
|
|
10
|
+
<change beforePath="$PROJECT_DIR$/build/index.umd.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.umd.js" afterDir="false" />
|
|
10
11
|
<change beforePath="$PROJECT_DIR$/build/index.umd.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.umd.js.map" afterDir="false" />
|
|
12
|
+
<change beforePath="$PROJECT_DIR$/build/types/AbstractChatClient.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/AbstractChatClient.d.ts" afterDir="false" />
|
|
13
|
+
<change beforePath="$PROJECT_DIR$/build/types/AbstractRestClient.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/AbstractRestClient.d.ts" afterDir="false" />
|
|
14
|
+
<change beforePath="$PROJECT_DIR$/build/types/EventTarget.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/EventTarget.d.ts" afterDir="false" />
|
|
15
|
+
<change beforePath="$PROJECT_DIR$/build/types/FilesClient.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/FilesClient.d.ts" afterDir="false" />
|
|
16
|
+
<change beforePath="$PROJECT_DIR$/build/types/IndexedObjectCollection.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/IndexedObjectCollection.d.ts" afterDir="false" />
|
|
17
|
+
<change beforePath="$PROJECT_DIR$/build/types/Permissions.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/Permissions.d.ts" afterDir="false" />
|
|
18
|
+
<change beforePath="$PROJECT_DIR$/build/types/WebApiChatClient.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/WebApiChatClient.d.ts" afterDir="false" />
|
|
19
|
+
<change beforePath="$PROJECT_DIR$/build/types/WebSocketChatClient.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/WebSocketChatClient.d.ts" afterDir="false" />
|
|
20
|
+
<change beforePath="$PROJECT_DIR$/build/types/index.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/index.d.ts" afterDir="false" />
|
|
21
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/AsyncUtils.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/AsyncUtils.d.ts" afterDir="false" />
|
|
22
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/ChatStateTracker.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/ChatStateTracker.d.ts" afterDir="false" />
|
|
23
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/EmoticonsManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/EmoticonsManager.d.ts" afterDir="false" />
|
|
24
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/FollowedTopicsManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/FollowedTopicsManager.d.ts" afterDir="false" />
|
|
25
|
+
<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" />
|
|
26
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/PermissionsManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/PermissionsManager.d.ts" afterDir="false" />
|
|
27
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/RelationshipsManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/RelationshipsManager.d.ts" afterDir="false" />
|
|
28
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/RoomMessagesHistory.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/RoomMessagesHistory.d.ts" afterDir="false" />
|
|
29
|
+
<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" />
|
|
30
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/SpacesManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/SpacesManager.d.ts" afterDir="false" />
|
|
31
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/TopicHistoryWindow.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/TopicHistoryWindow.d.ts" afterDir="false" />
|
|
32
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/UsersManager.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/UsersManager.d.ts" afterDir="false" />
|
|
33
|
+
<change beforePath="$PROJECT_DIR$/build/types/state-tracker/functions.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/functions.d.ts" afterDir="false" />
|
|
34
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/index.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/index.d.ts" afterDir="false" />
|
|
35
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/BanObject.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/BanObject.d.ts" afterDir="false" />
|
|
36
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/ChatLocation.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/ChatLocation.d.ts" afterDir="false" />
|
|
37
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Emoticon.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Emoticon.d.ts" afterDir="false" />
|
|
38
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Envelope.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Envelope.d.ts" afterDir="false" />
|
|
39
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/FollowedTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/FollowedTopic.d.ts" afterDir="false" />
|
|
40
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/LeaveReason.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/LeaveReason.d.ts" afterDir="false" />
|
|
41
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Message.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Message.d.ts" afterDir="false" />
|
|
42
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/PermissionOverwritesTarget.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/PermissionOverwritesTarget.d.ts" afterDir="false" />
|
|
43
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/PermissionOverwritesValue.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/PermissionOverwritesValue.d.ts" afterDir="false" />
|
|
44
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Role.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Role.d.ts" afterDir="false" />
|
|
45
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Room.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Room.d.ts" afterDir="false" />
|
|
46
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/RoomHistory.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/RoomHistory.d.ts" afterDir="false" />
|
|
47
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/RoomMember.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/RoomMember.d.ts" afterDir="false" />
|
|
48
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/RoomStream.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/RoomStream.d.ts" afterDir="false" />
|
|
49
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/RoomSummary.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/RoomSummary.d.ts" afterDir="false" />
|
|
50
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/SessionData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/SessionData.d.ts" afterDir="false" />
|
|
51
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Space.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Space.d.ts" afterDir="false" />
|
|
52
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/SpaceMember.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/SpaceMember.d.ts" afterDir="false" />
|
|
53
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/SpaceSummary.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/SpaceSummary.d.ts" afterDir="false" />
|
|
54
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/Topic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/Topic.d.ts" afterDir="false" />
|
|
55
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/User.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/User.d.ts" afterDir="false" />
|
|
56
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/UserData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/UserData.d.ts" afterDir="false" />
|
|
57
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/UserInformation.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/UserInformation.d.ts" afterDir="false" />
|
|
58
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/UserRelationship.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/UserRelationship.d.ts" afterDir="false" />
|
|
59
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/UserState.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/UserState.d.ts" afterDir="false" />
|
|
60
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Ack.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Ack.d.ts" afterDir="false" />
|
|
61
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/AssignRole.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/AssignRole.d.ts" afterDir="false" />
|
|
62
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Ban.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Ban.d.ts" afterDir="false" />
|
|
63
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateEmoticon.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateEmoticon.d.ts" afterDir="false" />
|
|
64
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateMessage.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateMessage.d.ts" afterDir="false" />
|
|
65
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateOwner.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateOwner.d.ts" afterDir="false" />
|
|
66
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateRelationship.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateRelationship.d.ts" afterDir="false" />
|
|
67
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateRole.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateRole.d.ts" afterDir="false" />
|
|
68
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateRoom.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateRoom.d.ts" afterDir="false" />
|
|
69
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateSpace.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateSpace.d.ts" afterDir="false" />
|
|
70
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/CreateTopic.d.ts" afterDir="false" />
|
|
71
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeassignRole.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeassignRole.d.ts" afterDir="false" />
|
|
72
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteEmoticon.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteEmoticon.d.ts" afterDir="false" />
|
|
73
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteOwner.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteOwner.d.ts" afterDir="false" />
|
|
74
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteRelationship.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteRelationship.d.ts" afterDir="false" />
|
|
75
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteRole.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteRole.d.ts" afterDir="false" />
|
|
76
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteRoom.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteRoom.d.ts" afterDir="false" />
|
|
77
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteSpace.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteSpace.d.ts" afterDir="false" />
|
|
78
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/DeleteTopic.d.ts" afterDir="false" />
|
|
79
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/FollowTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/FollowTopic.d.ts" afterDir="false" />
|
|
80
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetBans.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetBans.d.ts" afterDir="false" />
|
|
81
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetClientData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetClientData.d.ts" afterDir="false" />
|
|
82
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetComputedPermissions.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetComputedPermissions.d.ts" afterDir="false" />
|
|
83
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetDiscoverableSpaces.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetDiscoverableSpaces.d.ts" afterDir="false" />
|
|
84
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetEmoticons.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetEmoticons.d.ts" afterDir="false" />
|
|
85
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetFollowedTopics.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetFollowedTopics.d.ts" afterDir="false" />
|
|
86
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetInvited.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetInvited.d.ts" afterDir="false" />
|
|
87
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetMessages.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetMessages.d.ts" afterDir="false" />
|
|
88
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetOwners.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetOwners.d.ts" afterDir="false" />
|
|
89
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetPermissionOverwriteTargets.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetPermissionOverwriteTargets.d.ts" afterDir="false" />
|
|
90
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetPermissionOverwrites.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetPermissionOverwrites.d.ts" afterDir="false" />
|
|
91
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetRelationships.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetRelationships.d.ts" afterDir="false" />
|
|
92
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetRoomMembers.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetRoomMembers.d.ts" afterDir="false" />
|
|
93
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetRoomSummary.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetRoomSummary.d.ts" afterDir="false" />
|
|
94
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSession.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSession.d.ts" afterDir="false" />
|
|
95
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSessionData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSessionData.d.ts" afterDir="false" />
|
|
96
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSpaceMembers.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSpaceMembers.d.ts" afterDir="false" />
|
|
97
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSpaceRooms.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSpaceRooms.d.ts" afterDir="false" />
|
|
98
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSpaceSummary.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetSpaceSummary.d.ts" afterDir="false" />
|
|
99
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetTopics.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetTopics.d.ts" afterDir="false" />
|
|
100
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetUserData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetUserData.d.ts" afterDir="false" />
|
|
101
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetUserInfo.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/GetUserInfo.d.ts" afterDir="false" />
|
|
102
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Invite.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Invite.d.ts" afterDir="false" />
|
|
103
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/JoinRoom.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/JoinRoom.d.ts" afterDir="false" />
|
|
104
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/JoinSpace.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/JoinSpace.d.ts" afterDir="false" />
|
|
105
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Kick.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Kick.d.ts" afterDir="false" />
|
|
106
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/LeaveRoom.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/LeaveRoom.d.ts" afterDir="false" />
|
|
107
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/LeaveSpace.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/LeaveSpace.d.ts" afterDir="false" />
|
|
108
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Ping.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Ping.d.ts" afterDir="false" />
|
|
109
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/RedactMessages.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/RedactMessages.d.ts" afterDir="false" />
|
|
110
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/ReportAbuse.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/ReportAbuse.d.ts" afterDir="false" />
|
|
111
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetClientData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetClientData.d.ts" afterDir="false" />
|
|
112
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetPermissionOverwrites.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetPermissionOverwrites.d.ts" afterDir="false" />
|
|
113
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetSessionData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetSessionData.d.ts" afterDir="false" />
|
|
114
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetUserData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/SetUserData.d.ts" afterDir="false" />
|
|
115
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Unban.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Unban.d.ts" afterDir="false" />
|
|
116
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UnfollowTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UnfollowTopic.d.ts" afterDir="false" />
|
|
117
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Uninvite.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/Uninvite.d.ts" afterDir="false" />
|
|
118
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateFollowedTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateFollowedTopic.d.ts" afterDir="false" />
|
|
119
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateRole.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateRole.d.ts" afterDir="false" />
|
|
120
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateRoom.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateRoom.d.ts" afterDir="false" />
|
|
121
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateRoomMember.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateRoomMember.d.ts" afterDir="false" />
|
|
122
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateSpace.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateSpace.d.ts" afterDir="false" />
|
|
123
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateSpaceMember.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateSpaceMember.d.ts" afterDir="false" />
|
|
124
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/commands/UpdateTopic.d.ts" afterDir="false" />
|
|
125
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Bans.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Bans.d.ts" afterDir="false" />
|
|
126
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Bye.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Bye.d.ts" afterDir="false" />
|
|
127
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/ClientData.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/ClientData.d.ts" afterDir="false" />
|
|
128
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/ComputedPermissions.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/ComputedPermissions.d.ts" afterDir="false" />
|
|
129
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/DiscoverableSpaces.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/DiscoverableSpaces.d.ts" afterDir="false" />
|
|
130
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/EmoticonDeleted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/EmoticonDeleted.d.ts" afterDir="false" />
|
|
131
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Emoticons.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Emoticons.d.ts" afterDir="false" />
|
|
132
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Error.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Error.d.ts" afterDir="false" />
|
|
133
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/FollowedTopicUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/FollowedTopicUpdated.d.ts" afterDir="false" />
|
|
134
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/FollowedTopics.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/FollowedTopics.d.ts" afterDir="false" />
|
|
135
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Invited.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Invited.d.ts" afterDir="false" />
|
|
136
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Messages.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Messages.d.ts" afterDir="false" />
|
|
137
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/MessagesRedacted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/MessagesRedacted.d.ts" afterDir="false" />
|
|
138
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewEmoticon.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewEmoticon.d.ts" afterDir="false" />
|
|
139
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewMessage.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewMessage.d.ts" afterDir="false" />
|
|
140
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewRelationship.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewRelationship.d.ts" afterDir="false" />
|
|
141
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewRole.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewRole.d.ts" afterDir="false" />
|
|
142
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewRoom.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewRoom.d.ts" afterDir="false" />
|
|
143
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewTopic.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/NewTopic.d.ts" afterDir="false" />
|
|
144
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Ok.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Ok.d.ts" afterDir="false" />
|
|
145
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Owners.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Owners.d.ts" afterDir="false" />
|
|
146
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/PermissionOverwriteTargets.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/PermissionOverwriteTargets.d.ts" afterDir="false" />
|
|
147
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/PermissionOverwrites.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/PermissionOverwrites.d.ts" afterDir="false" />
|
|
148
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/PermissionOverwritesUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/PermissionOverwritesUpdated.d.ts" afterDir="false" />
|
|
149
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Pong.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Pong.d.ts" afterDir="false" />
|
|
150
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RelationshipDeleted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RelationshipDeleted.d.ts" afterDir="false" />
|
|
151
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Relationships.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Relationships.d.ts" afterDir="false" />
|
|
152
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoleDeleted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoleDeleted.d.ts" afterDir="false" />
|
|
153
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoleUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoleUpdated.d.ts" afterDir="false" />
|
|
154
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomDeleted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomDeleted.d.ts" afterDir="false" />
|
|
155
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomJoined.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomJoined.d.ts" afterDir="false" />
|
|
156
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomLeft.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomLeft.d.ts" afterDir="false" />
|
|
157
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMemberLeft.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMemberLeft.d.ts" afterDir="false" />
|
|
158
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMemberUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMemberUpdated.d.ts" afterDir="false" />
|
|
159
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMembers.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMembers.d.ts" afterDir="false" />
|
|
160
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMembersJoined.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomMembersJoined.d.ts" afterDir="false" />
|
|
161
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomSummary.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomSummary.d.ts" afterDir="false" />
|
|
162
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomSummaryUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomSummaryUpdated.d.ts" afterDir="false" />
|
|
163
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/RoomUpdated.d.ts" afterDir="false" />
|
|
164
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Session.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Session.d.ts" afterDir="false" />
|
|
165
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceDeleted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceDeleted.d.ts" afterDir="false" />
|
|
166
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceJoined.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceJoined.d.ts" afterDir="false" />
|
|
167
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceLeft.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceLeft.d.ts" afterDir="false" />
|
|
168
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMemberJoined.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMemberJoined.d.ts" afterDir="false" />
|
|
169
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMemberLeft.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMemberLeft.d.ts" afterDir="false" />
|
|
170
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMemberUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMemberUpdated.d.ts" afterDir="false" />
|
|
171
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMembers.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceMembers.d.ts" afterDir="false" />
|
|
172
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceRooms.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceRooms.d.ts" afterDir="false" />
|
|
173
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceSummary.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceSummary.d.ts" afterDir="false" />
|
|
174
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/SpaceUpdated.d.ts" afterDir="false" />
|
|
175
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicDeleted.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicDeleted.d.ts" afterDir="false" />
|
|
176
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicFollowed.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicFollowed.d.ts" afterDir="false" />
|
|
177
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicUnfollowed.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicUnfollowed.d.ts" afterDir="false" />
|
|
178
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/TopicUpdated.d.ts" afterDir="false" />
|
|
179
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/Topics.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/Topics.d.ts" afterDir="false" />
|
|
180
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/UserInfo.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/UserInfo.d.ts" afterDir="false" />
|
|
181
|
+
<change beforePath="$PROJECT_DIR$/build/types/types/src/schemes/events/UserUpdated.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/types/src/schemes/events/UserUpdated.d.ts" afterDir="false" />
|
|
11
182
|
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
183
|
+
<change beforePath="$PROJECT_DIR$/src/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.ts" afterDir="false" />
|
|
184
|
+
<change beforePath="$PROJECT_DIR$/src/state-tracker/UsersManager.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/state-tracker/UsersManager.ts" afterDir="false" />
|
|
12
185
|
<change beforePath="$PROJECT_DIR$/src/types" beforeDir="false" afterPath="$PROJECT_DIR$/src/types" afterDir="false" />
|
|
13
|
-
<change beforePath="$PROJECT_DIR$/src/types/src/
|
|
14
|
-
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/
|
|
15
|
-
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/
|
|
16
|
-
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/
|
|
186
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/index.ts" afterDir="false" />
|
|
187
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/SessionData.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/SessionData.ts" afterDir="false" />
|
|
188
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/User.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/User.ts" afterDir="false" />
|
|
189
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/UserData.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/UserData.ts" afterDir="false" />
|
|
190
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/commands/SetSessionData.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/commands/SetSessionData.ts" afterDir="false" />
|
|
191
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/commands/SetUserData.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/commands/SetUserData.ts" afterDir="false" />
|
|
17
192
|
</list>
|
|
18
193
|
<option name="SHOW_DIALOG" value="false" />
|
|
19
194
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -24,7 +199,7 @@
|
|
|
24
199
|
<execution />
|
|
25
200
|
</component>
|
|
26
201
|
<component name="EmbeddingIndexingInfo">
|
|
27
|
-
<option name="cachedIndexableFilesCount" value="
|
|
202
|
+
<option name="cachedIndexableFilesCount" value="213" />
|
|
28
203
|
</component>
|
|
29
204
|
<component name="Git.Rebase.Settings">
|
|
30
205
|
<option name="NEW_BASE" value="origin/main" />
|
|
@@ -32,11 +207,11 @@
|
|
|
32
207
|
<component name="Git.Settings">
|
|
33
208
|
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
|
34
209
|
<map>
|
|
35
|
-
<entry key="$PROJECT_DIR$" value="
|
|
36
|
-
<entry key="$PROJECT_DIR$/src/types" value="
|
|
210
|
+
<entry key="$PROJECT_DIR$" value="claude/room-messages-reconnect-history-kfddmm" />
|
|
211
|
+
<entry key="$PROJECT_DIR$/src/types" value="main" />
|
|
37
212
|
</map>
|
|
38
213
|
</option>
|
|
39
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR
|
|
214
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
40
215
|
<option name="ROOT_SYNC" value="DONT_SYNC" />
|
|
41
216
|
</component>
|
|
42
217
|
<component name="GitHubPullRequestSearchHistory">{
|
|
@@ -48,7 +223,7 @@
|
|
|
48
223
|
<component name="GitRewordedCommitMessages">
|
|
49
224
|
<option name="commitMessagesMapping">
|
|
50
225
|
<RewordedCommitMessageMapping>
|
|
51
|
-
<option name="originalMessage" value="
|
|
226
|
+
<option name="originalMessage" value="Custom avatars support" />
|
|
52
227
|
<option name="rewordedMessage" value="Custom avatars support" />
|
|
53
228
|
</RewordedCommitMessageMapping>
|
|
54
229
|
</option>
|
|
@@ -77,34 +252,34 @@
|
|
|
77
252
|
<option name="hideEmptyMiddlePackages" value="true" />
|
|
78
253
|
<option name="showLibraryContents" value="true" />
|
|
79
254
|
</component>
|
|
80
|
-
<component name="PropertiesComponent"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
255
|
+
<component name="PropertiesComponent">{
|
|
256
|
+
"keyToString": {
|
|
257
|
+
"RunOnceActivity.MCP Project settings loaded": "true",
|
|
258
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
259
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager": "true",
|
|
260
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
261
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
262
|
+
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
|
|
263
|
+
"codeWithMe.voiceChat.enabledByDefault": "false",
|
|
264
|
+
"com.intellij.ml.llm.matterhorn.ej.ui.settings.DefaultModelSelectionForGA.v1": "true",
|
|
265
|
+
"git-widget-placeholder": "master",
|
|
266
|
+
"git.auto.fetch.suggestion.counter": "3",
|
|
267
|
+
"ignore.virus.scanning.warn.message": "true",
|
|
268
|
+
"junie.onboarding.icon.badge.shown": "true",
|
|
269
|
+
"last_opened_file_path": "//wsl.localhost/Debian/home/jarek/polfan-js-client-library",
|
|
270
|
+
"node.js.detected.package.eslint": "true",
|
|
271
|
+
"node.js.detected.package.tslint": "true",
|
|
272
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
273
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
274
|
+
"nodejs_package_manager_path": "npm",
|
|
275
|
+
"npm.build:node.executor": "Run",
|
|
276
|
+
"settings.editor.selected.configurable": "com.github.copilot.settings.chat.ChatConfigurable",
|
|
277
|
+
"to.speed.mode.migration.done": "true",
|
|
278
|
+
"ts.external.directory.path": "\\\\wsl.localhost\\Debian\\home\\jarek\\polfan-js-client-library\\node_modules\\typescript\\lib",
|
|
279
|
+
"vcs.patch.to.clipboard": "true",
|
|
280
|
+
"vue.rearranger.settings.migration": "true"
|
|
106
281
|
}
|
|
107
|
-
}
|
|
282
|
+
}</component>
|
|
108
283
|
<component name="RunManager">
|
|
109
284
|
<configuration name="build:node" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
|
|
110
285
|
<package-json value="$PROJECT_DIR$/package.json" />
|
|
@@ -121,6 +296,8 @@
|
|
|
121
296
|
<item itemvalue="npm.build:node" />
|
|
122
297
|
<item itemvalue="npm.build:node" />
|
|
123
298
|
<item itemvalue="npm.build:node" />
|
|
299
|
+
<item itemvalue="npm.build:node" />
|
|
300
|
+
<item itemvalue="npm.build:node" />
|
|
124
301
|
</list>
|
|
125
302
|
</recent_temporary>
|
|
126
303
|
</component>
|
|
@@ -250,15 +427,9 @@
|
|
|
250
427
|
<workItem from="1784102649250" duration="12484000" />
|
|
251
428
|
<workItem from="1784524117686" duration="79000" />
|
|
252
429
|
<workItem from="1784562428378" duration="25143000" />
|
|
253
|
-
<workItem from="1785316847947" duration="
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
<option name="closed" value="true" />
|
|
257
|
-
<created>1764688847485</created>
|
|
258
|
-
<option name="number" value="00064" />
|
|
259
|
-
<option name="presentableId" value="LOCAL-00064" />
|
|
260
|
-
<option name="project" value="LOCAL" />
|
|
261
|
-
<updated>1764688847485</updated>
|
|
430
|
+
<workItem from="1785316847947" duration="4816000" />
|
|
431
|
+
<workItem from="1785689068542" duration="6390000" />
|
|
432
|
+
<workItem from="1786526830597" duration="598000" />
|
|
262
433
|
</task>
|
|
263
434
|
<task id="LOCAL-00065" summary="Align to custom colors and nicks protocol changes">
|
|
264
435
|
<option name="closed" value="true" />
|
|
@@ -644,7 +815,15 @@
|
|
|
644
815
|
<option name="project" value="LOCAL" />
|
|
645
816
|
<updated>1785177501238</updated>
|
|
646
817
|
</task>
|
|
647
|
-
<
|
|
818
|
+
<task id="LOCAL-00113" summary="Custom avatars support">
|
|
819
|
+
<option name="closed" value="true" />
|
|
820
|
+
<created>1785594413374</created>
|
|
821
|
+
<option name="number" value="00113" />
|
|
822
|
+
<option name="presentableId" value="LOCAL-00113" />
|
|
823
|
+
<option name="project" value="LOCAL" />
|
|
824
|
+
<updated>1785594413375</updated>
|
|
825
|
+
</task>
|
|
826
|
+
<option name="localTasksCounter" value="114" />
|
|
648
827
|
<servers />
|
|
649
828
|
</component>
|
|
650
829
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -663,12 +842,12 @@
|
|
|
663
842
|
</RecentGroup>
|
|
664
843
|
<RecentGroup>
|
|
665
844
|
<option name="FILTER_VALUES">
|
|
666
|
-
<option value="
|
|
845
|
+
<option value="master" />
|
|
667
846
|
</option>
|
|
668
847
|
</RecentGroup>
|
|
669
848
|
<RecentGroup>
|
|
670
849
|
<option name="FILTER_VALUES">
|
|
671
|
-
<option value="
|
|
850
|
+
<option value="claude/add-members-invite-rooms-1nphsj" />
|
|
672
851
|
</option>
|
|
673
852
|
</RecentGroup>
|
|
674
853
|
<RecentGroup>
|
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
|
2
|
-
|
|
3
|
-
## Our Pledge
|
|
4
|
-
|
|
5
|
-
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
-
contributors and maintainers pledge to making participation in our project and
|
|
7
|
-
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
-
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
-
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
-
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
-
|
|
12
|
-
## Our Standards
|
|
13
|
-
|
|
14
|
-
Examples of behavior that contributes to creating a positive environment
|
|
15
|
-
include:
|
|
16
|
-
|
|
17
|
-
* Using welcoming and inclusive language
|
|
18
|
-
* Being respectful of differing viewpoints and experiences
|
|
19
|
-
* Gracefully accepting constructive criticism
|
|
20
|
-
* Focusing on what is best for the community
|
|
21
|
-
* Showing empathy towards other community members
|
|
22
|
-
|
|
23
|
-
Examples of unacceptable behavior by participants include:
|
|
24
|
-
|
|
25
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
-
advances
|
|
27
|
-
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
-
* Public or private harassment
|
|
29
|
-
* Publishing others' private information, such as a physical or electronic
|
|
30
|
-
address, without explicit permission
|
|
31
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
-
professional setting
|
|
33
|
-
|
|
34
|
-
## Our Responsibilities
|
|
35
|
-
|
|
36
|
-
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
-
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
-
response to any instances of unacceptable behavior.
|
|
39
|
-
|
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
-
threatening, offensive, or harmful.
|
|
45
|
-
|
|
46
|
-
## Scope
|
|
47
|
-
|
|
48
|
-
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
-
when an individual is representing the project or its community. Examples of
|
|
50
|
-
representing a project or community include using an official project e-mail
|
|
51
|
-
address, posting via an official social media account, or acting as an appointed
|
|
52
|
-
representative at an online or offline event. Representation of a project may be
|
|
53
|
-
further defined and clarified by project maintainers.
|
|
54
|
-
|
|
55
|
-
## Enforcement
|
|
56
|
-
|
|
57
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at opensource@hodgef.com. All
|
|
59
|
-
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
-
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
-
Further details of specific enforcement policies may be posted separately.
|
|
63
|
-
|
|
64
|
-
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
-
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
-
members of the project's leadership.
|
|
67
|
-
|
|
68
|
-
## Attribution
|
|
69
|
-
|
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
-
|
|
73
|
-
[homepage]: https://www.contributor-covenant.org
|
|
74
|
-
|
|
75
|
-
For answers to common questions about this code of conduct, see
|
|
76
|
-
https://www.contributor-covenant.org/faq
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at opensource@hodgef.com. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
+
|
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
|
74
|
+
|
|
75
|
+
For answers to common questions about this code of conduct, see
|
|
76
|
+
https://www.contributor-covenant.org/faq
|