@axiom-lattice/protocols 4.1.3 → 4.2.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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +22 -0
- package/dist/index.d.mts +103 -7
- package/dist/index.d.ts +103 -7
- package/dist/index.js +92 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +88 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AgentWebAppRuntimeProtocol.ts +2 -1
- package/src/AgentWebAppStoreProtocol.ts +31 -0
- package/src/AgentWebAppStreamProjection.ts +104 -0
- package/src/McpLatticeProtocol.ts +7 -1
- package/src/McpServerConfigStoreProtocol.ts +2 -1
- package/src/ProjectRoomMessageStoreProtocol.ts +8 -0
- package/src/ProjectRoomReadStateProtocol.ts +20 -0
- package/src/ProjectRoomRealtimeProtocol.ts +28 -3
- package/src/__tests__/ProjectRoomReadStateProtocol.test.ts +16 -0
- package/src/__tests__/ProjectRoomStores.test.ts +4 -0
- package/src/index.ts +2 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/protocols@4.
|
|
2
|
+
> @axiom-lattice/protocols@4.2.0 build /home/runner/work/agentic/agentic/packages/protocols
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
[34mCLI[39m Target: es2020
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
12
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
15
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
16
|
-
[32mCJS[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m37.07 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m128.88 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 264ms
|
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m41.18 KB[39m
|
|
15
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m132.31 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 302ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 17045ms
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m204.17 KB[39m
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m204.17 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @axiom-lattice/protocols
|
|
2
2
|
|
|
3
|
+
## 4.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a2a0615: feat: MCP server connection authentication — `McpServerConfig.headers` (http/sse, encrypted at rest) plumbed through stores, gateway connections, and the config form; env-variable editor for stdio; SSE deprecation hint in the form.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- af3dff0: fix web app
|
|
12
|
+
|
|
13
|
+
## 4.1.5
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 15d2469: fix issue
|
|
18
|
+
|
|
19
|
+
## 4.1.4
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- a787438: fix issue and sample
|
|
24
|
+
|
|
3
25
|
## 4.1.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1771,8 +1771,14 @@ interface McpServerConfig {
|
|
|
1771
1771
|
args?: string[];
|
|
1772
1772
|
/** URL for HTTP/SSE transport */
|
|
1773
1773
|
url?: string;
|
|
1774
|
-
/** Environment variables */
|
|
1774
|
+
/** Environment variables (stdio transport; credentials passed to the server process) */
|
|
1775
1775
|
env?: Record<string, string>;
|
|
1776
|
+
/**
|
|
1777
|
+
* Custom HTTP headers sent with every request (streamable_http / sse only).
|
|
1778
|
+
* Commonly used for authentication, e.g. `{ Authorization: "Bearer <token>" }`.
|
|
1779
|
+
* Ignored for stdio transport. Values are encrypted at rest by config stores.
|
|
1780
|
+
*/
|
|
1781
|
+
headers?: Record<string, string>;
|
|
1776
1782
|
/** Connection timeout in milliseconds */
|
|
1777
1783
|
timeout?: number;
|
|
1778
1784
|
/** Retry attempts on connection failure */
|
|
@@ -2865,7 +2871,8 @@ interface McpServerConfigEntry {
|
|
|
2865
2871
|
*/
|
|
2866
2872
|
selectedTools: string[];
|
|
2867
2873
|
/**
|
|
2868
|
-
* Whether
|
|
2874
|
+
* Whether secret values (env vars and headers) are encrypted at rest.
|
|
2875
|
+
* Field name kept for backward compatibility; it covers config.headers too.
|
|
2869
2876
|
*/
|
|
2870
2877
|
isEnvEncrypted: boolean;
|
|
2871
2878
|
/**
|
|
@@ -4750,6 +4757,8 @@ interface AgentWebAppFeatures {
|
|
|
4750
4757
|
attachments: boolean;
|
|
4751
4758
|
hitl: boolean;
|
|
4752
4759
|
genUI: boolean;
|
|
4760
|
+
/** File panel surface. Tolerated missing (treated as false) for records created before Phase 2. */
|
|
4761
|
+
files?: boolean;
|
|
4753
4762
|
}
|
|
4754
4763
|
/** Optional display customization for an Agent Web App. */
|
|
4755
4764
|
interface AgentWebAppAppearance {
|
|
@@ -4757,6 +4766,27 @@ interface AgentWebAppAppearance {
|
|
|
4757
4766
|
welcomeMessage?: string;
|
|
4758
4767
|
primaryColor?: string;
|
|
4759
4768
|
}
|
|
4769
|
+
/** Identity assurance levels reported by the runtime. */
|
|
4770
|
+
type AgentWebAppIdentityAssurance = "unverified" | "verified";
|
|
4771
|
+
/** How external callers may identify themselves for this web app. */
|
|
4772
|
+
type AgentWebAppIdentityPolicy = "unverified" | "verified" | "both";
|
|
4773
|
+
/** One trusted issuer entry. `secret` pairs with HS256, `jwksUrl` with RS256. */
|
|
4774
|
+
interface AgentWebAppIssuerConfig {
|
|
4775
|
+
/** Exact `iss` claim match. */
|
|
4776
|
+
iss: string;
|
|
4777
|
+
/** Exact `aud` claim match; conventionally the webAppId. */
|
|
4778
|
+
aud: string;
|
|
4779
|
+
alg: "HS256" | "RS256";
|
|
4780
|
+
/** Shared secret for HS256. */
|
|
4781
|
+
secret?: string;
|
|
4782
|
+
/** JWKS endpoint URL for RS256. */
|
|
4783
|
+
jwksUrl?: string;
|
|
4784
|
+
}
|
|
4785
|
+
/** Identity configuration block for a web app. Absent = V1 unverified behavior. */
|
|
4786
|
+
interface AgentWebAppIdentityConfig {
|
|
4787
|
+
policy: AgentWebAppIdentityPolicy;
|
|
4788
|
+
issuers: AgentWebAppIssuerConfig[];
|
|
4789
|
+
}
|
|
4760
4790
|
/** Persisted React SDK publication of an assistant. */
|
|
4761
4791
|
interface AgentWebApp {
|
|
4762
4792
|
id: string;
|
|
@@ -4771,6 +4801,7 @@ interface AgentWebApp {
|
|
|
4771
4801
|
scope: AgentWebAppScope;
|
|
4772
4802
|
features: AgentWebAppFeatures;
|
|
4773
4803
|
appearance: AgentWebAppAppearance;
|
|
4804
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4774
4805
|
createdAt: Date;
|
|
4775
4806
|
updatedAt: Date;
|
|
4776
4807
|
}
|
|
@@ -4785,6 +4816,7 @@ interface CreateAgentWebAppInput {
|
|
|
4785
4816
|
scope: AgentWebAppScope;
|
|
4786
4817
|
features: AgentWebAppFeatures;
|
|
4787
4818
|
appearance: AgentWebAppAppearance;
|
|
4819
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4788
4820
|
}
|
|
4789
4821
|
/** Editable fields accepted when updating an Agent Web App. Nested objects use merge semantics. */
|
|
4790
4822
|
interface UpdateAgentWebAppInput {
|
|
@@ -4793,6 +4825,7 @@ interface UpdateAgentWebAppInput {
|
|
|
4793
4825
|
scope?: Partial<AgentWebAppScope>;
|
|
4794
4826
|
features?: Partial<AgentWebAppFeatures>;
|
|
4795
4827
|
appearance?: Partial<AgentWebAppAppearance>;
|
|
4828
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4796
4829
|
}
|
|
4797
4830
|
/** Internal persistence patch. Nested objects are complete replacements when provided. */
|
|
4798
4831
|
interface AgentWebAppStorePatch {
|
|
@@ -4801,6 +4834,7 @@ interface AgentWebAppStorePatch {
|
|
|
4801
4834
|
scope?: AgentWebAppScope;
|
|
4802
4835
|
features?: AgentWebAppFeatures;
|
|
4803
4836
|
appearance?: AgentWebAppAppearance;
|
|
4837
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4804
4838
|
status?: AgentWebAppStatus;
|
|
4805
4839
|
}
|
|
4806
4840
|
/** Optional optimistic concurrency guard for an Agent Web App update. */
|
|
@@ -4878,7 +4912,7 @@ interface AgentWebAppBootstrap {
|
|
|
4878
4912
|
defaultModelKey?: string;
|
|
4879
4913
|
features: AgentWebAppFeatures;
|
|
4880
4914
|
appearance: AgentWebAppAppearance;
|
|
4881
|
-
identityAssurance:
|
|
4915
|
+
identityAssurance: AgentWebAppIdentityAssurance;
|
|
4882
4916
|
};
|
|
4883
4917
|
projects: Array<{
|
|
4884
4918
|
id: string;
|
|
@@ -4940,6 +4974,20 @@ type AgentWebAppStreamEvent = {
|
|
|
4940
4974
|
/** Validate and copy one strict public GenUI block at a trust boundary. */
|
|
4941
4975
|
declare function parseAgentWebAppGenUIBlock(value: unknown): AgentWebAppGenUIBlock | undefined;
|
|
4942
4976
|
|
|
4977
|
+
/** Per-consumer projection metadata; it does not control Agent execution. */
|
|
4978
|
+
interface AgentWebAppStreamProjectionContext {
|
|
4979
|
+
readonly startedToolIds: Set<string>;
|
|
4980
|
+
readonly allowInterrupts: boolean;
|
|
4981
|
+
readonly allowGenUI: boolean;
|
|
4982
|
+
}
|
|
4983
|
+
/** Create projection metadata shared by all chunks in one public stream. */
|
|
4984
|
+
declare function createAgentWebAppStreamProjectionContext(options?: {
|
|
4985
|
+
allowInterrupts?: boolean;
|
|
4986
|
+
allowGenUI?: boolean;
|
|
4987
|
+
}): AgentWebAppStreamProjectionContext;
|
|
4988
|
+
/** Purely project one internal Agent chunk onto zero or more stable public events. */
|
|
4989
|
+
declare function projectAgentWebAppChunk(chunk: MessageChunk, context?: AgentWebAppStreamProjectionContext): AgentWebAppStreamEvent[];
|
|
4990
|
+
|
|
4943
4991
|
/**
|
|
4944
4992
|
* Capability bundle persistence protocol.
|
|
4945
4993
|
*
|
|
@@ -5333,6 +5381,38 @@ interface ProjectRoomMessageStore {
|
|
|
5333
5381
|
}): Promise<ProjectRoomMessage[]>;
|
|
5334
5382
|
/** Finds a room message by identifier within a tenant. */
|
|
5335
5383
|
findById(tenantId: string, id: string): Promise<ProjectRoomMessage | null>;
|
|
5384
|
+
/** Counts messages created strictly after a horizon, optionally excluding one human author. */
|
|
5385
|
+
countAfter(input: {
|
|
5386
|
+
tenantId: string;
|
|
5387
|
+
roomId: string;
|
|
5388
|
+
after: Date;
|
|
5389
|
+
excludeAuthorUserId?: string;
|
|
5390
|
+
}): Promise<number>;
|
|
5391
|
+
}
|
|
5392
|
+
|
|
5393
|
+
/** A user's per-room read marker used to compute unread counts. */
|
|
5394
|
+
interface ProjectRoomReadState {
|
|
5395
|
+
tenantId: string;
|
|
5396
|
+
roomId: string;
|
|
5397
|
+
userId: string;
|
|
5398
|
+
/** Read horizon: messages created strictly after this instant are unread. */
|
|
5399
|
+
lastReadAt: Date;
|
|
5400
|
+
updatedAt: Date;
|
|
5401
|
+
}
|
|
5402
|
+
/** Persistence operations for per-user, per-room read markers. */
|
|
5403
|
+
interface ProjectRoomReadStateStore {
|
|
5404
|
+
/** Returns the user's read marker for a room, or null when never reported. */
|
|
5405
|
+
get(tenantId: string, roomId: string, userId: string): Promise<ProjectRoomReadState | null>;
|
|
5406
|
+
/**
|
|
5407
|
+
* Upserts the read marker monotonically: an earlier lastReadAt never moves
|
|
5408
|
+
* the marker backwards. Returns the stored state after the write.
|
|
5409
|
+
*/
|
|
5410
|
+
markRead(input: {
|
|
5411
|
+
tenantId: string;
|
|
5412
|
+
roomId: string;
|
|
5413
|
+
userId: string;
|
|
5414
|
+
lastReadAt: Date;
|
|
5415
|
+
}): Promise<ProjectRoomReadState>;
|
|
5336
5416
|
}
|
|
5337
5417
|
|
|
5338
5418
|
/** A safely extracted value from an own enumerable data-property descriptor. */
|
|
@@ -5437,10 +5517,22 @@ type ProjectRoomTaskChangedEvent = ProjectRoomEventOf<"task.changed", {
|
|
|
5437
5517
|
ownerMembershipId: string;
|
|
5438
5518
|
updatedAt: string;
|
|
5439
5519
|
}>;
|
|
5520
|
+
/** A read-marker update broadcast on the acting user's channel. */
|
|
5521
|
+
type ProjectRoomReadChangedEvent = ProjectRoomEventOf<"read.changed", {
|
|
5522
|
+
projectId: string;
|
|
5523
|
+
roomId: string;
|
|
5524
|
+
lastReadAt: string;
|
|
5525
|
+
}>;
|
|
5526
|
+
/** A membership mutation that may change a user's room subscription set. */
|
|
5527
|
+
type ProjectRoomMembershipAffectedEvent = ProjectRoomEventOf<"membership.affected", {
|
|
5528
|
+
change: "added" | "removed" | "role_changed";
|
|
5529
|
+
projectId: string;
|
|
5530
|
+
roomId: string;
|
|
5531
|
+
}>;
|
|
5440
5532
|
/** All identified business events retained by the realtime broker. */
|
|
5441
|
-
type ProjectRoomBusinessEvent = ProjectRoomMessageCreatedEvent | ProjectRoomRosterChangedEvent | ProjectRoomMembershipChangedEvent | ProjectRoomTaskChangedEvent;
|
|
5533
|
+
type ProjectRoomBusinessEvent = ProjectRoomMessageCreatedEvent | ProjectRoomRosterChangedEvent | ProjectRoomMembershipChangedEvent | ProjectRoomTaskChangedEvent | ProjectRoomReadChangedEvent | ProjectRoomMembershipAffectedEvent;
|
|
5442
5534
|
/** A business event before the broker assigns its process-local ID. */
|
|
5443
|
-
type ProjectRoomBusinessEventDraft = Omit<ProjectRoomMessageCreatedEvent, "id"> | Omit<ProjectRoomRosterChangedEvent, "id"> | Omit<ProjectRoomMembershipChangedEvent, "id"> | Omit<ProjectRoomTaskChangedEvent, "id">;
|
|
5535
|
+
type ProjectRoomBusinessEventDraft = Omit<ProjectRoomMessageCreatedEvent, "id"> | Omit<ProjectRoomRosterChangedEvent, "id"> | Omit<ProjectRoomMembershipChangedEvent, "id"> | Omit<ProjectRoomTaskChangedEvent, "id"> | Omit<ProjectRoomReadChangedEvent, "id"> | Omit<ProjectRoomMembershipAffectedEvent, "id">;
|
|
5444
5536
|
/** A connection control event; control events are never replayed. */
|
|
5445
5537
|
type ProjectRoomControlEvent = {
|
|
5446
5538
|
type: "ready";
|
|
@@ -5456,7 +5548,7 @@ type ProjectRoomControlEvent = {
|
|
|
5456
5548
|
} | {
|
|
5457
5549
|
type: "access.revoked";
|
|
5458
5550
|
data: {
|
|
5459
|
-
reason: "PROJECT_ACCESS_REVOKED" | "TOKEN_EXPIRED";
|
|
5551
|
+
reason: "PROJECT_ACCESS_REVOKED" | "TOKEN_EXPIRED" | "CONNECTION_SUPERSEDED";
|
|
5460
5552
|
};
|
|
5461
5553
|
};
|
|
5462
5554
|
/** The authenticated identity used by Project Room realtime access checks. */
|
|
@@ -5518,6 +5610,10 @@ interface ProjectRoomEventId {
|
|
|
5518
5610
|
declare function parseProjectRoomEventId(value: unknown): ProjectRoomEventId | undefined;
|
|
5519
5611
|
/** Checks an event ID without relying on realm-specific object identity. */
|
|
5520
5612
|
declare function isProjectRoomEventId(value: unknown): value is string;
|
|
5613
|
+
/** projectId sentinel marking a per-user event channel inside the room broker. */
|
|
5614
|
+
declare const PROJECT_ROOM_USER_CHANNEL_PROJECT = "__user_channel__";
|
|
5615
|
+
/** Builds the per-user broker scope used for membership and read broadcasts. */
|
|
5616
|
+
declare function projectRoomUserEventScope(tenantId: string, userId: string): ProjectRoomEventScope;
|
|
5521
5617
|
/** Maps a canonical internal message to the strict public message DTO. */
|
|
5522
5618
|
declare function toProjectRoomPublicMessage(value: unknown): ProjectRoomPublicMessage | undefined;
|
|
5523
5619
|
/** A descriptor-safe message projection together with its canonical realtime scope. */
|
|
@@ -6126,4 +6222,4 @@ declare function parseTrustedRunContext(value: unknown): TrustedRunContext;
|
|
|
6126
6222
|
*/
|
|
6127
6223
|
declare function parseQueuedExecutionMode(value: unknown): QueuedExecutionMode;
|
|
6128
6224
|
|
|
6129
|
-
export { type A2AApiKeyEntry, type A2AApiKeyRecord, type A2AApiKeyStore, type A2AAuthContext, type A2AExposure, type A2ARemoteAgentConfig, type AgentClient, type AgentConfig, type AgentConfigWithTools, type AgentLatticeProtocol, type AgentMenuConfig, type AgentMiddlewareConfig, type AgentRunConfig, AgentType, type AgentWebApp, type AgentWebAppAppearance, type AgentWebAppBootstrap, type AgentWebAppCalloutWidget, type AgentWebAppError, type AgentWebAppErrorCode, type AgentWebAppFeatures, type AgentWebAppGenUIBlock, type AgentWebAppInterrupt, type AgentWebAppRuntimeMessage, type AgentWebAppRuntimeThread, type AgentWebAppScope, type AgentWebAppStatus, type AgentWebAppStore, type AgentWebAppStorePatch, type AgentWebAppStreamEvent, type AgentWebAppTableWidget, type AgentWebAppThreadMetadata, type AgentWebAppUpdateOptions, type Assistant, type AssistantMessage, type AssistantStore, type Attachment, type AvailableModule, type BaseLatticeProtocol, type BaseMessage, type Binding, type BindingListParams, type BindingMutablePatch, type BindingRegistry, type BootstrapFilesConfig, type BrowserMiddlewareConfig, type Callback, type CapabilityBundle, type CapabilityBundleDeleteResult, type CapabilityBundleStore, type CapabilityBundleUpdateConflict, type CapabilityFieldSource, type CapabilityOverride, type CapabilityPreview, type CapabilityPreviewIssue, type CapabilityRuntime, type ChannelAdapter, type ChannelBindingMigrationConflict, ChannelBindingMigrationConflictError, type ChannelInstallation, type ChannelInstallationStore, type ChannelInstallationType, type ClawMiddlewareConfig, type CodeEvalMiddlewareConfig, type Collection, type CollectionField, type CollectionFieldType, type CollectionMiddlewareConfig, type CollectionSchema, type CollectionStore, type ConnectionEntry, type ConnectionStore, type ConversationRecord, type CreateA2AApiKeyInput, type CreateAgentWebAppInput, type CreateAssistantRequest, type CreateBindingInput, type CreateCapabilityBundleInput, type CreateChannelInstallationInput, type CreateChannelInstallationRequest, type CreateCollectionRequest, type CreateConversationInput, type CreateDatabaseConfigRequest, type CreateEvalCaseRequest, type CreateEvalProjectRequest, type CreateEvalRunRequest, type CreateEvalSuiteRequest, type CreateMcpServerConfigRequest, type CreateMenuItemInput, type CreateMetricsServerConfigRequest, type CreateProjectRequest, type CreateRunStepRequest, type CreateShareRequest, type CreateSkillRequest, type CreateTaskRequest, type CreateTenantRequest, type CreateThreadRequest, type CreateUserRequest, type CreateUserTenantLinkRequest, type CreateWorkItemIfAbsentRequest, type CreateWorkItemRequest, type CreateWorkflowRunRequest, type CreateWorkspaceRequest, type CustomMenuConfig, type DataSource, type DatabaseConfig, type DatabaseConfigEntry, type DatabaseConfigStore, type DatabaseType, type DeepAgentConfig, type DescriptorDataValue, type DeveloperMessage, type DispatchResult, DuplicateChannelBindingSubjectError, EXECUTION_RESULT_EVENT_KEY_PATTERN, EXECUTION_RESULT_EVENT_KEY_PATTERN_SOURCE, EXECUTION_RESULT_EVENT_KEY_PREFIX, type EmbeddingsConfig, type EmbeddingsLatticeProtocol, type EvalCase, type EvalProject, type EvalProjectReport, type EvalRun, type EvalRunResult, type EvalStore, type EvalSuite, type ExecuteSqlQueryRequest, type ExecuteSqlQueryResponse, type ExpectedCapabilityBundleRevisions, type FilterCondition, type GraphBuildOptions, type HtmlMenuConfig, type IConversationStore, type ID, type InboundMessage, type InternalAgentNode, type InternalBaseNode, type InternalCreateCapabilityBundleInput, type InternalDSL, type InternalEdge, type InternalInput, type InternalInputNode, type InternalMapNode, type InternalNode, type InternalNodeConfig, type InternalOutput, type InternalState, type InternalStateField, type InternalTerminalNode, type InternalUpdateCapabilityBundleInput, type InterruptMessage, type InterruptPolicy, InvalidProjectCapabilityBundleConfigError, type LLMConfig, type LarkChannelInstallationConfig, type LatticeError, type LatticeEventBus, type LatticeMessage, type LocalA2AProviderId, type LocalA2AProviderState, type LocalA2AProviderStatus, type LocalA2ATemplateDefinition, type LocalRuntimeConfig, type LoggerClient, type LoggerConfig, type LoggerContext, type LoggerLatticeProtocol, LoggerType, MAX_PENDING_EXECUTION_RESULTS_LIMIT, type McpClient, type McpClientOptions, type McpConnectionStatus, type McpLatticeMessage, type McpLatticeProtocol, McpMessageType, type McpServerConfig, type McpServerConfigEntry, type McpServerConfigStore, type McpStats, type McpTool, type McpToolResult, type McpTransportType, type MemoryClient, type MemoryConfig, type MemoryLatticeProtocol, MemoryType, type MenuContentConfig, type MenuContentType, type MenuItem, type MenuRegistry, type MenuTarget, type Message, type MessageChunk, type MessageChunkType, MessageChunkTypes, type MessageContext, type MessageMiddleware, type MetricColumn, type MetricDataPoint, type MetricMeta, type MetricQueryResult, type MetricsMiddlewareConfig, type MetricsServerConfig, type MetricsServerConfigEntry, type MetricsServerConfigStore, type MetricsServerType, type MiddlewareType, type ModelLatticeProtocol, type OutboundMessage, PROJECT_TASK_LIFECYCLE_ACTIONS, type PaginatedResult, type PaginationParams, type PinoFileOptions, type Plugin, type PluginConnection, type PluginConnectionFieldSchema, type PluginConnectionTestResult, type PluginContext, type PluginDiscoveredResource, type PluginMeta, type PluginMetaOutput, type PluginMiddlewareFactory, type PluginSkillDefinition, type PluginSkillResource, type PluginStandardConnectionConfig, type PluginToolMeta, type ProcessingAgentConfig, type Project, type ProjectBotMembership, type ProjectBotMembershipStatus, type ProjectBotMembershipStore, type ProjectBotRole, type ProjectCapabilityConfig, type ProjectFilter, type ProjectHumanRole, type ProjectKind, type ProjectLifecycleEventCursor, type ProjectLifecycleEventQuery, type ProjectMembership, type ProjectMembershipMutationResult, type ProjectMembershipStatus, type ProjectMembershipStore, type ProjectRoom, ProjectRoomBrokerCapacityError, type ProjectRoomBusinessEvent, type ProjectRoomBusinessEventDraft, type ProjectRoomControlEvent, ProjectRoomCursorError, type ProjectRoomEventBrokerProtocol, type ProjectRoomEventId, type ProjectRoomEventOf, type ProjectRoomEventScope, type ProjectRoomEventSubscription, type ProjectRoomMembershipChangedEvent, type ProjectRoomMention, type ProjectRoomMessage, type ProjectRoomMessageAuthor, type ProjectRoomMessageCreatedEvent, type ProjectRoomMessageCursor, type ProjectRoomMessageSource, type ProjectRoomMessageStore, type ProjectRoomPublicBotMembership, type ProjectRoomPublicMembership, type ProjectRoomPublicMessage, type ProjectRoomRealtimeActor, type ProjectRoomRosterChangedEvent, type ProjectRoomScopedBusinessEvent, type ProjectRoomSseWritable, type ProjectRoomStore, type ProjectRoomTaskChangedEvent, type ProjectRoomThreadMetadata, type ProjectRoomTrustedRunContext, type ProjectStore, type ProjectTaskLifecycleAction, ProjectTaskStoreUnsupportedError, type ProjectTaskThreadMetadata, type ProjectTaskTrustedRunContext, type ProjectTaskWorkItemStore, type PublicChannelInstallationType, type QueryParams, type QueryResultFormat, type QueryWorkflowRunsOptions, type QueryWorkflowRunsResult, type QueueClient, type QueueConfig, type QueueLatticeProtocol, type QueueResult, QueueType, type QueuedExecutionMode, type ReactAgentConfig, type ReplyTarget, type ResourceAddress, type ResourceResolver, type Result, type RunStep, type STTClient, type STTConfig, type STTModelLatticeProtocol, type SandboxMiddlewareConfig, type ScheduleClient, type ScheduleConfig, type ScheduleCronOptions, ScheduleExecutionType, type ScheduleLatticeProtocol, type ScheduleOnceOptions, type ScheduleStorage, ScheduleType, type ScheduledTaskDefinition, ScheduledTaskStatus, type SchedulerMiddlewareConfig, type SemanticMetricsFilter, type SemanticMetricsQueryRequest, type SemanticMetricsQueryResponse, type SemanticMetricsServerConfig, type ShareRecord, type ShareResult, type ShareVisibility, type SharedResourceStore, type Skill, type SkillClient, type SkillClientType, type SkillConfig, type SkillLatticeProtocol, type SkillStore, type SkillStoreContext, type SqlMiddlewareConfig, type StepStatus, type StepType, type StorageType, type SystemMessage, type TableQueryRequest, type TableQueryResponse, type TaskBeliefDiagnosticCode, type TaskBeliefEntry, type TaskBeliefParseFailure, type TaskBeliefParseResult, type TaskBeliefParseSuccess, type TaskBeliefState, type TaskDependentListQuery, type TaskFileRef, type TaskHandler, type TaskItem, type TaskListFilter, type TaskMutationSnapshot, type TaskStore, type TaskWorkItem, type TaskWorkItemListFilter, type TaskWorkItemStore, type TeamAgentConfig, type TeamTeammateConfig, type Tenant, type TenantStatus, type TenantStore, type TestMcpServerToolsResponse, type Thread, type ThreadStore, type Timestamp, type ToolCall, type ToolConfig, type ToolExecutor, type ToolLatticeProtocol, type ToolMessage, type TopologyEdge, type TranscriptionResult, type TrustedRunContext, type UIComponent, UIComponentType, type UIConfig, type UILatticeProtocol, type UpdateAgentWebAppInput, type UpdateCapabilityBundleInput, type UpdateChannelInstallationRequest, type UpdateCollectionRequest, type UpdateDatabaseConfigRequest, type UpdateMcpServerConfigRequest, type UpdateMenuItemInput, type UpdateMetricsServerConfigRequest, type UpdateProjectCapabilityBundlesResult, type UpdateProjectRequest, type UpdateRunStepRequest, type UpdateTaskRequest, type UpdateTenantRequest, type UpdateUserRequest, type UpdateUserTenantLinkRequest, type UpdateWorkflowRunRequest, type UpdateWorkspaceRequest, type User, type UserMessage, type UserStatus, type UserStore, type UserTenantLink, type UserTenantLinkStore, type UserTenantRole, type VectorStoreConfig, type VectorStoreCreateParams, type VectorStoreLatticeProtocol, type VectorStoreProvider, type WechatChannelInstallationConfig, type WorkflowAgentConfig, type WorkflowRun, type WorkflowRunStatus, type WorkflowTrackingStore, type Workspace, type WorkspaceStore, type YamlAgentStep, type YamlMapStep, type YamlParallelBlock, type YamlTopLevelStep, type YamlWorkflow, assertGenericProjectConfig, descriptorDataValue, getSubAgentsFromConfig, getToolsFromConfig, hasTools, isA2ARemoteAgentConfig, isDeepAgentConfig, isExecutionResultEventKey, isProcessingAgentConfig, isProjectRoomEventId, isTeamAgentConfig, isWorkflowAgentConfig, parseAgentWebAppGenUIBlock, parseProjectRoomEventId, parseQueuedExecutionMode, parseTaskBeliefState, parseTrustedRunContext, replaceTaskBeliefState, requireProjectTaskWorkItemStore, snapshotExactArray, snapshotExactRecord, snapshotProjectRoomBotMembershipRealtime, snapshotProjectRoomMembershipRealtime, snapshotProjectRoomMessageRealtime, taskBeliefStatesEqual, toProjectRoomPublicBotMembership, toProjectRoomPublicMembership, toProjectRoomPublicMessage };
|
|
6225
|
+
export { type A2AApiKeyEntry, type A2AApiKeyRecord, type A2AApiKeyStore, type A2AAuthContext, type A2AExposure, type A2ARemoteAgentConfig, type AgentClient, type AgentConfig, type AgentConfigWithTools, type AgentLatticeProtocol, type AgentMenuConfig, type AgentMiddlewareConfig, type AgentRunConfig, AgentType, type AgentWebApp, type AgentWebAppAppearance, type AgentWebAppBootstrap, type AgentWebAppCalloutWidget, type AgentWebAppError, type AgentWebAppErrorCode, type AgentWebAppFeatures, type AgentWebAppGenUIBlock, type AgentWebAppIdentityAssurance, type AgentWebAppIdentityConfig, type AgentWebAppIdentityPolicy, type AgentWebAppInterrupt, type AgentWebAppIssuerConfig, type AgentWebAppRuntimeMessage, type AgentWebAppRuntimeThread, type AgentWebAppScope, type AgentWebAppStatus, type AgentWebAppStore, type AgentWebAppStorePatch, type AgentWebAppStreamEvent, type AgentWebAppStreamProjectionContext, type AgentWebAppTableWidget, type AgentWebAppThreadMetadata, type AgentWebAppUpdateOptions, type Assistant, type AssistantMessage, type AssistantStore, type Attachment, type AvailableModule, type BaseLatticeProtocol, type BaseMessage, type Binding, type BindingListParams, type BindingMutablePatch, type BindingRegistry, type BootstrapFilesConfig, type BrowserMiddlewareConfig, type Callback, type CapabilityBundle, type CapabilityBundleDeleteResult, type CapabilityBundleStore, type CapabilityBundleUpdateConflict, type CapabilityFieldSource, type CapabilityOverride, type CapabilityPreview, type CapabilityPreviewIssue, type CapabilityRuntime, type ChannelAdapter, type ChannelBindingMigrationConflict, ChannelBindingMigrationConflictError, type ChannelInstallation, type ChannelInstallationStore, type ChannelInstallationType, type ClawMiddlewareConfig, type CodeEvalMiddlewareConfig, type Collection, type CollectionField, type CollectionFieldType, type CollectionMiddlewareConfig, type CollectionSchema, type CollectionStore, type ConnectionEntry, type ConnectionStore, type ConversationRecord, type CreateA2AApiKeyInput, type CreateAgentWebAppInput, type CreateAssistantRequest, type CreateBindingInput, type CreateCapabilityBundleInput, type CreateChannelInstallationInput, type CreateChannelInstallationRequest, type CreateCollectionRequest, type CreateConversationInput, type CreateDatabaseConfigRequest, type CreateEvalCaseRequest, type CreateEvalProjectRequest, type CreateEvalRunRequest, type CreateEvalSuiteRequest, type CreateMcpServerConfigRequest, type CreateMenuItemInput, type CreateMetricsServerConfigRequest, type CreateProjectRequest, type CreateRunStepRequest, type CreateShareRequest, type CreateSkillRequest, type CreateTaskRequest, type CreateTenantRequest, type CreateThreadRequest, type CreateUserRequest, type CreateUserTenantLinkRequest, type CreateWorkItemIfAbsentRequest, type CreateWorkItemRequest, type CreateWorkflowRunRequest, type CreateWorkspaceRequest, type CustomMenuConfig, type DataSource, type DatabaseConfig, type DatabaseConfigEntry, type DatabaseConfigStore, type DatabaseType, type DeepAgentConfig, type DescriptorDataValue, type DeveloperMessage, type DispatchResult, DuplicateChannelBindingSubjectError, EXECUTION_RESULT_EVENT_KEY_PATTERN, EXECUTION_RESULT_EVENT_KEY_PATTERN_SOURCE, EXECUTION_RESULT_EVENT_KEY_PREFIX, type EmbeddingsConfig, type EmbeddingsLatticeProtocol, type EvalCase, type EvalProject, type EvalProjectReport, type EvalRun, type EvalRunResult, type EvalStore, type EvalSuite, type ExecuteSqlQueryRequest, type ExecuteSqlQueryResponse, type ExpectedCapabilityBundleRevisions, type FilterCondition, type GraphBuildOptions, type HtmlMenuConfig, type IConversationStore, type ID, type InboundMessage, type InternalAgentNode, type InternalBaseNode, type InternalCreateCapabilityBundleInput, type InternalDSL, type InternalEdge, type InternalInput, type InternalInputNode, type InternalMapNode, type InternalNode, type InternalNodeConfig, type InternalOutput, type InternalState, type InternalStateField, type InternalTerminalNode, type InternalUpdateCapabilityBundleInput, type InterruptMessage, type InterruptPolicy, InvalidProjectCapabilityBundleConfigError, type LLMConfig, type LarkChannelInstallationConfig, type LatticeError, type LatticeEventBus, type LatticeMessage, type LocalA2AProviderId, type LocalA2AProviderState, type LocalA2AProviderStatus, type LocalA2ATemplateDefinition, type LocalRuntimeConfig, type LoggerClient, type LoggerConfig, type LoggerContext, type LoggerLatticeProtocol, LoggerType, MAX_PENDING_EXECUTION_RESULTS_LIMIT, type McpClient, type McpClientOptions, type McpConnectionStatus, type McpLatticeMessage, type McpLatticeProtocol, McpMessageType, type McpServerConfig, type McpServerConfigEntry, type McpServerConfigStore, type McpStats, type McpTool, type McpToolResult, type McpTransportType, type MemoryClient, type MemoryConfig, type MemoryLatticeProtocol, MemoryType, type MenuContentConfig, type MenuContentType, type MenuItem, type MenuRegistry, type MenuTarget, type Message, type MessageChunk, type MessageChunkType, MessageChunkTypes, type MessageContext, type MessageMiddleware, type MetricColumn, type MetricDataPoint, type MetricMeta, type MetricQueryResult, type MetricsMiddlewareConfig, type MetricsServerConfig, type MetricsServerConfigEntry, type MetricsServerConfigStore, type MetricsServerType, type MiddlewareType, type ModelLatticeProtocol, type OutboundMessage, PROJECT_ROOM_USER_CHANNEL_PROJECT, PROJECT_TASK_LIFECYCLE_ACTIONS, type PaginatedResult, type PaginationParams, type PinoFileOptions, type Plugin, type PluginConnection, type PluginConnectionFieldSchema, type PluginConnectionTestResult, type PluginContext, type PluginDiscoveredResource, type PluginMeta, type PluginMetaOutput, type PluginMiddlewareFactory, type PluginSkillDefinition, type PluginSkillResource, type PluginStandardConnectionConfig, type PluginToolMeta, type ProcessingAgentConfig, type Project, type ProjectBotMembership, type ProjectBotMembershipStatus, type ProjectBotMembershipStore, type ProjectBotRole, type ProjectCapabilityConfig, type ProjectFilter, type ProjectHumanRole, type ProjectKind, type ProjectLifecycleEventCursor, type ProjectLifecycleEventQuery, type ProjectMembership, type ProjectMembershipMutationResult, type ProjectMembershipStatus, type ProjectMembershipStore, type ProjectRoom, ProjectRoomBrokerCapacityError, type ProjectRoomBusinessEvent, type ProjectRoomBusinessEventDraft, type ProjectRoomControlEvent, ProjectRoomCursorError, type ProjectRoomEventBrokerProtocol, type ProjectRoomEventId, type ProjectRoomEventOf, type ProjectRoomEventScope, type ProjectRoomEventSubscription, type ProjectRoomMembershipAffectedEvent, type ProjectRoomMembershipChangedEvent, type ProjectRoomMention, type ProjectRoomMessage, type ProjectRoomMessageAuthor, type ProjectRoomMessageCreatedEvent, type ProjectRoomMessageCursor, type ProjectRoomMessageSource, type ProjectRoomMessageStore, type ProjectRoomPublicBotMembership, type ProjectRoomPublicMembership, type ProjectRoomPublicMessage, type ProjectRoomReadChangedEvent, type ProjectRoomReadState, type ProjectRoomReadStateStore, type ProjectRoomRealtimeActor, type ProjectRoomRosterChangedEvent, type ProjectRoomScopedBusinessEvent, type ProjectRoomSseWritable, type ProjectRoomStore, type ProjectRoomTaskChangedEvent, type ProjectRoomThreadMetadata, type ProjectRoomTrustedRunContext, type ProjectStore, type ProjectTaskLifecycleAction, ProjectTaskStoreUnsupportedError, type ProjectTaskThreadMetadata, type ProjectTaskTrustedRunContext, type ProjectTaskWorkItemStore, type PublicChannelInstallationType, type QueryParams, type QueryResultFormat, type QueryWorkflowRunsOptions, type QueryWorkflowRunsResult, type QueueClient, type QueueConfig, type QueueLatticeProtocol, type QueueResult, QueueType, type QueuedExecutionMode, type ReactAgentConfig, type ReplyTarget, type ResourceAddress, type ResourceResolver, type Result, type RunStep, type STTClient, type STTConfig, type STTModelLatticeProtocol, type SandboxMiddlewareConfig, type ScheduleClient, type ScheduleConfig, type ScheduleCronOptions, ScheduleExecutionType, type ScheduleLatticeProtocol, type ScheduleOnceOptions, type ScheduleStorage, ScheduleType, type ScheduledTaskDefinition, ScheduledTaskStatus, type SchedulerMiddlewareConfig, type SemanticMetricsFilter, type SemanticMetricsQueryRequest, type SemanticMetricsQueryResponse, type SemanticMetricsServerConfig, type ShareRecord, type ShareResult, type ShareVisibility, type SharedResourceStore, type Skill, type SkillClient, type SkillClientType, type SkillConfig, type SkillLatticeProtocol, type SkillStore, type SkillStoreContext, type SqlMiddlewareConfig, type StepStatus, type StepType, type StorageType, type SystemMessage, type TableQueryRequest, type TableQueryResponse, type TaskBeliefDiagnosticCode, type TaskBeliefEntry, type TaskBeliefParseFailure, type TaskBeliefParseResult, type TaskBeliefParseSuccess, type TaskBeliefState, type TaskDependentListQuery, type TaskFileRef, type TaskHandler, type TaskItem, type TaskListFilter, type TaskMutationSnapshot, type TaskStore, type TaskWorkItem, type TaskWorkItemListFilter, type TaskWorkItemStore, type TeamAgentConfig, type TeamTeammateConfig, type Tenant, type TenantStatus, type TenantStore, type TestMcpServerToolsResponse, type Thread, type ThreadStore, type Timestamp, type ToolCall, type ToolConfig, type ToolExecutor, type ToolLatticeProtocol, type ToolMessage, type TopologyEdge, type TranscriptionResult, type TrustedRunContext, type UIComponent, UIComponentType, type UIConfig, type UILatticeProtocol, type UpdateAgentWebAppInput, type UpdateCapabilityBundleInput, type UpdateChannelInstallationRequest, type UpdateCollectionRequest, type UpdateDatabaseConfigRequest, type UpdateMcpServerConfigRequest, type UpdateMenuItemInput, type UpdateMetricsServerConfigRequest, type UpdateProjectCapabilityBundlesResult, type UpdateProjectRequest, type UpdateRunStepRequest, type UpdateTaskRequest, type UpdateTenantRequest, type UpdateUserRequest, type UpdateUserTenantLinkRequest, type UpdateWorkflowRunRequest, type UpdateWorkspaceRequest, type User, type UserMessage, type UserStatus, type UserStore, type UserTenantLink, type UserTenantLinkStore, type UserTenantRole, type VectorStoreConfig, type VectorStoreCreateParams, type VectorStoreLatticeProtocol, type VectorStoreProvider, type WechatChannelInstallationConfig, type WorkflowAgentConfig, type WorkflowRun, type WorkflowRunStatus, type WorkflowTrackingStore, type Workspace, type WorkspaceStore, type YamlAgentStep, type YamlMapStep, type YamlParallelBlock, type YamlTopLevelStep, type YamlWorkflow, assertGenericProjectConfig, createAgentWebAppStreamProjectionContext, descriptorDataValue, getSubAgentsFromConfig, getToolsFromConfig, hasTools, isA2ARemoteAgentConfig, isDeepAgentConfig, isExecutionResultEventKey, isProcessingAgentConfig, isProjectRoomEventId, isTeamAgentConfig, isWorkflowAgentConfig, parseAgentWebAppGenUIBlock, parseProjectRoomEventId, parseQueuedExecutionMode, parseTaskBeliefState, parseTrustedRunContext, projectAgentWebAppChunk, projectRoomUserEventScope, replaceTaskBeliefState, requireProjectTaskWorkItemStore, snapshotExactArray, snapshotExactRecord, snapshotProjectRoomBotMembershipRealtime, snapshotProjectRoomMembershipRealtime, snapshotProjectRoomMessageRealtime, taskBeliefStatesEqual, toProjectRoomPublicBotMembership, toProjectRoomPublicMembership, toProjectRoomPublicMessage };
|
package/dist/index.d.ts
CHANGED
|
@@ -1771,8 +1771,14 @@ interface McpServerConfig {
|
|
|
1771
1771
|
args?: string[];
|
|
1772
1772
|
/** URL for HTTP/SSE transport */
|
|
1773
1773
|
url?: string;
|
|
1774
|
-
/** Environment variables */
|
|
1774
|
+
/** Environment variables (stdio transport; credentials passed to the server process) */
|
|
1775
1775
|
env?: Record<string, string>;
|
|
1776
|
+
/**
|
|
1777
|
+
* Custom HTTP headers sent with every request (streamable_http / sse only).
|
|
1778
|
+
* Commonly used for authentication, e.g. `{ Authorization: "Bearer <token>" }`.
|
|
1779
|
+
* Ignored for stdio transport. Values are encrypted at rest by config stores.
|
|
1780
|
+
*/
|
|
1781
|
+
headers?: Record<string, string>;
|
|
1776
1782
|
/** Connection timeout in milliseconds */
|
|
1777
1783
|
timeout?: number;
|
|
1778
1784
|
/** Retry attempts on connection failure */
|
|
@@ -2865,7 +2871,8 @@ interface McpServerConfigEntry {
|
|
|
2865
2871
|
*/
|
|
2866
2872
|
selectedTools: string[];
|
|
2867
2873
|
/**
|
|
2868
|
-
* Whether
|
|
2874
|
+
* Whether secret values (env vars and headers) are encrypted at rest.
|
|
2875
|
+
* Field name kept for backward compatibility; it covers config.headers too.
|
|
2869
2876
|
*/
|
|
2870
2877
|
isEnvEncrypted: boolean;
|
|
2871
2878
|
/**
|
|
@@ -4750,6 +4757,8 @@ interface AgentWebAppFeatures {
|
|
|
4750
4757
|
attachments: boolean;
|
|
4751
4758
|
hitl: boolean;
|
|
4752
4759
|
genUI: boolean;
|
|
4760
|
+
/** File panel surface. Tolerated missing (treated as false) for records created before Phase 2. */
|
|
4761
|
+
files?: boolean;
|
|
4753
4762
|
}
|
|
4754
4763
|
/** Optional display customization for an Agent Web App. */
|
|
4755
4764
|
interface AgentWebAppAppearance {
|
|
@@ -4757,6 +4766,27 @@ interface AgentWebAppAppearance {
|
|
|
4757
4766
|
welcomeMessage?: string;
|
|
4758
4767
|
primaryColor?: string;
|
|
4759
4768
|
}
|
|
4769
|
+
/** Identity assurance levels reported by the runtime. */
|
|
4770
|
+
type AgentWebAppIdentityAssurance = "unverified" | "verified";
|
|
4771
|
+
/** How external callers may identify themselves for this web app. */
|
|
4772
|
+
type AgentWebAppIdentityPolicy = "unverified" | "verified" | "both";
|
|
4773
|
+
/** One trusted issuer entry. `secret` pairs with HS256, `jwksUrl` with RS256. */
|
|
4774
|
+
interface AgentWebAppIssuerConfig {
|
|
4775
|
+
/** Exact `iss` claim match. */
|
|
4776
|
+
iss: string;
|
|
4777
|
+
/** Exact `aud` claim match; conventionally the webAppId. */
|
|
4778
|
+
aud: string;
|
|
4779
|
+
alg: "HS256" | "RS256";
|
|
4780
|
+
/** Shared secret for HS256. */
|
|
4781
|
+
secret?: string;
|
|
4782
|
+
/** JWKS endpoint URL for RS256. */
|
|
4783
|
+
jwksUrl?: string;
|
|
4784
|
+
}
|
|
4785
|
+
/** Identity configuration block for a web app. Absent = V1 unverified behavior. */
|
|
4786
|
+
interface AgentWebAppIdentityConfig {
|
|
4787
|
+
policy: AgentWebAppIdentityPolicy;
|
|
4788
|
+
issuers: AgentWebAppIssuerConfig[];
|
|
4789
|
+
}
|
|
4760
4790
|
/** Persisted React SDK publication of an assistant. */
|
|
4761
4791
|
interface AgentWebApp {
|
|
4762
4792
|
id: string;
|
|
@@ -4771,6 +4801,7 @@ interface AgentWebApp {
|
|
|
4771
4801
|
scope: AgentWebAppScope;
|
|
4772
4802
|
features: AgentWebAppFeatures;
|
|
4773
4803
|
appearance: AgentWebAppAppearance;
|
|
4804
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4774
4805
|
createdAt: Date;
|
|
4775
4806
|
updatedAt: Date;
|
|
4776
4807
|
}
|
|
@@ -4785,6 +4816,7 @@ interface CreateAgentWebAppInput {
|
|
|
4785
4816
|
scope: AgentWebAppScope;
|
|
4786
4817
|
features: AgentWebAppFeatures;
|
|
4787
4818
|
appearance: AgentWebAppAppearance;
|
|
4819
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4788
4820
|
}
|
|
4789
4821
|
/** Editable fields accepted when updating an Agent Web App. Nested objects use merge semantics. */
|
|
4790
4822
|
interface UpdateAgentWebAppInput {
|
|
@@ -4793,6 +4825,7 @@ interface UpdateAgentWebAppInput {
|
|
|
4793
4825
|
scope?: Partial<AgentWebAppScope>;
|
|
4794
4826
|
features?: Partial<AgentWebAppFeatures>;
|
|
4795
4827
|
appearance?: Partial<AgentWebAppAppearance>;
|
|
4828
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4796
4829
|
}
|
|
4797
4830
|
/** Internal persistence patch. Nested objects are complete replacements when provided. */
|
|
4798
4831
|
interface AgentWebAppStorePatch {
|
|
@@ -4801,6 +4834,7 @@ interface AgentWebAppStorePatch {
|
|
|
4801
4834
|
scope?: AgentWebAppScope;
|
|
4802
4835
|
features?: AgentWebAppFeatures;
|
|
4803
4836
|
appearance?: AgentWebAppAppearance;
|
|
4837
|
+
identity?: AgentWebAppIdentityConfig;
|
|
4804
4838
|
status?: AgentWebAppStatus;
|
|
4805
4839
|
}
|
|
4806
4840
|
/** Optional optimistic concurrency guard for an Agent Web App update. */
|
|
@@ -4878,7 +4912,7 @@ interface AgentWebAppBootstrap {
|
|
|
4878
4912
|
defaultModelKey?: string;
|
|
4879
4913
|
features: AgentWebAppFeatures;
|
|
4880
4914
|
appearance: AgentWebAppAppearance;
|
|
4881
|
-
identityAssurance:
|
|
4915
|
+
identityAssurance: AgentWebAppIdentityAssurance;
|
|
4882
4916
|
};
|
|
4883
4917
|
projects: Array<{
|
|
4884
4918
|
id: string;
|
|
@@ -4940,6 +4974,20 @@ type AgentWebAppStreamEvent = {
|
|
|
4940
4974
|
/** Validate and copy one strict public GenUI block at a trust boundary. */
|
|
4941
4975
|
declare function parseAgentWebAppGenUIBlock(value: unknown): AgentWebAppGenUIBlock | undefined;
|
|
4942
4976
|
|
|
4977
|
+
/** Per-consumer projection metadata; it does not control Agent execution. */
|
|
4978
|
+
interface AgentWebAppStreamProjectionContext {
|
|
4979
|
+
readonly startedToolIds: Set<string>;
|
|
4980
|
+
readonly allowInterrupts: boolean;
|
|
4981
|
+
readonly allowGenUI: boolean;
|
|
4982
|
+
}
|
|
4983
|
+
/** Create projection metadata shared by all chunks in one public stream. */
|
|
4984
|
+
declare function createAgentWebAppStreamProjectionContext(options?: {
|
|
4985
|
+
allowInterrupts?: boolean;
|
|
4986
|
+
allowGenUI?: boolean;
|
|
4987
|
+
}): AgentWebAppStreamProjectionContext;
|
|
4988
|
+
/** Purely project one internal Agent chunk onto zero or more stable public events. */
|
|
4989
|
+
declare function projectAgentWebAppChunk(chunk: MessageChunk, context?: AgentWebAppStreamProjectionContext): AgentWebAppStreamEvent[];
|
|
4990
|
+
|
|
4943
4991
|
/**
|
|
4944
4992
|
* Capability bundle persistence protocol.
|
|
4945
4993
|
*
|
|
@@ -5333,6 +5381,38 @@ interface ProjectRoomMessageStore {
|
|
|
5333
5381
|
}): Promise<ProjectRoomMessage[]>;
|
|
5334
5382
|
/** Finds a room message by identifier within a tenant. */
|
|
5335
5383
|
findById(tenantId: string, id: string): Promise<ProjectRoomMessage | null>;
|
|
5384
|
+
/** Counts messages created strictly after a horizon, optionally excluding one human author. */
|
|
5385
|
+
countAfter(input: {
|
|
5386
|
+
tenantId: string;
|
|
5387
|
+
roomId: string;
|
|
5388
|
+
after: Date;
|
|
5389
|
+
excludeAuthorUserId?: string;
|
|
5390
|
+
}): Promise<number>;
|
|
5391
|
+
}
|
|
5392
|
+
|
|
5393
|
+
/** A user's per-room read marker used to compute unread counts. */
|
|
5394
|
+
interface ProjectRoomReadState {
|
|
5395
|
+
tenantId: string;
|
|
5396
|
+
roomId: string;
|
|
5397
|
+
userId: string;
|
|
5398
|
+
/** Read horizon: messages created strictly after this instant are unread. */
|
|
5399
|
+
lastReadAt: Date;
|
|
5400
|
+
updatedAt: Date;
|
|
5401
|
+
}
|
|
5402
|
+
/** Persistence operations for per-user, per-room read markers. */
|
|
5403
|
+
interface ProjectRoomReadStateStore {
|
|
5404
|
+
/** Returns the user's read marker for a room, or null when never reported. */
|
|
5405
|
+
get(tenantId: string, roomId: string, userId: string): Promise<ProjectRoomReadState | null>;
|
|
5406
|
+
/**
|
|
5407
|
+
* Upserts the read marker monotonically: an earlier lastReadAt never moves
|
|
5408
|
+
* the marker backwards. Returns the stored state after the write.
|
|
5409
|
+
*/
|
|
5410
|
+
markRead(input: {
|
|
5411
|
+
tenantId: string;
|
|
5412
|
+
roomId: string;
|
|
5413
|
+
userId: string;
|
|
5414
|
+
lastReadAt: Date;
|
|
5415
|
+
}): Promise<ProjectRoomReadState>;
|
|
5336
5416
|
}
|
|
5337
5417
|
|
|
5338
5418
|
/** A safely extracted value from an own enumerable data-property descriptor. */
|
|
@@ -5437,10 +5517,22 @@ type ProjectRoomTaskChangedEvent = ProjectRoomEventOf<"task.changed", {
|
|
|
5437
5517
|
ownerMembershipId: string;
|
|
5438
5518
|
updatedAt: string;
|
|
5439
5519
|
}>;
|
|
5520
|
+
/** A read-marker update broadcast on the acting user's channel. */
|
|
5521
|
+
type ProjectRoomReadChangedEvent = ProjectRoomEventOf<"read.changed", {
|
|
5522
|
+
projectId: string;
|
|
5523
|
+
roomId: string;
|
|
5524
|
+
lastReadAt: string;
|
|
5525
|
+
}>;
|
|
5526
|
+
/** A membership mutation that may change a user's room subscription set. */
|
|
5527
|
+
type ProjectRoomMembershipAffectedEvent = ProjectRoomEventOf<"membership.affected", {
|
|
5528
|
+
change: "added" | "removed" | "role_changed";
|
|
5529
|
+
projectId: string;
|
|
5530
|
+
roomId: string;
|
|
5531
|
+
}>;
|
|
5440
5532
|
/** All identified business events retained by the realtime broker. */
|
|
5441
|
-
type ProjectRoomBusinessEvent = ProjectRoomMessageCreatedEvent | ProjectRoomRosterChangedEvent | ProjectRoomMembershipChangedEvent | ProjectRoomTaskChangedEvent;
|
|
5533
|
+
type ProjectRoomBusinessEvent = ProjectRoomMessageCreatedEvent | ProjectRoomRosterChangedEvent | ProjectRoomMembershipChangedEvent | ProjectRoomTaskChangedEvent | ProjectRoomReadChangedEvent | ProjectRoomMembershipAffectedEvent;
|
|
5442
5534
|
/** A business event before the broker assigns its process-local ID. */
|
|
5443
|
-
type ProjectRoomBusinessEventDraft = Omit<ProjectRoomMessageCreatedEvent, "id"> | Omit<ProjectRoomRosterChangedEvent, "id"> | Omit<ProjectRoomMembershipChangedEvent, "id"> | Omit<ProjectRoomTaskChangedEvent, "id">;
|
|
5535
|
+
type ProjectRoomBusinessEventDraft = Omit<ProjectRoomMessageCreatedEvent, "id"> | Omit<ProjectRoomRosterChangedEvent, "id"> | Omit<ProjectRoomMembershipChangedEvent, "id"> | Omit<ProjectRoomTaskChangedEvent, "id"> | Omit<ProjectRoomReadChangedEvent, "id"> | Omit<ProjectRoomMembershipAffectedEvent, "id">;
|
|
5444
5536
|
/** A connection control event; control events are never replayed. */
|
|
5445
5537
|
type ProjectRoomControlEvent = {
|
|
5446
5538
|
type: "ready";
|
|
@@ -5456,7 +5548,7 @@ type ProjectRoomControlEvent = {
|
|
|
5456
5548
|
} | {
|
|
5457
5549
|
type: "access.revoked";
|
|
5458
5550
|
data: {
|
|
5459
|
-
reason: "PROJECT_ACCESS_REVOKED" | "TOKEN_EXPIRED";
|
|
5551
|
+
reason: "PROJECT_ACCESS_REVOKED" | "TOKEN_EXPIRED" | "CONNECTION_SUPERSEDED";
|
|
5460
5552
|
};
|
|
5461
5553
|
};
|
|
5462
5554
|
/** The authenticated identity used by Project Room realtime access checks. */
|
|
@@ -5518,6 +5610,10 @@ interface ProjectRoomEventId {
|
|
|
5518
5610
|
declare function parseProjectRoomEventId(value: unknown): ProjectRoomEventId | undefined;
|
|
5519
5611
|
/** Checks an event ID without relying on realm-specific object identity. */
|
|
5520
5612
|
declare function isProjectRoomEventId(value: unknown): value is string;
|
|
5613
|
+
/** projectId sentinel marking a per-user event channel inside the room broker. */
|
|
5614
|
+
declare const PROJECT_ROOM_USER_CHANNEL_PROJECT = "__user_channel__";
|
|
5615
|
+
/** Builds the per-user broker scope used for membership and read broadcasts. */
|
|
5616
|
+
declare function projectRoomUserEventScope(tenantId: string, userId: string): ProjectRoomEventScope;
|
|
5521
5617
|
/** Maps a canonical internal message to the strict public message DTO. */
|
|
5522
5618
|
declare function toProjectRoomPublicMessage(value: unknown): ProjectRoomPublicMessage | undefined;
|
|
5523
5619
|
/** A descriptor-safe message projection together with its canonical realtime scope. */
|
|
@@ -6126,4 +6222,4 @@ declare function parseTrustedRunContext(value: unknown): TrustedRunContext;
|
|
|
6126
6222
|
*/
|
|
6127
6223
|
declare function parseQueuedExecutionMode(value: unknown): QueuedExecutionMode;
|
|
6128
6224
|
|
|
6129
|
-
export { type A2AApiKeyEntry, type A2AApiKeyRecord, type A2AApiKeyStore, type A2AAuthContext, type A2AExposure, type A2ARemoteAgentConfig, type AgentClient, type AgentConfig, type AgentConfigWithTools, type AgentLatticeProtocol, type AgentMenuConfig, type AgentMiddlewareConfig, type AgentRunConfig, AgentType, type AgentWebApp, type AgentWebAppAppearance, type AgentWebAppBootstrap, type AgentWebAppCalloutWidget, type AgentWebAppError, type AgentWebAppErrorCode, type AgentWebAppFeatures, type AgentWebAppGenUIBlock, type AgentWebAppInterrupt, type AgentWebAppRuntimeMessage, type AgentWebAppRuntimeThread, type AgentWebAppScope, type AgentWebAppStatus, type AgentWebAppStore, type AgentWebAppStorePatch, type AgentWebAppStreamEvent, type AgentWebAppTableWidget, type AgentWebAppThreadMetadata, type AgentWebAppUpdateOptions, type Assistant, type AssistantMessage, type AssistantStore, type Attachment, type AvailableModule, type BaseLatticeProtocol, type BaseMessage, type Binding, type BindingListParams, type BindingMutablePatch, type BindingRegistry, type BootstrapFilesConfig, type BrowserMiddlewareConfig, type Callback, type CapabilityBundle, type CapabilityBundleDeleteResult, type CapabilityBundleStore, type CapabilityBundleUpdateConflict, type CapabilityFieldSource, type CapabilityOverride, type CapabilityPreview, type CapabilityPreviewIssue, type CapabilityRuntime, type ChannelAdapter, type ChannelBindingMigrationConflict, ChannelBindingMigrationConflictError, type ChannelInstallation, type ChannelInstallationStore, type ChannelInstallationType, type ClawMiddlewareConfig, type CodeEvalMiddlewareConfig, type Collection, type CollectionField, type CollectionFieldType, type CollectionMiddlewareConfig, type CollectionSchema, type CollectionStore, type ConnectionEntry, type ConnectionStore, type ConversationRecord, type CreateA2AApiKeyInput, type CreateAgentWebAppInput, type CreateAssistantRequest, type CreateBindingInput, type CreateCapabilityBundleInput, type CreateChannelInstallationInput, type CreateChannelInstallationRequest, type CreateCollectionRequest, type CreateConversationInput, type CreateDatabaseConfigRequest, type CreateEvalCaseRequest, type CreateEvalProjectRequest, type CreateEvalRunRequest, type CreateEvalSuiteRequest, type CreateMcpServerConfigRequest, type CreateMenuItemInput, type CreateMetricsServerConfigRequest, type CreateProjectRequest, type CreateRunStepRequest, type CreateShareRequest, type CreateSkillRequest, type CreateTaskRequest, type CreateTenantRequest, type CreateThreadRequest, type CreateUserRequest, type CreateUserTenantLinkRequest, type CreateWorkItemIfAbsentRequest, type CreateWorkItemRequest, type CreateWorkflowRunRequest, type CreateWorkspaceRequest, type CustomMenuConfig, type DataSource, type DatabaseConfig, type DatabaseConfigEntry, type DatabaseConfigStore, type DatabaseType, type DeepAgentConfig, type DescriptorDataValue, type DeveloperMessage, type DispatchResult, DuplicateChannelBindingSubjectError, EXECUTION_RESULT_EVENT_KEY_PATTERN, EXECUTION_RESULT_EVENT_KEY_PATTERN_SOURCE, EXECUTION_RESULT_EVENT_KEY_PREFIX, type EmbeddingsConfig, type EmbeddingsLatticeProtocol, type EvalCase, type EvalProject, type EvalProjectReport, type EvalRun, type EvalRunResult, type EvalStore, type EvalSuite, type ExecuteSqlQueryRequest, type ExecuteSqlQueryResponse, type ExpectedCapabilityBundleRevisions, type FilterCondition, type GraphBuildOptions, type HtmlMenuConfig, type IConversationStore, type ID, type InboundMessage, type InternalAgentNode, type InternalBaseNode, type InternalCreateCapabilityBundleInput, type InternalDSL, type InternalEdge, type InternalInput, type InternalInputNode, type InternalMapNode, type InternalNode, type InternalNodeConfig, type InternalOutput, type InternalState, type InternalStateField, type InternalTerminalNode, type InternalUpdateCapabilityBundleInput, type InterruptMessage, type InterruptPolicy, InvalidProjectCapabilityBundleConfigError, type LLMConfig, type LarkChannelInstallationConfig, type LatticeError, type LatticeEventBus, type LatticeMessage, type LocalA2AProviderId, type LocalA2AProviderState, type LocalA2AProviderStatus, type LocalA2ATemplateDefinition, type LocalRuntimeConfig, type LoggerClient, type LoggerConfig, type LoggerContext, type LoggerLatticeProtocol, LoggerType, MAX_PENDING_EXECUTION_RESULTS_LIMIT, type McpClient, type McpClientOptions, type McpConnectionStatus, type McpLatticeMessage, type McpLatticeProtocol, McpMessageType, type McpServerConfig, type McpServerConfigEntry, type McpServerConfigStore, type McpStats, type McpTool, type McpToolResult, type McpTransportType, type MemoryClient, type MemoryConfig, type MemoryLatticeProtocol, MemoryType, type MenuContentConfig, type MenuContentType, type MenuItem, type MenuRegistry, type MenuTarget, type Message, type MessageChunk, type MessageChunkType, MessageChunkTypes, type MessageContext, type MessageMiddleware, type MetricColumn, type MetricDataPoint, type MetricMeta, type MetricQueryResult, type MetricsMiddlewareConfig, type MetricsServerConfig, type MetricsServerConfigEntry, type MetricsServerConfigStore, type MetricsServerType, type MiddlewareType, type ModelLatticeProtocol, type OutboundMessage, PROJECT_TASK_LIFECYCLE_ACTIONS, type PaginatedResult, type PaginationParams, type PinoFileOptions, type Plugin, type PluginConnection, type PluginConnectionFieldSchema, type PluginConnectionTestResult, type PluginContext, type PluginDiscoveredResource, type PluginMeta, type PluginMetaOutput, type PluginMiddlewareFactory, type PluginSkillDefinition, type PluginSkillResource, type PluginStandardConnectionConfig, type PluginToolMeta, type ProcessingAgentConfig, type Project, type ProjectBotMembership, type ProjectBotMembershipStatus, type ProjectBotMembershipStore, type ProjectBotRole, type ProjectCapabilityConfig, type ProjectFilter, type ProjectHumanRole, type ProjectKind, type ProjectLifecycleEventCursor, type ProjectLifecycleEventQuery, type ProjectMembership, type ProjectMembershipMutationResult, type ProjectMembershipStatus, type ProjectMembershipStore, type ProjectRoom, ProjectRoomBrokerCapacityError, type ProjectRoomBusinessEvent, type ProjectRoomBusinessEventDraft, type ProjectRoomControlEvent, ProjectRoomCursorError, type ProjectRoomEventBrokerProtocol, type ProjectRoomEventId, type ProjectRoomEventOf, type ProjectRoomEventScope, type ProjectRoomEventSubscription, type ProjectRoomMembershipChangedEvent, type ProjectRoomMention, type ProjectRoomMessage, type ProjectRoomMessageAuthor, type ProjectRoomMessageCreatedEvent, type ProjectRoomMessageCursor, type ProjectRoomMessageSource, type ProjectRoomMessageStore, type ProjectRoomPublicBotMembership, type ProjectRoomPublicMembership, type ProjectRoomPublicMessage, type ProjectRoomRealtimeActor, type ProjectRoomRosterChangedEvent, type ProjectRoomScopedBusinessEvent, type ProjectRoomSseWritable, type ProjectRoomStore, type ProjectRoomTaskChangedEvent, type ProjectRoomThreadMetadata, type ProjectRoomTrustedRunContext, type ProjectStore, type ProjectTaskLifecycleAction, ProjectTaskStoreUnsupportedError, type ProjectTaskThreadMetadata, type ProjectTaskTrustedRunContext, type ProjectTaskWorkItemStore, type PublicChannelInstallationType, type QueryParams, type QueryResultFormat, type QueryWorkflowRunsOptions, type QueryWorkflowRunsResult, type QueueClient, type QueueConfig, type QueueLatticeProtocol, type QueueResult, QueueType, type QueuedExecutionMode, type ReactAgentConfig, type ReplyTarget, type ResourceAddress, type ResourceResolver, type Result, type RunStep, type STTClient, type STTConfig, type STTModelLatticeProtocol, type SandboxMiddlewareConfig, type ScheduleClient, type ScheduleConfig, type ScheduleCronOptions, ScheduleExecutionType, type ScheduleLatticeProtocol, type ScheduleOnceOptions, type ScheduleStorage, ScheduleType, type ScheduledTaskDefinition, ScheduledTaskStatus, type SchedulerMiddlewareConfig, type SemanticMetricsFilter, type SemanticMetricsQueryRequest, type SemanticMetricsQueryResponse, type SemanticMetricsServerConfig, type ShareRecord, type ShareResult, type ShareVisibility, type SharedResourceStore, type Skill, type SkillClient, type SkillClientType, type SkillConfig, type SkillLatticeProtocol, type SkillStore, type SkillStoreContext, type SqlMiddlewareConfig, type StepStatus, type StepType, type StorageType, type SystemMessage, type TableQueryRequest, type TableQueryResponse, type TaskBeliefDiagnosticCode, type TaskBeliefEntry, type TaskBeliefParseFailure, type TaskBeliefParseResult, type TaskBeliefParseSuccess, type TaskBeliefState, type TaskDependentListQuery, type TaskFileRef, type TaskHandler, type TaskItem, type TaskListFilter, type TaskMutationSnapshot, type TaskStore, type TaskWorkItem, type TaskWorkItemListFilter, type TaskWorkItemStore, type TeamAgentConfig, type TeamTeammateConfig, type Tenant, type TenantStatus, type TenantStore, type TestMcpServerToolsResponse, type Thread, type ThreadStore, type Timestamp, type ToolCall, type ToolConfig, type ToolExecutor, type ToolLatticeProtocol, type ToolMessage, type TopologyEdge, type TranscriptionResult, type TrustedRunContext, type UIComponent, UIComponentType, type UIConfig, type UILatticeProtocol, type UpdateAgentWebAppInput, type UpdateCapabilityBundleInput, type UpdateChannelInstallationRequest, type UpdateCollectionRequest, type UpdateDatabaseConfigRequest, type UpdateMcpServerConfigRequest, type UpdateMenuItemInput, type UpdateMetricsServerConfigRequest, type UpdateProjectCapabilityBundlesResult, type UpdateProjectRequest, type UpdateRunStepRequest, type UpdateTaskRequest, type UpdateTenantRequest, type UpdateUserRequest, type UpdateUserTenantLinkRequest, type UpdateWorkflowRunRequest, type UpdateWorkspaceRequest, type User, type UserMessage, type UserStatus, type UserStore, type UserTenantLink, type UserTenantLinkStore, type UserTenantRole, type VectorStoreConfig, type VectorStoreCreateParams, type VectorStoreLatticeProtocol, type VectorStoreProvider, type WechatChannelInstallationConfig, type WorkflowAgentConfig, type WorkflowRun, type WorkflowRunStatus, type WorkflowTrackingStore, type Workspace, type WorkspaceStore, type YamlAgentStep, type YamlMapStep, type YamlParallelBlock, type YamlTopLevelStep, type YamlWorkflow, assertGenericProjectConfig, descriptorDataValue, getSubAgentsFromConfig, getToolsFromConfig, hasTools, isA2ARemoteAgentConfig, isDeepAgentConfig, isExecutionResultEventKey, isProcessingAgentConfig, isProjectRoomEventId, isTeamAgentConfig, isWorkflowAgentConfig, parseAgentWebAppGenUIBlock, parseProjectRoomEventId, parseQueuedExecutionMode, parseTaskBeliefState, parseTrustedRunContext, replaceTaskBeliefState, requireProjectTaskWorkItemStore, snapshotExactArray, snapshotExactRecord, snapshotProjectRoomBotMembershipRealtime, snapshotProjectRoomMembershipRealtime, snapshotProjectRoomMessageRealtime, taskBeliefStatesEqual, toProjectRoomPublicBotMembership, toProjectRoomPublicMembership, toProjectRoomPublicMessage };
|
|
6225
|
+
export { type A2AApiKeyEntry, type A2AApiKeyRecord, type A2AApiKeyStore, type A2AAuthContext, type A2AExposure, type A2ARemoteAgentConfig, type AgentClient, type AgentConfig, type AgentConfigWithTools, type AgentLatticeProtocol, type AgentMenuConfig, type AgentMiddlewareConfig, type AgentRunConfig, AgentType, type AgentWebApp, type AgentWebAppAppearance, type AgentWebAppBootstrap, type AgentWebAppCalloutWidget, type AgentWebAppError, type AgentWebAppErrorCode, type AgentWebAppFeatures, type AgentWebAppGenUIBlock, type AgentWebAppIdentityAssurance, type AgentWebAppIdentityConfig, type AgentWebAppIdentityPolicy, type AgentWebAppInterrupt, type AgentWebAppIssuerConfig, type AgentWebAppRuntimeMessage, type AgentWebAppRuntimeThread, type AgentWebAppScope, type AgentWebAppStatus, type AgentWebAppStore, type AgentWebAppStorePatch, type AgentWebAppStreamEvent, type AgentWebAppStreamProjectionContext, type AgentWebAppTableWidget, type AgentWebAppThreadMetadata, type AgentWebAppUpdateOptions, type Assistant, type AssistantMessage, type AssistantStore, type Attachment, type AvailableModule, type BaseLatticeProtocol, type BaseMessage, type Binding, type BindingListParams, type BindingMutablePatch, type BindingRegistry, type BootstrapFilesConfig, type BrowserMiddlewareConfig, type Callback, type CapabilityBundle, type CapabilityBundleDeleteResult, type CapabilityBundleStore, type CapabilityBundleUpdateConflict, type CapabilityFieldSource, type CapabilityOverride, type CapabilityPreview, type CapabilityPreviewIssue, type CapabilityRuntime, type ChannelAdapter, type ChannelBindingMigrationConflict, ChannelBindingMigrationConflictError, type ChannelInstallation, type ChannelInstallationStore, type ChannelInstallationType, type ClawMiddlewareConfig, type CodeEvalMiddlewareConfig, type Collection, type CollectionField, type CollectionFieldType, type CollectionMiddlewareConfig, type CollectionSchema, type CollectionStore, type ConnectionEntry, type ConnectionStore, type ConversationRecord, type CreateA2AApiKeyInput, type CreateAgentWebAppInput, type CreateAssistantRequest, type CreateBindingInput, type CreateCapabilityBundleInput, type CreateChannelInstallationInput, type CreateChannelInstallationRequest, type CreateCollectionRequest, type CreateConversationInput, type CreateDatabaseConfigRequest, type CreateEvalCaseRequest, type CreateEvalProjectRequest, type CreateEvalRunRequest, type CreateEvalSuiteRequest, type CreateMcpServerConfigRequest, type CreateMenuItemInput, type CreateMetricsServerConfigRequest, type CreateProjectRequest, type CreateRunStepRequest, type CreateShareRequest, type CreateSkillRequest, type CreateTaskRequest, type CreateTenantRequest, type CreateThreadRequest, type CreateUserRequest, type CreateUserTenantLinkRequest, type CreateWorkItemIfAbsentRequest, type CreateWorkItemRequest, type CreateWorkflowRunRequest, type CreateWorkspaceRequest, type CustomMenuConfig, type DataSource, type DatabaseConfig, type DatabaseConfigEntry, type DatabaseConfigStore, type DatabaseType, type DeepAgentConfig, type DescriptorDataValue, type DeveloperMessage, type DispatchResult, DuplicateChannelBindingSubjectError, EXECUTION_RESULT_EVENT_KEY_PATTERN, EXECUTION_RESULT_EVENT_KEY_PATTERN_SOURCE, EXECUTION_RESULT_EVENT_KEY_PREFIX, type EmbeddingsConfig, type EmbeddingsLatticeProtocol, type EvalCase, type EvalProject, type EvalProjectReport, type EvalRun, type EvalRunResult, type EvalStore, type EvalSuite, type ExecuteSqlQueryRequest, type ExecuteSqlQueryResponse, type ExpectedCapabilityBundleRevisions, type FilterCondition, type GraphBuildOptions, type HtmlMenuConfig, type IConversationStore, type ID, type InboundMessage, type InternalAgentNode, type InternalBaseNode, type InternalCreateCapabilityBundleInput, type InternalDSL, type InternalEdge, type InternalInput, type InternalInputNode, type InternalMapNode, type InternalNode, type InternalNodeConfig, type InternalOutput, type InternalState, type InternalStateField, type InternalTerminalNode, type InternalUpdateCapabilityBundleInput, type InterruptMessage, type InterruptPolicy, InvalidProjectCapabilityBundleConfigError, type LLMConfig, type LarkChannelInstallationConfig, type LatticeError, type LatticeEventBus, type LatticeMessage, type LocalA2AProviderId, type LocalA2AProviderState, type LocalA2AProviderStatus, type LocalA2ATemplateDefinition, type LocalRuntimeConfig, type LoggerClient, type LoggerConfig, type LoggerContext, type LoggerLatticeProtocol, LoggerType, MAX_PENDING_EXECUTION_RESULTS_LIMIT, type McpClient, type McpClientOptions, type McpConnectionStatus, type McpLatticeMessage, type McpLatticeProtocol, McpMessageType, type McpServerConfig, type McpServerConfigEntry, type McpServerConfigStore, type McpStats, type McpTool, type McpToolResult, type McpTransportType, type MemoryClient, type MemoryConfig, type MemoryLatticeProtocol, MemoryType, type MenuContentConfig, type MenuContentType, type MenuItem, type MenuRegistry, type MenuTarget, type Message, type MessageChunk, type MessageChunkType, MessageChunkTypes, type MessageContext, type MessageMiddleware, type MetricColumn, type MetricDataPoint, type MetricMeta, type MetricQueryResult, type MetricsMiddlewareConfig, type MetricsServerConfig, type MetricsServerConfigEntry, type MetricsServerConfigStore, type MetricsServerType, type MiddlewareType, type ModelLatticeProtocol, type OutboundMessage, PROJECT_ROOM_USER_CHANNEL_PROJECT, PROJECT_TASK_LIFECYCLE_ACTIONS, type PaginatedResult, type PaginationParams, type PinoFileOptions, type Plugin, type PluginConnection, type PluginConnectionFieldSchema, type PluginConnectionTestResult, type PluginContext, type PluginDiscoveredResource, type PluginMeta, type PluginMetaOutput, type PluginMiddlewareFactory, type PluginSkillDefinition, type PluginSkillResource, type PluginStandardConnectionConfig, type PluginToolMeta, type ProcessingAgentConfig, type Project, type ProjectBotMembership, type ProjectBotMembershipStatus, type ProjectBotMembershipStore, type ProjectBotRole, type ProjectCapabilityConfig, type ProjectFilter, type ProjectHumanRole, type ProjectKind, type ProjectLifecycleEventCursor, type ProjectLifecycleEventQuery, type ProjectMembership, type ProjectMembershipMutationResult, type ProjectMembershipStatus, type ProjectMembershipStore, type ProjectRoom, ProjectRoomBrokerCapacityError, type ProjectRoomBusinessEvent, type ProjectRoomBusinessEventDraft, type ProjectRoomControlEvent, ProjectRoomCursorError, type ProjectRoomEventBrokerProtocol, type ProjectRoomEventId, type ProjectRoomEventOf, type ProjectRoomEventScope, type ProjectRoomEventSubscription, type ProjectRoomMembershipAffectedEvent, type ProjectRoomMembershipChangedEvent, type ProjectRoomMention, type ProjectRoomMessage, type ProjectRoomMessageAuthor, type ProjectRoomMessageCreatedEvent, type ProjectRoomMessageCursor, type ProjectRoomMessageSource, type ProjectRoomMessageStore, type ProjectRoomPublicBotMembership, type ProjectRoomPublicMembership, type ProjectRoomPublicMessage, type ProjectRoomReadChangedEvent, type ProjectRoomReadState, type ProjectRoomReadStateStore, type ProjectRoomRealtimeActor, type ProjectRoomRosterChangedEvent, type ProjectRoomScopedBusinessEvent, type ProjectRoomSseWritable, type ProjectRoomStore, type ProjectRoomTaskChangedEvent, type ProjectRoomThreadMetadata, type ProjectRoomTrustedRunContext, type ProjectStore, type ProjectTaskLifecycleAction, ProjectTaskStoreUnsupportedError, type ProjectTaskThreadMetadata, type ProjectTaskTrustedRunContext, type ProjectTaskWorkItemStore, type PublicChannelInstallationType, type QueryParams, type QueryResultFormat, type QueryWorkflowRunsOptions, type QueryWorkflowRunsResult, type QueueClient, type QueueConfig, type QueueLatticeProtocol, type QueueResult, QueueType, type QueuedExecutionMode, type ReactAgentConfig, type ReplyTarget, type ResourceAddress, type ResourceResolver, type Result, type RunStep, type STTClient, type STTConfig, type STTModelLatticeProtocol, type SandboxMiddlewareConfig, type ScheduleClient, type ScheduleConfig, type ScheduleCronOptions, ScheduleExecutionType, type ScheduleLatticeProtocol, type ScheduleOnceOptions, type ScheduleStorage, ScheduleType, type ScheduledTaskDefinition, ScheduledTaskStatus, type SchedulerMiddlewareConfig, type SemanticMetricsFilter, type SemanticMetricsQueryRequest, type SemanticMetricsQueryResponse, type SemanticMetricsServerConfig, type ShareRecord, type ShareResult, type ShareVisibility, type SharedResourceStore, type Skill, type SkillClient, type SkillClientType, type SkillConfig, type SkillLatticeProtocol, type SkillStore, type SkillStoreContext, type SqlMiddlewareConfig, type StepStatus, type StepType, type StorageType, type SystemMessage, type TableQueryRequest, type TableQueryResponse, type TaskBeliefDiagnosticCode, type TaskBeliefEntry, type TaskBeliefParseFailure, type TaskBeliefParseResult, type TaskBeliefParseSuccess, type TaskBeliefState, type TaskDependentListQuery, type TaskFileRef, type TaskHandler, type TaskItem, type TaskListFilter, type TaskMutationSnapshot, type TaskStore, type TaskWorkItem, type TaskWorkItemListFilter, type TaskWorkItemStore, type TeamAgentConfig, type TeamTeammateConfig, type Tenant, type TenantStatus, type TenantStore, type TestMcpServerToolsResponse, type Thread, type ThreadStore, type Timestamp, type ToolCall, type ToolConfig, type ToolExecutor, type ToolLatticeProtocol, type ToolMessage, type TopologyEdge, type TranscriptionResult, type TrustedRunContext, type UIComponent, UIComponentType, type UIConfig, type UILatticeProtocol, type UpdateAgentWebAppInput, type UpdateCapabilityBundleInput, type UpdateChannelInstallationRequest, type UpdateCollectionRequest, type UpdateDatabaseConfigRequest, type UpdateMcpServerConfigRequest, type UpdateMenuItemInput, type UpdateMetricsServerConfigRequest, type UpdateProjectCapabilityBundlesResult, type UpdateProjectRequest, type UpdateRunStepRequest, type UpdateTaskRequest, type UpdateTenantRequest, type UpdateUserRequest, type UpdateUserTenantLinkRequest, type UpdateWorkflowRunRequest, type UpdateWorkspaceRequest, type User, type UserMessage, type UserStatus, type UserStore, type UserTenantLink, type UserTenantLinkStore, type UserTenantRole, type VectorStoreConfig, type VectorStoreCreateParams, type VectorStoreLatticeProtocol, type VectorStoreProvider, type WechatChannelInstallationConfig, type WorkflowAgentConfig, type WorkflowRun, type WorkflowRunStatus, type WorkflowTrackingStore, type Workspace, type WorkspaceStore, type YamlAgentStep, type YamlMapStep, type YamlParallelBlock, type YamlTopLevelStep, type YamlWorkflow, assertGenericProjectConfig, createAgentWebAppStreamProjectionContext, descriptorDataValue, getSubAgentsFromConfig, getToolsFromConfig, hasTools, isA2ARemoteAgentConfig, isDeepAgentConfig, isExecutionResultEventKey, isProcessingAgentConfig, isProjectRoomEventId, isTeamAgentConfig, isWorkflowAgentConfig, parseAgentWebAppGenUIBlock, parseProjectRoomEventId, parseQueuedExecutionMode, parseTaskBeliefState, parseTrustedRunContext, projectAgentWebAppChunk, projectRoomUserEventScope, replaceTaskBeliefState, requireProjectTaskWorkItemStore, snapshotExactArray, snapshotExactRecord, snapshotProjectRoomBotMembershipRealtime, snapshotProjectRoomMembershipRealtime, snapshotProjectRoomMessageRealtime, taskBeliefStatesEqual, toProjectRoomPublicBotMembership, toProjectRoomPublicMembership, toProjectRoomPublicMessage };
|