@keystrokehq/keystroke 0.0.118 → 0.0.119
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/action.cjs +1 -1
- package/dist/action.mjs +1 -1
- package/dist/agent.cjs +3 -3
- package/dist/agent.mjs +3 -3
- package/dist/config.d.cts +3 -2
- package/dist/config.d.cts.map +1 -1
- package/dist/config.d.mts +3 -2
- package/dist/config.d.mts.map +1 -1
- package/dist/credentials.cjs +1 -1
- package/dist/credentials.mjs +1 -1
- package/dist/{dist-DjJCtaRu.cjs → dist-BQoJa1T9.cjs} +3 -3
- package/dist/{dist-DjJCtaRu.cjs.map → dist-BQoJa1T9.cjs.map} +1 -1
- package/dist/{dist-b5CNqyGQ.cjs → dist-BjfsHEOH.cjs} +3 -1
- package/dist/dist-BjfsHEOH.cjs.map +1 -0
- package/dist/{dist-SiXeSTEH.cjs → dist-BzJyq8Be.cjs} +5 -3
- package/dist/{dist-SiXeSTEH.cjs.map → dist-BzJyq8Be.cjs.map} +1 -1
- package/dist/{dist-B0V-dlM0.mjs → dist-Cq3K4ThZ.mjs} +5 -3
- package/dist/{dist-B0V-dlM0.mjs.map → dist-Cq3K4ThZ.mjs.map} +1 -1
- package/dist/{dist-DGemomEF.mjs → dist-CrhxVAmy.mjs} +3 -3
- package/dist/{dist-DGemomEF.mjs.map → dist-CrhxVAmy.mjs.map} +1 -1
- package/dist/{dist-DAnYjhfD.mjs → dist-DFuNY1VU.mjs} +3 -1
- package/dist/dist-DFuNY1VU.mjs.map +1 -0
- package/dist/index-CiuCYKLw.d.cts.map +1 -1
- package/dist/index-CiuCYKLw.d.mts.map +1 -1
- package/dist/{mistral-8YTDMT2c.mjs → mistral-Cef8tTg6.mjs} +2 -2
- package/dist/{mistral-8YTDMT2c.mjs.map → mistral-Cef8tTg6.mjs.map} +1 -1
- package/dist/{mistral-BxcHvI_M.cjs → mistral-d_zRqCl4.cjs} +2 -2
- package/dist/{mistral-BxcHvI_M.cjs.map → mistral-d_zRqCl4.cjs.map} +1 -1
- package/dist/{sse-DP8lp6YX.cjs → sse-Be_-Z2q9.cjs} +2 -2
- package/dist/{sse-DP8lp6YX.cjs.map → sse-Be_-Z2q9.cjs.map} +1 -1
- package/dist/{sse-BXcQV1E3.mjs → sse-DVJH9S07.mjs} +2 -2
- package/dist/{sse-BXcQV1E3.mjs.map → sse-DVJH9S07.mjs.map} +1 -1
- package/dist/trigger.cjs +1 -1
- package/dist/trigger.mjs +1 -1
- package/dist/workflow.cjs +1 -1
- package/dist/workflow.mjs +1 -1
- package/package.json +1 -1
- package/dist/dist-DAnYjhfD.mjs.map +0 -1
- package/dist/dist-b5CNqyGQ.cjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Bn as __require, Ln as __commonJSMin, Vn as __toESM } from "./dist-f_JGyGWx.mjs";
|
|
2
|
-
import { h as CREDENTIAL_SCOPE_LEVEL_TO_SCOPE_TYPE, x as normalizeCredentialList } from "./dist-
|
|
2
|
+
import { h as CREDENTIAL_SCOPE_LEVEL_TO_SCOPE_TYPE, x as normalizeCredentialList } from "./dist-DFuNY1VU.mjs";
|
|
3
3
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
4
4
|
import "node:fs";
|
|
5
5
|
import { ZodFirstPartyTypeKind } from "zod/v3";
|
|
@@ -13255,7 +13255,7 @@ async function connectMcpServer(name, options) {
|
|
|
13255
13255
|
}
|
|
13256
13256
|
async function createTransport(url, transport, requestInit, fetchImpl) {
|
|
13257
13257
|
if (transport === "sse") {
|
|
13258
|
-
const { SSEClientTransport } = await import("./sse-
|
|
13258
|
+
const { SSEClientTransport } = await import("./sse-DVJH9S07.mjs");
|
|
13259
13259
|
return new SSEClientTransport(url, {
|
|
13260
13260
|
requestInit,
|
|
13261
13261
|
fetch: fetchImpl
|
|
@@ -16727,6 +16727,7 @@ const gatewayAttachments = pgTable("gateway_attachments", {
|
|
|
16727
16727
|
agentKey: text$1("agent_key").notNull(),
|
|
16728
16728
|
moduleFile: text$1("module_file"),
|
|
16729
16729
|
platform: text$1("platform").notNull(),
|
|
16730
|
+
teamId: text$1("team_id"),
|
|
16730
16731
|
channelId: text$1("channel_id").notNull(),
|
|
16731
16732
|
source: jsonb("source").$type().notNull(),
|
|
16732
16733
|
registeredAt: timestamp("registered_at", { withTimezone: true }).notNull(),
|
|
@@ -16740,6 +16741,7 @@ const gatewayAttachmentsSqlite = sqliteTable("gateway_attachments", {
|
|
|
16740
16741
|
agentKey: text("agent_key").notNull(),
|
|
16741
16742
|
moduleFile: text("module_file"),
|
|
16742
16743
|
platform: text("platform").notNull(),
|
|
16744
|
+
teamId: text("team_id"),
|
|
16743
16745
|
channelId: text("channel_id").notNull(),
|
|
16744
16746
|
source: text("source", { mode: "json" }).$type().notNull(),
|
|
16745
16747
|
registeredAt: integer("registered_at", { mode: "timestamp_ms" }).notNull(),
|
|
@@ -18120,4 +18122,4 @@ async function resolveActionCredentials(requirements, options) {
|
|
|
18120
18122
|
//#endregion
|
|
18121
18123
|
export { zodToJsonSchema as A, isMcp as C, extractWWWAuthenticateParams as D, auth as E, createFetchWithInit as O, defineMcp as S, UnauthorizedError as T, logSystem as _, resolveActionCredentials as a, connectMcpServer as b, appendEvent as c, getSession as d, listMessageEvents as f, getTraceContext as g, captureConsole as h, isCredentialError as i, JSONRPCMessageSchema as j, normalizeHeaders as k, createSession as l, touchSession as m, captureCredentialToolErrors as n, resolveMcpTools as o, resolveRunSourceFromTraceContext as p, createCredentialResolver as r, MESSAGE_EVENT_TYPE as s, buildCredentialRunContext as t, getAgentByRoute as u, withSpan as v, createParser as w, connectMcpStdio as x, connectMcpDefinition as y };
|
|
18122
18124
|
|
|
18123
|
-
//# sourceMappingURL=dist-
|
|
18125
|
+
//# sourceMappingURL=dist-Cq3K4ThZ.mjs.map
|