@keystrokehq/keystroke 0.1.66 → 0.1.68
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-types.cjs +1 -1
- package/dist/agent-types.mjs +1 -1
- package/dist/agent.cjs +3 -3
- package/dist/agent.mjs +3 -3
- package/dist/{context-compaction-B2veGznA-BwkVoU7M.cjs → context-compaction-B2veGznA-C688EPuR.cjs} +2 -2
- package/dist/{context-compaction-B2veGznA-BwkVoU7M.cjs.map → context-compaction-B2veGznA-C688EPuR.cjs.map} +1 -1
- package/dist/{context-compaction-B2veGznA-C7mYE8OR.mjs → context-compaction-B2veGznA-CG-VGKtE.mjs} +2 -2
- package/dist/{context-compaction-B2veGznA-C7mYE8OR.mjs.map → context-compaction-B2veGznA-CG-VGKtE.mjs.map} +1 -1
- package/dist/{dist-Dsbh3YDr.mjs → dist-BIwsF7yy.mjs} +2 -2
- package/dist/{dist-Dsbh3YDr.mjs.map → dist-BIwsF7yy.mjs.map} +1 -1
- package/dist/dist-BTO9TriT.cjs.map +1 -1
- package/dist/dist-D52VUEv_.mjs.map +1 -1
- package/dist/{dist-CaJB7b-E.mjs → dist-Dy7p3EAF.mjs} +4 -2
- package/dist/dist-Dy7p3EAF.mjs.map +1 -0
- package/dist/{dist-CL7JwqCm.cjs → dist-YD2cpwXg.cjs} +2 -2
- package/dist/{dist-CL7JwqCm.cjs.map → dist-YD2cpwXg.cjs.map} +1 -1
- package/dist/{dist-CvuQJFOO.cjs → dist-wO8x431H.cjs} +4 -2
- package/dist/dist-wO8x431H.cjs.map +1 -0
- package/dist/index-BolOkiNw.d.mts.map +1 -1
- package/dist/index-GJs4NjSJ.d.cts.map +1 -1
- package/dist/{token--TO9S99D.mjs → token-DL31KIHH.mjs} +2 -2
- package/dist/{token--TO9S99D.mjs.map → token-DL31KIHH.mjs.map} +1 -1
- package/dist/{token-C_qVPKh4.cjs → token-DYGYwDdi.cjs} +2 -2
- package/dist/{token-C_qVPKh4.cjs.map → token-DYGYwDdi.cjs.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-CaJB7b-E.mjs.map +0 -1
- package/dist/dist-CvuQJFOO.cjs.map +0 -1
|
@@ -3604,6 +3604,7 @@ const workflows = pgTable("workflows", {
|
|
|
3604
3604
|
registeredAt: timestamp("registered_at", { withTimezone: true }).notNull(),
|
|
3605
3605
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull(),
|
|
3606
3606
|
deletedAt: timestamp("deleted_at", { withTimezone: true }),
|
|
3607
|
+
requestSchema: jsonb("request_schema").$type().notNull().default({}),
|
|
3607
3608
|
runInputValues: jsonb("run_input_values").$type(),
|
|
3608
3609
|
canvasAnnotationsJson: jsonb("canvas_annotations_json").$type(),
|
|
3609
3610
|
canvasAnnotationsHash: text$2("canvas_annotations_hash"),
|
|
@@ -3628,6 +3629,7 @@ const workflowsSqlite = sqliteTable("workflows", {
|
|
|
3628
3629
|
registeredAt: integer("registered_at", { mode: "timestamp_ms" }).notNull(),
|
|
3629
3630
|
updatedAt: integer("updated_at", { mode: "timestamp_ms" }).notNull(),
|
|
3630
3631
|
deletedAt: integer("deleted_at", { mode: "timestamp_ms" }),
|
|
3632
|
+
requestSchema: text$1("request_schema", { mode: "json" }).$type().notNull().default({}),
|
|
3631
3633
|
runInputValues: text$1("run_input_values", { mode: "json" }).$type(),
|
|
3632
3634
|
canvasAnnotationsJson: text$1("canvas_annotations_json", { mode: "json" }).$type(),
|
|
3633
3635
|
canvasAnnotationsHash: text$1("canvas_annotations_hash"),
|
|
@@ -6744,7 +6746,7 @@ var require_get_vercel_oidc_token = /* @__PURE__ */ require_chunk.__commonJSMin(
|
|
|
6744
6746
|
err = error;
|
|
6745
6747
|
}
|
|
6746
6748
|
try {
|
|
6747
|
-
const [{ getTokenPayload, isExpired }, { refreshToken }] = await Promise.all([await Promise.resolve().then(() => /* @__PURE__ */ require_chunk.__toESM(require_token_util())), await Promise.resolve().then(() => /* @__PURE__ */ require_chunk.__toESM(require("./token-
|
|
6749
|
+
const [{ getTokenPayload, isExpired }, { refreshToken }] = await Promise.all([await Promise.resolve().then(() => /* @__PURE__ */ require_chunk.__toESM(require_token_util())), await Promise.resolve().then(() => /* @__PURE__ */ require_chunk.__toESM(require("./token-DYGYwDdi.cjs").default))]);
|
|
6748
6750
|
if (!token || isExpired(getTokenPayload(token), options?.expirationBufferMs)) {
|
|
6749
6751
|
await refreshToken(options);
|
|
6750
6752
|
token = getVercelOidcTokenSync();
|
|
@@ -17798,4 +17800,4 @@ Object.defineProperty(exports, "wrapLanguageModel", {
|
|
|
17798
17800
|
}
|
|
17799
17801
|
});
|
|
17800
17802
|
|
|
17801
|
-
//# sourceMappingURL=dist-
|
|
17803
|
+
//# sourceMappingURL=dist-wO8x431H.cjs.map
|