@keystrokehq/cli 0.1.72 → 0.1.73
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-Bzry3J_e.mjs → dist-B3vdweIn.mjs} +23 -6
- package/dist/{dist-Bzry3J_e.mjs.map → dist-B3vdweIn.mjs.map} +1 -1
- package/dist/{dist-Dfp6ywxz.mjs → dist-C5M3Q_LK.mjs} +2 -2
- package/dist/{dist-Dfp6ywxz.mjs.map → dist-C5M3Q_LK.mjs.map} +1 -1
- package/dist/{dist-B8-vsCpf.mjs → dist-CYvtmJ0Y.mjs} +3 -3
- package/dist/{dist-B8-vsCpf.mjs.map → dist-CYvtmJ0Y.mjs.map} +1 -1
- package/dist/dist-DkyuIIPg.mjs +3 -0
- package/dist/{dist-JMNXwH6-.mjs → dist-xF4UCj_H.mjs} +7 -5
- package/dist/dist-xF4UCj_H.mjs.map +1 -0
- package/dist/index.mjs +24 -16
- package/dist/index.mjs.map +1 -1
- package/dist/{maybe-auto-update-Du4nv2q8.mjs → maybe-auto-update-Cc2JdiaK.mjs} +2 -2
- package/dist/{maybe-auto-update-Du4nv2q8.mjs.map → maybe-auto-update-Cc2JdiaK.mjs.map} +1 -1
- package/dist/{version-DEkbd-OE.mjs → version-BwOB_biD.mjs} +2 -2
- package/dist/{version-DEkbd-OE.mjs.map → version-BwOB_biD.mjs.map} +1 -1
- package/package.json +4 -4
- package/dist/dist-0KLRARak.mjs +0 -3
- package/dist/dist-JMNXwH6-.mjs.map +0 -1
|
@@ -5803,7 +5803,9 @@ const storedRouteManifestEntryV2Schema = discriminatedUnion("kind", [
|
|
|
5803
5803
|
/** Deterministic AST control-flow skeleton (deploy-time producer). */
|
|
5804
5804
|
flowGraph: WorkflowCanvasGraphSchema.optional(),
|
|
5805
5805
|
/** sha256 of the workflow source the `flowGraph` was produced from (staleness). */
|
|
5806
|
-
flowGraphSourceHash: string().optional()
|
|
5806
|
+
flowGraphSourceHash: string().optional(),
|
|
5807
|
+
/** sha256 of `JSON.stringify(flowGraph)` — baked at build so canvas polls skip re-hashing. */
|
|
5808
|
+
flowGraphHash: string().optional()
|
|
5807
5809
|
}),
|
|
5808
5810
|
object({
|
|
5809
5811
|
kind: literal("trigger-webhook"),
|
|
@@ -6634,7 +6636,14 @@ const UpdateCredentialRequestSchema = object({
|
|
|
6634
6636
|
isDefault: boolean().optional(),
|
|
6635
6637
|
value: credentialSecretValueSchema.optional()
|
|
6636
6638
|
}).refine((input) => input.label !== void 0 || input.isDefault !== void 0 || input.value !== void 0, { message: "At least one field is required" });
|
|
6637
|
-
const
|
|
6639
|
+
const ListCredentialsPageQuerySchema = object({
|
|
6640
|
+
limit: number().int().min(1).max(200).optional(),
|
|
6641
|
+
cursor: string().min(1).optional()
|
|
6642
|
+
});
|
|
6643
|
+
const ListCredentialsPageResponseSchema = object({
|
|
6644
|
+
items: array(AppCredentialSummarySchema),
|
|
6645
|
+
nextCursor: string().nullable()
|
|
6646
|
+
});
|
|
6638
6647
|
const GetCredentialResponseSchema = AppCredentialSummarySchema;
|
|
6639
6648
|
const CreateCredentialsResponseSchema = array(AppCredentialSummarySchema);
|
|
6640
6649
|
const CredentialAssignmentTargetTypeSchema = _enum([
|
|
@@ -7387,7 +7396,8 @@ const HistoryRunDetailSchema = discriminatedUnion("kind", [object({
|
|
|
7387
7396
|
const HistoryRunListQuerySchema = object({
|
|
7388
7397
|
project: string().min(1).optional(),
|
|
7389
7398
|
status: HistoryRunStatusSchema.optional(),
|
|
7390
|
-
kind: HistoryRunKindSchema.optional()
|
|
7399
|
+
kind: HistoryRunKindSchema.optional(),
|
|
7400
|
+
limit: number().int().min(1).max(200).optional()
|
|
7391
7401
|
});
|
|
7392
7402
|
const HistoryRunListResponseSchema = array(HistoryRunSchema);
|
|
7393
7403
|
const HistoryRunDetailResponseSchema = HistoryRunDetailSchema.nullable();
|
|
@@ -7691,7 +7701,14 @@ const OrganizationMemberSchema = object({
|
|
|
7691
7701
|
joinedAt: isoDateTime$5.optional(),
|
|
7692
7702
|
lastActiveAt: isoDateTime$5.nullable().optional()
|
|
7693
7703
|
});
|
|
7694
|
-
const
|
|
7704
|
+
const ListOrganizationMembersPageQuerySchema = object({
|
|
7705
|
+
limit: number().int().min(1).max(200).optional(),
|
|
7706
|
+
cursor: string().min(1).optional()
|
|
7707
|
+
});
|
|
7708
|
+
const ListOrganizationMembersPageResponseSchema = object({
|
|
7709
|
+
items: array(OrganizationMemberSchema),
|
|
7710
|
+
nextCursor: string().nullable()
|
|
7711
|
+
});
|
|
7695
7712
|
const InviteOrganizationMembersRequestSchema = object({
|
|
7696
7713
|
emails: array(string().trim().email()).min(1),
|
|
7697
7714
|
role: InvitableOrganizationMemberRoleSchema
|
|
@@ -8346,6 +8363,6 @@ const WorkflowCanvasCredentialBindingSchema = union([
|
|
|
8346
8363
|
const WorkflowCanvasCredentialBindingsSchema = record(string(), array(WorkflowCanvasCredentialBindingSchema));
|
|
8347
8364
|
const WorkflowRunInputsPutBodySchema = record(string(), unknown());
|
|
8348
8365
|
//#endregion
|
|
8349
|
-
export { CredentialConsumerListResponseSchema as $,
|
|
8366
|
+
export { CredentialConsumerListResponseSchema as $, WorkflowRunHooksResponseSchema as $n, safeParse$1 as $r, PresignProjectSourceRequestSchema as $t, ConfirmCheckoutResponseSchema as A, UpdateAutoTopupRequestSchema as An, _enum as Ar, ListManagedServiceCredentialsResponseSchema as At, CreateCreditsCheckoutRequestSchema as B, UpdateProjectRequestSchema as Bn, literal as Br, ManagedServiceCredentialSchema as Bt, ChannelAccountListResponseSchema as C, StartOAuthConnectionResultSchema as Cn, requiredDisplayTextSchema as Cr, LOCAL_PLATFORM_ORIGIN as Ct, ChannelPlatformSchema as D, TriggerListResponseSchema as Dn, slugifyAppName as Dr, ListAppsResponseSchema as Dt, ChannelDirectoryListResponseSchema as E, TriggerDetailResponseSchema as En, resolvePublicPlatformOrigin as Er, ListApiKeysResponseSchema as Et, CreateApiKeyResponseSchema as F, UpdateOrganizationMemberRequestSchema as Fn, boolean as Fr, ListProjectDeploymentsResponseSchema as Ft, CreateProjectArtifactResponseSchema as G, UserAvatarPatchSchema as Gn, preprocess as Gr, OrganizationSidebarBrandingSchema as Gt, CreateCustomAppResponseSchema as H, UploadProjectSourceManifestRequestSchema as Hn, number$1 as Hr, McpDiscoverResponseSchema as Ht, CreateBillingPortalRequestSchema as I, UpdateOrganizationMemberResponseSchema as In, custom as Ir, ListProjectFilesResponseSchema as It, CreateSubscriptionCheckoutRequestSchema as J, UserPreferencesSchema as Jn, union as Jr, PollRunResponseSchema as Jt, CreateProjectRequestSchema as K, UserAvatarSchema as Kn, record as Kr, PROJECT_PULL_STATE_RELATIVE_PATH as Kt, CreateCredentialInstanceBodySchema as L, UpdateOrganizationRequestSchema as Ln, discriminatedUnion as Lr, ListProjectMembersResponseSchema as Lt, ConnectManagedServiceCredentialRequestSchema as M, UpdateCredentialInstanceBodySchema as Mn, _null as Mr, ListOrganizationMembersPageQuerySchema as Mt, ConnectProvidersResponseSchema as N, UpdateCredentialRequestSchema as Nn, any as Nr, ListOrganizationMembersPageResponseSchema as Nt, CompleteProjectArtifactResponseSchema as O, TriggerRunDetailResponseSchema as On, number as Or, ListCredentialsPageQuerySchema as Ot, CreateApiKeyRequestSchema as P, UpdateManagedServiceCredentialRequestSchema as Pn, array as Pr, ListOrganizationsResponseSchema as Pt, CredentialConsumerListQuerySchema as Q, WorkflowRunDetailResponseSchema as Qn, toJSONSchema as Qr, PresignOrgLogoResponseSchema as Qt, CreateCredentialsRequestSchema as R, UpdateProjectMemberRequestSchema as Rn, intersection as Rr, ListProjectMetricsResponseSchema as Rt, CatalogAppsPageResponseSchema as S, StartOAuthConnectionInputSchema as Sn, parseStoredRouteManifest as Sr, InviteProjectMembersResponseSchema as St, ChannelConnectionSchema as T, SubmitTeamRequestRequestSchema as Tn, resolveDocsMcpUrl as Tr, ListAgentWorkspaceFilesResponseSchema as Tt, CreateOrganizationRequestSchema as U, UploadProjectSourceResponseSchema as Un, object as Ur, OpenApiDiscoverResponseSchema as Ut, CreateCustomAppRequestSchema as V, UpdateProjectSettingsRequestSchema as Vn, looseObject as Vr, ManagedServiceKindSchema as Vt, CreateOrganizationResponseSchema as W, UpsertGatewayAttachmentBodySchema as Wn, optional as Wr, OrganizationSidebarBrandingPatchSchema as Wt, CredentialAssignmentListResponseSchema as X, WorkflowCanvasRunSchema as Xn, url as Xr, PresignChatAttachmentResponseSchema as Xt, CredentialAssignmentListQuerySchema as Y, WorkflowCanvasCredentialBindingsSchema as Yn, unknown as Yr, PresignChatAttachmentRequestSchema as Yt, CredentialAssignmentRecordSchema as Z, WorkflowCanvasSchema as Zn, datetime as Zr, PresignOrgLogoRequestSchema as Zt, BillingUsageResponseSchema as _, SlugAvailabilityResponseSchema as _n, listenPortFromPublicUrl as _r, HistoryRunListQuerySchema as _t, AgentSessionDetailResponseSchema as a, ProjectResponseSchema as an, WorkflowSummaryListResponseSchema as ar, DeclineOrganizationInvitationResponseSchema as at, CatalogActionsPageResponseSchema as b, StartMcpOAuthConnectionInputSchema as bn, parseAppSlug as br, InviteOrganizationMembersResponseSchema as bt, AgentSummaryListResponseSchema as c, PromptInputSchema as cn, WorkspaceTriggerListResponseSchema as cr, ErrorResponseSchema as ct, AssignCredentialBodySchema as d, QueuedAgentPromptResponseSchema as dn, WorkspaceWorkflowOverviewSchema as dr, GetCredentialResponseSchema as dt, NEVER as ei, PresignProjectSourceResponseSchema as en, WorkflowRunInputsPutBodySchema as er, CredentialInstanceListResponseSchema as et, AutoTopupSummarySchema as f, QueuedRunResponseSchema as fn, buildConnectDeeplink as fr, GetCustomAppResponseSchema as ft, BillingSummaryResponseSchema as g, SkillSummaryListResponseSchema as gn, isAcceptableInstallExit as gr, HistoryRunDetailResponseSchema as gt, BillingRedirectResponseSchema as h, SkillSummaryDetailResponseSchema as hn, detectProjectPackageManagerFromSnapshot as hr, HistoryRunCancelResponseSchema as ht, AgentSessionChatStateResponseSchema as i, ProjectReachabilityResponseSchema as in, WorkflowSummaryDetailResponseSchema as ir, DOCS_SEARCH_TOOL as it, ConnectAuthorizeUrlResponseSchema as j, UpdateChannelBindingBodySchema as jn, _function as jr, ListOrganizationInvitationsResponseSchema as jt, ConfirmCheckoutRequestSchema as k, TriggerRunListResponseSchema as kn, ZodType as kr, ListCredentialsPageResponseSchema as kt, AgentTriggerSummaryListResponseSchema as l, PromptResponseSchema as ln, WorkspaceTriggerOverviewSchema as lr, ExecuteKeystrokeToolRequestSchema as lt, BillingInvoiceUrlResponseSchema as m, RecentResourceListResponseSchema as mn, deriveCustomAppDisplay as mr, HealthResponseSchema as mt, AcceptOrganizationInvitationResponseSchema as n, PresignUserAvatarResponseSchema as nn, WorkflowRunListResponseSchema as nr, DEFAULT_CLOUD_PLATFORM_ORIGIN as nt, AgentSessionListResponseSchema as o, ProjectSettingsResponseSchema as on, WorkspaceTriggerDetailSchema as or, DownloadActiveProjectArtifactResponseSchema as ot, BillingActivityResponseSchema as p, ROUTE_MANIFEST_REL_PATH as pn, credentialInputSchema as pr, GraphqlDiscoverResponseSchema as pt, CreateProjectResponseSchema as q, UserPreferencesPatchSchema as qn, string as qr, PROJECT_REACHABILITY_REQUEST_TIMEOUT_MS as qt, ActiveOrganizationResponseSchema as r, ProjectPullStateSchema as rn, WorkflowRunResponseSchema as rr, DOCS_QUERY_TOOL as rt, AgentSummaryDetailResponseSchema as s, ProjectSlugAvailabilityResponseSchema as sn, WorkspaceTriggerFileSchema as sr, DownloadActiveProjectSourceResponseSchema as st, ACTIVE_ORG_HEADER as t, PresignUserAvatarRequestSchema as tn, WorkflowRunInputsSchema as tr, CredentialInstanceRecordSchema as tt, AppSlugAvailabilityResponseSchema as u, PublicModelsResponseSchema as un, WorkspaceTriggerRunListResponseSchema as ur, GatewayAttachmentRecordSchema as ut, BindChannelBodySchema as v, StartKeystrokeConnectionInputSchema as vn, normalizeCredentialList as vr, HistoryRunListResponseSchema as vt, ChannelConnectionListResponseSchema as w, SubmitMarketingContactRequestSchema as wn, resolveConnectAppSlug as wr, ListAgentMemoryFilesResponseSchema as wt, CatalogAppDetailResponseSchema as x, StartMcpOAuthConnectionResultSchema as xn, parseErrorResponse as xr, InviteProjectMembersRequestSchema as xt, CatalogActionDetailResponseSchema as y, StartKeystrokeConnectionResultSchema as yn, originFromPublicUrl as yr, InviteOrganizationMembersRequestSchema as yt, CreateCredentialsResponseSchema as z, UpdateProjectMemberResponseSchema as zn, lazy as zr, ListProjectsResponseSchema as zt };
|
|
8350
8367
|
|
|
8351
|
-
//# sourceMappingURL=dist-
|
|
8368
|
+
//# sourceMappingURL=dist-B3vdweIn.mjs.map
|