@overmap-ai/core 1.0.53-add-agent-slice.1 → 1.0.53-add-agent-sdk.1

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.
@@ -8479,6 +8479,16 @@ var __publicField = (obj, key, value) => {
8479
8479
  queryParams: conversationId ? { conversation_id: conversationId } : {}
8480
8480
  });
8481
8481
  }
8482
+ async fetchAll() {
8483
+ const activeProjectId = this.client.store.getState().projectReducer.activeProjectId;
8484
+ return this.enqueueRequest({
8485
+ description: "Fetch agent conversations",
8486
+ method: HttpMethod.GET,
8487
+ url: `/projects/${activeProjectId}/agents-conversations/`,
8488
+ blockers: ["fetch-agent-conversations"],
8489
+ blocks: ["fetch-agent-conversations"]
8490
+ });
8491
+ }
8482
8492
  async rate(responseId, rating) {
8483
8493
  return this.enqueueRequest({
8484
8494
  description: "Rate agent response",