@keystrokehq/cli 0.1.115 → 0.1.116
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-GJJ5OG1V.mjs → dist-BZnKpPOl.mjs} +3 -3
- package/dist/{dist-GJJ5OG1V.mjs.map → dist-BZnKpPOl.mjs.map} +1 -1
- package/dist/{dist-gIiA66FZ.mjs → dist-BcYM6U5P.mjs} +2 -2
- package/dist/{dist-gIiA66FZ.mjs.map → dist-BcYM6U5P.mjs.map} +1 -1
- package/dist/{dist-fDqIX4ii.mjs → dist-CcF6D8j7.mjs} +10 -4
- package/dist/dist-CcF6D8j7.mjs.map +1 -0
- package/dist/dist-a5or5u2A.mjs +3 -0
- package/dist/{dist-D9wyqCGM.mjs → dist-lKb-tXJz.mjs} +18 -2
- package/dist/{dist-D9wyqCGM.mjs.map → dist-lKb-tXJz.mjs.map} +1 -1
- package/dist/index.mjs +10 -10
- package/dist/{maybe-auto-update-DHXEHwKF.mjs → maybe-auto-update-CsJi5l-3.mjs} +2 -2
- package/dist/{maybe-auto-update-DHXEHwKF.mjs.map → maybe-auto-update-CsJi5l-3.mjs.map} +1 -1
- package/dist/{run-package-manager-update-BvOJBqBB.mjs → run-package-manager-update-C4LtUe-9.mjs} +2 -2
- package/dist/{run-package-manager-update-BvOJBqBB.mjs.map → run-package-manager-update-C4LtUe-9.mjs.map} +1 -1
- package/package.json +3 -3
- package/dist/dist-CFjgxhYX.mjs +0 -3
- package/dist/dist-fDqIX4ii.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 union, Br as boolean$1, Cr as normalizeCredentialList, Dr as parseStoredRouteManifest, Fr as _enum, Gr as literal, Hr as discriminatedUnion, Ir as _function, Jr as object, Lr as _null, Or as requiredDisplayTextSchema, Pr as ZodType, Qr as string, Vr as custom, Wr as lazy, Xr as preprocess, Zr as record, dt as FilePartSchema, fn as PromptResponseSchema, gn as ROUTE_MANIFEST_REL_PATH, pn as PublicModelsResponseSchema, qr as number, ri as toJSONSchema, tt as DEFAULT_CLOUD_PLATFORM_ORIGIN, vr as credentialInputSchema, zr as array } from "./dist-
|
|
4
|
-
import "./dist-
|
|
3
|
+
import { $r as union, Br as boolean$1, Cr as normalizeCredentialList, Dr as parseStoredRouteManifest, Fr as _enum, Gr as literal, Hr as discriminatedUnion, Ir as _function, Jr as object, Lr as _null, Or as requiredDisplayTextSchema, Pr as ZodType, Qr as string, Vr as custom, Wr as lazy, Xr as preprocess, Zr as record, dt as FilePartSchema, fn as PromptResponseSchema, gn as ROUTE_MANIFEST_REL_PATH, pn as PublicModelsResponseSchema, qr as number, ri as toJSONSchema, tt as DEFAULT_CLOUD_PLATFORM_ORIGIN, vr as credentialInputSchema, zr as array } from "./dist-lKb-tXJz.mjs";
|
|
4
|
+
import "./dist-BcYM6U5P.mjs";
|
|
5
5
|
import "./chunk-BZUGFHVS-CPWRFwK8.mjs";
|
|
6
6
|
import "./chunk-DLL7UR66-BUYgzxnR.mjs";
|
|
7
7
|
import "./chunk-TN7HHBQW-CSB_R-XD.mjs";
|
|
@@ -30334,6 +30334,7 @@ function serializeRouteManifest(manifest) {
|
|
|
30334
30334
|
moduleFile: entry.moduleFile,
|
|
30335
30335
|
...entry.sourceHash ? { sourceHash: entry.sourceHash } : {},
|
|
30336
30336
|
schedule: entry.schedule,
|
|
30337
|
+
...entry.timezone ? { timezone: entry.timezone } : {},
|
|
30337
30338
|
name: entry.name,
|
|
30338
30339
|
description: entry.description
|
|
30339
30340
|
});
|
|
@@ -30344,7 +30345,8 @@ function serializeRouteManifest(manifest) {
|
|
|
30344
30345
|
pollId: entry.pollId,
|
|
30345
30346
|
attachmentIds: entry.attachmentIds,
|
|
30346
30347
|
moduleFile: entry.moduleFile,
|
|
30347
|
-
schedule: entry.schedule
|
|
30348
|
+
schedule: entry.schedule,
|
|
30349
|
+
...entry.timezone ? { timezone: entry.timezone } : {}
|
|
30348
30350
|
});
|
|
30349
30351
|
break;
|
|
30350
30352
|
case "cron-schedule":
|
|
@@ -30427,6 +30429,7 @@ const triggerSourceSchema = preprocess(normalizeLegacySlugFields, discriminatedU
|
|
|
30427
30429
|
kind: literal("cron"),
|
|
30428
30430
|
...baseSourceShape,
|
|
30429
30431
|
schedule: cronScheduleSchema,
|
|
30432
|
+
timezone: string().trim().min(1).optional(),
|
|
30430
30433
|
payload: cronPayloadSchema.optional()
|
|
30431
30434
|
}),
|
|
30432
30435
|
object({
|
|
@@ -30434,6 +30437,7 @@ const triggerSourceSchema = preprocess(normalizeLegacySlugFields, discriminatedU
|
|
|
30434
30437
|
...baseSourceShape,
|
|
30435
30438
|
id: string().optional(),
|
|
30436
30439
|
schedule: cronScheduleSchema,
|
|
30440
|
+
timezone: string().trim().min(1).optional(),
|
|
30437
30441
|
run: _function(),
|
|
30438
30442
|
filters: array(_function()),
|
|
30439
30443
|
passes: _function()
|
|
@@ -30972,6 +30976,7 @@ async function buildStoredRouteManifestForProject(projectRoot, options) {
|
|
|
30972
30976
|
moduleFile,
|
|
30973
30977
|
...sourceHash ? { sourceHash } : {},
|
|
30974
30978
|
schedule: source.schedule,
|
|
30979
|
+
...source.timezone ? { timezone: source.timezone } : {},
|
|
30975
30980
|
...source.payload !== void 0 ? { payload: source.payload } : {},
|
|
30976
30981
|
...meta
|
|
30977
30982
|
});
|
|
@@ -30989,6 +30994,7 @@ async function buildStoredRouteManifestForProject(projectRoot, options) {
|
|
|
30989
30994
|
moduleFile,
|
|
30990
30995
|
...sourceHash ? { sourceHash } : {},
|
|
30991
30996
|
schedule: source.schedule,
|
|
30997
|
+
...source.timezone ? { timezone: source.timezone } : {},
|
|
30992
30998
|
...meta,
|
|
30993
30999
|
response: PromptResponseSchema
|
|
30994
31000
|
});
|
|
@@ -31039,4 +31045,4 @@ async function emitStoredRouteManifestForProject(projectRoot) {
|
|
|
31039
31045
|
//#endregion
|
|
31040
31046
|
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 };
|
|
31041
31047
|
|
|
31042
|
-
//# sourceMappingURL=dist-
|
|
31048
|
+
//# sourceMappingURL=dist-CcF6D8j7.mjs.map
|