@supyagent/sdk 0.1.5 → 0.1.7
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/react.cjs +2874 -130
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +194 -18
- package/dist/react.d.ts +194 -18
- package/dist/react.js +2842 -125
- package/dist/react.js.map +1 -1
- package/package.json +3 -2
package/dist/react.d.cts
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
|
|
3
4
|
interface ToolCallPart {
|
|
4
5
|
type: string;
|
|
6
|
+
toolName?: string;
|
|
7
|
+
toolCallId?: string;
|
|
8
|
+
state?: string;
|
|
9
|
+
input?: Record<string, unknown>;
|
|
10
|
+
output?: unknown;
|
|
5
11
|
toolInvocation?: {
|
|
6
12
|
toolName: string;
|
|
7
13
|
state: string;
|
|
8
14
|
args?: Record<string, unknown>;
|
|
9
15
|
result?: unknown;
|
|
10
16
|
};
|
|
11
|
-
toolName?: string;
|
|
12
|
-
state?: string;
|
|
13
17
|
args?: Record<string, unknown>;
|
|
14
18
|
}
|
|
15
19
|
interface SupyagentToolCallProps {
|
|
@@ -17,40 +21,212 @@ interface SupyagentToolCallProps {
|
|
|
17
21
|
}
|
|
18
22
|
declare function SupyagentToolCall({ part }: SupyagentToolCallProps): react_jsx_runtime.JSX.Element;
|
|
19
23
|
|
|
24
|
+
/**
|
|
25
|
+
* Extract provider/service prefix from a tool name.
|
|
26
|
+
* Tool names follow `{service}_{action}` convention.
|
|
27
|
+
*/
|
|
28
|
+
declare function getProviderFromToolName(toolName: string): string;
|
|
29
|
+
/**
|
|
30
|
+
* Convert a tool name like "gmail_list_messages" to "List messages".
|
|
31
|
+
*/
|
|
32
|
+
declare function humanizeToolName(toolName: string): string;
|
|
33
|
+
/**
|
|
34
|
+
* Get a display label for a provider.
|
|
35
|
+
*/
|
|
36
|
+
declare function getProviderLabel(provider: string): string;
|
|
37
|
+
|
|
20
38
|
interface ToolResultPart {
|
|
21
39
|
type: string;
|
|
40
|
+
toolName?: string;
|
|
41
|
+
state?: string;
|
|
42
|
+
output?: unknown;
|
|
43
|
+
input?: unknown;
|
|
22
44
|
toolInvocation?: {
|
|
23
45
|
toolName: string;
|
|
24
46
|
state: string;
|
|
25
47
|
result?: unknown;
|
|
48
|
+
args?: Record<string, unknown>;
|
|
26
49
|
};
|
|
27
|
-
toolName?: string;
|
|
28
|
-
state?: string;
|
|
29
50
|
result?: unknown;
|
|
51
|
+
args?: Record<string, unknown>;
|
|
30
52
|
}
|
|
31
53
|
interface SupyagentToolResultProps {
|
|
32
54
|
part: ToolResultPart;
|
|
33
55
|
}
|
|
34
56
|
declare function SupyagentToolResult({ part }: SupyagentToolResultProps): react_jsx_runtime.JSX.Element | null;
|
|
35
57
|
|
|
58
|
+
interface SupyagentToolActionProps {
|
|
59
|
+
part: ToolResultPart;
|
|
60
|
+
defaultExpanded?: boolean;
|
|
61
|
+
}
|
|
62
|
+
declare function SupyagentToolAction({ part, defaultExpanded }: SupyagentToolActionProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
|
|
64
|
+
interface ToolInputProps {
|
|
65
|
+
args: Record<string, unknown> | undefined;
|
|
66
|
+
}
|
|
67
|
+
declare function ToolInput({ args }: ToolInputProps): react_jsx_runtime.JSX.Element | null;
|
|
68
|
+
|
|
69
|
+
interface BadgeProps {
|
|
70
|
+
text: string;
|
|
71
|
+
variant?: "default" | "success" | "error" | "warning";
|
|
72
|
+
}
|
|
73
|
+
interface CollapsibleResultProps {
|
|
74
|
+
toolName: string;
|
|
75
|
+
summary: string;
|
|
76
|
+
badge?: BadgeProps;
|
|
77
|
+
defaultExpanded?: boolean;
|
|
78
|
+
children: React.ReactNode;
|
|
79
|
+
}
|
|
80
|
+
declare function CollapsibleResult({ toolName, summary, badge, defaultExpanded, children, }: CollapsibleResultProps): react_jsx_runtime.JSX.Element;
|
|
81
|
+
|
|
36
82
|
interface ProviderIconProps {
|
|
37
83
|
toolName: string;
|
|
38
84
|
className?: string;
|
|
39
85
|
}
|
|
40
86
|
declare function ProviderIcon({ toolName, className }: ProviderIconProps): react_jsx_runtime.JSX.Element;
|
|
41
87
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
declare function
|
|
88
|
+
interface SummaryResult {
|
|
89
|
+
text: string;
|
|
90
|
+
badge?: {
|
|
91
|
+
text: string;
|
|
92
|
+
variant?: "default" | "success" | "error" | "warning";
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
declare function getSummary(formatterType: string, data: unknown, toolName: string): SummaryResult;
|
|
96
|
+
|
|
97
|
+
interface EmailFormatterProps {
|
|
98
|
+
data: unknown;
|
|
99
|
+
}
|
|
100
|
+
declare function EmailFormatter({ data }: EmailFormatterProps): react_jsx_runtime.JSX.Element;
|
|
101
|
+
|
|
102
|
+
interface CalendarEventFormatterProps {
|
|
103
|
+
data: unknown;
|
|
104
|
+
}
|
|
105
|
+
declare function CalendarEventFormatter({ data }: CalendarEventFormatterProps): react_jsx_runtime.JSX.Element;
|
|
106
|
+
|
|
107
|
+
interface SlackMessageFormatterProps {
|
|
108
|
+
data: unknown;
|
|
109
|
+
}
|
|
110
|
+
declare function SlackMessageFormatter({ data }: SlackMessageFormatterProps): react_jsx_runtime.JSX.Element;
|
|
111
|
+
|
|
112
|
+
interface GithubFormatterProps {
|
|
113
|
+
data: unknown;
|
|
114
|
+
}
|
|
115
|
+
declare function GithubFormatter({ data }: GithubFormatterProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
interface DriveFileFormatterProps {
|
|
118
|
+
data: unknown;
|
|
119
|
+
}
|
|
120
|
+
declare function DriveFileFormatter({ data }: DriveFileFormatterProps): react_jsx_runtime.JSX.Element;
|
|
121
|
+
|
|
122
|
+
interface SearchFormatterProps {
|
|
123
|
+
data: unknown;
|
|
124
|
+
}
|
|
125
|
+
declare function SearchFormatter({ data }: SearchFormatterProps): react_jsx_runtime.JSX.Element;
|
|
126
|
+
|
|
127
|
+
interface DocsFormatterProps {
|
|
128
|
+
data: unknown;
|
|
129
|
+
}
|
|
130
|
+
declare function DocsFormatter({ data }: DocsFormatterProps): react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
interface SheetsFormatterProps {
|
|
133
|
+
data: unknown;
|
|
134
|
+
}
|
|
135
|
+
declare function SheetsFormatter({ data }: SheetsFormatterProps): react_jsx_runtime.JSX.Element;
|
|
136
|
+
|
|
137
|
+
interface SlidesFormatterProps {
|
|
138
|
+
data: unknown;
|
|
139
|
+
}
|
|
140
|
+
declare function SlidesFormatter({ data }: SlidesFormatterProps): react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
interface HubspotFormatterProps {
|
|
143
|
+
data: unknown;
|
|
144
|
+
}
|
|
145
|
+
declare function HubspotFormatter({ data }: HubspotFormatterProps): react_jsx_runtime.JSX.Element;
|
|
146
|
+
|
|
147
|
+
interface LinearFormatterProps {
|
|
148
|
+
data: unknown;
|
|
149
|
+
}
|
|
150
|
+
declare function LinearFormatter({ data }: LinearFormatterProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
152
|
+
interface PipedriveFormatterProps {
|
|
153
|
+
data: unknown;
|
|
154
|
+
}
|
|
155
|
+
declare function PipedriveFormatter({ data }: PipedriveFormatterProps): react_jsx_runtime.JSX.Element;
|
|
156
|
+
|
|
157
|
+
interface ComputeFormatterProps {
|
|
158
|
+
data: unknown;
|
|
159
|
+
}
|
|
160
|
+
declare function ComputeFormatter({ data }: ComputeFormatterProps): react_jsx_runtime.JSX.Element;
|
|
161
|
+
|
|
162
|
+
interface ResendFormatterProps {
|
|
163
|
+
data: unknown;
|
|
164
|
+
}
|
|
165
|
+
declare function ResendFormatter({ data }: ResendFormatterProps): react_jsx_runtime.JSX.Element;
|
|
166
|
+
|
|
167
|
+
interface InboxFormatterProps {
|
|
168
|
+
data: unknown;
|
|
169
|
+
}
|
|
170
|
+
declare function InboxFormatter({ data }: InboxFormatterProps): react_jsx_runtime.JSX.Element;
|
|
171
|
+
|
|
172
|
+
interface GenericFormatterProps {
|
|
173
|
+
data: unknown;
|
|
174
|
+
}
|
|
175
|
+
declare function GenericFormatter({ data }: GenericFormatterProps): react_jsx_runtime.JSX.Element;
|
|
176
|
+
|
|
177
|
+
interface DiscordFormatterProps {
|
|
178
|
+
data: unknown;
|
|
179
|
+
}
|
|
180
|
+
declare function DiscordFormatter({ data }: DiscordFormatterProps): react_jsx_runtime.JSX.Element;
|
|
181
|
+
|
|
182
|
+
interface NotionFormatterProps {
|
|
183
|
+
data: unknown;
|
|
184
|
+
}
|
|
185
|
+
declare function NotionFormatter({ data }: NotionFormatterProps): react_jsx_runtime.JSX.Element;
|
|
186
|
+
|
|
187
|
+
interface TwitterFormatterProps {
|
|
188
|
+
data: unknown;
|
|
189
|
+
}
|
|
190
|
+
declare function TwitterFormatter({ data }: TwitterFormatterProps): react_jsx_runtime.JSX.Element;
|
|
191
|
+
|
|
192
|
+
interface TelegramFormatterProps {
|
|
193
|
+
data: unknown;
|
|
194
|
+
}
|
|
195
|
+
declare function TelegramFormatter({ data }: TelegramFormatterProps): react_jsx_runtime.JSX.Element;
|
|
196
|
+
|
|
197
|
+
interface StripeFormatterProps {
|
|
198
|
+
data: unknown;
|
|
199
|
+
}
|
|
200
|
+
declare function StripeFormatter({ data }: StripeFormatterProps): react_jsx_runtime.JSX.Element;
|
|
201
|
+
|
|
202
|
+
interface JiraFormatterProps {
|
|
203
|
+
data: unknown;
|
|
204
|
+
}
|
|
205
|
+
declare function JiraFormatter({ data }: JiraFormatterProps): react_jsx_runtime.JSX.Element;
|
|
206
|
+
|
|
207
|
+
interface SalesforceFormatterProps {
|
|
208
|
+
data: unknown;
|
|
209
|
+
}
|
|
210
|
+
declare function SalesforceFormatter({ data }: SalesforceFormatterProps): react_jsx_runtime.JSX.Element;
|
|
211
|
+
|
|
212
|
+
interface BrevoFormatterProps {
|
|
213
|
+
data: unknown;
|
|
214
|
+
}
|
|
215
|
+
declare function BrevoFormatter({ data }: BrevoFormatterProps): react_jsx_runtime.JSX.Element;
|
|
216
|
+
|
|
217
|
+
interface CalendlyFormatterProps {
|
|
218
|
+
data: unknown;
|
|
219
|
+
}
|
|
220
|
+
declare function CalendlyFormatter({ data }: CalendlyFormatterProps): react_jsx_runtime.JSX.Element;
|
|
221
|
+
|
|
222
|
+
interface TwilioFormatterProps {
|
|
223
|
+
data: unknown;
|
|
224
|
+
}
|
|
225
|
+
declare function TwilioFormatter({ data }: TwilioFormatterProps): react_jsx_runtime.JSX.Element;
|
|
226
|
+
|
|
227
|
+
interface LinkedInFormatterProps {
|
|
228
|
+
data: unknown;
|
|
229
|
+
}
|
|
230
|
+
declare function LinkedInFormatter({ data }: LinkedInFormatterProps): react_jsx_runtime.JSX.Element;
|
|
55
231
|
|
|
56
|
-
export { ProviderIcon, SupyagentToolCall, SupyagentToolResult, getProviderFromToolName, getProviderLabel, humanizeToolName };
|
|
232
|
+
export { BrevoFormatter, CalendarEventFormatter, CalendlyFormatter, CollapsibleResult, type CollapsibleResultProps, ComputeFormatter, DiscordFormatter, DocsFormatter, DriveFileFormatter, EmailFormatter, GenericFormatter, GithubFormatter, HubspotFormatter, InboxFormatter, JiraFormatter, LinearFormatter, LinkedInFormatter, NotionFormatter, PipedriveFormatter, ProviderIcon, ResendFormatter, SalesforceFormatter, SearchFormatter, SheetsFormatter, SlackMessageFormatter, SlidesFormatter, StripeFormatter, type SummaryResult, SupyagentToolAction, SupyagentToolCall, SupyagentToolResult, TelegramFormatter, ToolInput, TwilioFormatter, TwitterFormatter, getProviderFromToolName, getProviderLabel, getSummary, humanizeToolName };
|
package/dist/react.d.ts
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
|
|
3
4
|
interface ToolCallPart {
|
|
4
5
|
type: string;
|
|
6
|
+
toolName?: string;
|
|
7
|
+
toolCallId?: string;
|
|
8
|
+
state?: string;
|
|
9
|
+
input?: Record<string, unknown>;
|
|
10
|
+
output?: unknown;
|
|
5
11
|
toolInvocation?: {
|
|
6
12
|
toolName: string;
|
|
7
13
|
state: string;
|
|
8
14
|
args?: Record<string, unknown>;
|
|
9
15
|
result?: unknown;
|
|
10
16
|
};
|
|
11
|
-
toolName?: string;
|
|
12
|
-
state?: string;
|
|
13
17
|
args?: Record<string, unknown>;
|
|
14
18
|
}
|
|
15
19
|
interface SupyagentToolCallProps {
|
|
@@ -17,40 +21,212 @@ interface SupyagentToolCallProps {
|
|
|
17
21
|
}
|
|
18
22
|
declare function SupyagentToolCall({ part }: SupyagentToolCallProps): react_jsx_runtime.JSX.Element;
|
|
19
23
|
|
|
24
|
+
/**
|
|
25
|
+
* Extract provider/service prefix from a tool name.
|
|
26
|
+
* Tool names follow `{service}_{action}` convention.
|
|
27
|
+
*/
|
|
28
|
+
declare function getProviderFromToolName(toolName: string): string;
|
|
29
|
+
/**
|
|
30
|
+
* Convert a tool name like "gmail_list_messages" to "List messages".
|
|
31
|
+
*/
|
|
32
|
+
declare function humanizeToolName(toolName: string): string;
|
|
33
|
+
/**
|
|
34
|
+
* Get a display label for a provider.
|
|
35
|
+
*/
|
|
36
|
+
declare function getProviderLabel(provider: string): string;
|
|
37
|
+
|
|
20
38
|
interface ToolResultPart {
|
|
21
39
|
type: string;
|
|
40
|
+
toolName?: string;
|
|
41
|
+
state?: string;
|
|
42
|
+
output?: unknown;
|
|
43
|
+
input?: unknown;
|
|
22
44
|
toolInvocation?: {
|
|
23
45
|
toolName: string;
|
|
24
46
|
state: string;
|
|
25
47
|
result?: unknown;
|
|
48
|
+
args?: Record<string, unknown>;
|
|
26
49
|
};
|
|
27
|
-
toolName?: string;
|
|
28
|
-
state?: string;
|
|
29
50
|
result?: unknown;
|
|
51
|
+
args?: Record<string, unknown>;
|
|
30
52
|
}
|
|
31
53
|
interface SupyagentToolResultProps {
|
|
32
54
|
part: ToolResultPart;
|
|
33
55
|
}
|
|
34
56
|
declare function SupyagentToolResult({ part }: SupyagentToolResultProps): react_jsx_runtime.JSX.Element | null;
|
|
35
57
|
|
|
58
|
+
interface SupyagentToolActionProps {
|
|
59
|
+
part: ToolResultPart;
|
|
60
|
+
defaultExpanded?: boolean;
|
|
61
|
+
}
|
|
62
|
+
declare function SupyagentToolAction({ part, defaultExpanded }: SupyagentToolActionProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
|
|
64
|
+
interface ToolInputProps {
|
|
65
|
+
args: Record<string, unknown> | undefined;
|
|
66
|
+
}
|
|
67
|
+
declare function ToolInput({ args }: ToolInputProps): react_jsx_runtime.JSX.Element | null;
|
|
68
|
+
|
|
69
|
+
interface BadgeProps {
|
|
70
|
+
text: string;
|
|
71
|
+
variant?: "default" | "success" | "error" | "warning";
|
|
72
|
+
}
|
|
73
|
+
interface CollapsibleResultProps {
|
|
74
|
+
toolName: string;
|
|
75
|
+
summary: string;
|
|
76
|
+
badge?: BadgeProps;
|
|
77
|
+
defaultExpanded?: boolean;
|
|
78
|
+
children: React.ReactNode;
|
|
79
|
+
}
|
|
80
|
+
declare function CollapsibleResult({ toolName, summary, badge, defaultExpanded, children, }: CollapsibleResultProps): react_jsx_runtime.JSX.Element;
|
|
81
|
+
|
|
36
82
|
interface ProviderIconProps {
|
|
37
83
|
toolName: string;
|
|
38
84
|
className?: string;
|
|
39
85
|
}
|
|
40
86
|
declare function ProviderIcon({ toolName, className }: ProviderIconProps): react_jsx_runtime.JSX.Element;
|
|
41
87
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
declare function
|
|
88
|
+
interface SummaryResult {
|
|
89
|
+
text: string;
|
|
90
|
+
badge?: {
|
|
91
|
+
text: string;
|
|
92
|
+
variant?: "default" | "success" | "error" | "warning";
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
declare function getSummary(formatterType: string, data: unknown, toolName: string): SummaryResult;
|
|
96
|
+
|
|
97
|
+
interface EmailFormatterProps {
|
|
98
|
+
data: unknown;
|
|
99
|
+
}
|
|
100
|
+
declare function EmailFormatter({ data }: EmailFormatterProps): react_jsx_runtime.JSX.Element;
|
|
101
|
+
|
|
102
|
+
interface CalendarEventFormatterProps {
|
|
103
|
+
data: unknown;
|
|
104
|
+
}
|
|
105
|
+
declare function CalendarEventFormatter({ data }: CalendarEventFormatterProps): react_jsx_runtime.JSX.Element;
|
|
106
|
+
|
|
107
|
+
interface SlackMessageFormatterProps {
|
|
108
|
+
data: unknown;
|
|
109
|
+
}
|
|
110
|
+
declare function SlackMessageFormatter({ data }: SlackMessageFormatterProps): react_jsx_runtime.JSX.Element;
|
|
111
|
+
|
|
112
|
+
interface GithubFormatterProps {
|
|
113
|
+
data: unknown;
|
|
114
|
+
}
|
|
115
|
+
declare function GithubFormatter({ data }: GithubFormatterProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
interface DriveFileFormatterProps {
|
|
118
|
+
data: unknown;
|
|
119
|
+
}
|
|
120
|
+
declare function DriveFileFormatter({ data }: DriveFileFormatterProps): react_jsx_runtime.JSX.Element;
|
|
121
|
+
|
|
122
|
+
interface SearchFormatterProps {
|
|
123
|
+
data: unknown;
|
|
124
|
+
}
|
|
125
|
+
declare function SearchFormatter({ data }: SearchFormatterProps): react_jsx_runtime.JSX.Element;
|
|
126
|
+
|
|
127
|
+
interface DocsFormatterProps {
|
|
128
|
+
data: unknown;
|
|
129
|
+
}
|
|
130
|
+
declare function DocsFormatter({ data }: DocsFormatterProps): react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
interface SheetsFormatterProps {
|
|
133
|
+
data: unknown;
|
|
134
|
+
}
|
|
135
|
+
declare function SheetsFormatter({ data }: SheetsFormatterProps): react_jsx_runtime.JSX.Element;
|
|
136
|
+
|
|
137
|
+
interface SlidesFormatterProps {
|
|
138
|
+
data: unknown;
|
|
139
|
+
}
|
|
140
|
+
declare function SlidesFormatter({ data }: SlidesFormatterProps): react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
interface HubspotFormatterProps {
|
|
143
|
+
data: unknown;
|
|
144
|
+
}
|
|
145
|
+
declare function HubspotFormatter({ data }: HubspotFormatterProps): react_jsx_runtime.JSX.Element;
|
|
146
|
+
|
|
147
|
+
interface LinearFormatterProps {
|
|
148
|
+
data: unknown;
|
|
149
|
+
}
|
|
150
|
+
declare function LinearFormatter({ data }: LinearFormatterProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
152
|
+
interface PipedriveFormatterProps {
|
|
153
|
+
data: unknown;
|
|
154
|
+
}
|
|
155
|
+
declare function PipedriveFormatter({ data }: PipedriveFormatterProps): react_jsx_runtime.JSX.Element;
|
|
156
|
+
|
|
157
|
+
interface ComputeFormatterProps {
|
|
158
|
+
data: unknown;
|
|
159
|
+
}
|
|
160
|
+
declare function ComputeFormatter({ data }: ComputeFormatterProps): react_jsx_runtime.JSX.Element;
|
|
161
|
+
|
|
162
|
+
interface ResendFormatterProps {
|
|
163
|
+
data: unknown;
|
|
164
|
+
}
|
|
165
|
+
declare function ResendFormatter({ data }: ResendFormatterProps): react_jsx_runtime.JSX.Element;
|
|
166
|
+
|
|
167
|
+
interface InboxFormatterProps {
|
|
168
|
+
data: unknown;
|
|
169
|
+
}
|
|
170
|
+
declare function InboxFormatter({ data }: InboxFormatterProps): react_jsx_runtime.JSX.Element;
|
|
171
|
+
|
|
172
|
+
interface GenericFormatterProps {
|
|
173
|
+
data: unknown;
|
|
174
|
+
}
|
|
175
|
+
declare function GenericFormatter({ data }: GenericFormatterProps): react_jsx_runtime.JSX.Element;
|
|
176
|
+
|
|
177
|
+
interface DiscordFormatterProps {
|
|
178
|
+
data: unknown;
|
|
179
|
+
}
|
|
180
|
+
declare function DiscordFormatter({ data }: DiscordFormatterProps): react_jsx_runtime.JSX.Element;
|
|
181
|
+
|
|
182
|
+
interface NotionFormatterProps {
|
|
183
|
+
data: unknown;
|
|
184
|
+
}
|
|
185
|
+
declare function NotionFormatter({ data }: NotionFormatterProps): react_jsx_runtime.JSX.Element;
|
|
186
|
+
|
|
187
|
+
interface TwitterFormatterProps {
|
|
188
|
+
data: unknown;
|
|
189
|
+
}
|
|
190
|
+
declare function TwitterFormatter({ data }: TwitterFormatterProps): react_jsx_runtime.JSX.Element;
|
|
191
|
+
|
|
192
|
+
interface TelegramFormatterProps {
|
|
193
|
+
data: unknown;
|
|
194
|
+
}
|
|
195
|
+
declare function TelegramFormatter({ data }: TelegramFormatterProps): react_jsx_runtime.JSX.Element;
|
|
196
|
+
|
|
197
|
+
interface StripeFormatterProps {
|
|
198
|
+
data: unknown;
|
|
199
|
+
}
|
|
200
|
+
declare function StripeFormatter({ data }: StripeFormatterProps): react_jsx_runtime.JSX.Element;
|
|
201
|
+
|
|
202
|
+
interface JiraFormatterProps {
|
|
203
|
+
data: unknown;
|
|
204
|
+
}
|
|
205
|
+
declare function JiraFormatter({ data }: JiraFormatterProps): react_jsx_runtime.JSX.Element;
|
|
206
|
+
|
|
207
|
+
interface SalesforceFormatterProps {
|
|
208
|
+
data: unknown;
|
|
209
|
+
}
|
|
210
|
+
declare function SalesforceFormatter({ data }: SalesforceFormatterProps): react_jsx_runtime.JSX.Element;
|
|
211
|
+
|
|
212
|
+
interface BrevoFormatterProps {
|
|
213
|
+
data: unknown;
|
|
214
|
+
}
|
|
215
|
+
declare function BrevoFormatter({ data }: BrevoFormatterProps): react_jsx_runtime.JSX.Element;
|
|
216
|
+
|
|
217
|
+
interface CalendlyFormatterProps {
|
|
218
|
+
data: unknown;
|
|
219
|
+
}
|
|
220
|
+
declare function CalendlyFormatter({ data }: CalendlyFormatterProps): react_jsx_runtime.JSX.Element;
|
|
221
|
+
|
|
222
|
+
interface TwilioFormatterProps {
|
|
223
|
+
data: unknown;
|
|
224
|
+
}
|
|
225
|
+
declare function TwilioFormatter({ data }: TwilioFormatterProps): react_jsx_runtime.JSX.Element;
|
|
226
|
+
|
|
227
|
+
interface LinkedInFormatterProps {
|
|
228
|
+
data: unknown;
|
|
229
|
+
}
|
|
230
|
+
declare function LinkedInFormatter({ data }: LinkedInFormatterProps): react_jsx_runtime.JSX.Element;
|
|
55
231
|
|
|
56
|
-
export { ProviderIcon, SupyagentToolCall, SupyagentToolResult, getProviderFromToolName, getProviderLabel, humanizeToolName };
|
|
232
|
+
export { BrevoFormatter, CalendarEventFormatter, CalendlyFormatter, CollapsibleResult, type CollapsibleResultProps, ComputeFormatter, DiscordFormatter, DocsFormatter, DriveFileFormatter, EmailFormatter, GenericFormatter, GithubFormatter, HubspotFormatter, InboxFormatter, JiraFormatter, LinearFormatter, LinkedInFormatter, NotionFormatter, PipedriveFormatter, ProviderIcon, ResendFormatter, SalesforceFormatter, SearchFormatter, SheetsFormatter, SlackMessageFormatter, SlidesFormatter, StripeFormatter, type SummaryResult, SupyagentToolAction, SupyagentToolCall, SupyagentToolResult, TelegramFormatter, ToolInput, TwilioFormatter, TwitterFormatter, getProviderFromToolName, getProviderLabel, getSummary, humanizeToolName };
|