@keystrokehq/keystroke 0.0.119 → 0.0.120
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/agent.cjs +2 -2
- package/dist/agent.mjs +2 -2
- package/dist/{dist-BzJyq8Be.cjs → dist-B49J8eKM.cjs} +24 -2
- package/dist/{dist-BzJyq8Be.cjs.map → dist-B49J8eKM.cjs.map} +1 -1
- package/dist/{dist-Cq3K4ThZ.mjs → dist-D-kSk8J4.mjs} +24 -2
- package/dist/{dist-Cq3K4ThZ.mjs.map → dist-D-kSk8J4.mjs.map} +1 -1
- package/dist/{dist-CrhxVAmy.mjs → dist-DADOYGvE.mjs} +2 -2
- package/dist/{dist-CrhxVAmy.mjs.map → dist-DADOYGvE.mjs.map} +1 -1
- package/dist/{dist-BQoJa1T9.cjs → dist-Di1xp40q.cjs} +2 -2
- package/dist/{dist-BQoJa1T9.cjs.map → dist-Di1xp40q.cjs.map} +1 -1
- package/dist/{mistral-Cef8tTg6.mjs → mistral-BdFvTj57.mjs} +2 -2
- package/dist/{mistral-Cef8tTg6.mjs.map → mistral-BdFvTj57.mjs.map} +1 -1
- package/dist/{mistral-d_zRqCl4.cjs → mistral-DYgVFLRm.cjs} +2 -2
- package/dist/{mistral-d_zRqCl4.cjs.map → mistral-DYgVFLRm.cjs.map} +1 -1
- package/dist/{sse-Be_-Z2q9.cjs → sse-B3RwBUeJ.cjs} +2 -2
- package/dist/{sse-Be_-Z2q9.cjs.map → sse-B3RwBUeJ.cjs.map} +1 -1
- package/dist/{sse-DVJH9S07.mjs → sse-D-RR1U_i.mjs} +2 -2
- package/dist/{sse-DVJH9S07.mjs.map → sse-D-RR1U_i.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
|
@@ -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-D-RR1U_i.mjs");
|
|
13259
13259
|
return new SSEClientTransport(url, {
|
|
13260
13260
|
requestInit,
|
|
13261
13261
|
fetch: fetchImpl
|
|
@@ -16884,6 +16884,24 @@ const secretValuesSqlite = sqliteTable("secret_values", {
|
|
|
16884
16884
|
createdAt: integer("created_at", { mode: "timestamp_ms" }).notNull(),
|
|
16885
16885
|
updatedAt: integer("updated_at", { mode: "timestamp_ms" }).notNull()
|
|
16886
16886
|
}, (table) => [uniqueIndex("secret_values_ref_unique").on(table.projectId, table.refKind, table.refId, table.field), index("secret_values_ref_idx").on(table.projectId, table.refKind, table.refId)]);
|
|
16887
|
+
const skills = pgTable("skills", {
|
|
16888
|
+
id: text$1("id").primaryKey(),
|
|
16889
|
+
projectId: text$1("project_id").notNull(),
|
|
16890
|
+
key: text$1("key").notNull(),
|
|
16891
|
+
moduleFile: text$1("module_file").notNull(),
|
|
16892
|
+
registeredAt: timestamp("registered_at", { withTimezone: true }).notNull(),
|
|
16893
|
+
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull(),
|
|
16894
|
+
deletedAt: timestamp("deleted_at", { withTimezone: true })
|
|
16895
|
+
}, (table) => [uniqueIndex$1("skills_project_id_key_idx").on(table.projectId, table.key)]);
|
|
16896
|
+
const skillsSqlite = sqliteTable("skills", {
|
|
16897
|
+
id: text("id").primaryKey(),
|
|
16898
|
+
projectId: text("project_id").notNull(),
|
|
16899
|
+
key: text("key").notNull(),
|
|
16900
|
+
moduleFile: text("module_file").notNull(),
|
|
16901
|
+
registeredAt: integer("registered_at", { mode: "timestamp_ms" }).notNull(),
|
|
16902
|
+
updatedAt: integer("updated_at", { mode: "timestamp_ms" }).notNull(),
|
|
16903
|
+
deletedAt: integer("deleted_at", { mode: "timestamp_ms" })
|
|
16904
|
+
}, (table) => [uniqueIndex("skills_project_id_key_idx").on(table.projectId, table.key)]);
|
|
16887
16905
|
const workflows = pgTable("workflows", {
|
|
16888
16906
|
id: text$1("id").primaryKey(),
|
|
16889
16907
|
projectId: text$1("project_id").notNull(),
|
|
@@ -16980,6 +16998,10 @@ const tableRegistry = {
|
|
|
16980
16998
|
pg: secretValues$1,
|
|
16981
16999
|
sqlite: secretValuesSqlite
|
|
16982
17000
|
},
|
|
17001
|
+
skills: {
|
|
17002
|
+
pg: skills,
|
|
17003
|
+
sqlite: skillsSqlite
|
|
17004
|
+
},
|
|
16983
17005
|
workflows: {
|
|
16984
17006
|
pg: workflows,
|
|
16985
17007
|
sqlite: workflowsSqlite
|
|
@@ -18122,4 +18144,4 @@ async function resolveActionCredentials(requirements, options) {
|
|
|
18122
18144
|
//#endregion
|
|
18123
18145
|
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 };
|
|
18124
18146
|
|
|
18125
|
-
//# sourceMappingURL=dist-
|
|
18147
|
+
//# sourceMappingURL=dist-D-kSk8J4.mjs.map
|