@xenosystem/agent-interface-ui 0.1.7 → 0.1.8
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/adapters/agentHostPlatformBridge.d.ts.map +1 -1
- package/dist/adapters/agentHostPlatformBridge.js +131 -36
- package/dist/adapters/agentHostPlatformBridge.js.map +1 -1
- package/dist/components/agent/AgentInterface.d.ts.map +1 -1
- package/dist/components/agent/AgentInterface.js +322 -32
- package/dist/components/agent/AgentInterface.js.map +1 -1
- package/dist/components/agent/AgentView.d.ts +1 -0
- package/dist/components/agent/AgentView.d.ts.map +1 -1
- package/dist/components/agent/AgentView.js +144 -12
- package/dist/components/agent/AgentView.js.map +1 -1
- package/dist/platformApiTypes.d.ts +49 -0
- package/dist/platformApiTypes.d.ts.map +1 -1
- package/dist/stores/agentChatStore.d.ts +22 -5
- package/dist/stores/agentChatStore.d.ts.map +1 -1
- package/dist/stores/agentChatStore.js +187 -50
- package/dist/stores/agentChatStore.js.map +1 -1
- package/package.json +5 -5
|
@@ -852,6 +852,9 @@ export interface XenoAPI {
|
|
|
852
852
|
success: boolean;
|
|
853
853
|
requestId?: string;
|
|
854
854
|
error?: string;
|
|
855
|
+
hostBinding?: import('@xenosystem/agent-interface-contract').AgentSessionHostBindingV1;
|
|
856
|
+
activeLane?: import('@xenosystem/agent-interface-contract').ProviderLaneProjectionV1;
|
|
857
|
+
lanes?: import('@xenosystem/agent-interface-contract').ProviderLaneProjectionV1[];
|
|
855
858
|
}>;
|
|
856
859
|
cancel: (requestId: string) => Promise<{
|
|
857
860
|
success: boolean;
|
|
@@ -1394,16 +1397,59 @@ export interface XenoAPI {
|
|
|
1394
1397
|
error: string | null;
|
|
1395
1398
|
}>;
|
|
1396
1399
|
ptyStart: (params: {
|
|
1400
|
+
conversationId?: string;
|
|
1397
1401
|
cwd?: string;
|
|
1398
1402
|
allowedDirs: string[];
|
|
1399
1403
|
cols?: number;
|
|
1400
1404
|
rows?: number;
|
|
1405
|
+
profile?: import('@xenosystem/agent-interface-contract').ProviderSessionPtyProfile;
|
|
1401
1406
|
}) => Promise<{
|
|
1402
1407
|
success: boolean;
|
|
1403
1408
|
terminalId: string | null;
|
|
1404
1409
|
cwd: string | null;
|
|
1410
|
+
code?: import('@xenosystem/agent-interface-contract').AgentCockpitErrorCode;
|
|
1405
1411
|
error: string | null;
|
|
1406
1412
|
}>;
|
|
1413
|
+
providerNativeAttach?: (params: {
|
|
1414
|
+
conversationId: string;
|
|
1415
|
+
laneId: string;
|
|
1416
|
+
expectedLaneRevision: number;
|
|
1417
|
+
cols?: number;
|
|
1418
|
+
rows?: number;
|
|
1419
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentProviderNativeAttachResult>;
|
|
1420
|
+
conversationResume?: (params: {
|
|
1421
|
+
conversationId: string;
|
|
1422
|
+
expectedWorkspaceEpochId?: string;
|
|
1423
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentConversationResumeResult>;
|
|
1424
|
+
providerLanesList?: (params: {
|
|
1425
|
+
conversationId: string;
|
|
1426
|
+
includeHistorical?: boolean;
|
|
1427
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentProviderLaneListResult>;
|
|
1428
|
+
providerNativeDetach?: (params: {
|
|
1429
|
+
conversationId: string;
|
|
1430
|
+
laneId: string;
|
|
1431
|
+
terminalId?: string;
|
|
1432
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentProviderNativeDetachResult>;
|
|
1433
|
+
providerNativeReattach?: (params: {
|
|
1434
|
+
conversationId: string;
|
|
1435
|
+
laneId: string;
|
|
1436
|
+
terminalId: string;
|
|
1437
|
+
cols?: number;
|
|
1438
|
+
rows?: number;
|
|
1439
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentProviderNativeReattachResult>;
|
|
1440
|
+
providerNativeStop?: (params: {
|
|
1441
|
+
conversationId: string;
|
|
1442
|
+
laneId: string;
|
|
1443
|
+
terminalId?: string;
|
|
1444
|
+
force?: boolean;
|
|
1445
|
+
reason?: string;
|
|
1446
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentProviderNativeStopResult>;
|
|
1447
|
+
providerReconcile?: (params: {
|
|
1448
|
+
conversationId: string;
|
|
1449
|
+
laneId: string;
|
|
1450
|
+
expectedLaneRevision: number;
|
|
1451
|
+
acknowledgePartialContext?: boolean;
|
|
1452
|
+
}) => Promise<import('@xenosystem/agent-interface-contract').AgentProviderReconcileResult>;
|
|
1407
1453
|
ptySnapshot: (params: {
|
|
1408
1454
|
terminalId: string;
|
|
1409
1455
|
}) => Promise<{
|
|
@@ -3408,6 +3454,9 @@ export interface XenoAPI {
|
|
|
3408
3454
|
status?: string;
|
|
3409
3455
|
events?: unknown[];
|
|
3410
3456
|
error?: string;
|
|
3457
|
+
hostBinding?: import('@xenosystem/agent-interface-contract').AgentSessionHostBindingV1;
|
|
3458
|
+
activeLane?: import('@xenosystem/agent-interface-contract').ProviderLaneProjectionV1;
|
|
3459
|
+
lanes?: import('@xenosystem/agent-interface-contract').ProviderLaneProjectionV1[];
|
|
3411
3460
|
}>;
|
|
3412
3461
|
cancelAgentPrompt: (params: unknown) => Promise<{
|
|
3413
3462
|
success: boolean;
|