@overmap-ai/core 1.0.53-add-agent-conversations.12 → 1.0.53-add-agent-conversations.13

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.
@@ -6595,7 +6595,7 @@ var __publicField = (obj, key, value) => {
6595
6595
  if (replaceExisting) {
6596
6596
  this.client.store.dispatch(setIsFetchingInitialData(true));
6597
6597
  }
6598
- return this.enqueueRequest({
6598
+ const result = await this.enqueueRequest({
6599
6599
  uuid: uuid2,
6600
6600
  description: "Get initial data",
6601
6601
  method: HttpMethod.GET,
@@ -6604,10 +6604,8 @@ var __publicField = (obj, key, value) => {
6604
6604
  isAuthNeeded: true,
6605
6605
  blockers: [],
6606
6606
  blocks: []
6607
- }).then((result) => {
6608
- void this._processInitialData(result, replaceExisting);
6609
- return result;
6610
6607
  });
6608
+ void this._processInitialData(result, replaceExisting);
6611
6609
  }
6612
6610
  async fetchProjectUsers() {
6613
6611
  const projectId = this.client.store.getState().projectReducer.activeProjectId;
@@ -6663,7 +6661,6 @@ var __publicField = (obj, key, value) => {
6663
6661
  isProjectIdValid = true;
6664
6662
  for (const workspaceData of projectData.workspaces) {
6665
6663
  const workspace = { ...workspaceData, project: projectData.id };
6666
- delete workspace.categories;
6667
6664
  workspaces[workspace.offline_id] = workspace;
6668
6665
  }
6669
6666
  }