@keystrokehq/cli 0.1.91 → 0.1.92
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/dist-BA8hASdK.mjs +3 -0
- package/dist/{dist-CNjsuUwx.mjs → dist-BxVsr24X.mjs} +2 -2
- package/dist/{dist-CNjsuUwx.mjs.map → dist-BxVsr24X.mjs.map} +1 -1
- package/dist/{dist-BAOpw31u.mjs → dist-CMWayagw.mjs} +7 -3
- package/dist/dist-CMWayagw.mjs.map +1 -0
- package/dist/{dist-ZnMK-kgH.mjs → dist-Da8gEr12.mjs} +3 -3
- package/dist/{dist-ZnMK-kgH.mjs.map → dist-Da8gEr12.mjs.map} +1 -1
- package/dist/{dist-CppcpBQ9.mjs → dist-WHAEh05Y.mjs} +4 -1
- package/dist/dist-WHAEh05Y.mjs.map +1 -0
- package/dist/index.mjs +10 -10
- package/dist/{maybe-auto-update-CWdTMKQy.mjs → maybe-auto-update-cyl5Rnot.mjs} +2 -2
- package/dist/{maybe-auto-update-CWdTMKQy.mjs.map → maybe-auto-update-cyl5Rnot.mjs.map} +1 -1
- package/dist/{run-package-manager-update-DMMruzWa.mjs → run-package-manager-update-CT1F8EUI.mjs} +2 -2
- package/dist/{run-package-manager-update-DMMruzWa.mjs.map → run-package-manager-update-CT1F8EUI.mjs.map} +1 -1
- package/package.json +1 -1
- package/dist/dist-BAOpw31u.mjs.map +0 -1
- package/dist/dist-C2CYNwJz.mjs +0 -3
- package/dist/dist-CppcpBQ9.mjs.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { n as __require, t as __commonJSMin } from "./chunk-DiodbrVj.mjs";
|
|
3
|
-
import { $r as toJSONSchema, Ar as ZodType, Br as lazy, Cr as parseStoredRouteManifest, Fr as array, Ir as boolean$1, Jr as string, Kr as preprocess, Lr as custom, Mr as _function, Nr as _null, Rr as discriminatedUnion, Ur as number, Vr as literal, Wr as object, Yr as union, cn as PromptResponseSchema, et as DEFAULT_CLOUD_PLATFORM_ORIGIN, fn as ROUTE_MANIFEST_REL_PATH, jr as _enum, ln as PublicModelsResponseSchema, mr as credentialInputSchema, qr as record, wr as requiredDisplayTextSchema, yr as normalizeCredentialList } from "./dist-
|
|
4
|
-
import "./dist-
|
|
3
|
+
import { $r as toJSONSchema, Ar as ZodType, Br as lazy, Cr as parseStoredRouteManifest, Fr as array, Ir as boolean$1, Jr as string, Kr as preprocess, Lr as custom, Mr as _function, Nr as _null, Rr as discriminatedUnion, Ur as number, Vr as literal, Wr as object, Yr as union, cn as PromptResponseSchema, et as DEFAULT_CLOUD_PLATFORM_ORIGIN, fn as ROUTE_MANIFEST_REL_PATH, jr as _enum, ln as PublicModelsResponseSchema, mr as credentialInputSchema, qr as record, wr as requiredDisplayTextSchema, yr as normalizeCredentialList } from "./dist-WHAEh05Y.mjs";
|
|
4
|
+
import "./dist-BxVsr24X.mjs";
|
|
5
5
|
import "./chunk-BZUGFHVS-CPWRFwK8.mjs";
|
|
6
6
|
import "./chunk-DLL7UR66-BUYgzxnR.mjs";
|
|
7
7
|
import "./chunk-TN7HHBQW-CSB_R-XD.mjs";
|
|
@@ -2988,6 +2988,7 @@ const workflowRuns = pgTable("workflow_runs", {
|
|
|
2988
2988
|
sourceKind: text("source_kind").$type().notNull().default("api"),
|
|
2989
2989
|
sourceId: text("source_id"),
|
|
2990
2990
|
ranByUserId: text("ran_by_user_id"),
|
|
2991
|
+
credentialContext: jsonb("credential_context").$type(),
|
|
2991
2992
|
status: text("status").$type().notNull(),
|
|
2992
2993
|
trigger: text("trigger").$type().notNull(),
|
|
2993
2994
|
triggeredAt: timestamp("triggered_at", { withTimezone: true }).notNull(),
|
|
@@ -3009,6 +3010,7 @@ const workflowRunsSqlite = sqliteTable("workflow_runs", {
|
|
|
3009
3010
|
sourceKind: text$1("source_kind").$type().notNull().default("api"),
|
|
3010
3011
|
sourceId: text$1("source_id"),
|
|
3011
3012
|
ranByUserId: text$1("ran_by_user_id"),
|
|
3013
|
+
credentialContext: text$1("credential_context", { mode: "json" }).$type(),
|
|
3012
3014
|
status: text$1("status").$type().notNull(),
|
|
3013
3015
|
trigger: text$1("trigger").$type().notNull(),
|
|
3014
3016
|
triggeredAt: integer$1("triggered_at", { mode: "timestamp_ms" }).notNull(),
|
|
@@ -3145,6 +3147,7 @@ const jobs = pgTable("jobs", {
|
|
|
3145
3147
|
runId: text("run_id").notNull(),
|
|
3146
3148
|
trigger: text("trigger").$type().notNull(),
|
|
3147
3149
|
payload: jsonb("payload"),
|
|
3150
|
+
parent: jsonb("parent").$type(),
|
|
3148
3151
|
status: text("status").$type().notNull(),
|
|
3149
3152
|
scheduledAt: timestamp("scheduled_at", { withTimezone: true }).notNull(),
|
|
3150
3153
|
attempt: integer("attempt").notNull(),
|
|
@@ -3162,6 +3165,7 @@ const jobsSqlite = sqliteTable("jobs", {
|
|
|
3162
3165
|
runId: text$1("run_id").notNull(),
|
|
3163
3166
|
trigger: text$1("trigger").$type().notNull(),
|
|
3164
3167
|
payload: text$1("payload", { mode: "json" }),
|
|
3168
|
+
parent: text$1("parent", { mode: "json" }).$type(),
|
|
3165
3169
|
status: text$1("status").$type().notNull(),
|
|
3166
3170
|
scheduledAt: integer$1("scheduled_at", { mode: "timestamp_ms" }).notNull(),
|
|
3167
3171
|
attempt: integer$1("attempt").notNull(),
|
|
@@ -31129,4 +31133,4 @@ async function emitStoredRouteManifestForProject(projectRoot) {
|
|
|
31129
31133
|
//#endregion
|
|
31130
31134
|
export { validatePollGroups as A, attachmentSlugFromRecord as B, pollRouteFromSourceSlug as C, validateAttachmentTargets as D, toStoredRouteManifest as E, webhookManifestAttachmentSchemasFromBindings as F, packAssetDirs as G, computeCallSiteIds as H, webhookMatchSchemaForBindings as I, entryIdFromFile as J, discoverEntries as K, webhookRouteFromEndpoint as L, validateTriggerAttachments as M, validateUniqueAttachmentSlugs as N, validateImportedTriggerAttachment as O, validateUniqueTriggerSourceSlugs as P, walkTypeScriptFiles as Q, workflowKeyForAttachment as R, pollGroupRouteFromId as S, serializeRouteManifest as T, diagnoseWorkflowSource as U, classifyCall as V, locateWorkflow as W, shouldSkipKeystrokeModuleFile as X, readKeystrokeIgnoreDirective as Y, validateUniqueModuleKeys as Z, importAgentDefinition as _, buildStoredRouteManifestForProject as a, persistStoredRouteManifest as b, collectAgentAppSlugs as c, discoverAgentEntries as d, discoverSkillManifestEntries as f, emitStoredRouteManifestForProject as g, discoverWorkflows as h, buildPollGroups as i, validateProjectModules as j, validateImportedWorkflowDefinition as k, collectAgentToolSlugs as l, discoverWorkflowEntries as m, agentManifestEntry as n, buildStoredRouteManifestFromContext as o, discoverTriggerAttachments as p, discoverModuleFileEntries as q, agentRouteFromKey as r, buildWebhookBindingsByRoute as s, agentKeyForAttachment as t, countAgentCredentials as u, importTriggerAttachments as v, schemaToJson as w, pollGroupId as x, importWorkflowDefinition as y, workflowRouteFromKey as z };
|
|
31131
31135
|
|
|
31132
|
-
//# sourceMappingURL=dist-
|
|
31136
|
+
//# sourceMappingURL=dist-CMWayagw.mjs.map
|