@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.
@@ -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-DVJH9S07.mjs");
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-Cq3K4ThZ.mjs.map
18147
+ //# sourceMappingURL=dist-D-kSk8J4.mjs.map