@fencyai/react 0.1.98 → 0.1.99

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.
@@ -1,4 +1,4 @@
1
- import { PaginationDto, PubMemoryDto } from '@fencyai/js/lib/openapi';
1
+ import { PaginationDto, PubMemoryDto } from '@fencyai/js';
2
2
  export interface ListMemoriesPage {
3
3
  items: PubMemoryDto[];
4
4
  hasNextPage: boolean;
@@ -1,4 +1,4 @@
1
- import { PaginationDto, PubMemoryTypeDto } from '@fencyai/js/lib/openapi';
1
+ import { PaginationDto, PubMemoryTypeDto } from '@fencyai/js';
2
2
  export interface ListMemoryTypesPage {
3
3
  items: PubMemoryTypeDto[];
4
4
  hasNextPage: boolean;
@@ -1,3 +1,4 @@
1
+ import { AgentTaskProgressItemType } from '@fencyai/js';
1
2
  export type NewChatCompletionStreamChunk = {
2
3
  type: 'NewChatCompletionStreamChunk';
3
4
  streamId: string;
@@ -60,9 +61,10 @@ export type AgentTaskProgressItemUpdated = {
60
61
  streamId: string;
61
62
  agentTaskId: string;
62
63
  progressItemId: string;
63
- description: string;
64
+ title: string;
64
65
  startedAt: string;
65
66
  completedAt?: string;
66
67
  response: string;
68
+ progressItemType: AgentTaskProgressItemType;
67
69
  };
68
70
  export type StreamData = NewChatCompletionStreamChunk | ChatCompletionStreamCompleted | StreamTimeout | StreamNotFound | FileUploadCompleted | FileTextContentReady | WebsiteHtmlContentReady | WebsiteTextContentReady | FileSearchIndexReady | AgentTaskProgressItemUpdated;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fencyai/react",
3
- "version": "0.1.98",
3
+ "version": "0.1.99",
4
4
  "description": "> TODO: description",
5
5
  "author": "staklau <steinaageklaussen@gmail.com>",
6
6
  "homepage": "",
@@ -32,7 +32,7 @@
32
32
  "prepublishOnly": "npm run build"
33
33
  },
34
34
  "devDependencies": {
35
- "@fencyai/js": "^0.1.98",
35
+ "@fencyai/js": "^0.1.99",
36
36
  "@types/jest": "^29.5.11",
37
37
  "@types/node": "^20.10.5",
38
38
  "@types/react": "^18.2.45",
@@ -46,7 +46,7 @@
46
46
  "vite-plugin-lib-inject-css": "^2.1.1"
47
47
  },
48
48
  "peerDependencies": {
49
- "@fencyai/js": "^0.1.98",
49
+ "@fencyai/js": "^0.1.99",
50
50
  "@radix-ui/react-popover": "^1.1.15",
51
51
  "react": ">=16.8.0",
52
52
  "react-markdown": "^10.1.0",
@@ -60,5 +60,5 @@
60
60
  "optional": false
61
61
  }
62
62
  },
63
- "gitHead": "297000de93af1ea423e54d43da4af48135d77cbe"
63
+ "gitHead": "982cdf11451b24fd0b968fdc83e0f7df296d3989"
64
64
  }