@tutti-os/agent-gui 0.0.11 → 0.0.12

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,14 +4,14 @@ import {
4
4
  resolveWorkspaceAgentActivityStatus,
5
5
  resolveWorkspaceAgentActivityTitle,
6
6
  reuseWorkspaceAgentActivityListViewModelIfUnchanged
7
- } from "./chunk-ITMKZRCT.js";
7
+ } from "./chunk-PKCJR6GC.js";
8
8
  import "./chunk-IBIMGLCD.js";
9
9
  import "./chunk-XJ34OIEQ.js";
10
10
  import {
11
11
  workspaceAgentProviderLabel
12
12
  } from "./chunk-TYGL25EL.js";
13
13
  import "./chunk-GCBDIQDX.js";
14
- import "./chunk-B7K776UD.js";
14
+ import "./chunk-Y3AQGWJA.js";
15
15
  export {
16
16
  buildWorkspaceAgentActivityListViewModel,
17
17
  collectWorkspaceAgentGeneratedFiles,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutti-os/agent-gui",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -78,15 +78,15 @@
78
78
  },
79
79
  "dependencies": {
80
80
  "@monaco-editor/react": "^4.7.0",
81
- "@tutti-os/agent-activity-core": "0.0.11",
82
- "@tutti-os/ui-i18n-runtime": "0.0.11",
83
- "@tutti-os/ui-react-hooks": "0.0.11",
84
- "@tutti-os/ui-system": "0.0.11",
85
- "@tutti-os/workbench-surface": "0.0.11",
86
- "@tutti-os/workspace-file-manager": "0.0.11",
87
- "@tutti-os/workspace-file-reference": "0.0.11",
88
- "@tutti-os/workspace-issue-manager": "0.0.11",
89
- "@tutti-os/workspace-user-project": "0.0.11",
81
+ "@tutti-os/agent-activity-core": "0.0.12",
82
+ "@tutti-os/ui-i18n-runtime": "0.0.12",
83
+ "@tutti-os/ui-react-hooks": "0.0.12",
84
+ "@tutti-os/ui-system": "0.0.12",
85
+ "@tutti-os/workbench-surface": "0.0.12",
86
+ "@tutti-os/workspace-file-manager": "0.0.12",
87
+ "@tutti-os/workspace-file-reference": "0.0.12",
88
+ "@tutti-os/workspace-issue-manager": "0.0.12",
89
+ "@tutti-os/workspace-user-project": "0.0.12",
90
90
  "@tanstack/react-virtual": "^3.13.12",
91
91
  "@tiptap/core": "^3.11.1",
92
92
  "@tiptap/pm": "^3.23.6",
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../agent-gui/agentGuiNode/agentRichTextAtProvider.ts"],"sourcesContent":["export const AGENT_GUI_MENTION_PROVIDER_IDS = {\n agentGeneratedFile: \"agent-generated-file\",\n agentSession: \"agent-session\",\n file: \"file\",\n workspaceApp: \"workspace-app\",\n workspaceIssue: \"workspace-issue\"\n} as const;\n\nexport type AgentGUIMentionProviderId =\n (typeof AGENT_GUI_MENTION_PROVIDER_IDS)[keyof typeof AGENT_GUI_MENTION_PROVIDER_IDS];\n\nexport interface AgentRichTextAtProviderContext {\n metadata?: Readonly<Record<string, unknown>>;\n}\n\nexport interface AgentRichTextAtQueryInput {\n keyword: string;\n maxResults?: number;\n cursor?: string;\n abortSignal?: AbortSignal;\n context: AgentRichTextAtProviderContext;\n}\n\nexport interface AgentRichTextMentionInsert {\n entityId: string;\n label: string;\n href?: string | null;\n kind?: string | null;\n meta?: Readonly<Record<string, string>> | null;\n}\n\nexport interface AgentRichTextMentionInsertResult {\n kind: \"mention\";\n mention: AgentRichTextMentionInsert;\n}\n\nexport interface AgentRichTextMarkdownLinkInsertResult {\n kind: \"markdown-link\";\n label: string;\n href: string;\n}\n\nexport interface AgentRichTextTextInsertResult {\n kind: \"text\";\n text: string;\n}\n\nexport type AgentRichTextAtInsertResult =\n | AgentRichTextMentionInsertResult\n | AgentRichTextMarkdownLinkInsertResult\n | AgentRichTextTextInsertResult;\n\nexport interface AgentRichTextAtReferenceItem {\n key?: string;\n label: string;\n subtitle?: string | null;\n thumbnailUrl?: string | null;\n insertResult: AgentRichTextAtInsertResult;\n}\n\nexport interface AgentRichTextAtReferenceItemsResult {\n items: readonly AgentRichTextAtReferenceItem[];\n nextCursor?: string | null;\n}\n\nexport type AgentRichTextAtReferenceItemsResponse =\n | readonly AgentRichTextAtReferenceItem[]\n | AgentRichTextAtReferenceItemsResult;\n\nexport interface AgentRichTextAtProvider<TItem = any> {\n id: string;\n query: (\n input: AgentRichTextAtQueryInput\n ) => Promise<readonly TItem[]> | readonly TItem[];\n getItemKey: (item: TItem) => string;\n getItemLabel: (item: TItem) => string;\n getItemSubtitle?: (item: TItem) => string | null | undefined;\n getItemThumbnailUrl?: (\n item: TItem\n ) => string | null | undefined | Promise<string | null | undefined>;\n getItemReferenceItems?: (\n item: TItem,\n input: AgentRichTextAtQueryInput\n ) =>\n | Promise<AgentRichTextAtReferenceItemsResponse>\n | AgentRichTextAtReferenceItemsResponse;\n toInsertResult: (item: TItem) => AgentRichTextAtInsertResult;\n}\n"],"mappings":";AAAO,IAAM,iCAAiC;AAAA,EAC5C,oBAAoB;AAAA,EACpB,cAAc;AAAA,EACd,MAAM;AAAA,EACN,cAAc;AAAA,EACd,gBAAgB;AAClB;","names":[]}