@getcatalystiq/agent-plane-ui 0.1.6 → 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/index.d.cts DELETED
@@ -1,632 +0,0 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React$1 from 'react';
3
- import React__default, { ReactNode } from 'react';
4
- import { SWRConfiguration, SWRResponse } from 'swr';
5
- import { ClassValue } from 'clsx';
6
- import * as class_variance_authority_types from 'class-variance-authority/types';
7
- import { VariantProps } from 'class-variance-authority';
8
- import { DailyAgentStat } from './charts.cjs';
9
-
10
- /**
11
- * Structural interface for the AgentPlane SDK client.
12
- * Declares all methods the UI actually uses, avoiding a hard compile-time
13
- * dependency on `@getcatalystiq/agent-plane` (which is a peer dependency and
14
- * may not be installed in all development environments).
15
- */
16
- interface AgentPlaneClient {
17
- agents: {
18
- list(params?: {
19
- limit?: number;
20
- offset?: number;
21
- }): Promise<unknown>;
22
- get(agentId: string): Promise<unknown>;
23
- create(params: Record<string, unknown>): Promise<unknown>;
24
- update(agentId: string, params: Record<string, unknown>): Promise<unknown>;
25
- delete(agentId: string): Promise<void>;
26
- skills: {
27
- list(agentId: string): Promise<unknown[]>;
28
- get(agentId: string, folder: string): Promise<unknown>;
29
- create(agentId: string, skill: Record<string, unknown>): Promise<unknown>;
30
- update(agentId: string, folder: string, params: Record<string, unknown>): Promise<unknown>;
31
- delete(agentId: string, folder: string): Promise<void>;
32
- };
33
- plugins: {
34
- list(agentId: string): Promise<unknown[]>;
35
- add(agentId: string, plugin: Record<string, unknown>): Promise<unknown>;
36
- remove(agentId: string, marketplaceId: string, pluginName: string): Promise<void>;
37
- };
38
- };
39
- runs: {
40
- list(params?: Record<string, unknown>): Promise<unknown>;
41
- get(runId: string): Promise<unknown>;
42
- cancel(runId: string): Promise<unknown>;
43
- transcript(runId: string): Promise<unknown>;
44
- transcriptArray(runId: string): Promise<unknown[]>;
45
- };
46
- sessions: {
47
- list(params?: Record<string, unknown>): Promise<unknown>;
48
- get(sessionId: string): Promise<unknown>;
49
- stop(sessionId: string): Promise<unknown>;
50
- };
51
- connectors: {
52
- list(agentId: string): Promise<unknown[]>;
53
- saveApiKey(agentId: string, params: {
54
- toolkit: string;
55
- api_key: string;
56
- }): Promise<unknown>;
57
- initiateOauth(agentId: string, toolkit: string): Promise<{
58
- redirect_url: string;
59
- }>;
60
- availableToolkits(): Promise<unknown[]>;
61
- availableTools(toolkit: string): Promise<unknown[]>;
62
- };
63
- customConnectors: {
64
- listServers(): Promise<unknown[]>;
65
- list(agentId: string): Promise<unknown[]>;
66
- delete(agentId: string, serverId: string): Promise<void>;
67
- updateAllowedTools(agentId: string, serverId: string, allowedTools: string[]): Promise<void>;
68
- listTools(agentId: string, serverId: string): Promise<unknown[]>;
69
- initiateOauth(agentId: string, serverId: string): Promise<{
70
- redirectUrl: string;
71
- }>;
72
- createServer?(params: Record<string, unknown>): Promise<unknown>;
73
- deleteServer?(serverId: string): Promise<void>;
74
- };
75
- models: {
76
- list(): Promise<unknown[]>;
77
- };
78
- dashboard: {
79
- stats(): Promise<unknown>;
80
- charts(params?: {
81
- days?: number;
82
- }): Promise<unknown[]>;
83
- };
84
- tenants: {
85
- getMe(): Promise<unknown>;
86
- updateMe(params: Record<string, unknown>): Promise<unknown>;
87
- deleteMe?(): Promise<void>;
88
- };
89
- keys: {
90
- list?(): Promise<unknown[]>;
91
- create?(params: {
92
- name: string;
93
- }): Promise<unknown>;
94
- revoke?(keyId: string): Promise<void>;
95
- };
96
- composio: {
97
- toolkits(): Promise<unknown[]>;
98
- tools(toolkit: string): Promise<unknown[]>;
99
- };
100
- pluginMarketplaces: {
101
- list(): Promise<unknown[]>;
102
- get?(marketplaceId: string): Promise<unknown>;
103
- listPlugins(marketplaceId: string): Promise<unknown[]>;
104
- create?(params: Record<string, unknown>): Promise<unknown>;
105
- delete?(marketplaceId: string): Promise<void>;
106
- updateToken?(marketplaceId: string, params: Record<string, unknown>): Promise<unknown>;
107
- };
108
- }
109
- interface LinkComponentProps {
110
- href: string;
111
- children: React.ReactNode;
112
- className?: string;
113
- }
114
- interface NavigationProps {
115
- onNavigate: (path: string) => void;
116
- LinkComponent?: React.ComponentType<LinkComponentProps>;
117
- basePath?: string;
118
- }
119
- interface AgentPlaneProviderProps extends NavigationProps {
120
- client: AgentPlaneClient;
121
- onAuthError?: ((error: Error) => void) | undefined;
122
- children: React.ReactNode;
123
- }
124
-
125
- interface NavigationContextValue {
126
- onNavigate: (path: string) => void;
127
- LinkComponent: React__default.ComponentType<LinkComponentProps>;
128
- basePath: string;
129
- }
130
- /**
131
- * AgentPlaneProvider — wraps your app with the AgentPlane client and
132
- * navigation contexts.
133
- *
134
- * Split into two contexts so that navigation-related changes (basePath,
135
- * LinkComponent) never cause data-fetching components to re-render and
136
- * vice-versa.
137
- */
138
- declare function AgentPlaneProvider({ client, onNavigate, LinkComponent, onAuthError, basePath, children, }: AgentPlaneProviderProps): react_jsx_runtime.JSX.Element;
139
- /**
140
- * Returns the AgentPlane SDK client instance provided to the nearest
141
- * `<AgentPlaneProvider>`.
142
- */
143
- declare function useAgentPlaneClient(): AgentPlaneClient;
144
- /**
145
- * Returns the `onAuthError` callback (if any) from the nearest provider.
146
- * Useful inside data-fetching hooks for handling 401 responses.
147
- */
148
- declare function useAuthError(): ((error: Error) => void) | undefined;
149
- /**
150
- * Returns navigation helpers from the nearest `<AgentPlaneProvider>`.
151
- */
152
- declare function useNavigation(): NavigationContextValue;
153
-
154
- /**
155
- * Thin wrapper around SWR that automatically injects the AgentPlane SDK client
156
- * into the fetcher function.
157
- *
158
- * ```ts
159
- * const { data, error } = useApi("agents", (client) => client.agents.list());
160
- * ```
161
- *
162
- * Pass `null` as the key to skip fetching (conditional fetching).
163
- */
164
- declare function useApi<T = unknown>(key: string | null, fetcher: (client: AgentPlaneClient) => Promise<T>, options?: SWRConfiguration<T>): SWRResponse<T>;
165
-
166
- declare function cn(...inputs: ClassValue[]): string;
167
-
168
- declare const buttonVariants: (props?: ({
169
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
170
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
171
- } & class_variance_authority_types.ClassProp) | undefined) => string;
172
- interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
173
- }
174
- declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
175
-
176
- declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
177
- declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
178
- declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
179
- declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
180
- declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
181
-
182
- declare const badgeVariants: (props?: ({
183
- variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
184
- } & class_variance_authority_types.ClassProp) | undefined) => string;
185
- interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
186
- }
187
- declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
188
-
189
- declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
190
-
191
- declare function Select({ className, ...props }: React$1.SelectHTMLAttributes<HTMLSelectElement>): react_jsx_runtime.JSX.Element;
192
-
193
- type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement>;
194
- declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
195
-
196
- interface FormFieldProps {
197
- label: string;
198
- children: React.ReactNode;
199
- error?: string | null;
200
- hint?: string;
201
- }
202
- declare function FormField({ label, children, error, hint }: FormFieldProps): react_jsx_runtime.JSX.Element;
203
-
204
- declare function FormError({ error }: {
205
- error?: string | null | undefined;
206
- }): react_jsx_runtime.JSX.Element | null;
207
-
208
- interface SectionHeaderProps {
209
- title: string;
210
- children?: React.ReactNode;
211
- className?: string;
212
- }
213
- declare function SectionHeader({ title, children, className }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
214
-
215
- interface DetailPageHeaderProps {
216
- backHref: string;
217
- backLabel: string;
218
- title: React$1.ReactNode;
219
- actions?: React$1.ReactNode;
220
- badge?: React$1.ReactNode;
221
- subtitle?: React$1.ReactNode;
222
- LinkComponent?: React$1.ComponentType<{
223
- href: string;
224
- children: React$1.ReactNode;
225
- className?: string;
226
- }>;
227
- }
228
- declare function DetailPageHeader({ backHref, backLabel, title, actions, badge, subtitle, LinkComponent }: DetailPageHeaderProps): react_jsx_runtime.JSX.Element;
229
-
230
- declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
231
-
232
- interface MetricCardProps {
233
- label: string;
234
- children: React.ReactNode;
235
- className?: string;
236
- }
237
- declare function MetricCard({ label, children, className }: MetricCardProps): react_jsx_runtime.JSX.Element;
238
-
239
- declare function AdminTable({ children, footer, className }: {
240
- children: React.ReactNode;
241
- footer?: React.ReactNode;
242
- className?: string;
243
- }): react_jsx_runtime.JSX.Element;
244
- declare function AdminTableHead({ children }: {
245
- children: React.ReactNode;
246
- }): react_jsx_runtime.JSX.Element;
247
- declare function Th({ children, className, align }: {
248
- children?: React.ReactNode;
249
- className?: string;
250
- align?: "left" | "right";
251
- }): react_jsx_runtime.JSX.Element;
252
- declare function AdminTableRow({ children, className }: {
253
- children: React.ReactNode;
254
- className?: string;
255
- }): react_jsx_runtime.JSX.Element;
256
- declare function EmptyRow({ colSpan, children }: {
257
- colSpan: number;
258
- children?: React.ReactNode;
259
- }): react_jsx_runtime.JSX.Element;
260
-
261
- declare function PaginationBar({ page, pageSize, total, buildHref, onNavigate, LinkComponent, }: {
262
- page: number;
263
- pageSize: number;
264
- total: number;
265
- buildHref: (page: number, pageSize: number) => string;
266
- onNavigate?: (href: string) => void;
267
- LinkComponent?: React__default.ComponentType<{
268
- href: string;
269
- children: React__default.ReactNode;
270
- className?: string;
271
- }>;
272
- }): react_jsx_runtime.JSX.Element;
273
- declare function parsePaginationParams(pageParam: string | undefined, pageSizeParam: string | undefined, defaultPageSize?: number): {
274
- page: number;
275
- pageSize: number;
276
- offset: number;
277
- };
278
-
279
- interface Tab {
280
- label: string;
281
- content: ReactNode;
282
- }
283
- declare function Tabs({ tabs, defaultTab }: {
284
- tabs: Tab[];
285
- defaultTab?: number;
286
- }): react_jsx_runtime.JSX.Element;
287
-
288
- interface DialogProps {
289
- open: boolean;
290
- onOpenChange: (open: boolean) => void;
291
- children: React$1.ReactNode;
292
- }
293
- declare function Dialog({ open, onOpenChange, children }: DialogProps): react_jsx_runtime.JSX.Element | null;
294
- interface DialogContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
295
- children: React$1.ReactNode;
296
- }
297
- declare function DialogContent({ className, children, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
298
- declare function DialogHeader({ className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
299
- declare function DialogBody({ className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
300
- declare function DialogFooter({ className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
301
- declare function DialogTitle({ className, children, ...props }: React$1.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
302
- declare function DialogDescription({ className, children, ...props }: React$1.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
303
-
304
- interface ConfirmDialogProps {
305
- open: boolean;
306
- onOpenChange: (open: boolean) => void;
307
- title: string;
308
- children: React.ReactNode;
309
- confirmLabel?: string;
310
- loadingLabel?: string;
311
- loading?: boolean;
312
- error?: string;
313
- onConfirm: () => void;
314
- variant?: "destructive" | "default";
315
- }
316
- declare function ConfirmDialog({ open, onOpenChange, title, children, confirmLabel, loadingLabel, loading, error, onConfirm, variant, }: ConfirmDialogProps): react_jsx_runtime.JSX.Element;
317
-
318
- declare function CopyButton({ text, className }: {
319
- text: string;
320
- className?: string;
321
- }): react_jsx_runtime.JSX.Element;
322
-
323
- declare function RunStatusBadge({ status }: {
324
- status: string;
325
- }): react_jsx_runtime.JSX.Element;
326
-
327
- declare function RunSourceBadge({ triggeredBy }: {
328
- triggeredBy: string;
329
- }): react_jsx_runtime.JSX.Element;
330
-
331
- declare function LocalDate({ value, fallback }: {
332
- value: string | null;
333
- fallback?: string;
334
- }): react_jsx_runtime.JSX.Element;
335
-
336
- interface DashboardStats {
337
- agent_count: number;
338
- total_runs: number;
339
- active_runs: number;
340
- total_spend: number;
341
- session_count: number;
342
- }
343
- interface DashboardData {
344
- stats: DashboardStats;
345
- daily_stats: DailyAgentStat[];
346
- }
347
- interface DashboardPageProps {
348
- /** Optional initial data for SSR/RSC hosts */
349
- initialData?: DashboardData;
350
- /** Optional chart component — pass RunCharts from @getcatalystiq/agent-plane-ui/charts */
351
- chartComponent?: React.ComponentType<{
352
- stats: DailyAgentStat[];
353
- }>;
354
- }
355
- declare function DashboardPage({ initialData, chartComponent: ChartComponent }: DashboardPageProps): react_jsx_runtime.JSX.Element;
356
-
357
- interface RunItem {
358
- id: string;
359
- agent_id: string;
360
- agent_name: string;
361
- tenant_id: string;
362
- status: string;
363
- prompt: string;
364
- cost_usd: number;
365
- num_turns: number;
366
- duration_ms: number;
367
- total_input_tokens: number;
368
- total_output_tokens: number;
369
- triggered_by: string;
370
- error_type: string | null;
371
- started_at: string | null;
372
- completed_at: string | null;
373
- created_at: string;
374
- }
375
- interface RunListResponse {
376
- data: RunItem[];
377
- limit: number;
378
- offset: number;
379
- has_more: boolean;
380
- }
381
- interface RunListPageProps {
382
- /** Optional initial data for SSR hosts */
383
- initialData?: RunListResponse;
384
- }
385
- declare function RunListPage({ initialData }: RunListPageProps): react_jsx_runtime.JSX.Element;
386
-
387
- interface RunDetail {
388
- id: string;
389
- agent_id: string;
390
- tenant_id: string;
391
- status: string;
392
- prompt: string;
393
- cost_usd: number | null;
394
- num_turns: number;
395
- duration_ms: number;
396
- total_input_tokens: number;
397
- total_output_tokens: number;
398
- triggered_by: string;
399
- runner: string | null;
400
- error_type: string | null;
401
- error_messages: string[];
402
- result_summary: string | null;
403
- sandbox_id: string | null;
404
- transcript_blob_url: string | null;
405
- started_at: string | null;
406
- completed_at: string | null;
407
- created_at: string;
408
- created_by_key_id: string | null;
409
- agent_model?: string;
410
- requested_by_key_name?: string | null;
411
- }
412
- interface TranscriptEvent$1 {
413
- type: string;
414
- [key: string]: unknown;
415
- }
416
- interface RunDetailPageProps {
417
- runId: string;
418
- initialData?: RunDetail;
419
- initialTranscript?: TranscriptEvent$1[];
420
- }
421
- declare function RunDetailPage({ runId, initialData, initialTranscript }: RunDetailPageProps): react_jsx_runtime.JSX.Element;
422
-
423
- interface TranscriptEvent {
424
- type: string;
425
- [key: string]: unknown;
426
- }
427
- declare function TranscriptViewer({ transcript, prompt }: {
428
- transcript: TranscriptEvent[];
429
- prompt?: string;
430
- }): react_jsx_runtime.JSX.Element;
431
-
432
- interface McpServer {
433
- id: string;
434
- name: string;
435
- slug: string;
436
- description: string;
437
- logo_url: string | null;
438
- base_url: string;
439
- mcp_endpoint_path: string;
440
- client_id: string | null;
441
- created_at: string;
442
- connection_count: number;
443
- active_count: number;
444
- }
445
- interface McpServerListPageProps {
446
- initialData?: McpServer[];
447
- }
448
- declare function McpServerListPage({ initialData }: McpServerListPageProps): react_jsx_runtime.JSX.Element;
449
-
450
- interface Marketplace {
451
- id: string;
452
- name: string;
453
- github_repo: string;
454
- created_at: string;
455
- agent_count: number;
456
- is_owned: boolean;
457
- }
458
- interface PluginMarketplaceListPageProps {
459
- initialData?: Marketplace[];
460
- }
461
- declare function PluginMarketplaceListPage({ initialData }: PluginMarketplaceListPageProps): react_jsx_runtime.JSX.Element;
462
-
463
- interface MarketplaceDetail {
464
- id: string;
465
- name: string;
466
- github_repo: string;
467
- has_token: boolean;
468
- created_at: string;
469
- }
470
- interface Plugin {
471
- name: string;
472
- displayName: string;
473
- description?: string;
474
- version?: string;
475
- hasAgents: boolean;
476
- hasSkills: boolean;
477
- hasMcpJson: boolean;
478
- }
479
- interface PluginsResponse {
480
- ok: boolean;
481
- data: Plugin[];
482
- message?: string;
483
- }
484
- interface PluginMarketplaceDetailPageProps {
485
- marketplaceId: string;
486
- initialData?: MarketplaceDetail;
487
- initialPlugins?: PluginsResponse;
488
- }
489
- declare function PluginMarketplaceDetailPage({ marketplaceId, initialData, initialPlugins }: PluginMarketplaceDetailPageProps): react_jsx_runtime.JSX.Element;
490
-
491
- interface Tenant {
492
- id: string;
493
- name: string;
494
- slug: string;
495
- status: "active" | "suspended";
496
- timezone: string;
497
- monthly_budget_usd: number;
498
- logo_url: string | null;
499
- }
500
- interface ApiKey {
501
- id: string;
502
- name: string;
503
- key_prefix: string;
504
- scopes: string[];
505
- last_used_at: string | null;
506
- expires_at: string | null;
507
- revoked_at: string | null;
508
- created_at: string;
509
- }
510
- interface SettingsData {
511
- tenant: Tenant;
512
- api_keys: ApiKey[];
513
- }
514
- interface SettingsPageProps {
515
- initialData?: SettingsData;
516
- /** If true, hides the danger zone (delete company) */
517
- hideDangerZone?: boolean;
518
- }
519
- declare function SettingsPage({ initialData, hideDangerZone }: SettingsPageProps): react_jsx_runtime.JSX.Element;
520
-
521
- declare function AgentListPage(): react_jsx_runtime.JSX.Element;
522
-
523
- interface AgentDetailPageProps {
524
- agentId: string;
525
- /** Base URL for A2A endpoints (e.g. "https://app.example.com") */
526
- a2aBaseUrl?: string;
527
- /** Tenant slug (needed for A2A URLs) */
528
- tenantSlug?: string;
529
- }
530
- declare function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug }: AgentDetailPageProps): react_jsx_runtime.JSX.Element;
531
-
532
- interface Agent {
533
- id: string;
534
- name: string;
535
- description: string | null;
536
- model: string;
537
- runner?: string | null;
538
- permission_mode: string;
539
- max_turns: number;
540
- max_budget_usd: number;
541
- max_runtime_seconds: number;
542
- }
543
- interface AgentEditFormProps {
544
- agent: Agent;
545
- onSaved?: () => void;
546
- }
547
- declare function AgentEditForm({ agent, onSaved }: AgentEditFormProps): react_jsx_runtime.JSX.Element;
548
-
549
- interface Props$6 {
550
- agentId: string;
551
- toolkits: string[];
552
- composioAllowedTools: string[];
553
- onChanged?: () => void;
554
- }
555
- declare function AgentConnectorsManager({ agentId, toolkits: initialToolkits, composioAllowedTools: initialAllowedTools, onChanged }: Props$6): react_jsx_runtime.JSX.Element;
556
-
557
- interface AgentSkill {
558
- folder: string;
559
- files: Array<{
560
- path: string;
561
- content: string;
562
- }>;
563
- }
564
- interface Props$5 {
565
- agentId: string;
566
- initialSkills: AgentSkill[];
567
- onSaved?: () => void;
568
- }
569
- declare function AgentSkillManager({ agentId, initialSkills, onSaved }: Props$5): react_jsx_runtime.JSX.Element;
570
-
571
- interface AgentPlugin {
572
- marketplace_id: string;
573
- plugin_name: string;
574
- }
575
- interface Props$4 {
576
- agentId: string;
577
- initialPlugins: AgentPlugin[];
578
- onSaved?: () => void;
579
- }
580
- declare function AgentPluginManager({ agentId, initialPlugins, onSaved }: Props$4): react_jsx_runtime.JSX.Element;
581
-
582
- type ScheduleFrequency = "manual" | "hourly" | "daily" | "weekdays" | "weekly";
583
- interface Schedule {
584
- id: string;
585
- agent_id: string;
586
- name: string | null;
587
- frequency: ScheduleFrequency;
588
- time: string | null;
589
- day_of_week: number | null;
590
- prompt: string | null;
591
- enabled: boolean;
592
- last_run_at: string | null;
593
- next_run_at: string | null;
594
- created_at: string;
595
- updated_at: string;
596
- }
597
- interface Props$3 {
598
- initialSchedules: Schedule[];
599
- timezone: string;
600
- }
601
- declare function AgentScheduleForm({ initialSchedules, timezone }: Props$3): react_jsx_runtime.JSX.Element;
602
-
603
- interface Props$2 {
604
- agentId: string;
605
- }
606
- declare function AgentRuns({ agentId }: Props$2): react_jsx_runtime.JSX.Element;
607
-
608
- interface Props$1 {
609
- agentId: string;
610
- tenantSlug: string;
611
- agentSlug: string;
612
- baseUrl: string;
613
- initialEnabled: boolean;
614
- initialTags: string[];
615
- onChanged?: () => void;
616
- }
617
- declare function AgentA2aInfo({ agentId, tenantSlug, agentSlug, baseUrl, initialEnabled, initialTags, onChanged, }: Props$1): react_jsx_runtime.JSX.Element;
618
-
619
- interface ModelSelectorProps {
620
- value: string;
621
- onChange: (modelId: string) => void;
622
- disabled?: boolean;
623
- }
624
- declare function ModelSelector({ value, onChange, disabled }: ModelSelectorProps): react_jsx_runtime.JSX.Element;
625
-
626
- interface Props {
627
- value: string[];
628
- onChange: (value: string[]) => void;
629
- }
630
- declare function ToolkitMultiselect({ value, onChange }: Props): react_jsx_runtime.JSX.Element;
631
-
632
- export { AdminTable, AdminTableHead, AdminTableRow, AgentA2aInfo, AgentConnectorsManager, AgentDetailPage, AgentEditForm, AgentListPage, type AgentPlaneClient, AgentPlaneProvider, type AgentPlaneProviderProps, AgentPluginManager, AgentRuns, AgentScheduleForm, AgentSkillManager, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardHeader, CardTitle, ConfirmDialog, CopyButton, DashboardPage, type DashboardPageProps, DetailPageHeader, Dialog, DialogBody, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, EmptyRow, FormError, FormField, Input, type LinkComponentProps, LocalDate, McpServerListPage, type McpServerListPageProps, MetricCard, ModelSelector, type NavigationProps, PaginationBar, PluginMarketplaceDetailPage, type PluginMarketplaceDetailPageProps, PluginMarketplaceListPage, type PluginMarketplaceListPageProps, RunDetailPage, type RunDetailPageProps, RunListPage, type RunListPageProps, RunSourceBadge, RunStatusBadge, SectionHeader, Select, SettingsPage, type SettingsPageProps, Skeleton, Tabs, Textarea, type TextareaProps, Th, ToolkitMultiselect, TranscriptViewer, badgeVariants, buttonVariants, cn, parsePaginationParams, useAgentPlaneClient, useApi, useAuthError, useNavigation };