polfan-server-js-client 0.2.46 → 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.
@@ -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="Relationships support" />
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="7324000" />
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" />
@@ -507,7 +499,23 @@
507
499
  <option name="project" value="LOCAL" />
508
500
  <updated>1754149839341</updated>
509
501
  </task>
510
- <option name="localTasksCounter" value="49" />
502
+ <task id="LOCAL-00049" summary="Update a relationship scheme">
503
+ <option name="closed" value="true" />
504
+ <created>1754157638247</created>
505
+ <option name="number" value="00049" />
506
+ <option name="presentableId" value="LOCAL-00049" />
507
+ <option name="project" value="LOCAL" />
508
+ <updated>1754157638247</updated>
509
+ </task>
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" />
511
519
  <servers />
512
520
  </component>
513
521
  <component name="TypeScriptGeneratedFilesManager">
@@ -525,8 +533,6 @@
525
533
  </option>
526
534
  </component>
527
535
  <component name="VcsManagerConfiguration">
528
- <MESSAGE value="Permission related changes in protocol types" />
529
- <MESSAGE value="ClassicText room type" />
530
536
  <MESSAGE value="Restore support for nullable parameter in permission overwrites id function" />
531
537
  <MESSAGE value="Bans support" />
532
538
  <MESSAGE value="New scheme of Bye event" />
@@ -550,6 +556,8 @@
550
556
  <MESSAGE value="Update schemes" />
551
557
  <MESSAGE value="Fix for incorrectly emitted RoomUpdated event" />
552
558
  <MESSAGE value="Relationships support" />
553
- <option name="LAST_COMMIT_MESSAGE" value="Relationships support" />
559
+ <MESSAGE value="Update a relationship scheme" />
560
+ <MESSAGE value="Fix a relationship type" />
561
+ <option name="LAST_COMMIT_MESSAGE" value="Fix a relationship type" />
554
562
  </component>
555
563
  </project>
@@ -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();