@altimateai/ui-components 0.0.44 → 0.0.46
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/dist/CoachForm.js +11902 -12041
- package/dist/assets/icons/index.js +1 -1
- package/dist/chatbotV2/index.d.ts +9 -3
- package/dist/chatbotV2/index.js +34 -33
- package/dist/flowchart-elk-definition-170a3958.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +10 -10
- package/dist/index2.js +16 -16
- package/dist/is_dark.js +4 -4
- package/dist/lineage/index.js +2123 -2105
- package/dist/main.js +2 -2
- package/dist/mindmap-definition-44684416.js +1 -1
- package/dist/redux-toolkit.modern.js +1420 -1141
- package/dist/timeline-definition-8e5a9bc6.js +1 -1
- package/dist/{types-BR-ZVRob.d.ts → types-B9-bNXLo.d.ts} +20 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { X as kt, Y as vt, Z as wt, _ as rt, $ as I, a0 as St, a1 as Et, a2 as Tt, a3 as et } from "./CoachForm.js";
|
|
2
2
|
import { s as Z } from "./redux-toolkit.modern.js";
|
|
3
3
|
import { i as It } from "./is_dark.js";
|
|
4
4
|
var X = function() {
|
|
@@ -121,6 +121,24 @@ interface InteractionRequest {
|
|
|
121
121
|
message?: string;
|
|
122
122
|
};
|
|
123
123
|
}
|
|
124
|
+
interface UploadedFile {
|
|
125
|
+
filename: string;
|
|
126
|
+
content: string;
|
|
127
|
+
content_type: string;
|
|
128
|
+
size: number;
|
|
129
|
+
}
|
|
130
|
+
interface MessageAttachment {
|
|
131
|
+
id: string;
|
|
132
|
+
attachment_name: string;
|
|
133
|
+
file_type: string | null;
|
|
134
|
+
s3_url: string | null;
|
|
135
|
+
extracted_content: string | null;
|
|
136
|
+
order: number;
|
|
137
|
+
attachment_type: string;
|
|
138
|
+
attachment_reference_id: string | null;
|
|
139
|
+
file_size: number | null;
|
|
140
|
+
created_on: string;
|
|
141
|
+
}
|
|
124
142
|
interface ChatMessage {
|
|
125
143
|
id: string;
|
|
126
144
|
content: string;
|
|
@@ -132,6 +150,7 @@ interface ChatMessage {
|
|
|
132
150
|
heading: string;
|
|
133
151
|
citations?: Citation[];
|
|
134
152
|
todos?: TodoItem[];
|
|
153
|
+
attachments?: MessageAttachment[];
|
|
135
154
|
}
|
|
136
155
|
interface Artifact {
|
|
137
156
|
content: string;
|
|
@@ -546,4 +565,4 @@ interface Citation {
|
|
|
546
565
|
taskLabel: TaskLabels;
|
|
547
566
|
}
|
|
548
567
|
|
|
549
|
-
export { type Artifact as A,
|
|
568
|
+
export { type Artifact as A, type InteractionChoice as B, type CoachAiResponse as C, type Datamate as D, todoItemSchema as E, type Feedback as F, type ToolUsageData as G, type ProgressUpdate as H, type InteractionRequest as I, type FinalResponseData as J, agentStreamResponseSchema as K, type Learning as L, type MessageAttachment as M, PersonalizationScope as P, TaskLabels as T, type UploadedFile as U, type TeamMateContextProps as a, type TeamMateState as b, type TeamMateConfig as c, TeamMateActionType as d, TeamMateAvailability as e, type CoachAiConfirmationResponse as f, ContentCategory as g, type TeamMateComponentProps as h, type Citation as i, type ChatbotProps as j, type ChatbotProviderProps as k, learningSchema as l, type ChatState as m, type ContextOption as n, type ChatMessage as o, type AgentAction as p, type ChatResponse as q, LoadingState as r, type ChatSession as s, type TodoItem as t, type AgentStreamResponse as u, type AssistantMeta as v, type FileUploadProps as w, type ChatbotUrls as x, type Mode as y, type InteractionType as z };
|