@keystrokehq/keystroke 0.0.62 → 0.0.66
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.map +1 -1
- package/dist/config.d.mts.map +1 -1
- package/dist/credentials.cjs +1 -1
- package/dist/credentials.mjs +1 -1
- package/dist/{dist-BkXl9gQF.cjs → dist-Bism_aBn.cjs} +3 -3
- package/dist/{dist-BkXl9gQF.cjs.map → dist-Bism_aBn.cjs.map} +1 -1
- package/dist/{dist-BcS5RYgX.cjs → dist-D1jOLmXW.cjs} +21 -3
- package/dist/{dist-BcS5RYgX.cjs.map → dist-D1jOLmXW.cjs.map} +1 -1
- package/dist/{dist-BPbk55m-.cjs → dist-D5Grf4qu.cjs} +65 -7
- package/dist/dist-D5Grf4qu.cjs.map +1 -0
- package/dist/{dist-SRdmqD5M.mjs → dist-D8tPcFYP.mjs} +3 -3
- package/dist/{dist-SRdmqD5M.mjs.map → dist-D8tPcFYP.mjs.map} +1 -1
- package/dist/{dist-Bt-d5yhn.mjs → dist-DRPUD4yJ.mjs} +21 -3
- package/dist/{dist-Bt-d5yhn.mjs.map → dist-DRPUD4yJ.mjs.map} +1 -1
- package/dist/{dist-BxHP5hXz.mjs → dist-D_ZSj4pO.mjs} +65 -7
- package/dist/dist-D_ZSj4pO.mjs.map +1 -0
- package/dist/index-BeEymXir.d.cts.map +1 -1
- package/dist/index-BeEymXir.d.mts.map +1 -1
- package/dist/{mistral-DZaYJXpM.cjs → mistral-BGGYz0IH.cjs} +2 -2
- package/dist/{mistral-DZaYJXpM.cjs.map → mistral-BGGYz0IH.cjs.map} +1 -1
- package/dist/{mistral-DAR1MPzS.mjs → mistral-R2FX6jgL.mjs} +2 -2
- package/dist/{mistral-DAR1MPzS.mjs.map → mistral-R2FX6jgL.mjs.map} +1 -1
- package/dist/{sse-BjtIZJyR.mjs → sse-CKh7BzLf.mjs} +2 -2
- package/dist/{sse-BjtIZJyR.mjs.map → sse-CKh7BzLf.mjs.map} +1 -1
- package/dist/{sse-Cd5tB78r.cjs → sse-WhoZVnd2.cjs} +2 -2
- package/dist/{sse-Cd5tB78r.cjs.map → sse-WhoZVnd2.cjs.map} +1 -1
- package/dist/trigger.cjs +12 -11
- package/dist/trigger.cjs.map +1 -1
- package/dist/trigger.d.cts +7 -11
- package/dist/trigger.d.cts.map +1 -1
- package/dist/trigger.d.mts +7 -11
- package/dist/trigger.d.mts.map +1 -1
- package/dist/trigger.mjs +12 -12
- package/dist/trigger.mjs.map +1 -1
- package/dist/workflow.cjs +1 -1
- package/dist/workflow.mjs +1 -1
- package/package.json +6 -6
- package/dist/dist-BPbk55m-.cjs.map +0 -1
- package/dist/dist-BxHP5hXz.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const require_dist$1 = require("./dist-C7Fgk61q.cjs");
|
|
2
|
-
const require_dist$2 = require("./dist-
|
|
2
|
+
const require_dist$2 = require("./dist-D5Grf4qu.cjs");
|
|
3
3
|
let node_async_hooks = require("node:async_hooks");
|
|
4
4
|
require("node:fs");
|
|
5
5
|
let zod_v3 = require("zod/v3");
|
|
@@ -13259,7 +13259,7 @@ async function connectMcpServer(name, options) {
|
|
|
13259
13259
|
}
|
|
13260
13260
|
async function createTransport(url, transport, requestInit, fetchImpl) {
|
|
13261
13261
|
if (transport === "sse") {
|
|
13262
|
-
const { SSEClientTransport } = await Promise.resolve().then(() => require("./sse-
|
|
13262
|
+
const { SSEClientTransport } = await Promise.resolve().then(() => require("./sse-WhoZVnd2.cjs"));
|
|
13263
13263
|
return new SSEClientTransport(url, {
|
|
13264
13264
|
requestInit,
|
|
13265
13265
|
fetch: fetchImpl
|
|
@@ -17340,10 +17340,27 @@ const organizationUsers = pgTable("organization_users", {
|
|
|
17340
17340
|
organizationId: text$1("organization_id").notNull().references(() => organizations.id, { onDelete: "cascade" }),
|
|
17341
17341
|
userId: text$1("user_id").notNull().references(() => users.id, { onDelete: "cascade" }),
|
|
17342
17342
|
role: text$1("role").notNull().$type(),
|
|
17343
|
+
status: text$1("status").notNull().$type().default("active"),
|
|
17343
17344
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull(),
|
|
17344
17345
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull(),
|
|
17345
17346
|
deletedAt: timestamp("deleted_at", { withTimezone: true })
|
|
17346
17347
|
}, (table) => [primaryKey$1({ columns: [table.organizationId, table.userId] }), index$1("organization_users_user_id_idx").on(table.userId)]);
|
|
17348
|
+
const organizationInvitations = pgTable("organization_invitations", {
|
|
17349
|
+
id: text$1("id").primaryKey(),
|
|
17350
|
+
organizationId: text$1("organization_id").notNull().references(() => organizations.id, { onDelete: "cascade" }),
|
|
17351
|
+
userId: text$1("user_id").notNull().references(() => users.id, { onDelete: "cascade" }),
|
|
17352
|
+
email: text$1("email").notNull(),
|
|
17353
|
+
role: text$1("role").notNull().$type(),
|
|
17354
|
+
status: text$1("status").notNull().$type(),
|
|
17355
|
+
invitedByUserId: text$1("invited_by_user_id").notNull().references(() => users.id, { onDelete: "cascade" }),
|
|
17356
|
+
createdAt: timestamp("created_at", { withTimezone: true }).notNull(),
|
|
17357
|
+
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull(),
|
|
17358
|
+
expiresAt: timestamp("expires_at", { withTimezone: true })
|
|
17359
|
+
}, (table) => [
|
|
17360
|
+
index$1("organization_invitations_user_id_idx").on(table.userId),
|
|
17361
|
+
index$1("organization_invitations_organization_id_idx").on(table.organizationId),
|
|
17362
|
+
uniqueIndex$1("organization_invitations_org_user_pending_unique").on(table.organizationId, table.userId).where(sql`${table.status} = 'pending'`)
|
|
17363
|
+
]);
|
|
17347
17364
|
const projectStatusEnum = pgEnum("project_status", [
|
|
17348
17365
|
"inactive",
|
|
17349
17366
|
"starting",
|
|
@@ -17386,6 +17403,7 @@ const secretValues = pgTable("secret_values", {
|
|
|
17386
17403
|
buildPgSchema({
|
|
17387
17404
|
organizations: { pg: organizations },
|
|
17388
17405
|
organizationUsers: { pg: organizationUsers },
|
|
17406
|
+
organizationInvitations: { pg: organizationInvitations },
|
|
17389
17407
|
projects: { pg: projects },
|
|
17390
17408
|
projectArtifacts: { pg: projectArtifacts },
|
|
17391
17409
|
users: { pg: users },
|
|
@@ -18192,4 +18210,4 @@ Object.defineProperty(exports, "zodToJsonSchema", {
|
|
|
18192
18210
|
}
|
|
18193
18211
|
});
|
|
18194
18212
|
|
|
18195
|
-
//# sourceMappingURL=dist-
|
|
18213
|
+
//# sourceMappingURL=dist-D1jOLmXW.cjs.map
|