@keystrokehq/cli 0.1.115 → 0.1.117
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-5C-6yUgD.mjs} +3 -3
- package/dist/{dist-GJJ5OG1V.mjs.map → dist-5C-6yUgD.mjs.map} +1 -1
- package/dist/dist-BFMOjbkM.mjs +3 -0
- 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-Bqwb8ruo.mjs} +16 -5
- package/dist/dist-Bqwb8ruo.mjs.map +1 -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 +1 -2
- package/dist/dist-CFjgxhYX.mjs +0 -3
- package/dist/dist-fDqIX4ii.mjs.map +0 -1
|
@@ -5841,6 +5841,8 @@ const storedRouteManifestEntryV2Schema = discriminatedUnion("kind", [
|
|
|
5841
5841
|
moduleFile: string(),
|
|
5842
5842
|
sourceHash: string().optional(),
|
|
5843
5843
|
schedule: string(),
|
|
5844
|
+
/** IANA timezone for schedule wall-clock fields. When omitted, UTC. */
|
|
5845
|
+
timezone: string().optional(),
|
|
5844
5846
|
name: requiredDisplayTextSchema,
|
|
5845
5847
|
description: requiredDisplayTextSchema
|
|
5846
5848
|
}),
|
|
@@ -5849,7 +5851,9 @@ const storedRouteManifestEntryV2Schema = discriminatedUnion("kind", [
|
|
|
5849
5851
|
pollId: string(),
|
|
5850
5852
|
attachmentIds: array(string()),
|
|
5851
5853
|
moduleFile: string(),
|
|
5852
|
-
schedule: string()
|
|
5854
|
+
schedule: string(),
|
|
5855
|
+
/** IANA timezone for schedule wall-clock fields. When omitted, UTC. */
|
|
5856
|
+
timezone: string().optional()
|
|
5853
5857
|
}),
|
|
5854
5858
|
object({
|
|
5855
5859
|
kind: literal("cron-schedule"),
|
|
@@ -5858,6 +5862,8 @@ const storedRouteManifestEntryV2Schema = discriminatedUnion("kind", [
|
|
|
5858
5862
|
moduleFile: string(),
|
|
5859
5863
|
sourceHash: string().optional(),
|
|
5860
5864
|
schedule: string(),
|
|
5865
|
+
/** IANA timezone for schedule wall-clock fields. When omitted, UTC. */
|
|
5866
|
+
timezone: string().optional(),
|
|
5861
5867
|
/** Static cron payload from `defineCronSource({ payload })` — omitted when the source has none. */
|
|
5862
5868
|
payload: unknown().optional(),
|
|
5863
5869
|
name: requiredDisplayTextSchema,
|
|
@@ -7070,6 +7076,10 @@ const AgentTriggerSummaryListResponseSchema = array(object({
|
|
|
7070
7076
|
description: string().nullable().optional(),
|
|
7071
7077
|
type: AgentTriggerTypeSchema,
|
|
7072
7078
|
schedule: string().nullable(),
|
|
7079
|
+
/** IANA timezone for schedule wall-clock fields. Null when omitted (evaluates in UTC). */
|
|
7080
|
+
timezone: string().nullable(),
|
|
7081
|
+
/** ISO timestamptz of the next scheduled fire. Null for webhooks / unset. */
|
|
7082
|
+
nextRunAt: string().nullable(),
|
|
7073
7083
|
endpoint: string().nullable(),
|
|
7074
7084
|
origin: AgentTriggerOriginSchema,
|
|
7075
7085
|
prompt: string().nullable(),
|
|
@@ -7756,6 +7766,10 @@ const WorkspaceTriggerSummarySchema = object({
|
|
|
7756
7766
|
webhookUrl: string().nullable(),
|
|
7757
7767
|
/** Cron expression or poll cadence label (cron/poll triggers only). */
|
|
7758
7768
|
schedule: string().nullable(),
|
|
7769
|
+
/** IANA timezone for schedule wall-clock fields. Null when omitted (evaluates in UTC). */
|
|
7770
|
+
timezone: string().nullable(),
|
|
7771
|
+
/** ISO timestamptz of the next scheduled fire. Null for webhooks / unset. */
|
|
7772
|
+
nextRunAt: string().nullable(),
|
|
7759
7773
|
/** Workflows + agents currently bound to this source. */
|
|
7760
7774
|
assignments: array(TriggerAssignmentSchema),
|
|
7761
7775
|
lastFiredAt: string().nullable(),
|
|
@@ -7799,6 +7813,8 @@ const TriggerOverviewInputSchema = object({
|
|
|
7799
7813
|
description: string().nullable(),
|
|
7800
7814
|
type: TriggerTypeSchema,
|
|
7801
7815
|
schedule: string().nullable(),
|
|
7816
|
+
/** IANA timezone for schedule wall-clock fields. Null/omitted → UTC. */
|
|
7817
|
+
timezone: string().nullable().optional(),
|
|
7802
7818
|
sourcePath: string(),
|
|
7803
7819
|
sourceContents: string(),
|
|
7804
7820
|
assignments: array(TriggerAssignmentSchema)
|
|
@@ -8519,4 +8535,4 @@ const WorkflowRunInputsPutBodySchema = record(string(), unknown());
|
|
|
8519
8535
|
//#endregion
|
|
8520
8536
|
export { CredentialInstanceListResponseSchema as $, UserPreferencesSchema as $n, union as $r, PresignChatAttachmentResponseSchema as $t, ConnectAuthorizeUrlResponseSchema as A, TriggerInvokeInputsSchema as An, resolveDocsMcpUrl as Ar, ListAppsResponseSchema as At, CreateCustomAppRequestSchema as B, UpdateOrganizationMemberRequestSchema as Bn, boolean as Br, ListProjectFilesResponseSchema as Bt, ChannelAccountListResponseSchema as C, StartMcpOAuthConnectionInputSchema as Cn, normalizeCredentialList as Cr, InviteOrganizationMembersResponseSchema as Ct, CompleteProjectArtifactResponseSchema as D, SubmitMarketingContactRequestSchema as Dn, parseStoredRouteManifest as Dr, ListAgentMemoryFilesResponseSchema as Dt, ChannelDirectoryListResponseSchema as E, StartOAuthConnectionResultSchema as En, parseErrorResponse as Er, LOCAL_PLATFORM_ORIGIN as Et, CreateBillingPortalRequestSchema as F, UpdateAutoTopupRequestSchema as Fn, _enum as Fr, ListOrganizationInvitationsResponseSchema as Ft, CreateProjectRequestSchema as G, UpdateProjectRequestSchema as Gn, literal as Gr, ManagedServiceKindSchema as Gt, CreateOrganizationRequestSchema as H, UpdateOrganizationRequestSchema as Hn, discriminatedUnion as Hr, ListProjectMetricsResponseSchema as Ht, CreateCredentialInstanceBodySchema as I, UpdateChannelBindingBodySchema as In, _function as Ir, ListOrganizationMembersPageQuerySchema as It, CredentialAssignmentListQuerySchema as J, UploadProjectSourceResponseSchema as Jn, object as Jr, OrganizationSidebarBrandingPatchSchema as Jt, CreateProjectResponseSchema as K, UpdateProjectSettingsRequestSchema as Kn, looseObject as Kr, McpDiscoverResponseSchema as Kt, CreateCredentialsRequestSchema as L, UpdateCredentialInstanceBodySchema as Ln, _null as Lr, ListOrganizationMembersPageResponseSchema as Lt, ConnectProvidersResponseSchema as M, TriggerListResponseSchema as Mn, slugifyAppName as Mr, ListCredentialsPageQuerySchema as Mt, CreateApiKeyRequestSchema as N, TriggerRunDetailResponseSchema as Nn, number as Nr, ListCredentialsPageResponseSchema as Nt, ConfirmCheckoutRequestSchema as O, SubmitTeamRequestRequestSchema as On, requiredDisplayTextSchema as Or, ListAgentWorkspaceFilesResponseSchema as Ot, CreateApiKeyResponseSchema as P, TriggerRunListResponseSchema as Pn, ZodType as Pr, ListManagedServiceCredentialsResponseSchema as Pt, CredentialConsumerListResponseSchema as Q, UserPreferencesPatchSchema as Qn, string as Qr, PresignChatAttachmentRequestSchema as Qt, CreateCredentialsResponseSchema as R, UpdateCredentialRequestSchema as Rn, any as Rr, ListOrganizationsResponseSchema as Rt, CatalogAppsPageResponseSchema as S, StartKeystrokeConnectionResultSchema as Sn, listenPortFromPublicUrl as Sr, InviteOrganizationMembersRequestSchema as St, ChannelConnectionSchema as T, StartOAuthConnectionInputSchema as Tn, parseAppSlug as Tr, InviteProjectMembersResponseSchema as Tt, CreateOrganizationResponseSchema as U, UpdateProjectMemberRequestSchema as Un, intersection as Ur, ListProjectsResponseSchema as Ut, CreateCustomAppResponseSchema as V, UpdateOrganizationMemberResponseSchema as Vn, custom as Vr, ListProjectMembersResponseSchema as Vt, CreateProjectArtifactResponseSchema as W, UpdateProjectMemberResponseSchema as Wn, lazy as Wr, ManagedServiceCredentialSchema as Wt, CredentialAssignmentRecordSchema as X, UserAvatarPatchSchema as Xn, preprocess as Xr, PROJECT_PULL_STATE_RELATIVE_PATH as Xt, CredentialAssignmentListResponseSchema as Y, UpsertGatewayAttachmentBodySchema as Yn, optional as Yr, OrganizationSidebarBrandingSchema as Yt, CredentialConsumerListQuerySchema as Z, UserAvatarSchema as Zn, record as Zr, PROJECT_REACHABILITY_REQUEST_TIMEOUT_MS as Zt, BindChannelBodySchema as _, RecentResourceListResponseSchema as _n, buildConnectDeeplink as _r, HealthResponseSchema as _t, AgentSessionListResponseSchema as a, NEVER as ai, PresignUserAvatarResponseSchema as an, WorkflowRunInputsPutBodySchema as ar, DownloadActiveProjectArtifactResponseSchema as at, CatalogActionsPageResponseSchema as b, SlugAvailabilityResponseSchema as bn, detectProjectPackageManagerFromSnapshot as br, HistoryRunListQuerySchema as bt, AgentTriggerSummaryListResponseSchema as c, ProjectResponseSchema as cn, WorkflowRunResponseSchema as cr, DuplicateCredentialsResponseSchema as ct, AutoTopupSummarySchema as d, PromptInputSchema as dn, WorkspaceTriggerDetailSchema as dr, FilePartSchema as dt, unknown as ei, PresignOrgLogoRequestSchema as en, WorkflowCanvasCredentialBindingsSchema as er, CredentialInstanceRecordSchema as et, BillingActivityResponseSchema as f, PromptResponseSchema as fn, WorkspaceTriggerFileSchema as fr, GatewayAttachmentRecordSchema as ft, BillingUsageResponseSchema as g, ROUTE_MANIFEST_REL_PATH as gn, WorkspaceWorkflowOverviewSchema as gr, GraphqlDiscoverResponseSchema as gt, BillingSummaryResponseSchema as h, QueuedRunResponseSchema as hn, WorkspaceTriggerRunListResponseSchema as hr, GetCustomAppResponseSchema as ht, AgentSessionDetailResponseSchema as i, safeParse$1 as ii, PresignUserAvatarRequestSchema as in, WorkflowRunHooksResponseSchema as ir, DeclineOrganizationInvitationResponseSchema as it, ConnectManagedServiceCredentialRequestSchema as j, TriggerInvokeResponseSchema as jn, resolvePublicPlatformOrigin as jr, ListChannelPlatformsResponseSchema as jt, ConfirmCheckoutResponseSchema as k, TriggerDetailResponseSchema as kn, resolveConnectAppSlug as kr, ListApiKeysResponseSchema as kt, AppSlugAvailabilityResponseSchema as l, ProjectSettingsResponseSchema as ln, WorkflowSummaryDetailResponseSchema as lr, ErrorResponseSchema as lt, BillingRedirectResponseSchema as m, QueuedAgentPromptResponseSchema as mn, WorkspaceTriggerOverviewSchema as mr, GetCredentialResponseSchema as mt, AcceptOrganizationInvitationResponseSchema as n, datetime as ni, PresignProjectSourceRequestSchema as nn, WorkflowCanvasSchema as nr, DOCS_QUERY_TOOL as nt, AgentSummaryDetailResponseSchema as o, ProjectPullStateSchema as on, WorkflowRunInputsSchema as or, DownloadActiveProjectSourceResponseSchema as ot, BillingInvoiceUrlResponseSchema as p, PublicModelsResponseSchema as pn, WorkspaceTriggerListResponseSchema as pr, GetAppCatalogEntryResponseSchema as pt, CreateSubscriptionCheckoutRequestSchema as q, UploadProjectSourceManifestRequestSchema as qn, number$1 as qr, OpenApiDiscoverResponseSchema as qt, ActiveOrganizationResponseSchema as r, toJSONSchema as ri, PresignProjectSourceResponseSchema as rn, WorkflowRunDetailResponseSchema as rr, DOCS_SEARCH_TOOL as rt, AgentSummaryListResponseSchema as s, ProjectReachabilityResponseSchema as sn, WorkflowRunListResponseSchema as sr, DuplicateCredentialRequestSchema as st, ACTIVE_ORG_HEADER as t, url as ti, PresignOrgLogoResponseSchema as tn, WorkflowCanvasRunSchema as tr, DEFAULT_CLOUD_PLATFORM_ORIGIN as tt, AssignCredentialBodySchema as u, ProjectSlugAvailabilityResponseSchema as un, WorkflowSummaryListResponseSchema as ur, ExecuteKeystrokeToolRequestSchema as ut, CLIENT_CHANNEL_HEADER as v, SkillSummaryDetailResponseSchema as vn, credentialInputSchema as vr, HistoryRunCancelResponseSchema as vt, ChannelConnectionListResponseSchema as w, StartMcpOAuthConnectionResultSchema as wn, originFromPublicUrl as wr, InviteProjectMembersRequestSchema as wt, CatalogAppDetailResponseSchema as x, StartKeystrokeConnectionInputSchema as xn, isAcceptableInstallExit as xr, HistoryRunListResponseSchema as xt, CatalogActionDetailResponseSchema as y, SkillSummaryListResponseSchema as yn, deriveCustomAppDisplay as yr, HistoryRunDetailResponseSchema as yt, CreateCreditsCheckoutRequestSchema as z, UpdateManagedServiceCredentialRequestSchema as zn, array as zr, ListProjectDeploymentsResponseSchema as zt };
|
|
8521
8537
|
|
|
8522
|
-
//# sourceMappingURL=dist-
|
|
8538
|
+
//# sourceMappingURL=dist-lKb-tXJz.mjs.map
|