@a5c-ai/agent-mux-gateway 5.0.1-staging.69cb593ea → 5.0.1-staging.69cb593ea536
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/auth/bootstrap.d.ts +1 -0
- package/dist/auth/hashing.d.ts +1 -0
- package/dist/auth/middleware.d.ts +1 -0
- package/dist/auth/tokens.d.ts +1 -0
- package/dist/builtin-adapters.d.ts +1 -0
- package/dist/config.d.ts +1 -0
- package/dist/fanout/client-conn.d.ts +1 -0
- package/dist/fanout/subscriber.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/kanban/lib/config-loader.d.ts +1 -0
- package/dist/kanban/lib/config.d.ts +1 -0
- package/dist/kanban/lib/dispatch-context-audit.d.ts +1 -0
- package/dist/kanban/lib/error-handler.d.ts +1 -0
- package/dist/kanban/lib/global-registry.d.ts +1 -0
- package/dist/kanban/lib/parser.d.ts +1 -0
- package/dist/kanban/lib/path-resolver.d.ts +1 -0
- package/dist/kanban/lib/review-service.d.ts +1 -0
- package/dist/kanban/lib/run-cache.d.ts +1 -0
- package/dist/kanban/lib/server-init.d.ts +1 -0
- package/dist/kanban/lib/services/automation-rule-service.d.ts +1 -0
- package/dist/kanban/lib/services/automation-webhook-service.d.ts +1 -0
- package/dist/kanban/lib/services/backlog-query-service.d.ts +1 -0
- package/dist/kanban/lib/services/dispatch-context-label-service.d.ts +1 -0
- package/dist/kanban/lib/services/kanban-storage.d.ts +1 -0
- package/dist/kanban/lib/services/run-query-service.d.ts +1 -0
- package/dist/kanban/lib/services/task-tag-service.d.ts +1 -0
- package/dist/kanban/lib/settings-section-storage.d.ts +1 -0
- package/dist/kanban/lib/source-discovery.d.ts +1 -0
- package/dist/kanban/lib/utils.d.ts +1 -0
- package/dist/kanban/lib/watcher.d.ts +1 -0
- package/dist/kanban/lib/workspace-lifecycle.d.ts +1 -0
- package/dist/kanban/routes.d.ts +1 -0
- package/dist/kanban/types/breakpoint.d.ts +1 -0
- package/dist/kanban/types/index.d.ts +1 -0
- package/dist/logging.d.ts +1 -0
- package/dist/notifications/types.d.ts +1 -0
- package/dist/notifications/webhook-out.d.ts +1 -0
- package/dist/pairing/short-code.d.ts +1 -0
- package/dist/protocol/errors.d.ts +1 -0
- package/dist/protocol/frames.d.ts +1 -0
- package/dist/protocol/v1.d.ts +1 -0
- package/dist/runs/event-log-index.d.ts +1 -0
- package/dist/runs/event-log.d.ts +1 -0
- package/dist/runs/hook-broker.d.ts +1 -0
- package/dist/runs/manager.d.ts +1 -0
- package/dist/runs/session-runtime.d.ts +1 -0
- package/dist/runs/types.d.ts +1 -0
- package/dist/server.d.ts +1 -0
- package/dist/static/webui-server.d.ts +1 -0
- package/package.json +3 -3
package/dist/auth/bootstrap.d.ts
CHANGED
package/dist/auth/hashing.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ export declare function hashToken(plaintext: string): Promise<string>;
|
|
|
2
2
|
export declare function verifyTokenHash(hash: string, plaintext: string): Promise<boolean>;
|
|
3
3
|
export declare const hashSecret: typeof hashToken;
|
|
4
4
|
export declare const verifySecretHash: typeof verifyTokenHash;
|
|
5
|
+
//# sourceMappingURL=hashing.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { TokenStore, TokenRecord } from './tokens.js';
|
|
2
2
|
export declare function parseBearerToken(headerValue: string | null | undefined): string | null;
|
|
3
3
|
export declare function authenticateBearerToken(tokenStore: TokenStore, headerValue: string | null | undefined): Promise<TokenRecord | null>;
|
|
4
|
+
//# sourceMappingURL=middleware.d.ts.map
|
package/dist/auth/tokens.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export interface RunnableGatewayAgent {
|
|
|
15
15
|
}
|
|
16
16
|
export declare function listRunnableGatewayAgents(client?: GatewayRunClient): Promise<RunnableGatewayAgent[]>;
|
|
17
17
|
export declare function listRunnableGatewayAgentNames(client?: GatewayRunClient): Promise<string[]>;
|
|
18
|
+
//# sourceMappingURL=builtin-adapters.d.ts.map
|
package/dist/config.d.ts
CHANGED
|
@@ -35,3 +35,4 @@ export interface GatewayConfig {
|
|
|
35
35
|
export declare const DEFAULT_GATEWAY_CONFIG: Readonly<GatewayConfig>;
|
|
36
36
|
export declare function resolveGatewayConfig(config?: Partial<GatewayConfig>): GatewayConfig;
|
|
37
37
|
export declare function resolveGatewayEnvConfig(env?: NodeJS.ProcessEnv): Partial<GatewayConfig>;
|
|
38
|
+
//# sourceMappingURL=config.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { isNotFoundError, type WatchSource, type KanbanConfig, type ObserverConfig, invalidateConfigCache, writeConfig, getConfig, } from "./config-loader.js";
|
|
2
2
|
export { type DiscoveredRun, invalidateDiscoveryCache, discoverAllRunDirs, discoverAllRunsParentDirs, } from "./source-discovery.js";
|
|
3
3
|
export { findRunDir } from "./path-resolver.js";
|
|
4
|
+
//# sourceMappingURL=config.d.ts.map
|
|
@@ -10,3 +10,4 @@ export interface DispatchContextAuditRecord {
|
|
|
10
10
|
}
|
|
11
11
|
export declare function findDispatchContextAuditsByRunId(snapshot: KanbanBacklogSnapshot | null | undefined, runId: string): DispatchContextAuditRecord[];
|
|
12
12
|
export declare function findDispatchContextAuditsBySessionId(snapshot: KanbanBacklogSnapshot | null | undefined, sessionId: string): DispatchContextAuditRecord[];
|
|
13
|
+
//# sourceMappingURL=dispatch-context-audit.d.ts.map
|
|
@@ -34,3 +34,4 @@ export declare function parseRunDir(runPath: string, incremental?: IncrementalRu
|
|
|
34
34
|
export declare function parseTaskDetail(runPath: string, effectId: string): Promise<TaskDetail | null>;
|
|
35
35
|
export declare function getRunDigest(runPath: string): Promise<RunDigest>;
|
|
36
36
|
export declare function getRunIds(runsPath: string): Promise<string[]>;
|
|
37
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -34,3 +34,4 @@ export interface KanbanStorageDeps {
|
|
|
34
34
|
export declare const defaultKanbanStorageDeps: KanbanStorageDeps;
|
|
35
35
|
export declare function readKanbanStorageFile(deps: KanbanStorageDeps): Promise<KanbanStoragePayload | null>;
|
|
36
36
|
export declare function writeKanbanStorageFile(deps: KanbanStorageDeps, payload: KanbanStoragePayload): Promise<void>;
|
|
37
|
+
//# sourceMappingURL=kanban-storage.d.ts.map
|
|
@@ -11,3 +11,4 @@ export interface SettingsSectionStorage {
|
|
|
11
11
|
}
|
|
12
12
|
export declare function loadSettingsSectionStorage(): Promise<SettingsSectionStorage>;
|
|
13
13
|
export declare function writeSettingsSectionStorage(data: SettingsSectionStorage): Promise<void>;
|
|
14
|
+
//# sourceMappingURL=settings-section-storage.d.ts.map
|
|
@@ -8,3 +8,4 @@ export interface DiscoveredRun {
|
|
|
8
8
|
export declare function invalidateDiscoveryCache(): void;
|
|
9
9
|
export declare function discoverAllRunDirs(): Promise<DiscoveredRun[]>;
|
|
10
10
|
export declare function discoverAllRunsParentDirs(): Promise<string[]>;
|
|
11
|
+
//# sourceMappingURL=source-discovery.d.ts.map
|
|
@@ -6,3 +6,4 @@ export declare function getStatusColor(status: string): string;
|
|
|
6
6
|
export declare function getStatusBg(status: string): string;
|
|
7
7
|
export declare function formatShortId(id: string, chars?: number): string;
|
|
8
8
|
export declare function friendlyProcessName(processId: string): string;
|
|
9
|
+
//# sourceMappingURL=utils.d.ts.map
|
package/dist/kanban/routes.d.ts
CHANGED
package/dist/logging.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { HookRequestWebhookPayload, NotificationWebhookConfig } from './types.js';
|
|
2
2
|
export declare function createHookWebhookPayload(runId: string, hookRequestId: string, kind: string, payload: Record<string, unknown>): HookRequestWebhookPayload;
|
|
3
3
|
export declare function emitHookWebhook(config: NotificationWebhookConfig, payload: HookRequestWebhookPayload): Promise<void>;
|
|
4
|
+
//# sourceMappingURL=webhook-out.d.ts.map
|
|
@@ -105,3 +105,4 @@ export declare const gatewayFrameSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
105
105
|
}, z.core.$strip>], "type">;
|
|
106
106
|
export declare function encodeFrame(frame: GatewayFrame): string;
|
|
107
107
|
export declare function decodeFrame(input: string): GatewayFrame;
|
|
108
|
+
//# sourceMappingURL=frames.d.ts.map
|
package/dist/protocol/v1.d.ts
CHANGED
|
@@ -109,3 +109,4 @@ export interface PairingConsumedFrame {
|
|
|
109
109
|
export type ClientFrame = AuthFrame | SubscribeFrame | UnsubscribeFrame | SessionSubscribeFrame | SessionUnsubscribeFrame | SessionStartFrame | SessionMessageFrame | PingFrame | HookDecisionFrame | PairingRegisterFrame | PairingConsumeFrame;
|
|
110
110
|
export type ServerFrame = HelloFrame | ErrorFrame | PongFrame | RunEventFrame | HookRequestFrame | HookResolvedFrame | PairingConsumedFrame;
|
|
111
111
|
export type GatewayFrame = ClientFrame | ServerFrame;
|
|
112
|
+
//# sourceMappingURL=v1.d.ts.map
|
package/dist/runs/event-log.d.ts
CHANGED
package/dist/runs/manager.d.ts
CHANGED
package/dist/runs/types.d.ts
CHANGED
package/dist/server.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/agent-mux-gateway",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.69cb593ea536",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Gateway package for remote and browser-facing agent-mux surfaces",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"prepublishOnly": "npm run build"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@a5c-ai/agent-mux-adapters": "5.0.1-staging.
|
|
53
|
-
"@a5c-ai/agent-mux-core": "5.0.1-staging.
|
|
52
|
+
"@a5c-ai/agent-mux-adapters": "5.0.1-staging.69cb593ea536",
|
|
53
|
+
"@a5c-ai/agent-mux-core": "5.0.1-staging.69cb593ea536",
|
|
54
54
|
"@hono/node-server": "^1.19.14",
|
|
55
55
|
"argon2": "^0.44.0",
|
|
56
56
|
"hono": "^4.12.14",
|