@axiom-lattice/client-sdk 4.3.4 → 4.3.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/__tests__/project-rooms.test.js +0 -66
- package/dist/__tests__/project-rooms.test.js.map +1 -1
- package/dist/__tests__/room-events.test.d.ts +2 -0
- package/dist/__tests__/room-events.test.d.ts.map +1 -0
- package/dist/__tests__/room-events.test.js +144 -0
- package/dist/__tests__/room-events.test.js.map +1 -0
- package/dist/__tests__/workspace-rooms.test.d.ts +2 -0
- package/dist/__tests__/workspace-rooms.test.d.ts.map +1 -0
- package/dist/__tests__/workspace-rooms.test.js +116 -0
- package/dist/__tests__/workspace-rooms.test.js.map +1 -0
- package/dist/abstract-client.d.ts +38 -1
- package/dist/abstract-client.d.ts.map +1 -1
- package/dist/abstract-client.js +56 -0
- package/dist/abstract-client.js.map +1 -1
- package/dist/client.d.ts +4 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +4 -0
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +211 -50
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +359 -183
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +357 -183
- package/dist/index.mjs.map +1 -1
- package/dist/project-room-hydrators.d.ts +18 -0
- package/dist/project-room-hydrators.d.ts.map +1 -0
- package/dist/project-room-hydrators.js +95 -0
- package/dist/project-room-hydrators.js.map +1 -0
- package/dist/project-rooms.d.ts +4 -51
- package/dist/project-rooms.d.ts.map +1 -1
- package/dist/project-rooms.js +5 -178
- package/dist/project-rooms.js.map +1 -1
- package/dist/room-events.d.ts +108 -0
- package/dist/room-events.d.ts.map +1 -0
- package/dist/room-events.js +127 -0
- package/dist/room-events.js.map +1 -0
- package/dist/types.d.ts +35 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/workspace-rooms.d.ts +28 -0
- package/dist/workspace-rooms.d.ts.map +1 -0
- package/dist/workspace-rooms.js +68 -0
- package/dist/workspace-rooms.js.map +1 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _axiom_lattice_protocols from '@axiom-lattice/protocols';
|
|
2
|
+
import { CapabilityBundle, CapabilityPreview, AgentWebApp, Message, MessageChunk, DatabaseConfigEntry, MetricsServerConfigEntry, DataSource, McpServerConfigEntry, McpTool, LocalA2ATemplateDefinition, OpenGrant, TaskItem, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, ConnectionEntry, CreateTaskRequest, UpdateTaskRequest, TaskWorkItem, LocalA2AProviderState, OpenCatalog, CreateCapabilityBundleInput, UpdateCapabilityBundleInput, CreateAgentWebAppInput, UpdateAgentWebAppInput, Skill, CreateSkillRequest, CreateShareRequest, ShareResult, ShareRecord, ProjectRoom, ProjectRoomPublicMessage, ProjectMembership, ProjectBotMembership, ProjectRoomPublicMembership, ProjectRoomPublicBotMembership, ProjectRoomMention, ProjectHumanRole, ProjectBotRole, Project as Project$1, ProjectRoomEventScope } from '@axiom-lattice/protocols';
|
|
2
3
|
export { AgentWebApp, AgentWebAppAppearance, AgentWebAppFeatures, AgentWebAppScope, AgentWebAppStatus, CapabilityBundle, CapabilityPreview, CreateAgentWebAppInput, CreateCapabilityBundleInput, LocalA2AProviderId, LocalA2AProviderState, LocalA2AProviderStatus, LocalA2ATemplateDefinition, LocalRuntimeConfig, UpdateAgentWebAppInput, UpdateCapabilityBundleInput } from '@axiom-lattice/protocols';
|
|
3
4
|
|
|
4
|
-
/**
|
|
5
|
-
* Core types for the Axiom Lattice Client SDK
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
5
|
/** Optional filters for listing Agent Web Apps. */
|
|
9
6
|
interface ListAgentWebAppsParams {
|
|
10
7
|
/** Return only publications for this assistant. */
|
|
@@ -903,11 +900,43 @@ interface A2AKeyListItem {
|
|
|
903
900
|
tenantId: string;
|
|
904
901
|
projectId: string;
|
|
905
902
|
assistantIds?: string[];
|
|
903
|
+
/** Open-door grants (default-deny capability list). */
|
|
904
|
+
grants?: OpenGrant[];
|
|
906
905
|
label?: string;
|
|
907
906
|
enabled: boolean;
|
|
908
907
|
createdAt: string;
|
|
909
908
|
updatedAt: string;
|
|
910
909
|
}
|
|
910
|
+
/** What an API key exposes to external callers. */
|
|
911
|
+
interface KeyExposure {
|
|
912
|
+
tenantId: string;
|
|
913
|
+
projectId: string;
|
|
914
|
+
grants: OpenGrant[];
|
|
915
|
+
mcp: {
|
|
916
|
+
endpoint: string;
|
|
917
|
+
tools: Array<{
|
|
918
|
+
domain: string;
|
|
919
|
+
toolName: string;
|
|
920
|
+
description: string;
|
|
921
|
+
annotations: {
|
|
922
|
+
readOnlyHint: boolean;
|
|
923
|
+
destructiveHint: boolean;
|
|
924
|
+
};
|
|
925
|
+
}>;
|
|
926
|
+
};
|
|
927
|
+
a2a: {
|
|
928
|
+
agents: Array<{
|
|
929
|
+
assistantId: string;
|
|
930
|
+
cardUrl: string;
|
|
931
|
+
jsonrpcUrl: string;
|
|
932
|
+
card: Record<string, unknown>;
|
|
933
|
+
}>;
|
|
934
|
+
};
|
|
935
|
+
}
|
|
936
|
+
/** Open audit log record as returned over JSON (dates are ISO strings). */
|
|
937
|
+
type OpenAuditLogRecord = Omit<_axiom_lattice_protocols.OpenAuditRecord, "createdAt"> & {
|
|
938
|
+
createdAt: string;
|
|
939
|
+
};
|
|
911
940
|
/**
|
|
912
941
|
* Input for creating a new A2A API key.
|
|
913
942
|
*/
|
|
@@ -915,6 +944,8 @@ interface CreateA2AKeyInput {
|
|
|
915
944
|
tenantId: string;
|
|
916
945
|
projectId: string;
|
|
917
946
|
assistantIds?: string[];
|
|
947
|
+
/** Open-door grants; omit for legacy assistant-only keys. */
|
|
948
|
+
grants?: OpenGrant[];
|
|
918
949
|
label?: string;
|
|
919
950
|
}
|
|
920
951
|
/**
|
|
@@ -1360,6 +1391,35 @@ declare abstract class AbstractClient {
|
|
|
1360
1391
|
/**
|
|
1361
1392
|
* A2A API keys namespace for managing A2A API keys
|
|
1362
1393
|
*/
|
|
1394
|
+
/** Open API surface helpers (capability catalog for the key picker). */
|
|
1395
|
+
open: {
|
|
1396
|
+
/**
|
|
1397
|
+
* Fetch the grantable capability catalog for the current tenant.
|
|
1398
|
+
* Drives the key-management grants picker.
|
|
1399
|
+
*/
|
|
1400
|
+
catalog: () => Promise<OpenCatalog>;
|
|
1401
|
+
/**
|
|
1402
|
+
* Fetch what a key exposes (MCP tools + A2A agent cards).
|
|
1403
|
+
* @param id - Key identifier
|
|
1404
|
+
*/
|
|
1405
|
+
exposure: (id: string) => Promise<KeyExposure>;
|
|
1406
|
+
/**
|
|
1407
|
+
* Query the tenant's Open audit log (newest first).
|
|
1408
|
+
* @param params - Optional credential/domain/status/time filters and pagination
|
|
1409
|
+
*/
|
|
1410
|
+
auditLogs: (params?: {
|
|
1411
|
+
credentialId?: string;
|
|
1412
|
+
domain?: string;
|
|
1413
|
+
status?: "ok" | "error";
|
|
1414
|
+
from?: string;
|
|
1415
|
+
to?: string;
|
|
1416
|
+
limit?: number;
|
|
1417
|
+
offset?: number;
|
|
1418
|
+
}) => Promise<OpenAuditLogRecord[]>;
|
|
1419
|
+
};
|
|
1420
|
+
/**
|
|
1421
|
+
* @deprecated Use {@link open} / `/api/keys`; kept as a compatibility alias.
|
|
1422
|
+
*/
|
|
1363
1423
|
a2aKeys: {
|
|
1364
1424
|
/**
|
|
1365
1425
|
* Lists A2A API keys, optionally filtered by tenant
|
|
@@ -1379,6 +1439,13 @@ declare abstract class AbstractClient {
|
|
|
1379
1439
|
* @returns A promise that resolves to the created key record (full key value)
|
|
1380
1440
|
*/
|
|
1381
1441
|
create: (input: CreateA2AKeyInput) => Promise<A2AKeyListItem>;
|
|
1442
|
+
/**
|
|
1443
|
+
* Updates mutable fields (label, project, assistants, grants) of an existing key.
|
|
1444
|
+
* @param id - Key identifier
|
|
1445
|
+
* @param input - Fields to update (only provided fields change)
|
|
1446
|
+
* @returns A promise that resolves to the updated key record
|
|
1447
|
+
*/
|
|
1448
|
+
update: (id: string, input: Partial<CreateA2AKeyInput>) => Promise<A2AKeyListItem>;
|
|
1382
1449
|
/**
|
|
1383
1450
|
* Permanently deletes an A2A API key
|
|
1384
1451
|
* @param id - Key identifier
|
|
@@ -1865,6 +1932,7 @@ declare class ProjectRoomClientError extends Error {
|
|
|
1865
1932
|
readonly details?: unknown | undefined;
|
|
1866
1933
|
constructor(message: string, status: number, code: string, retryable: boolean, details?: unknown | undefined);
|
|
1867
1934
|
}
|
|
1935
|
+
|
|
1868
1936
|
interface ProjectRoomRecord extends Omit<ProjectRoom, "createdAt" | "updatedAt"> {
|
|
1869
1937
|
createdAt: Date;
|
|
1870
1938
|
updatedAt: Date;
|
|
@@ -1875,6 +1943,7 @@ interface ProjectRoomMessageRecord extends Omit<ProjectRoomPublicMessage, "creat
|
|
|
1875
1943
|
interface ProjectRoomMembershipRecord extends Omit<ProjectMembership, "joinedAt" | "updatedAt"> {
|
|
1876
1944
|
joinedAt: Date;
|
|
1877
1945
|
updatedAt: Date;
|
|
1946
|
+
name?: string;
|
|
1878
1947
|
}
|
|
1879
1948
|
interface ProjectRoomBotRecord extends Omit<ProjectBotMembership, "joinedAt" | "updatedAt"> {
|
|
1880
1949
|
joinedAt: Date;
|
|
@@ -1937,41 +2006,7 @@ interface UpdateProjectBotMembershipInput {
|
|
|
1937
2006
|
mentionName?: string;
|
|
1938
2007
|
expectedUpdatedAt: Date | string;
|
|
1939
2008
|
}
|
|
1940
|
-
type
|
|
1941
|
-
occurredAt: Date;
|
|
1942
|
-
data: {
|
|
1943
|
-
message: ProjectRoomMessageRecord;
|
|
1944
|
-
};
|
|
1945
|
-
}) | (Omit<ProjectRoomRosterChangedEvent, "occurredAt" | "data"> & {
|
|
1946
|
-
occurredAt: Date;
|
|
1947
|
-
data: {
|
|
1948
|
-
change: ProjectRoomRosterChangedEvent["data"]["change"];
|
|
1949
|
-
membership: ProjectRoomPublicBotRecord;
|
|
1950
|
-
};
|
|
1951
|
-
}) | (Omit<ProjectRoomMembershipChangedEvent, "occurredAt" | "data"> & {
|
|
1952
|
-
occurredAt: Date;
|
|
1953
|
-
data: {
|
|
1954
|
-
change: ProjectRoomMembershipChangedEvent["data"]["change"];
|
|
1955
|
-
membership: ProjectRoomPublicMembershipRecord;
|
|
1956
|
-
};
|
|
1957
|
-
}) | (Omit<ProjectRoomTaskChangedEvent, "occurredAt" | "data"> & {
|
|
1958
|
-
occurredAt: Date;
|
|
1959
|
-
data: Omit<ProjectRoomTaskChangedEvent["data"], "updatedAt"> & {
|
|
1960
|
-
updatedAt: Date;
|
|
1961
|
-
};
|
|
1962
|
-
});
|
|
1963
|
-
interface ProjectRoomSseFrame {
|
|
1964
|
-
event: HydratedProjectRoomBusinessEvent | ProjectRoomControlEvent;
|
|
1965
|
-
id?: string;
|
|
1966
|
-
retry?: number;
|
|
1967
|
-
}
|
|
1968
|
-
type HeadersGetter = () => Record<string, string>;
|
|
1969
|
-
interface ProjectRoomEventConnection extends AsyncIterable<ProjectRoomSseFrame> {
|
|
1970
|
-
readonly opened: Promise<{
|
|
1971
|
-
status: 200;
|
|
1972
|
-
lastEventId?: string;
|
|
1973
|
-
}>;
|
|
1974
|
-
}
|
|
2009
|
+
type HeadersGetter$1 = () => Record<string, string>;
|
|
1975
2010
|
declare class ProjectRoomsClient {
|
|
1976
2011
|
private readonly baseURL;
|
|
1977
2012
|
private readonly getHeaders;
|
|
@@ -1979,6 +2014,7 @@ declare class ProjectRoomsClient {
|
|
|
1979
2014
|
list: (projectId: string, options?: ListProjectRoomMessagesOptions) => Promise<ProjectRoomMessageRecord[]>;
|
|
1980
2015
|
send: (projectId: string, input: SendProjectRoomMessageInput) => Promise<ProjectRoomSendResult>;
|
|
1981
2016
|
retry: (projectId: string, messageId: string) => Promise<ProjectRoomDispatchResult[]>;
|
|
2017
|
+
markRead: (projectId: string) => Promise<void>;
|
|
1982
2018
|
};
|
|
1983
2019
|
readonly members: {
|
|
1984
2020
|
list: (projectId: string) => Promise<ProjectRoomMembershipRecord[]>;
|
|
@@ -1994,18 +2030,141 @@ declare class ProjectRoomsClient {
|
|
|
1994
2030
|
resume: (projectId: string, membershipId: string, input: MutationExpectedUpdatedAt) => Promise<ProjectRoomBotRecord>;
|
|
1995
2031
|
remove: (projectId: string, membershipId: string, input: MutationExpectedUpdatedAt) => Promise<unknown>;
|
|
1996
2032
|
};
|
|
1997
|
-
|
|
1998
|
-
connect: (projectId: string, options: {
|
|
1999
|
-
lastEventId?: string;
|
|
2000
|
-
signal: AbortSignal;
|
|
2001
|
-
}) => ProjectRoomEventConnection;
|
|
2002
|
-
};
|
|
2003
|
-
constructor(baseURL: string, getHeaders: HeadersGetter);
|
|
2033
|
+
constructor(baseURL: string, getHeaders: HeadersGetter$1);
|
|
2004
2034
|
getRoom(projectId: string): Promise<ProjectRoomRecord>;
|
|
2005
|
-
getRealtimeMode(projectId: string): Promise<unknown>;
|
|
2006
2035
|
private records;
|
|
2007
2036
|
private request;
|
|
2008
|
-
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
interface ProjectRecord extends Omit<Project$1, "createdAt" | "updatedAt"> {
|
|
2040
|
+
createdAt: Date;
|
|
2041
|
+
updatedAt: Date;
|
|
2042
|
+
}
|
|
2043
|
+
/** A hydrated workspace room entry from the aggregated rooms endpoint. */
|
|
2044
|
+
interface WorkspaceRoomEntryRecord {
|
|
2045
|
+
project: ProjectRecord;
|
|
2046
|
+
room: ProjectRoomRecord;
|
|
2047
|
+
lastMessage?: ProjectRoomMessageRecord;
|
|
2048
|
+
participantCount: number;
|
|
2049
|
+
participantNames: string[];
|
|
2050
|
+
/** Viewer-relative title for human direct rooms; absent to fall back to `room.name`. */
|
|
2051
|
+
displayName?: string;
|
|
2052
|
+
isPublic?: boolean;
|
|
2053
|
+
/** Messages after the user's read horizon, excluding the user's own messages. */
|
|
2054
|
+
unreadCount: number;
|
|
2055
|
+
}
|
|
2056
|
+
/** Aggregated workspace room list client (single request, server-computed unread counts). */
|
|
2057
|
+
declare class WorkspaceRoomsClient {
|
|
2058
|
+
private readonly baseURL;
|
|
2059
|
+
private readonly getHeaders;
|
|
2060
|
+
constructor(baseURL: string, getHeaders: () => Record<string, string>);
|
|
2061
|
+
/** Lists the user's rooms in a workspace with last message and unread count. */
|
|
2062
|
+
list(workspaceId: string): Promise<WorkspaceRoomEntryRecord[]>;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
/** Routing scope attached to room-scoped frames by the workspace stream. */
|
|
2066
|
+
type RoomEventScopeRecord = ProjectRoomEventScope;
|
|
2067
|
+
type WorkspaceRoomKnownBusinessEvent = {
|
|
2068
|
+
type: "message.created";
|
|
2069
|
+
id: string;
|
|
2070
|
+
occurredAt: Date;
|
|
2071
|
+
scope: RoomEventScopeRecord;
|
|
2072
|
+
data: {
|
|
2073
|
+
message: ProjectRoomMessageRecord;
|
|
2074
|
+
};
|
|
2075
|
+
} | {
|
|
2076
|
+
type: "roster.changed";
|
|
2077
|
+
id: string;
|
|
2078
|
+
occurredAt: Date;
|
|
2079
|
+
scope: RoomEventScopeRecord;
|
|
2080
|
+
data: {
|
|
2081
|
+
change: string;
|
|
2082
|
+
membership: ProjectRoomPublicBotRecord;
|
|
2083
|
+
};
|
|
2084
|
+
} | {
|
|
2085
|
+
type: "membership.changed";
|
|
2086
|
+
id: string;
|
|
2087
|
+
occurredAt: Date;
|
|
2088
|
+
scope: RoomEventScopeRecord;
|
|
2089
|
+
data: {
|
|
2090
|
+
change: string;
|
|
2091
|
+
membership: ProjectRoomPublicMembershipRecord;
|
|
2092
|
+
};
|
|
2093
|
+
} | {
|
|
2094
|
+
type: "task.changed";
|
|
2095
|
+
id: string;
|
|
2096
|
+
occurredAt: Date;
|
|
2097
|
+
scope: RoomEventScopeRecord;
|
|
2098
|
+
data: {
|
|
2099
|
+
taskId: string;
|
|
2100
|
+
status: string;
|
|
2101
|
+
ownerMembershipId: string;
|
|
2102
|
+
updatedAt: Date;
|
|
2103
|
+
};
|
|
2104
|
+
} | {
|
|
2105
|
+
type: "read.changed";
|
|
2106
|
+
id: string;
|
|
2107
|
+
occurredAt: Date;
|
|
2108
|
+
data: {
|
|
2109
|
+
projectId: string;
|
|
2110
|
+
roomId: string;
|
|
2111
|
+
lastReadAt: Date;
|
|
2112
|
+
};
|
|
2113
|
+
} | {
|
|
2114
|
+
type: "membership.affected";
|
|
2115
|
+
id: string;
|
|
2116
|
+
occurredAt: Date;
|
|
2117
|
+
data: {
|
|
2118
|
+
change: "added" | "removed" | "role_changed";
|
|
2119
|
+
projectId: string;
|
|
2120
|
+
roomId: string;
|
|
2121
|
+
};
|
|
2122
|
+
};
|
|
2123
|
+
/** A business event of a type this client version does not know (forward compatibility). */
|
|
2124
|
+
interface WorkspaceRoomUnknownBusinessEvent {
|
|
2125
|
+
type: string;
|
|
2126
|
+
id: string;
|
|
2127
|
+
occurredAt: Date;
|
|
2128
|
+
data: unknown;
|
|
2129
|
+
scope?: RoomEventScopeRecord;
|
|
2130
|
+
}
|
|
2131
|
+
type WorkspaceRoomBusinessEvent = WorkspaceRoomKnownBusinessEvent | WorkspaceRoomUnknownBusinessEvent;
|
|
2132
|
+
type WorkspaceRoomControlEvent = {
|
|
2133
|
+
type: "ready";
|
|
2134
|
+
data: {
|
|
2135
|
+
epoch: string;
|
|
2136
|
+
headEventId: string | null;
|
|
2137
|
+
};
|
|
2138
|
+
} | {
|
|
2139
|
+
type: "resync";
|
|
2140
|
+
data: {
|
|
2141
|
+
reason: "SERVER_RESTART" | "CURSOR_EXPIRED" | "SLOW_CONSUMER";
|
|
2142
|
+
};
|
|
2143
|
+
} | {
|
|
2144
|
+
type: "access.revoked";
|
|
2145
|
+
data: {
|
|
2146
|
+
reason: "PROJECT_ACCESS_REVOKED" | "TOKEN_EXPIRED" | "CONNECTION_SUPERSEDED";
|
|
2147
|
+
};
|
|
2148
|
+
};
|
|
2149
|
+
interface WorkspaceRoomEventFrame {
|
|
2150
|
+
event: WorkspaceRoomBusinessEvent | WorkspaceRoomControlEvent;
|
|
2151
|
+
id?: string;
|
|
2152
|
+
retry?: number;
|
|
2153
|
+
}
|
|
2154
|
+
interface WorkspaceRoomEventConnection extends AsyncIterable<WorkspaceRoomEventFrame> {
|
|
2155
|
+
readonly opened: Promise<{
|
|
2156
|
+
status: 200;
|
|
2157
|
+
}>;
|
|
2158
|
+
}
|
|
2159
|
+
type HeadersGetter = () => Record<string, string>;
|
|
2160
|
+
/** Live-only workspace-scoped room events SSE client (no cursor, replay, or resync). */
|
|
2161
|
+
declare class RoomEventsClient {
|
|
2162
|
+
private readonly baseURL;
|
|
2163
|
+
private readonly getHeaders;
|
|
2164
|
+
constructor(baseURL: string, getHeaders: HeadersGetter);
|
|
2165
|
+
connect(workspaceId: string, options: {
|
|
2166
|
+
signal: AbortSignal;
|
|
2167
|
+
}): WorkspaceRoomEventConnection;
|
|
2009
2168
|
}
|
|
2010
2169
|
|
|
2011
2170
|
/**
|
|
@@ -2016,6 +2175,8 @@ declare class Client extends AbstractClient {
|
|
|
2016
2175
|
resources: ResourcesClient;
|
|
2017
2176
|
exportImport: ExportImportClient;
|
|
2018
2177
|
readonly projectRooms: ProjectRoomsClient;
|
|
2178
|
+
readonly workspaceRooms: WorkspaceRoomsClient;
|
|
2179
|
+
readonly roomEvents: RoomEventsClient;
|
|
2019
2180
|
/**
|
|
2020
2181
|
* Creates a new Client instance
|
|
2021
2182
|
* @param config - Configuration options for the client
|
|
@@ -2352,4 +2513,4 @@ declare function createSimpleMessageMerger(): {
|
|
|
2352
2513
|
reset: () => void;
|
|
2353
2514
|
};
|
|
2354
2515
|
|
|
2355
|
-
export { A2AKeyListItem, A2AKeysListResponse, AbortAgentParams, AbstractClient, AddProjectBotMembershipInput, AddProjectMembershipInput, AgentState, AgentWebAppsListResponse, ApiError, ArchiveInput, Assistant, AssistantListResponse, AssistantResponse, AuthenticationError, CapabilityBundleListResponse, ChatResponse, ChatSendOptions, ChatStreamOptions, Client, ClientConfig, CompleteTaskInput, CompleteTaskResponse, CreateA2AKeyInput, CreateAssistantOptions, CreateProjectRequest, CreateThreadOptions, CreateWorkspaceRequest, DatabaseConfigResponse, DatabaseConfigsListResponse, DatasourcesListResponse, ExportBundle, ExportConfigResult, ExportConfirmationRequired, ExportDownload, ExportEntityIds, ExportEntityPreview, ExportEntityPreviewMap, ExportImportClient, ExportJobResult, ExportableEntity, ExportableTypeInfo, FileItem, GetMessagesOptions, GetScheduledTasksOptions,
|
|
2516
|
+
export { A2AKeyListItem, A2AKeysListResponse, AbortAgentParams, AbstractClient, AddProjectBotMembershipInput, AddProjectMembershipInput, AgentState, AgentWebAppsListResponse, ApiError, ArchiveInput, Assistant, AssistantListResponse, AssistantResponse, AuthenticationError, CapabilityBundleListResponse, ChatResponse, ChatSendOptions, ChatStreamOptions, Client, ClientConfig, CompleteTaskInput, CompleteTaskResponse, CreateA2AKeyInput, CreateAssistantOptions, CreateProjectRequest, CreateThreadOptions, CreateWorkspaceRequest, DatabaseConfigResponse, DatabaseConfigsListResponse, DatasourcesListResponse, ExportBundle, ExportConfigResult, ExportConfirmationRequired, ExportDownload, ExportEntityIds, ExportEntityPreview, ExportEntityPreviewMap, ExportImportClient, ExportJobResult, ExportableEntity, ExportableTypeInfo, FileItem, GetMessagesOptions, GetScheduledTasksOptions, ImportApplyResult, ImportConflict, ImportEntityResult, ImportInsertion, ImportPreviewError, ImportPreviewResult, ImportResolution, ImportResolutions, ImportSource, InvalidCapabilityBundleSummary, KeyExposure, ListAgentWebAppsParams, ListProjectRoomMessagesOptions, ListThreadsOptions, LocalA2ATemplatesListResponse, McpServerResponse, McpServersListResponse, MetricsConfigResponse, MetricsConfigsListResponse, MutationExpectedUpdatedAt, NetworkError, OpenAuditLogRecord, PendingMessage, Project, ProjectCapabilitiesResponse, ProjectKind, ProjectRecord, ProjectRoomBotRecord, ProjectRoomClientError, ProjectRoomDispatchErrorCode, ProjectRoomDispatchResult, ProjectRoomMembershipRecord, ProjectRoomMessageRecord, ProjectRoomPublicBotRecord, ProjectRoomPublicMembershipRecord, ProjectRoomRecord, ProjectRoomSendResult, ProjectRoomsClient, RegisterToolOptions, RemovePendingMessageOptions, ResourcesClient, ResumeStreamOptions, RetryConfig, RoomEventScopeRecord, RoomEventsClient, RunOptions, RuntimeAxiomClient, RuntimeAxiomIdentity, ScheduleExecutionType, ScheduledTask, ScheduledTaskStatus, ScheduledTasksListResponse, SendProjectRoomMessageInput, StorageType, StreamCallbacks, StreamEvent, TaskLifecycleWarning, TaskResponse, TasksListResponse, TestConnectionResponse, TestMcpServerResponse, Thread, ThreadListResponse, ThreadResponse, Tool, ToolResponse, ToolsListResponse, Transport, UpdateAssistantOptions, UpdateProjectBotMembershipInput, UpdateProjectMembershipInput, UpdateProjectRequest, UpdateThreadOptions, UpdateWorkspaceRequest, WeChatClient, Workspace, WorkspaceClient, WorkspaceRoomBusinessEvent, WorkspaceRoomControlEvent, WorkspaceRoomEntryRecord, WorkspaceRoomEventConnection, WorkspaceRoomEventFrame, WorkspaceRoomKnownBusinessEvent, WorkspaceRoomUnknownBusinessEvent, WorkspaceRoomsClient, createSimpleMessageMerger };
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC"}
|