@axiom-lattice/client-sdk 4.2.0 → 4.3.0
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__/capability-bundles.test.d.ts +2 -0
- package/dist/__tests__/capability-bundles.test.d.ts.map +1 -0
- package/dist/__tests__/capability-bundles.test.js +143 -0
- package/dist/__tests__/capability-bundles.test.js.map +1 -0
- package/dist/__tests__/project-rooms.test.d.ts +2 -0
- package/dist/__tests__/project-rooms.test.d.ts.map +1 -0
- package/dist/__tests__/project-rooms.test.js +144 -0
- package/dist/__tests__/project-rooms.test.js.map +1 -0
- package/dist/__tests__/sse-parser.test.d.ts +2 -0
- package/dist/__tests__/sse-parser.test.d.ts.map +1 -0
- package/dist/__tests__/sse-parser.test.js +16 -0
- package/dist/__tests__/sse-parser.test.js.map +1 -0
- package/dist/abstract-client.d.ts +70 -1
- package/dist/abstract-client.d.ts.map +1 -1
- package/dist/abstract-client.js +98 -0
- package/dist/abstract-client.js.map +1 -1
- package/dist/client.d.ts +2 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +17 -134
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +252 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +574 -138
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +572 -138
- package/dist/index.mjs.map +1 -1
- package/dist/project-rooms.d.ts +152 -0
- package/dist/project-rooms.d.ts.map +1 -0
- package/dist/project-rooms.js +240 -0
- package/dist/project-rooms.js.map +1 -0
- package/dist/sse-parser.d.ts +18 -0
- package/dist/sse-parser.d.ts.map +1 -0
- package/dist/sse-parser.js +119 -0
- package/dist/sse-parser.js.map +1 -0
- package/dist/types.d.ts +20 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/wechat-client.d.ts +11 -0
- package/dist/wechat-client.d.ts.map +1 -1
- package/dist/wechat-client.js +29 -1
- package/dist/wechat-client.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AgentWebApp, Message, MessageChunk, DatabaseConfigEntry, MetricsServerConfigEntry, DataSource, McpServerConfigEntry, McpTool, LocalA2ATemplateDefinition, TaskItem, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, ConnectionEntry, CreateTaskRequest, UpdateTaskRequest, TaskWorkItem, LocalA2AProviderState, CreateAgentWebAppInput, UpdateAgentWebAppInput, Skill, CreateSkillRequest, CreateShareRequest, ShareResult, ShareRecord } from '@axiom-lattice/protocols';
|
|
2
|
-
export { AgentWebApp, AgentWebAppAppearance, AgentWebAppFeatures, AgentWebAppScope, AgentWebAppStatus, CreateAgentWebAppInput, LocalA2AProviderId, LocalA2AProviderState, LocalA2AProviderStatus, LocalA2ATemplateDefinition, LocalRuntimeConfig, UpdateAgentWebAppInput } from '@axiom-lattice/protocols';
|
|
1
|
+
import { CapabilityBundle, CapabilityPreview, AgentWebApp, Message, MessageChunk, DatabaseConfigEntry, MetricsServerConfigEntry, DataSource, McpServerConfigEntry, McpTool, LocalA2ATemplateDefinition, TaskItem, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, ConnectionEntry, CreateTaskRequest, UpdateTaskRequest, TaskWorkItem, LocalA2AProviderState, CreateCapabilityBundleInput, UpdateCapabilityBundleInput, CreateAgentWebAppInput, UpdateAgentWebAppInput, Skill, CreateSkillRequest, CreateShareRequest, ShareResult, ShareRecord, ProjectRoom, ProjectRoomPublicMessage, ProjectMembership, ProjectBotMembership, ProjectRoomPublicMembership, ProjectRoomPublicBotMembership, ProjectRoomMention, ProjectHumanRole, ProjectBotRole, ProjectRoomMessageCreatedEvent, ProjectRoomRosterChangedEvent, ProjectRoomMembershipChangedEvent, ProjectRoomTaskChangedEvent, ProjectRoomControlEvent } from '@axiom-lattice/protocols';
|
|
2
|
+
export { AgentWebApp, AgentWebAppAppearance, AgentWebAppFeatures, AgentWebAppScope, AgentWebAppStatus, CapabilityBundle, CapabilityPreview, CreateAgentWebAppInput, CreateCapabilityBundleInput, LocalA2AProviderId, LocalA2AProviderState, LocalA2AProviderStatus, LocalA2ATemplateDefinition, LocalRuntimeConfig, UpdateAgentWebAppInput, UpdateCapabilityBundleInput } from '@axiom-lattice/protocols';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Core types for the Axiom Lattice Client SDK
|
|
@@ -10,6 +10,24 @@ interface ListAgentWebAppsParams {
|
|
|
10
10
|
/** Return only publications for this assistant. */
|
|
11
11
|
assistantId?: string;
|
|
12
12
|
}
|
|
13
|
+
/** Project capability bundle selection and its resolved preview. */
|
|
14
|
+
interface ProjectCapabilitiesResponse {
|
|
15
|
+
project: Project;
|
|
16
|
+
persistedBundleIds?: string[];
|
|
17
|
+
bundles: CapabilityBundle[];
|
|
18
|
+
preview: CapabilityPreview;
|
|
19
|
+
}
|
|
20
|
+
/** Safe status for a persisted capability bundle that cannot be returned. */
|
|
21
|
+
interface InvalidCapabilityBundleSummary {
|
|
22
|
+
bundleId: string;
|
|
23
|
+
code: "INVALID_BUNDLE_CONFIG";
|
|
24
|
+
message: string;
|
|
25
|
+
}
|
|
26
|
+
/** Valid capability bundles plus safe summaries for invalid legacy records. */
|
|
27
|
+
interface CapabilityBundleListResponse {
|
|
28
|
+
bundles: CapabilityBundle[];
|
|
29
|
+
errors: InvalidCapabilityBundleSummary[];
|
|
30
|
+
}
|
|
13
31
|
/** Agent Web App list data, unwrapped from the gateway response envelope. */
|
|
14
32
|
interface AgentWebAppsListResponse {
|
|
15
33
|
records: AgentWebApp[];
|
|
@@ -1387,6 +1405,75 @@ declare abstract class AbstractClient {
|
|
|
1387
1405
|
*/
|
|
1388
1406
|
rotate: (id: string) => Promise<A2AKeyListItem>;
|
|
1389
1407
|
};
|
|
1408
|
+
/** Capability bundle namespace for managing tenant-scoped bundles. */
|
|
1409
|
+
capabilityBundles: {
|
|
1410
|
+
/**
|
|
1411
|
+
* List all capability bundles visible to the current tenant.
|
|
1412
|
+
* @returns The tenant's capability bundles, unwrapped from the API response.
|
|
1413
|
+
*/
|
|
1414
|
+
list: () => Promise<CapabilityBundle[]>;
|
|
1415
|
+
/**
|
|
1416
|
+
* List valid bundles together with safe invalid-record summaries.
|
|
1417
|
+
* @returns Inventory suitable for management and remediation workflows.
|
|
1418
|
+
*/
|
|
1419
|
+
listInventory: () => Promise<CapabilityBundleListResponse>;
|
|
1420
|
+
/**
|
|
1421
|
+
* Get one capability bundle by identifier.
|
|
1422
|
+
* @param bundleId - Capability bundle identifier.
|
|
1423
|
+
* @returns The requested capability bundle.
|
|
1424
|
+
*/
|
|
1425
|
+
get: (bundleId: string) => Promise<CapabilityBundle>;
|
|
1426
|
+
/**
|
|
1427
|
+
* Create a capability bundle for the current tenant.
|
|
1428
|
+
* @param input - Bundle name, optional description, and capabilities. The server generates the stable key.
|
|
1429
|
+
* @returns The created capability bundle.
|
|
1430
|
+
*/
|
|
1431
|
+
create: (input: CreateCapabilityBundleInput) => Promise<CapabilityBundle>;
|
|
1432
|
+
/**
|
|
1433
|
+
* Update a capability bundle for the current tenant.
|
|
1434
|
+
* @param bundleId - Capability bundle identifier.
|
|
1435
|
+
* @param input - The partial bundle fields and required expected revision to update.
|
|
1436
|
+
* @returns The updated capability bundle.
|
|
1437
|
+
*/
|
|
1438
|
+
update: (bundleId: string, input: UpdateCapabilityBundleInput) => Promise<CapabilityBundle>;
|
|
1439
|
+
/**
|
|
1440
|
+
* Delete a capability bundle when the backend permits deletion.
|
|
1441
|
+
* @param bundleId - Capability bundle identifier.
|
|
1442
|
+
* @returns A promise that resolves after the bundle is deleted.
|
|
1443
|
+
* @throws ApiError when the bundle is missing, in use, or the request fails.
|
|
1444
|
+
*/
|
|
1445
|
+
delete: (bundleId: string) => Promise<void>;
|
|
1446
|
+
};
|
|
1447
|
+
projects: {
|
|
1448
|
+
capabilities: {
|
|
1449
|
+
/**
|
|
1450
|
+
* Get a project's selected bundles and its persisted capability preview.
|
|
1451
|
+
* @param projectId - Project identifier.
|
|
1452
|
+
* @returns The project, selected bundles, and preview resolved from persisted selections.
|
|
1453
|
+
*/
|
|
1454
|
+
get: (projectId: string) => Promise<ProjectCapabilitiesResponse>;
|
|
1455
|
+
/**
|
|
1456
|
+
* Replace a project's selected capability bundles.
|
|
1457
|
+
* @param projectId - Project identifier.
|
|
1458
|
+
* @param bundleIds - Ordered capability bundle identifiers to persist.
|
|
1459
|
+
* @returns The updated project, selected bundles, and persisted-selection preview.
|
|
1460
|
+
*/
|
|
1461
|
+
update: (projectId: string, bundleIds: string[], expectedRevisions: Record<string, string>) => Promise<ProjectCapabilitiesResponse>;
|
|
1462
|
+
/**
|
|
1463
|
+
* Preview the capability bundles currently persisted on a project.
|
|
1464
|
+
* @param projectId - Project identifier.
|
|
1465
|
+
* @returns The preview resolved from the project's persisted bundle selections.
|
|
1466
|
+
*/
|
|
1467
|
+
preview: (projectId: string) => Promise<CapabilityPreview>;
|
|
1468
|
+
/**
|
|
1469
|
+
* Preview a draft bundle selection without changing the project.
|
|
1470
|
+
* @param projectId - Project identifier.
|
|
1471
|
+
* @param bundleIds - Ordered capability bundle identifiers to preview.
|
|
1472
|
+
* @returns The draft preview resolved from the supplied bundle IDs; no project state is changed.
|
|
1473
|
+
*/
|
|
1474
|
+
previewWithBundles: (projectId: string, bundleIds: string[]) => Promise<CapabilityPreview>;
|
|
1475
|
+
};
|
|
1476
|
+
};
|
|
1390
1477
|
/** Agent Web Apps namespace for managing React SDK publications. */
|
|
1391
1478
|
webApps: {
|
|
1392
1479
|
/**
|
|
@@ -1771,6 +1858,156 @@ declare class ExportImportClient {
|
|
|
1771
1858
|
importApply(tenantId: string, source: ImportSource, resolutions: ImportResolutions): Promise<ImportApplyResult>;
|
|
1772
1859
|
}
|
|
1773
1860
|
|
|
1861
|
+
declare class ProjectRoomClientError extends Error {
|
|
1862
|
+
readonly status: number;
|
|
1863
|
+
readonly code: string;
|
|
1864
|
+
readonly retryable: boolean;
|
|
1865
|
+
readonly details?: unknown | undefined;
|
|
1866
|
+
constructor(message: string, status: number, code: string, retryable: boolean, details?: unknown | undefined);
|
|
1867
|
+
}
|
|
1868
|
+
interface ProjectRoomRecord extends Omit<ProjectRoom, "createdAt" | "updatedAt"> {
|
|
1869
|
+
createdAt: Date;
|
|
1870
|
+
updatedAt: Date;
|
|
1871
|
+
}
|
|
1872
|
+
interface ProjectRoomMessageRecord extends Omit<ProjectRoomPublicMessage, "createdAt"> {
|
|
1873
|
+
createdAt: Date;
|
|
1874
|
+
}
|
|
1875
|
+
interface ProjectRoomMembershipRecord extends Omit<ProjectMembership, "joinedAt" | "updatedAt"> {
|
|
1876
|
+
joinedAt: Date;
|
|
1877
|
+
updatedAt: Date;
|
|
1878
|
+
}
|
|
1879
|
+
interface ProjectRoomBotRecord extends Omit<ProjectBotMembership, "joinedAt" | "updatedAt"> {
|
|
1880
|
+
joinedAt: Date;
|
|
1881
|
+
updatedAt: Date;
|
|
1882
|
+
}
|
|
1883
|
+
interface ProjectRoomPublicMembershipRecord extends Omit<ProjectRoomPublicMembership, "joinedAt" | "updatedAt"> {
|
|
1884
|
+
joinedAt: Date;
|
|
1885
|
+
updatedAt: Date;
|
|
1886
|
+
}
|
|
1887
|
+
interface ProjectRoomPublicBotRecord extends Omit<ProjectRoomPublicBotMembership, "joinedAt" | "updatedAt"> {
|
|
1888
|
+
joinedAt: Date;
|
|
1889
|
+
updatedAt: Date;
|
|
1890
|
+
}
|
|
1891
|
+
type ProjectRoomDispatchErrorCode = "BOT_PAUSED" | "TARGET_UNAVAILABLE" | "TARGET_REQUIRED" | "CHANNEL_UNAVAILABLE" | "DISPATCH_FAILED" | "DISPATCH_STATUS_UNKNOWN" | "AUTHORIZATION_REVOKED" | "ROSTER_CONFLICT";
|
|
1892
|
+
interface ProjectRoomDispatchResult {
|
|
1893
|
+
membershipId?: string;
|
|
1894
|
+
success: boolean;
|
|
1895
|
+
errorCode?: ProjectRoomDispatchErrorCode;
|
|
1896
|
+
}
|
|
1897
|
+
interface ProjectRoomSendResult {
|
|
1898
|
+
message: ProjectRoomMessageRecord;
|
|
1899
|
+
dispatch: ProjectRoomDispatchResult[];
|
|
1900
|
+
replayed: boolean;
|
|
1901
|
+
}
|
|
1902
|
+
interface SendProjectRoomMessageInput {
|
|
1903
|
+
text: string;
|
|
1904
|
+
mentions: ProjectRoomMention[];
|
|
1905
|
+
replyToMessageId?: string;
|
|
1906
|
+
idempotencyKey: string;
|
|
1907
|
+
}
|
|
1908
|
+
interface ListProjectRoomMessagesOptions {
|
|
1909
|
+
limit?: number;
|
|
1910
|
+
cursor?: {
|
|
1911
|
+
createdAt: Date;
|
|
1912
|
+
id: string;
|
|
1913
|
+
};
|
|
1914
|
+
}
|
|
1915
|
+
interface UpdateProjectMembershipInput {
|
|
1916
|
+
role: ProjectHumanRole;
|
|
1917
|
+
expectedUpdatedAt: Date;
|
|
1918
|
+
}
|
|
1919
|
+
interface MutationExpectedUpdatedAt {
|
|
1920
|
+
expectedUpdatedAt: Date | string;
|
|
1921
|
+
}
|
|
1922
|
+
interface AddProjectMembershipInput {
|
|
1923
|
+
userId: string;
|
|
1924
|
+
role: ProjectHumanRole;
|
|
1925
|
+
}
|
|
1926
|
+
interface AddProjectBotMembershipInput {
|
|
1927
|
+
assistantId: string;
|
|
1928
|
+
role: ProjectBotRole;
|
|
1929
|
+
title: string;
|
|
1930
|
+
responsibility?: string;
|
|
1931
|
+
mentionName: string;
|
|
1932
|
+
}
|
|
1933
|
+
interface UpdateProjectBotMembershipInput {
|
|
1934
|
+
role?: ProjectBotRole;
|
|
1935
|
+
title?: string;
|
|
1936
|
+
responsibility?: string;
|
|
1937
|
+
mentionName?: string;
|
|
1938
|
+
expectedUpdatedAt: Date | string;
|
|
1939
|
+
}
|
|
1940
|
+
type HydratedProjectRoomBusinessEvent = (Omit<ProjectRoomMessageCreatedEvent, "occurredAt" | "data"> & {
|
|
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
|
+
}
|
|
1975
|
+
declare class ProjectRoomsClient {
|
|
1976
|
+
private readonly baseURL;
|
|
1977
|
+
private readonly getHeaders;
|
|
1978
|
+
readonly messages: {
|
|
1979
|
+
list: (projectId: string, options?: ListProjectRoomMessagesOptions) => Promise<ProjectRoomMessageRecord[]>;
|
|
1980
|
+
send: (projectId: string, input: SendProjectRoomMessageInput) => Promise<ProjectRoomSendResult>;
|
|
1981
|
+
retry: (projectId: string, messageId: string) => Promise<ProjectRoomDispatchResult[]>;
|
|
1982
|
+
};
|
|
1983
|
+
readonly members: {
|
|
1984
|
+
list: (projectId: string) => Promise<ProjectRoomMembershipRecord[]>;
|
|
1985
|
+
add: (projectId: string, input: AddProjectMembershipInput) => Promise<ProjectRoomMembershipRecord>;
|
|
1986
|
+
update: (projectId: string, membershipId: string, input: UpdateProjectMembershipInput) => Promise<ProjectRoomMembershipRecord>;
|
|
1987
|
+
remove: (projectId: string, membershipId: string, input: MutationExpectedUpdatedAt) => Promise<unknown>;
|
|
1988
|
+
};
|
|
1989
|
+
readonly bots: {
|
|
1990
|
+
list: (projectId: string) => Promise<ProjectRoomBotRecord[]>;
|
|
1991
|
+
add: (projectId: string, input: AddProjectBotMembershipInput) => Promise<ProjectRoomBotRecord>;
|
|
1992
|
+
update: (projectId: string, membershipId: string, input: UpdateProjectBotMembershipInput) => Promise<ProjectRoomBotRecord>;
|
|
1993
|
+
pause: (projectId: string, membershipId: string, input: MutationExpectedUpdatedAt) => Promise<ProjectRoomBotRecord>;
|
|
1994
|
+
resume: (projectId: string, membershipId: string, input: MutationExpectedUpdatedAt) => Promise<ProjectRoomBotRecord>;
|
|
1995
|
+
remove: (projectId: string, membershipId: string, input: MutationExpectedUpdatedAt) => Promise<unknown>;
|
|
1996
|
+
};
|
|
1997
|
+
readonly events: {
|
|
1998
|
+
connect: (projectId: string, options: {
|
|
1999
|
+
lastEventId?: string;
|
|
2000
|
+
signal: AbortSignal;
|
|
2001
|
+
}) => ProjectRoomEventConnection;
|
|
2002
|
+
};
|
|
2003
|
+
constructor(baseURL: string, getHeaders: HeadersGetter);
|
|
2004
|
+
getRoom(projectId: string): Promise<ProjectRoomRecord>;
|
|
2005
|
+
getRealtimeMode(projectId: string): Promise<unknown>;
|
|
2006
|
+
private records;
|
|
2007
|
+
private request;
|
|
2008
|
+
private connect;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
1774
2011
|
/**
|
|
1775
2012
|
* Web client class for interacting with the Axiom Lattice Agent Service API
|
|
1776
2013
|
*/
|
|
@@ -1778,6 +2015,7 @@ declare class Client extends AbstractClient {
|
|
|
1778
2015
|
private headers;
|
|
1779
2016
|
resources: ResourcesClient;
|
|
1780
2017
|
exportImport: ExportImportClient;
|
|
2018
|
+
readonly projectRooms: ProjectRoomsClient;
|
|
1781
2019
|
/**
|
|
1782
2020
|
* Creates a new Client instance
|
|
1783
2021
|
* @param config - Configuration options for the client
|
|
@@ -1894,6 +2132,17 @@ declare class WeChatClient extends AbstractClient {
|
|
|
1894
2132
|
* @param tenantId - Tenant identifier
|
|
1895
2133
|
*/
|
|
1896
2134
|
setTenantId(tenantId: string): void;
|
|
2135
|
+
/**
|
|
2136
|
+
* Set workspace and project headers for requests made by this client.
|
|
2137
|
+
* @param workspaceId - Workspace identifier, or undefined to leave it unchanged
|
|
2138
|
+
* @param projectId - Project identifier, or undefined to leave it unchanged
|
|
2139
|
+
*/
|
|
2140
|
+
setWorkspaceContext(workspaceId?: string, projectId?: string): void;
|
|
2141
|
+
/**
|
|
2142
|
+
* Get the workspace and project headers currently applied to this client.
|
|
2143
|
+
* @returns A copy of the current workspace and project header values
|
|
2144
|
+
*/
|
|
2145
|
+
getWorkspaceHeaders(): Record<string, string>;
|
|
1897
2146
|
/**
|
|
1898
2147
|
* Creates a new instance of the client with the given configuration
|
|
1899
2148
|
* @param config - Configuration options for the client
|
|
@@ -2039,4 +2288,4 @@ declare function createSimpleMessageMerger(): {
|
|
|
2039
2288
|
reset: () => void;
|
|
2040
2289
|
};
|
|
2041
2290
|
|
|
2042
|
-
export { A2AKeyListItem, A2AKeysListResponse, AbortAgentParams, AbstractClient, AgentState, AgentWebAppsListResponse, ApiError, ArchiveInput, Assistant, AssistantListResponse, AssistantResponse, AuthenticationError, 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, ListAgentWebAppsParams, ListThreadsOptions, LocalA2ATemplatesListResponse, McpServerResponse, McpServersListResponse, MetricsConfigResponse, MetricsConfigsListResponse, NetworkError, PendingMessage, Project, ProjectKind, RegisterToolOptions, RemovePendingMessageOptions, ResourcesClient, ResumeStreamOptions, RetryConfig, RunOptions, ScheduleExecutionType, ScheduledTask, ScheduledTaskStatus, ScheduledTasksListResponse, StorageType, StreamCallbacks, StreamEvent, TaskLifecycleWarning, TaskResponse, TasksListResponse, TestConnectionResponse, TestMcpServerResponse, Thread, ThreadListResponse, ThreadResponse, Tool, ToolResponse, ToolsListResponse, Transport, UpdateAssistantOptions, UpdateProjectRequest, UpdateThreadOptions, UpdateWorkspaceRequest, WeChatClient, Workspace, WorkspaceClient, createSimpleMessageMerger };
|
|
2291
|
+
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, HydratedProjectRoomBusinessEvent, ImportApplyResult, ImportConflict, ImportEntityResult, ImportInsertion, ImportPreviewError, ImportPreviewResult, ImportResolution, ImportResolutions, ImportSource, InvalidCapabilityBundleSummary, ListAgentWebAppsParams, ListProjectRoomMessagesOptions, ListThreadsOptions, LocalA2ATemplatesListResponse, McpServerResponse, McpServersListResponse, MetricsConfigResponse, MetricsConfigsListResponse, MutationExpectedUpdatedAt, NetworkError, PendingMessage, Project, ProjectCapabilitiesResponse, ProjectKind, ProjectRoomBotRecord, ProjectRoomClientError, ProjectRoomDispatchErrorCode, ProjectRoomDispatchResult, ProjectRoomEventConnection, ProjectRoomMembershipRecord, ProjectRoomMessageRecord, ProjectRoomPublicBotRecord, ProjectRoomPublicMembershipRecord, ProjectRoomRecord, ProjectRoomSendResult, ProjectRoomSseFrame, ProjectRoomsClient, RegisterToolOptions, RemovePendingMessageOptions, ResourcesClient, ResumeStreamOptions, RetryConfig, RunOptions, 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, 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,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,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,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"}
|