@keystrokehq/keystroke 0.0.169 → 0.0.170
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-p7YsfeYL.cjs → dist--dtTaEXy.cjs} +2 -2
- package/dist/{dist-p7YsfeYL.cjs.map → dist--dtTaEXy.cjs.map} +1 -1
- package/dist/{dist-mDYLnd1Q.mjs → dist-DT5CSOQc.mjs} +2 -2
- package/dist/{dist-mDYLnd1Q.mjs.map → dist-DT5CSOQc.mjs.map} +1 -1
- package/dist/{dist-BcFqLsLl.cjs → dist-Dz0i7l87.cjs} +3 -7
- package/dist/{dist-BcFqLsLl.cjs.map → dist-Dz0i7l87.cjs.map} +1 -1
- package/dist/{dist-DUaFNpsA.mjs → dist-bGasqeNy.mjs} +3 -7
- package/dist/{dist-DUaFNpsA.mjs.map → dist-bGasqeNy.mjs.map} +1 -1
- package/dist/{mistral-C35Ch46s.mjs → mistral-D56Ydau-.mjs} +2 -2
- package/dist/{mistral-C35Ch46s.mjs.map → mistral-D56Ydau-.mjs.map} +1 -1
- package/dist/{mistral-DcAdyGOb.cjs → mistral-GXPqP1mo.cjs} +2 -2
- package/dist/{mistral-DcAdyGOb.cjs.map → mistral-GXPqP1mo.cjs.map} +1 -1
- package/dist/{sse-C-wFsW3X.cjs → sse-D1mtozXN.cjs} +2 -2
- package/dist/{sse-C-wFsW3X.cjs.map → sse-D1mtozXN.cjs.map} +1 -1
- package/dist/{sse-DeQJE7T0.mjs → sse-U_LwOMpt.mjs} +2 -2
- package/dist/{sse-DeQJE7T0.mjs.map → sse-U_LwOMpt.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
|
@@ -13251,7 +13251,7 @@ async function connectMcpServer(name, options) {
|
|
|
13251
13251
|
}
|
|
13252
13252
|
async function createTransport(url, transport, requestInit, fetchImpl) {
|
|
13253
13253
|
if (transport === "sse") {
|
|
13254
|
-
const { SSEClientTransport } = await import("./sse-
|
|
13254
|
+
const { SSEClientTransport } = await import("./sse-U_LwOMpt.mjs");
|
|
13255
13255
|
return new SSEClientTransport(url, {
|
|
13256
13256
|
requestInit,
|
|
13257
13257
|
fetch: fetchImpl
|
|
@@ -17638,11 +17638,7 @@ const projects = pgTable("projects", {
|
|
|
17638
17638
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull(),
|
|
17639
17639
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull(),
|
|
17640
17640
|
deletedAt: timestamp("deleted_at", { withTimezone: true })
|
|
17641
|
-
}, (table) => [
|
|
17642
|
-
index$1("projects_organization_id_idx").on(table.organizationId),
|
|
17643
|
-
uniqueIndex$1("projects_org_auto_created_by_user_unique").on(table.organizationId, table.createdByUserId).where(sql`${table.createdByUserId} IS NOT NULL AND ${table.deletedAt} IS NULL`),
|
|
17644
|
-
uniqueIndex$1("projects_organization_slug_unique").on(table.organizationId, table.slug).where(sql`${table.deletedAt} IS NULL`)
|
|
17645
|
-
]);
|
|
17641
|
+
}, (table) => [index$1("projects_organization_id_idx").on(table.organizationId), uniqueIndex$1("projects_organization_slug_unique").on(table.organizationId, table.slug).where(sql`${table.deletedAt} IS NULL`)]);
|
|
17646
17642
|
const projectArtifactStatusEnum = pgEnum("project_artifact_status", ["pending", "ready"]);
|
|
17647
17643
|
const projectArtifacts = pgTable("project_artifacts", {
|
|
17648
17644
|
id: text$1("id").primaryKey(),
|
|
@@ -18289,4 +18285,4 @@ async function resolveActionCredentials(requirements, options) {
|
|
|
18289
18285
|
//#endregion
|
|
18290
18286
|
export { createFetchWithInit as A, connectMcpStdio as C, UnauthorizedError as D, createParser as E, zodToJsonSchema as M, JSONRPCMessageSchema as N, auth as O, connectMcpServer as S, isMcp as T, captureConsole as _, resolveActionCredentials as a, withSpan as b, addAgentSessionDuration as c, getAgentByRoute as d, getSession as f, touchSession as g, resolveRunSourceFromTraceContext as h, isCredentialError as i, normalizeHeaders as j, extractWWWAuthenticateParams as k, appendEvent as l, recordLlmUsageFromAssistantMessage as m, captureCredentialToolErrors as n, resolveMcpTools as o, listMessageEvents as p, createCredentialResolver as r, MESSAGE_EVENT_TYPE as s, buildCredentialRunContext as t, createSession as u, getTraceContext as v, defineMcp as w, connectMcpDefinition as x, logSystem as y };
|
|
18291
18287
|
|
|
18292
|
-
//# sourceMappingURL=dist-
|
|
18288
|
+
//# sourceMappingURL=dist-bGasqeNy.mjs.map
|