polfan-server-js-client 0.2.56 → 0.2.57
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 +15 -2
- 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/state-tracker/TopicHistoryWindow.ts +2 -0
package/package.json
CHANGED
|
@@ -204,11 +204,13 @@ export class TopicHistoryWindow extends TraversableRemoteCollection<Message> {
|
|
|
204
204
|
|
|
205
205
|
public shallowCopy(): IndexedObjectCollection<Message> {
|
|
206
206
|
const copy = new TopicHistoryWindow(this.roomId, this.topicId, this.tracker);
|
|
207
|
+
copy.eventTarget = this.eventTarget;
|
|
207
208
|
copy._items = this._items;
|
|
208
209
|
copy.limit = this.limit;
|
|
209
210
|
copy.currentState = this.currentState;
|
|
210
211
|
copy.fetchingState = this.fetchingState;
|
|
211
212
|
copy.oldestId = this.oldestId;
|
|
213
|
+
copy.traverseLock = this.traverseLock;
|
|
212
214
|
return copy;
|
|
213
215
|
}
|
|
214
216
|
|