polfan-server-js-client 0.2.47 → 0.2.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/workspace.xml +13 -13
- package/build/index.cjs.js +2 -0
- package/build/index.cjs.js.map +1 -1
- package/build/index.umd.js +1 -1
- package/build/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/IndexedObjectCollection.ts +2 -0
package/.idea/workspace.xml
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="
|
|
7
|
+
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Fix a relationship type" />
|
|
8
8
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
9
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
10
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -121,15 +121,7 @@
|
|
|
121
121
|
<workItem from="1752834023436" duration="2601000" />
|
|
122
122
|
<workItem from="1753062168800" duration="4938000" />
|
|
123
123
|
<workItem from="1753441064452" duration="1184000" />
|
|
124
|
-
<workItem from="1753954931871" duration="
|
|
125
|
-
</task>
|
|
126
|
-
<task id="LOCAL-00001" summary="Emoticons objects">
|
|
127
|
-
<option name="closed" value="true" />
|
|
128
|
-
<created>1738000298032</created>
|
|
129
|
-
<option name="number" value="00001" />
|
|
130
|
-
<option name="presentableId" value="LOCAL-00001" />
|
|
131
|
-
<option name="project" value="LOCAL" />
|
|
132
|
-
<updated>1738000298032</updated>
|
|
124
|
+
<workItem from="1753954931871" duration="10013000" />
|
|
133
125
|
</task>
|
|
134
126
|
<task id="LOCAL-00002" summary="Emoticons objects">
|
|
135
127
|
<option name="closed" value="true" />
|
|
@@ -515,7 +507,15 @@
|
|
|
515
507
|
<option name="project" value="LOCAL" />
|
|
516
508
|
<updated>1754157638247</updated>
|
|
517
509
|
</task>
|
|
518
|
-
<
|
|
510
|
+
<task id="LOCAL-00050" summary="Fix a relationship type">
|
|
511
|
+
<option name="closed" value="true" />
|
|
512
|
+
<created>1754173777653</created>
|
|
513
|
+
<option name="number" value="00050" />
|
|
514
|
+
<option name="presentableId" value="LOCAL-00050" />
|
|
515
|
+
<option name="project" value="LOCAL" />
|
|
516
|
+
<updated>1754173777653</updated>
|
|
517
|
+
</task>
|
|
518
|
+
<option name="localTasksCounter" value="51" />
|
|
519
519
|
<servers />
|
|
520
520
|
</component>
|
|
521
521
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -533,7 +533,6 @@
|
|
|
533
533
|
</option>
|
|
534
534
|
</component>
|
|
535
535
|
<component name="VcsManagerConfiguration">
|
|
536
|
-
<MESSAGE value="ClassicText room type" />
|
|
537
536
|
<MESSAGE value="Restore support for nullable parameter in permission overwrites id function" />
|
|
538
537
|
<MESSAGE value="Bans support" />
|
|
539
538
|
<MESSAGE value="New scheme of Bye event" />
|
|
@@ -558,6 +557,7 @@
|
|
|
558
557
|
<MESSAGE value="Fix for incorrectly emitted RoomUpdated event" />
|
|
559
558
|
<MESSAGE value="Relationships support" />
|
|
560
559
|
<MESSAGE value="Update a relationship scheme" />
|
|
561
|
-
<
|
|
560
|
+
<MESSAGE value="Fix a relationship type" />
|
|
561
|
+
<option name="LAST_COMMIT_MESSAGE" value="Fix a relationship type" />
|
|
562
562
|
</component>
|
|
563
563
|
</project>
|
package/build/index.cjs.js
CHANGED
|
@@ -183,9 +183,11 @@ class IndexedCollection {
|
|
|
183
183
|
for (const id of ids) {
|
|
184
184
|
this.items.delete(id);
|
|
185
185
|
}
|
|
186
|
+
this._mutationCounter++;
|
|
186
187
|
}
|
|
187
188
|
deleteAll() {
|
|
188
189
|
this.items.clear();
|
|
190
|
+
this._mutationCounter++;
|
|
189
191
|
}
|
|
190
192
|
findBy(field, valueToFind, limit = null) {
|
|
191
193
|
const result = new IndexedCollection();
|