polfan-server-js-client 0.2.2 → 0.2.6
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/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/workspace.xml +376 -135
- package/babel.config.js +4 -5
- package/build/index.cjs.js +4538 -1816
- 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/AbstractChatClient.d.ts +12 -2
- package/build/types/FilesClient.d.ts +7 -6
- package/build/types/IndexedObjectCollection.d.ts +4 -3
- package/build/types/Permissions.d.ts +4 -0
- package/build/types/WebSocketChatClient.d.ts +2 -0
- package/build/types/state-tracker/ChatStateTracker.d.ts +5 -0
- package/build/types/state-tracker/RelationshipsManager.d.ts +15 -0
- package/build/types/state-tracker/RoomMessagesHistory.d.ts +2 -0
- package/build/types/state-tracker/SpacesManager.d.ts +1 -0
- package/build/types/state-tracker/TopicHistoryWindow.d.ts +23 -5
- package/build/types/state-tracker/UsersManager.d.ts +3 -1
- package/build/types/types/src/index.d.ts +12 -3
- package/build/types/types/src/schemes/Emoticon.d.ts +1 -0
- package/build/types/types/src/schemes/Message.d.ts +1 -1
- package/build/types/types/src/schemes/Room.d.ts +2 -0
- package/build/types/types/src/schemes/RoomHistory.d.ts +5 -0
- package/build/types/types/src/schemes/RoomSummary.d.ts +1 -0
- package/build/types/types/src/schemes/SpaceSummary.d.ts +1 -0
- package/build/types/types/src/schemes/User.d.ts +2 -2
- package/build/types/types/src/schemes/UserRelationship.d.ts +6 -0
- package/build/types/types/src/schemes/commands/CreateMessage.d.ts +2 -0
- package/build/types/types/src/schemes/commands/CreateRelationship.d.ts +5 -0
- package/build/types/types/src/schemes/commands/CreateTopic.d.ts +5 -2
- package/build/types/types/src/schemes/commands/DeleteRelationship.d.ts +5 -0
- package/build/types/types/src/schemes/commands/GetRelationships.d.ts +2 -0
- package/build/types/types/src/schemes/commands/UpdateRoom.d.ts +2 -0
- package/build/types/types/src/schemes/commands/UpdateRoomMember.d.ts +7 -0
- package/build/types/types/src/schemes/commands/UpdateSpaceMember.d.ts +5 -0
- package/build/types/types/src/schemes/events/NewRelationship.d.ts +4 -0
- package/build/types/types/src/schemes/events/RelationshipDeleted.d.ts +4 -0
- package/build/types/types/src/schemes/events/Relationships.d.ts +4 -0
- package/build/types/types/src/schemes/events/RoomSummaryUpdated.d.ts +7 -0
- package/build/types/types/src/schemes/events/Session.d.ts +1 -0
- package/package.json +15 -30
- package/src/AbstractChatClient.ts +28 -4
- package/src/FilesClient.ts +26 -13
- package/src/IndexedObjectCollection.ts +26 -10
- package/src/Permissions.ts +1 -0
- package/src/WebSocketChatClient.ts +19 -11
- package/src/state-tracker/ChatStateTracker.ts +22 -6
- package/src/state-tracker/EmoticonsManager.ts +6 -4
- package/src/state-tracker/MessagesManager.ts +3 -3
- package/src/state-tracker/RelationshipsManager.ts +68 -0
- package/src/state-tracker/RoomMessagesHistory.ts +20 -3
- package/src/state-tracker/RoomsManager.ts +30 -7
- package/src/state-tracker/SpacesManager.ts +28 -1
- package/src/state-tracker/TopicHistoryWindow.ts +94 -23
- package/src/state-tracker/UsersManager.ts +16 -6
- package/src/types/src/index.ts +26 -5
- package/src/types/src/schemes/Emoticon.ts +1 -0
- package/src/types/src/schemes/Message.ts +1 -1
- package/src/types/src/schemes/Room.ts +2 -0
- package/src/types/src/schemes/RoomHistory.ts +6 -0
- package/src/types/src/schemes/RoomSummary.ts +1 -0
- package/src/types/src/schemes/SpaceSummary.ts +1 -0
- package/src/types/src/schemes/User.ts +2 -2
- package/src/types/src/schemes/UserRelationship.ts +8 -0
- package/src/types/src/schemes/commands/CreateMessage.ts +2 -0
- package/src/types/src/schemes/commands/CreateRelationship.ts +6 -0
- package/src/types/src/schemes/commands/CreateTopic.ts +6 -2
- package/src/types/src/schemes/commands/DeleteRelationship.ts +6 -0
- package/src/types/src/schemes/commands/GetRelationships.ts +3 -0
- package/src/types/src/schemes/commands/UpdateRoom.ts +2 -0
- package/src/types/src/schemes/commands/UpdateRoomMember.ts +7 -0
- package/src/types/src/schemes/commands/UpdateSpaceMember.ts +5 -0
- package/src/types/src/schemes/events/NewRelationship.ts +5 -0
- package/src/types/src/schemes/events/RelationshipDeleted.ts +5 -0
- package/src/types/src/schemes/events/Relationships.ts +5 -0
- package/src/types/src/schemes/events/RoomSummaryUpdated.ts +8 -0
- package/src/types/src/schemes/events/Session.ts +1 -0
- package/tests/history-window.test.ts +6 -1
- package/webpack.config.browser.js +2 -24
- package/webpack.config.node.js +2 -14
- package/.eslintignore +0 -0
- package/.eslintrc.json +0 -0
- package/src/types/src/schemes/commands/SetCustomNick.ts +0 -5
package/.idea/workspace.xml
CHANGED
|
@@ -4,7 +4,26 @@
|
|
|
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="Improvements and fixes to collection mirroring">
|
|
8
|
+
<change afterPath="$PROJECT_DIR$/src/types/src/schemes/commands/UpdateRoomMember.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/AbstractChatClient.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/AbstractChatClient.d.ts" afterDir="false" />
|
|
14
|
+
<change beforePath="$PROJECT_DIR$/build/types/Permissions.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/Permissions.d.ts" afterDir="false" />
|
|
15
|
+
<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" />
|
|
16
|
+
<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" />
|
|
17
|
+
<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" />
|
|
18
|
+
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
19
|
+
<change beforePath="$PROJECT_DIR$/src/AbstractChatClient.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/AbstractChatClient.ts" afterDir="false" />
|
|
20
|
+
<change beforePath="$PROJECT_DIR$/src/Permissions.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/Permissions.ts" afterDir="false" />
|
|
21
|
+
<change beforePath="$PROJECT_DIR$/src/types" beforeDir="false" afterPath="$PROJECT_DIR$/src/types" afterDir="false" />
|
|
22
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/index.ts" afterDir="false" />
|
|
23
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/User.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/User.ts" afterDir="false" />
|
|
24
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/commands/CreateMessage.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/commands/CreateMessage.ts" afterDir="false" />
|
|
25
|
+
<change beforePath="$PROJECT_DIR$/src/types/src/schemes/commands/SetCustomNick.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/src/schemes/commands/UpdateSpaceMember.ts" afterDir="false" />
|
|
26
|
+
</list>
|
|
8
27
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
28
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
29
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -25,7 +44,22 @@
|
|
|
25
44
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
26
45
|
<option name="ROOT_SYNC" value="DONT_SYNC" />
|
|
27
46
|
</component>
|
|
47
|
+
<component name="GitHubPullRequestSearchHistory">{
|
|
48
|
+
"lastFilter": {
|
|
49
|
+
"state": "OPEN",
|
|
50
|
+
"assignee": "szado"
|
|
51
|
+
}
|
|
52
|
+
}</component>
|
|
53
|
+
<component name="GithubPullRequestsUISettings">{
|
|
54
|
+
"selectedUrlAndAccountId": {
|
|
55
|
+
"url": "https://github.com/szado/pserv-ts-types",
|
|
56
|
+
"accountId": "3584fcfe-fe67-4c7c-94f9-c35acfe7b7c6"
|
|
57
|
+
}
|
|
58
|
+
}</component>
|
|
28
59
|
<component name="PhpWorkspaceProjectConfiguration" interpreter_name="C:\php\php.exe" />
|
|
60
|
+
<component name="ProblemsViewState">
|
|
61
|
+
<option name="selectedTabId" value="DEPENDENCY_CHECKER_PROBLEMS_TAB" />
|
|
62
|
+
</component>
|
|
29
63
|
<component name="ProjectColorInfo">{
|
|
30
64
|
"associatedIndex": 5
|
|
31
65
|
}</component>
|
|
@@ -38,7 +72,9 @@
|
|
|
38
72
|
"keyToString": {
|
|
39
73
|
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
40
74
|
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager": "true",
|
|
75
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
41
76
|
"RunOnceActivity.git.unshallow": "true",
|
|
77
|
+
"com.intellij.ml.llm.matterhorn.ej.ui.settings.DefaultModelSelectionForGA.v1": "true",
|
|
42
78
|
"git-widget-placeholder": "master",
|
|
43
79
|
"ignore.virus.scanning.warn.message": "true",
|
|
44
80
|
"junie.onboarding.icon.badge.shown": "true",
|
|
@@ -48,6 +84,7 @@
|
|
|
48
84
|
"node.js.selected.package.eslint": "(autodetect)",
|
|
49
85
|
"node.js.selected.package.tslint": "(autodetect)",
|
|
50
86
|
"nodejs_package_manager_path": "npm",
|
|
87
|
+
"to.speed.mode.migration.done": "true",
|
|
51
88
|
"ts.external.directory.path": "\\\\wsl.localhost\\Debian\\home\\jarek\\polfan-js-client-library\\node_modules\\typescript\\lib",
|
|
52
89
|
"vue.rearranger.settings.migration": "true"
|
|
53
90
|
}
|
|
@@ -55,8 +92,8 @@
|
|
|
55
92
|
<component name="SharedIndexes">
|
|
56
93
|
<attachedChunks>
|
|
57
94
|
<set>
|
|
58
|
-
<option value="bundled-js-predefined-d6986cc7102b-
|
|
59
|
-
<option value="bundled-php-predefined-a98d8de5180a-
|
|
95
|
+
<option value="bundled-js-predefined-d6986cc7102b-c7e53b3be11b-JavaScript-PS-253.28086.57" />
|
|
96
|
+
<option value="bundled-php-predefined-a98d8de5180a-09080813851e-com.jetbrains.php.sharedIndexes-PS-253.28086.57" />
|
|
60
97
|
</set>
|
|
61
98
|
</attachedChunks>
|
|
62
99
|
</component>
|
|
@@ -94,119 +131,43 @@
|
|
|
94
131
|
<workItem from="1747848724057" duration="3856000" />
|
|
95
132
|
<workItem from="1747902717141" duration="1460000" />
|
|
96
133
|
<workItem from="1748261162443" duration="638000" />
|
|
97
|
-
<workItem from="1750781391199" duration="
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<
|
|
101
|
-
<
|
|
102
|
-
<
|
|
103
|
-
<
|
|
104
|
-
<
|
|
105
|
-
<
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
<
|
|
109
|
-
<
|
|
110
|
-
<
|
|
111
|
-
<
|
|
112
|
-
<
|
|
113
|
-
<
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
<
|
|
117
|
-
<
|
|
118
|
-
<
|
|
119
|
-
<
|
|
120
|
-
<
|
|
121
|
-
<
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<
|
|
125
|
-
<
|
|
126
|
-
<
|
|
127
|
-
<
|
|
128
|
-
<
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
<
|
|
133
|
-
<
|
|
134
|
-
<option name="number" value="00005" />
|
|
135
|
-
<option name="presentableId" value="LOCAL-00005" />
|
|
136
|
-
<option name="project" value="LOCAL" />
|
|
137
|
-
<updated>1738002769540</updated>
|
|
138
|
-
</task>
|
|
139
|
-
<task id="LOCAL-00006" summary="Emoticons support">
|
|
140
|
-
<option name="closed" value="true" />
|
|
141
|
-
<created>1738002772620</created>
|
|
142
|
-
<option name="number" value="00006" />
|
|
143
|
-
<option name="presentableId" value="LOCAL-00006" />
|
|
144
|
-
<option name="project" value="LOCAL" />
|
|
145
|
-
<updated>1738002772620</updated>
|
|
146
|
-
</task>
|
|
147
|
-
<task id="LOCAL-00007" summary="Emoticons support">
|
|
148
|
-
<option name="closed" value="true" />
|
|
149
|
-
<created>1738002786100</created>
|
|
150
|
-
<option name="number" value="00007" />
|
|
151
|
-
<option name="presentableId" value="LOCAL-00007" />
|
|
152
|
-
<option name="project" value="LOCAL" />
|
|
153
|
-
<updated>1738002786100</updated>
|
|
154
|
-
</task>
|
|
155
|
-
<task id="LOCAL-00008" summary="Emoticons support">
|
|
156
|
-
<option name="closed" value="true" />
|
|
157
|
-
<created>1738002805203</created>
|
|
158
|
-
<option name="number" value="00008" />
|
|
159
|
-
<option name="presentableId" value="LOCAL-00008" />
|
|
160
|
-
<option name="project" value="LOCAL" />
|
|
161
|
-
<updated>1738002805203</updated>
|
|
162
|
-
</task>
|
|
163
|
-
<task id="LOCAL-00009" summary="Emoticons support">
|
|
164
|
-
<option name="closed" value="true" />
|
|
165
|
-
<created>1738005832363</created>
|
|
166
|
-
<option name="number" value="00009" />
|
|
167
|
-
<option name="presentableId" value="LOCAL-00009" />
|
|
168
|
-
<option name="project" value="LOCAL" />
|
|
169
|
-
<updated>1738005832363</updated>
|
|
170
|
-
</task>
|
|
171
|
-
<task id="LOCAL-00010" summary="Emoticon permissions support">
|
|
172
|
-
<option name="closed" value="true" />
|
|
173
|
-
<created>1738413231680</created>
|
|
174
|
-
<option name="number" value="00010" />
|
|
175
|
-
<option name="presentableId" value="LOCAL-00010" />
|
|
176
|
-
<option name="project" value="LOCAL" />
|
|
177
|
-
<updated>1738413231680</updated>
|
|
178
|
-
</task>
|
|
179
|
-
<task id="LOCAL-00011" summary="Emoticon permissions support">
|
|
180
|
-
<option name="closed" value="true" />
|
|
181
|
-
<created>1738413358814</created>
|
|
182
|
-
<option name="number" value="00011" />
|
|
183
|
-
<option name="presentableId" value="LOCAL-00011" />
|
|
184
|
-
<option name="project" value="LOCAL" />
|
|
185
|
-
<updated>1738413358814</updated>
|
|
186
|
-
</task>
|
|
187
|
-
<task id="LOCAL-00012" summary="Permission related changes in protocol types">
|
|
188
|
-
<option name="closed" value="true" />
|
|
189
|
-
<created>1739137397104</created>
|
|
190
|
-
<option name="number" value="00012" />
|
|
191
|
-
<option name="presentableId" value="LOCAL-00012" />
|
|
192
|
-
<option name="project" value="LOCAL" />
|
|
193
|
-
<updated>1739137397104</updated>
|
|
194
|
-
</task>
|
|
195
|
-
<task id="LOCAL-00013" summary="Permission related changes in protocol types">
|
|
196
|
-
<option name="closed" value="true" />
|
|
197
|
-
<created>1739184624920</created>
|
|
198
|
-
<option name="number" value="00013" />
|
|
199
|
-
<option name="presentableId" value="LOCAL-00013" />
|
|
200
|
-
<option name="project" value="LOCAL" />
|
|
201
|
-
<updated>1739184624920</updated>
|
|
202
|
-
</task>
|
|
203
|
-
<task id="LOCAL-00014" summary="ClassicText room type">
|
|
204
|
-
<option name="closed" value="true" />
|
|
205
|
-
<created>1739184754443</created>
|
|
206
|
-
<option name="number" value="00014" />
|
|
207
|
-
<option name="presentableId" value="LOCAL-00014" />
|
|
208
|
-
<option name="project" value="LOCAL" />
|
|
209
|
-
<updated>1739184754443</updated>
|
|
134
|
+
<workItem from="1750781391199" duration="2733000" />
|
|
135
|
+
<workItem from="1750982834349" duration="24000" />
|
|
136
|
+
<workItem from="1751050123708" duration="983000" />
|
|
137
|
+
<workItem from="1751060147554" duration="143000" />
|
|
138
|
+
<workItem from="1751159757238" duration="782000" />
|
|
139
|
+
<workItem from="1751539766803" duration="1251000" />
|
|
140
|
+
<workItem from="1751551622570" duration="125000" />
|
|
141
|
+
<workItem from="1751561070286" duration="2044000" />
|
|
142
|
+
<workItem from="1751802125669" duration="1542000" />
|
|
143
|
+
<workItem from="1751811595978" duration="792000" />
|
|
144
|
+
<workItem from="1752705788150" duration="3566000" />
|
|
145
|
+
<workItem from="1752756543261" duration="1956000" />
|
|
146
|
+
<workItem from="1752834023436" duration="2601000" />
|
|
147
|
+
<workItem from="1753062168800" duration="4938000" />
|
|
148
|
+
<workItem from="1753441064452" duration="1184000" />
|
|
149
|
+
<workItem from="1753954931871" duration="14805000" />
|
|
150
|
+
<workItem from="1754567895893" duration="6715000" />
|
|
151
|
+
<workItem from="1755450616809" duration="66000" />
|
|
152
|
+
<workItem from="1755452202060" duration="1749000" />
|
|
153
|
+
<workItem from="1755600989345" duration="1221000" />
|
|
154
|
+
<workItem from="1755609872522" duration="1114000" />
|
|
155
|
+
<workItem from="1756051973155" duration="2903000" />
|
|
156
|
+
<workItem from="1756461761500" duration="6231000" />
|
|
157
|
+
<workItem from="1756802984919" duration="1908000" />
|
|
158
|
+
<workItem from="1757108361675" duration="5000" />
|
|
159
|
+
<workItem from="1759771277022" duration="584000" />
|
|
160
|
+
<workItem from="1759848250548" duration="413000" />
|
|
161
|
+
<workItem from="1761857165939" duration="4293000" />
|
|
162
|
+
<workItem from="1762715993044" duration="642000" />
|
|
163
|
+
<workItem from="1762724230487" duration="7498000" />
|
|
164
|
+
<workItem from="1762800240528" duration="49000" />
|
|
165
|
+
<workItem from="1762800459831" duration="10000" />
|
|
166
|
+
<workItem from="1763319451927" duration="2136000" />
|
|
167
|
+
<workItem from="1763410036992" duration="181000" />
|
|
168
|
+
<workItem from="1763457144937" duration="13889000" />
|
|
169
|
+
<workItem from="1764419232591" duration="640000" />
|
|
170
|
+
<workItem from="1764525611464" duration="5294000" />
|
|
210
171
|
</task>
|
|
211
172
|
<task id="LOCAL-00015" summary="Restore support for nullable parameter in permission overwrites id function">
|
|
212
173
|
<option name="closed" value="true" />
|
|
@@ -328,7 +289,279 @@
|
|
|
328
289
|
<option name="project" value="LOCAL" />
|
|
329
290
|
<updated>1750786040475</updated>
|
|
330
291
|
</task>
|
|
331
|
-
<
|
|
292
|
+
<task id="LOCAL-00030" summary="Fix JoinRoom command response type">
|
|
293
|
+
<option name="closed" value="true" />
|
|
294
|
+
<created>1750786138733</created>
|
|
295
|
+
<option name="number" value="00030" />
|
|
296
|
+
<option name="presentableId" value="LOCAL-00030" />
|
|
297
|
+
<option name="project" value="LOCAL" />
|
|
298
|
+
<updated>1750786138733</updated>
|
|
299
|
+
</task>
|
|
300
|
+
<task id="LOCAL-00031" summary="Fix JoinRoom command response type">
|
|
301
|
+
<option name="closed" value="true" />
|
|
302
|
+
<created>1750786157447</created>
|
|
303
|
+
<option name="number" value="00031" />
|
|
304
|
+
<option name="presentableId" value="LOCAL-00031" />
|
|
305
|
+
<option name="project" value="LOCAL" />
|
|
306
|
+
<updated>1750786157447</updated>
|
|
307
|
+
</task>
|
|
308
|
+
<task id="LOCAL-00032" summary="Fix package.json exports">
|
|
309
|
+
<option name="closed" value="true" />
|
|
310
|
+
<created>1751051104070</created>
|
|
311
|
+
<option name="number" value="00032" />
|
|
312
|
+
<option name="presentableId" value="LOCAL-00032" />
|
|
313
|
+
<option name="project" value="LOCAL" />
|
|
314
|
+
<updated>1751051104070</updated>
|
|
315
|
+
</task>
|
|
316
|
+
<task id="LOCAL-00033" summary="Fix package.json type exports">
|
|
317
|
+
<option name="closed" value="true" />
|
|
318
|
+
<created>1751060289270</created>
|
|
319
|
+
<option name="number" value="00033" />
|
|
320
|
+
<option name="presentableId" value="LOCAL-00033" />
|
|
321
|
+
<option name="project" value="LOCAL" />
|
|
322
|
+
<updated>1751060289270</updated>
|
|
323
|
+
</task>
|
|
324
|
+
<task id="LOCAL-00034" summary="New message type">
|
|
325
|
+
<option name="closed" value="true" />
|
|
326
|
+
<created>1751159817479</created>
|
|
327
|
+
<option name="number" value="00034" />
|
|
328
|
+
<option name="presentableId" value="LOCAL-00034" />
|
|
329
|
+
<option name="project" value="LOCAL" />
|
|
330
|
+
<updated>1751159817479</updated>
|
|
331
|
+
</task>
|
|
332
|
+
<task id="LOCAL-00035" summary="New message type">
|
|
333
|
+
<option name="closed" value="true" />
|
|
334
|
+
<created>1751159850812</created>
|
|
335
|
+
<option name="number" value="00035" />
|
|
336
|
+
<option name="presentableId" value="LOCAL-00035" />
|
|
337
|
+
<option name="project" value="LOCAL" />
|
|
338
|
+
<updated>1751159850812</updated>
|
|
339
|
+
</task>
|
|
340
|
+
<task id="LOCAL-00036" summary="New message type">
|
|
341
|
+
<option name="closed" value="true" />
|
|
342
|
+
<created>1751160521070</created>
|
|
343
|
+
<option name="number" value="00036" />
|
|
344
|
+
<option name="presentableId" value="LOCAL-00036" />
|
|
345
|
+
<option name="project" value="LOCAL" />
|
|
346
|
+
<updated>1751160521070</updated>
|
|
347
|
+
</task>
|
|
348
|
+
<task id="LOCAL-00037" summary="Dedicated event for user status change">
|
|
349
|
+
<option name="closed" value="true" />
|
|
350
|
+
<created>1751547708628</created>
|
|
351
|
+
<option name="number" value="00037" />
|
|
352
|
+
<option name="presentableId" value="LOCAL-00037" />
|
|
353
|
+
<option name="project" value="LOCAL" />
|
|
354
|
+
<updated>1751547708628</updated>
|
|
355
|
+
</task>
|
|
356
|
+
<task id="LOCAL-00038" summary="Dedicated event for user status change">
|
|
357
|
+
<option name="closed" value="true" />
|
|
358
|
+
<created>1751551734548</created>
|
|
359
|
+
<option name="number" value="00038" />
|
|
360
|
+
<option name="presentableId" value="LOCAL-00038" />
|
|
361
|
+
<option name="project" value="LOCAL" />
|
|
362
|
+
<updated>1751551734548</updated>
|
|
363
|
+
</task>
|
|
364
|
+
<task id="LOCAL-00039" summary="Fix update the latest message in a room default topic">
|
|
365
|
+
<option name="closed" value="true" />
|
|
366
|
+
<created>1751562062024</created>
|
|
367
|
+
<option name="number" value="00039" />
|
|
368
|
+
<option name="presentableId" value="LOCAL-00039" />
|
|
369
|
+
<option name="project" value="LOCAL" />
|
|
370
|
+
<updated>1751562062024</updated>
|
|
371
|
+
</task>
|
|
372
|
+
<task id="LOCAL-00040" summary="Adapt FilesClient to new files API">
|
|
373
|
+
<option name="closed" value="true" />
|
|
374
|
+
<created>1752752404949</created>
|
|
375
|
+
<option name="number" value="00040" />
|
|
376
|
+
<option name="presentableId" value="LOCAL-00040" />
|
|
377
|
+
<option name="project" value="LOCAL" />
|
|
378
|
+
<updated>1752752404949</updated>
|
|
379
|
+
</task>
|
|
380
|
+
<task id="LOCAL-00041" summary="Adapt FilesClient to new files API">
|
|
381
|
+
<option name="closed" value="true" />
|
|
382
|
+
<created>1752756683365</created>
|
|
383
|
+
<option name="number" value="00041" />
|
|
384
|
+
<option name="presentableId" value="LOCAL-00041" />
|
|
385
|
+
<option name="project" value="LOCAL" />
|
|
386
|
+
<updated>1752756683365</updated>
|
|
387
|
+
</task>
|
|
388
|
+
<task id="LOCAL-00042" summary="Adapt FilesClient to new files API">
|
|
389
|
+
<option name="closed" value="true" />
|
|
390
|
+
<created>1752966028333</created>
|
|
391
|
+
<option name="number" value="00042" />
|
|
392
|
+
<option name="presentableId" value="LOCAL-00042" />
|
|
393
|
+
<option name="project" value="LOCAL" />
|
|
394
|
+
<updated>1752966028333</updated>
|
|
395
|
+
</task>
|
|
396
|
+
<task id="LOCAL-00043" summary="Fix global emoticons support">
|
|
397
|
+
<option name="closed" value="true" />
|
|
398
|
+
<created>1753062311408</created>
|
|
399
|
+
<option name="number" value="00043" />
|
|
400
|
+
<option name="presentableId" value="LOCAL-00043" />
|
|
401
|
+
<option name="project" value="LOCAL" />
|
|
402
|
+
<updated>1753062311409</updated>
|
|
403
|
+
</task>
|
|
404
|
+
<task id="LOCAL-00044" summary="Update schemes">
|
|
405
|
+
<option name="closed" value="true" />
|
|
406
|
+
<created>1753215397205</created>
|
|
407
|
+
<option name="number" value="00044" />
|
|
408
|
+
<option name="presentableId" value="LOCAL-00044" />
|
|
409
|
+
<option name="project" value="LOCAL" />
|
|
410
|
+
<updated>1753215397205</updated>
|
|
411
|
+
</task>
|
|
412
|
+
<task id="LOCAL-00045" summary="Fix for incorrectly emitted RoomUpdated event">
|
|
413
|
+
<option name="closed" value="true" />
|
|
414
|
+
<created>1753379371012</created>
|
|
415
|
+
<option name="number" value="00045" />
|
|
416
|
+
<option name="presentableId" value="LOCAL-00045" />
|
|
417
|
+
<option name="project" value="LOCAL" />
|
|
418
|
+
<updated>1753379371012</updated>
|
|
419
|
+
</task>
|
|
420
|
+
<task id="LOCAL-00046" summary="Fix for incorrectly emitted RoomUpdated event">
|
|
421
|
+
<option name="closed" value="true" />
|
|
422
|
+
<created>1753379410620</created>
|
|
423
|
+
<option name="number" value="00046" />
|
|
424
|
+
<option name="presentableId" value="LOCAL-00046" />
|
|
425
|
+
<option name="project" value="LOCAL" />
|
|
426
|
+
<updated>1753379410620</updated>
|
|
427
|
+
</task>
|
|
428
|
+
<task id="LOCAL-00047" summary="Fix for incorrectly emitted RoomUpdated event">
|
|
429
|
+
<option name="closed" value="true" />
|
|
430
|
+
<created>1753379731857</created>
|
|
431
|
+
<option name="number" value="00047" />
|
|
432
|
+
<option name="presentableId" value="LOCAL-00047" />
|
|
433
|
+
<option name="project" value="LOCAL" />
|
|
434
|
+
<updated>1753379731857</updated>
|
|
435
|
+
</task>
|
|
436
|
+
<task id="LOCAL-00048" summary="Relationships support">
|
|
437
|
+
<option name="closed" value="true" />
|
|
438
|
+
<created>1754149839341</created>
|
|
439
|
+
<option name="number" value="00048" />
|
|
440
|
+
<option name="presentableId" value="LOCAL-00048" />
|
|
441
|
+
<option name="project" value="LOCAL" />
|
|
442
|
+
<updated>1754149839341</updated>
|
|
443
|
+
</task>
|
|
444
|
+
<task id="LOCAL-00049" summary="Update a relationship scheme">
|
|
445
|
+
<option name="closed" value="true" />
|
|
446
|
+
<created>1754157638247</created>
|
|
447
|
+
<option name="number" value="00049" />
|
|
448
|
+
<option name="presentableId" value="LOCAL-00049" />
|
|
449
|
+
<option name="project" value="LOCAL" />
|
|
450
|
+
<updated>1754157638247</updated>
|
|
451
|
+
</task>
|
|
452
|
+
<task id="LOCAL-00050" summary="Fix a relationship type">
|
|
453
|
+
<option name="closed" value="true" />
|
|
454
|
+
<created>1754173777653</created>
|
|
455
|
+
<option name="number" value="00050" />
|
|
456
|
+
<option name="presentableId" value="LOCAL-00050" />
|
|
457
|
+
<option name="project" value="LOCAL" />
|
|
458
|
+
<updated>1754173777653</updated>
|
|
459
|
+
</task>
|
|
460
|
+
<task id="LOCAL-00051" summary="Fix mutationCounter doesn't increment on delete">
|
|
461
|
+
<option name="closed" value="true" />
|
|
462
|
+
<created>1754176233412</created>
|
|
463
|
+
<option name="number" value="00051" />
|
|
464
|
+
<option name="presentableId" value="LOCAL-00051" />
|
|
465
|
+
<option name="project" value="LOCAL" />
|
|
466
|
+
<updated>1754176233412</updated>
|
|
467
|
+
</task>
|
|
468
|
+
<task id="LOCAL-00052" summary="Changes in chat protocol and schemes">
|
|
469
|
+
<option name="closed" value="true" />
|
|
470
|
+
<created>1754249755333</created>
|
|
471
|
+
<option name="number" value="00052" />
|
|
472
|
+
<option name="presentableId" value="LOCAL-00052" />
|
|
473
|
+
<option name="project" value="LOCAL" />
|
|
474
|
+
<updated>1754249755333</updated>
|
|
475
|
+
</task>
|
|
476
|
+
<task id="LOCAL-00053" summary="New member count field in RoomSummary">
|
|
477
|
+
<option name="closed" value="true" />
|
|
478
|
+
<created>1754319172537</created>
|
|
479
|
+
<option name="number" value="00053" />
|
|
480
|
+
<option name="presentableId" value="LOCAL-00053" />
|
|
481
|
+
<option name="project" value="LOCAL" />
|
|
482
|
+
<updated>1754319172537</updated>
|
|
483
|
+
</task>
|
|
484
|
+
<task id="LOCAL-00054" summary="Version bump">
|
|
485
|
+
<option name="closed" value="true" />
|
|
486
|
+
<created>1754567912510</created>
|
|
487
|
+
<option name="number" value="00054" />
|
|
488
|
+
<option name="presentableId" value="LOCAL-00054" />
|
|
489
|
+
<option name="project" value="LOCAL" />
|
|
490
|
+
<updated>1754567912510</updated>
|
|
491
|
+
</task>
|
|
492
|
+
<task id="LOCAL-00055" summary="RoomSummaryUpdated event support">
|
|
493
|
+
<option name="closed" value="true" />
|
|
494
|
+
<created>1754568882637</created>
|
|
495
|
+
<option name="number" value="00055" />
|
|
496
|
+
<option name="presentableId" value="LOCAL-00055" />
|
|
497
|
+
<option name="project" value="LOCAL" />
|
|
498
|
+
<updated>1754568882638</updated>
|
|
499
|
+
</task>
|
|
500
|
+
<task id="LOCAL-00056" summary="Ephemeral room history support">
|
|
501
|
+
<option name="closed" value="true" />
|
|
502
|
+
<created>1754573943778</created>
|
|
503
|
+
<option name="number" value="00056" />
|
|
504
|
+
<option name="presentableId" value="LOCAL-00056" />
|
|
505
|
+
<option name="project" value="LOCAL" />
|
|
506
|
+
<updated>1754573943778</updated>
|
|
507
|
+
</task>
|
|
508
|
+
<task id="LOCAL-00057" summary="Ephemeral room history support">
|
|
509
|
+
<option name="closed" value="true" />
|
|
510
|
+
<created>1756051989192</created>
|
|
511
|
+
<option name="number" value="00057" />
|
|
512
|
+
<option name="presentableId" value="LOCAL-00057" />
|
|
513
|
+
<option name="project" value="LOCAL" />
|
|
514
|
+
<updated>1756051989192</updated>
|
|
515
|
+
</task>
|
|
516
|
+
<task id="LOCAL-00058" summary="Protocol version support">
|
|
517
|
+
<option name="closed" value="true" />
|
|
518
|
+
<created>1756053336494</created>
|
|
519
|
+
<option name="number" value="00058" />
|
|
520
|
+
<option name="presentableId" value="LOCAL-00058" />
|
|
521
|
+
<option name="project" value="LOCAL" />
|
|
522
|
+
<updated>1756053336494</updated>
|
|
523
|
+
</task>
|
|
524
|
+
<task id="LOCAL-00059" summary="Update room on recipient user change">
|
|
525
|
+
<option name="closed" value="true" />
|
|
526
|
+
<created>1756804976724</created>
|
|
527
|
+
<option name="number" value="00059" />
|
|
528
|
+
<option name="presentableId" value="LOCAL-00059" />
|
|
529
|
+
<option name="project" value="LOCAL" />
|
|
530
|
+
<updated>1756804976724</updated>
|
|
531
|
+
</task>
|
|
532
|
+
<task id="LOCAL-00060" summary="Fix websocket state error handling">
|
|
533
|
+
<option name="closed" value="true" />
|
|
534
|
+
<created>1761861305919</created>
|
|
535
|
+
<option name="number" value="00060" />
|
|
536
|
+
<option name="presentableId" value="LOCAL-00060" />
|
|
537
|
+
<option name="project" value="LOCAL" />
|
|
538
|
+
<updated>1761861305919</updated>
|
|
539
|
+
</task>
|
|
540
|
+
<task id="LOCAL-00061" summary="Collection integration with React JS rework">
|
|
541
|
+
<option name="closed" value="true" />
|
|
542
|
+
<created>1762773873854</created>
|
|
543
|
+
<option name="number" value="00061" />
|
|
544
|
+
<option name="presentableId" value="LOCAL-00061" />
|
|
545
|
+
<option name="project" value="LOCAL" />
|
|
546
|
+
<updated>1762773873854</updated>
|
|
547
|
+
</task>
|
|
548
|
+
<task id="LOCAL-00062" summary="Update deps and improve library building">
|
|
549
|
+
<option name="closed" value="true" />
|
|
550
|
+
<created>1763587128702</created>
|
|
551
|
+
<option name="number" value="00062" />
|
|
552
|
+
<option name="presentableId" value="LOCAL-00062" />
|
|
553
|
+
<option name="project" value="LOCAL" />
|
|
554
|
+
<updated>1763587128703</updated>
|
|
555
|
+
</task>
|
|
556
|
+
<task id="LOCAL-00063" summary="Improvements and fixes to collection mirroring">
|
|
557
|
+
<option name="closed" value="true" />
|
|
558
|
+
<created>1763587170120</created>
|
|
559
|
+
<option name="number" value="00063" />
|
|
560
|
+
<option name="presentableId" value="LOCAL-00063" />
|
|
561
|
+
<option name="project" value="LOCAL" />
|
|
562
|
+
<updated>1763587170121</updated>
|
|
563
|
+
</task>
|
|
564
|
+
<option name="localTasksCounter" value="64" />
|
|
332
565
|
<servers />
|
|
333
566
|
</component>
|
|
334
567
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -346,23 +579,31 @@
|
|
|
346
579
|
</option>
|
|
347
580
|
</component>
|
|
348
581
|
<component name="VcsManagerConfiguration">
|
|
349
|
-
<MESSAGE value="
|
|
350
|
-
<MESSAGE value="
|
|
351
|
-
<MESSAGE value="
|
|
352
|
-
<MESSAGE value="
|
|
353
|
-
<MESSAGE value="
|
|
354
|
-
<MESSAGE value="
|
|
355
|
-
<MESSAGE value="
|
|
356
|
-
<MESSAGE value="
|
|
357
|
-
<MESSAGE value="
|
|
358
|
-
<MESSAGE value="
|
|
359
|
-
<MESSAGE value="
|
|
360
|
-
<MESSAGE value="
|
|
361
|
-
<MESSAGE value="
|
|
362
|
-
<MESSAGE value="
|
|
363
|
-
<MESSAGE value="
|
|
364
|
-
<MESSAGE value="
|
|
365
|
-
<MESSAGE value="
|
|
366
|
-
<
|
|
582
|
+
<MESSAGE value="Fix JoinRoom command response type" />
|
|
583
|
+
<MESSAGE value="Fix package.json exports" />
|
|
584
|
+
<MESSAGE value="Fix package.json type exports" />
|
|
585
|
+
<MESSAGE value="New message type" />
|
|
586
|
+
<MESSAGE value="Dedicated event for user status change" />
|
|
587
|
+
<MESSAGE value="Fix update the latest message in a room default topic" />
|
|
588
|
+
<MESSAGE value="Adapt FilesClient to new files API" />
|
|
589
|
+
<MESSAGE value="Fix global emoticons support" />
|
|
590
|
+
<MESSAGE value="Update schemes" />
|
|
591
|
+
<MESSAGE value="Fix for incorrectly emitted RoomUpdated event" />
|
|
592
|
+
<MESSAGE value="Relationships support" />
|
|
593
|
+
<MESSAGE value="Update a relationship scheme" />
|
|
594
|
+
<MESSAGE value="Fix a relationship type" />
|
|
595
|
+
<MESSAGE value="Fix mutationCounter doesn't increment on delete" />
|
|
596
|
+
<MESSAGE value="Changes in chat protocol and schemes" />
|
|
597
|
+
<MESSAGE value="New member count field in RoomSummary" />
|
|
598
|
+
<MESSAGE value="Version bump" />
|
|
599
|
+
<MESSAGE value="RoomSummaryUpdated event support" />
|
|
600
|
+
<MESSAGE value="Ephemeral room history support" />
|
|
601
|
+
<MESSAGE value="Protocol version support" />
|
|
602
|
+
<MESSAGE value="Update room on recipient user change" />
|
|
603
|
+
<MESSAGE value="Fix websocket state error handling" />
|
|
604
|
+
<MESSAGE value="Collection integration with React JS rework" />
|
|
605
|
+
<MESSAGE value="Update deps and improve library building" />
|
|
606
|
+
<MESSAGE value="Improvements and fixes to collection mirroring" />
|
|
607
|
+
<option name="LAST_COMMIT_MESSAGE" value="Improvements and fixes to collection mirroring" />
|
|
367
608
|
</component>
|
|
368
609
|
</project>
|
package/babel.config.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
presets: [
|
|
3
|
-
|
|
4
|
-
["@babel/
|
|
5
|
-
["@babel/plugin-transform-typescript"],
|
|
2
|
+
presets: [
|
|
3
|
+
["@babel/preset-env"],
|
|
4
|
+
["@babel/preset-typescript", { allowDeclareFields: true }],
|
|
6
5
|
],
|
|
7
|
-
};
|
|
6
|
+
};
|