@keystrokehq/cli 0.1.120 → 0.1.122

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.
@@ -4896,6 +4896,7 @@ const PRODUCT_SLUGS = [
4896
4896
  "execution",
4897
4897
  "executions",
4898
4898
  "explore",
4899
+ "forms",
4899
4900
  "get-started",
4900
4901
  "history",
4901
4902
  "inbox",
@@ -7059,12 +7060,7 @@ object({
7059
7060
  params: array(unknown()).default([]),
7060
7061
  method: string().min(1).optional()
7061
7062
  });
7062
- object({ migrations: array(object({
7063
- sql: array(string().min(1)),
7064
- hash: string().min(1),
7065
- folderMillis: number$1()
7066
- })) });
7067
- object({ results: array(object({ rows: array(unknown()) })) });
7063
+ object({ rows: array(unknown()) });
7068
7064
  const RunSourceKindSchema = _enum([
7069
7065
  "api",
7070
7066
  "trigger",
@@ -8213,97 +8209,6 @@ const RecentResourceListResponseSchema = array(object({
8213
8209
  lastOpenedAt: string().min(1),
8214
8210
  lastModifiedAt: string().min(1)
8215
8211
  }));
8216
- const isoDateTime = string().datetime();
8217
- const sha256Hex = string().regex(/^[a-f0-9]{64}$/, "Expected a lowercase hex sha256 digest");
8218
- /**
8219
- * A single entry in a deploy's file tree, as served to the dashboard. Carries
8220
- * no contents: `id` is a stable, path-derived handle used for selection and
8221
- * `?file=` deep links; `hash` is the content address used to fetch the bytes
8222
- * lazily and to cache them immutably in the browser.
8223
- */
8224
- const ProjectFileSummarySchema = object({
8225
- id: string(),
8226
- path: string().min(1),
8227
- hash: sha256Hex
8228
- });
8229
- /** Maps a runtime resource slug (agent/workflow/skill) to its source file path. */
8230
- const ProjectSourceResourceRefSchema = object({
8231
- slug: string().min(1),
8232
- path: string().min(1)
8233
- });
8234
- const ProjectSourceResourcesSchema = object({
8235
- agents: array(ProjectSourceResourceRefSchema).default([]),
8236
- workflows: array(ProjectSourceResourceRefSchema).default([]),
8237
- skills: array(ProjectSourceResourceRefSchema).default([])
8238
- });
8239
- const emptyResources = () => ({
8240
- agents: [],
8241
- workflows: [],
8242
- skills: []
8243
- });
8244
- /** Response for the file-tree listing of a project's active deploy. */
8245
- const ListProjectFilesResponseSchema = object({
8246
- artifactId: string().nullable(),
8247
- files: array(ProjectFileSummarySchema),
8248
- resources: ProjectSourceResourcesSchema.default(emptyResources())
8249
- });
8250
- object({
8251
- path: string().min(1),
8252
- contents: string(),
8253
- hash: sha256Hex
8254
- });
8255
- /** Request: ask the platform which blobs are missing and get presigned PUTs. */
8256
- const PresignProjectSourceRequestSchema = object({ blobs: array(object({
8257
- hash: sha256Hex,
8258
- size: number$1().int().nonnegative()
8259
- })) });
8260
- /** Response: presigned PUTs for the subset of blobs not already stored. */
8261
- const PresignProjectSourceResponseSchema = object({ uploads: array(object({
8262
- hash: sha256Hex,
8263
- url: string().url()
8264
- })) });
8265
- /** Request body the CLI sends to finalize a deploy's source manifest. */
8266
- const UploadProjectSourceManifestRequestSchema = object({ files: array(object({
8267
- path: string().min(1),
8268
- hash: sha256Hex
8269
- })) });
8270
- const UploadProjectSourceResponseSchema = object({
8271
- ok: literal(true),
8272
- fileCount: number$1().int().nonnegative()
8273
- });
8274
- object({
8275
- files: array(object({
8276
- id: string(),
8277
- path: string().min(1),
8278
- hash: sha256Hex
8279
- })),
8280
- generatedAt: isoDateTime
8281
- });
8282
- /** A single source file returned by the bulk active-source download endpoint. */
8283
- const DownloadActiveProjectSourceFileSchema = object({
8284
- path: string().min(1),
8285
- contents: string()
8286
- });
8287
- /** Response for downloading all source files from a project's active deploy. */
8288
- const DownloadActiveProjectSourceResponseSchema = object({
8289
- artifactId: string(),
8290
- files: array(DownloadActiveProjectSourceFileSchema)
8291
- });
8292
- /** Relative path written after a local pull or MCP workspace hydration. */
8293
- const PROJECT_PULL_STATE_RELATIVE_PATH = ".keystroke/pull-state.json";
8294
- const ProjectPullStateSchema = object({
8295
- projectId: string(),
8296
- artifactId: string(),
8297
- pulledAt: string().datetime()
8298
- });
8299
- const ListAgentMemoryFilesResponseSchema = object({ files: array(object({
8300
- id: string(),
8301
- path: string().min(1)
8302
- })) });
8303
- const ListAgentWorkspaceFilesResponseSchema = object({ files: array(object({
8304
- id: string(),
8305
- path: string().min(1)
8306
- })) });
8307
8212
  /** Whether the overview is still being produced or finished. */
8308
8213
  const WorkflowOverviewStatusSchema = _enum(["generating", "ready"]);
8309
8214
  /** One phase of the guided-tour overview. */
@@ -8345,6 +8250,8 @@ const WorkflowInputFieldSchema = lazy(() => object({
8345
8250
  number$1(),
8346
8251
  boolean()
8347
8252
  ]).optional(),
8253
+ minimum: number$1().optional(),
8254
+ maximum: number$1().optional(),
8348
8255
  children: array(WorkflowInputFieldSchema).optional(),
8349
8256
  format: string().optional()
8350
8257
  }));
@@ -8549,8 +8456,155 @@ const WorkflowCanvasCredentialBindingSchema = union([
8549
8456
  ]);
8550
8457
  /** Live credential overlay: canvas node id → its step's credential bindings. */
8551
8458
  const WorkflowCanvasCredentialBindingsSchema = record(string(), array(WorkflowCanvasCredentialBindingSchema));
8459
+ const FormControlSchema = _enum([
8460
+ "input",
8461
+ "textarea",
8462
+ "select",
8463
+ "radio",
8464
+ "stepper",
8465
+ "slider",
8466
+ "checkbox",
8467
+ "switch"
8468
+ ]);
8469
+ const FormFieldConfigEntrySchema = object({
8470
+ label: string().trim().min(1).max(120).optional(),
8471
+ helpText: string().trim().min(1).max(300).optional(),
8472
+ control: FormControlSchema.optional()
8473
+ });
8474
+ const FormFieldConfigSchema = record(string(), FormFieldConfigEntrySchema);
8475
+ const PublicFormFieldSchema = WorkflowInputFieldSchema.and(object({
8476
+ control: FormControlSchema.optional(),
8477
+ helpText: string().optional()
8478
+ }));
8479
+ const PublishedFormSchema = object({
8480
+ id: string().min(1),
8481
+ workflowId: string().min(1),
8482
+ workflowSlug: string().min(1),
8483
+ enabled: boolean(),
8484
+ title: string().min(1).nullable(),
8485
+ description: string().min(1).nullable(),
8486
+ fieldConfig: FormFieldConfigSchema,
8487
+ publicUrl: string().url(),
8488
+ createdAt: string().min(1),
8489
+ updatedAt: string().min(1)
8490
+ });
8491
+ const WorkflowFormResponseSchema = PublishedFormSchema.nullable();
8492
+ const WorkflowFormUpsertBodySchema = object({
8493
+ enabled: boolean().optional(),
8494
+ title: string().trim().min(1).max(120).nullable().optional(),
8495
+ description: string().trim().min(1).max(500).nullable().optional(),
8496
+ fieldConfig: FormFieldConfigSchema.optional()
8497
+ });
8498
+ const PublicFormMetadataSchema = object({
8499
+ title: string().min(1),
8500
+ description: string().nullable(),
8501
+ fields: array(PublicFormFieldSchema),
8502
+ branding: object({
8503
+ organizationName: string().min(1),
8504
+ projectName: string().min(1),
8505
+ logoLightUrl: string().url().nullable(),
8506
+ logoDarkUrl: string().url().nullable(),
8507
+ logoHeightPx: number$1().int().positive()
8508
+ })
8509
+ });
8510
+ const PublicFormSubmitBodySchema = object({
8511
+ values: record(string(), unknown()),
8512
+ website: string().max(200).optional()
8513
+ });
8514
+ const PublicFormSubmitResponseSchema = object({ ok: literal(true) });
8515
+ const isoDateTime = string().datetime();
8516
+ const sha256Hex = string().regex(/^[a-f0-9]{64}$/, "Expected a lowercase hex sha256 digest");
8517
+ /**
8518
+ * A single entry in a deploy's file tree, as served to the dashboard. Carries
8519
+ * no contents: `id` is a stable, path-derived handle used for selection and
8520
+ * `?file=` deep links; `hash` is the content address used to fetch the bytes
8521
+ * lazily and to cache them immutably in the browser.
8522
+ */
8523
+ const ProjectFileSummarySchema = object({
8524
+ id: string(),
8525
+ path: string().min(1),
8526
+ hash: sha256Hex
8527
+ });
8528
+ /** Maps a runtime resource slug (agent/workflow/skill) to its source file path. */
8529
+ const ProjectSourceResourceRefSchema = object({
8530
+ slug: string().min(1),
8531
+ path: string().min(1)
8532
+ });
8533
+ const ProjectSourceResourcesSchema = object({
8534
+ agents: array(ProjectSourceResourceRefSchema).default([]),
8535
+ workflows: array(ProjectSourceResourceRefSchema).default([]),
8536
+ skills: array(ProjectSourceResourceRefSchema).default([])
8537
+ });
8538
+ const emptyResources = () => ({
8539
+ agents: [],
8540
+ workflows: [],
8541
+ skills: []
8542
+ });
8543
+ /** Response for the file-tree listing of a project's active deploy. */
8544
+ const ListProjectFilesResponseSchema = object({
8545
+ artifactId: string().nullable(),
8546
+ files: array(ProjectFileSummarySchema),
8547
+ resources: ProjectSourceResourcesSchema.default(emptyResources())
8548
+ });
8549
+ object({
8550
+ path: string().min(1),
8551
+ contents: string(),
8552
+ hash: sha256Hex
8553
+ });
8554
+ /** Request: ask the platform which blobs are missing and get presigned PUTs. */
8555
+ const PresignProjectSourceRequestSchema = object({ blobs: array(object({
8556
+ hash: sha256Hex,
8557
+ size: number$1().int().nonnegative()
8558
+ })) });
8559
+ /** Response: presigned PUTs for the subset of blobs not already stored. */
8560
+ const PresignProjectSourceResponseSchema = object({ uploads: array(object({
8561
+ hash: sha256Hex,
8562
+ url: string().url()
8563
+ })) });
8564
+ /** Request body the CLI sends to finalize a deploy's source manifest. */
8565
+ const UploadProjectSourceManifestRequestSchema = object({ files: array(object({
8566
+ path: string().min(1),
8567
+ hash: sha256Hex
8568
+ })) });
8569
+ const UploadProjectSourceResponseSchema = object({
8570
+ ok: literal(true),
8571
+ fileCount: number$1().int().nonnegative()
8572
+ });
8573
+ object({
8574
+ files: array(object({
8575
+ id: string(),
8576
+ path: string().min(1),
8577
+ hash: sha256Hex
8578
+ })),
8579
+ generatedAt: isoDateTime
8580
+ });
8581
+ /** A single source file returned by the bulk active-source download endpoint. */
8582
+ const DownloadActiveProjectSourceFileSchema = object({
8583
+ path: string().min(1),
8584
+ contents: string()
8585
+ });
8586
+ /** Response for downloading all source files from a project's active deploy. */
8587
+ const DownloadActiveProjectSourceResponseSchema = object({
8588
+ artifactId: string(),
8589
+ files: array(DownloadActiveProjectSourceFileSchema)
8590
+ });
8591
+ /** Relative path written after a local pull or MCP workspace hydration. */
8592
+ const PROJECT_PULL_STATE_RELATIVE_PATH = ".keystroke/pull-state.json";
8593
+ const ProjectPullStateSchema = object({
8594
+ projectId: string(),
8595
+ artifactId: string(),
8596
+ pulledAt: string().datetime()
8597
+ });
8598
+ const ListAgentMemoryFilesResponseSchema = object({ files: array(object({
8599
+ id: string(),
8600
+ path: string().min(1)
8601
+ })) });
8602
+ const ListAgentWorkspaceFilesResponseSchema = object({ files: array(object({
8603
+ id: string(),
8604
+ path: string().min(1)
8605
+ })) });
8552
8606
  const WorkflowRunInputsPutBodySchema = record(string(), unknown());
8553
8607
  //#endregion
8554
- export { CredentialInstanceListResponseSchema as $, WorkflowCanvasCredentialBindingsSchema as $n, unknown as $r, PresignOrgLogoRequestSchema as $t, ConnectAuthorizeUrlResponseSchema as A, TriggerInvokeResponseSchema as An, resolvePublicPlatformOrigin as Ar, ListChannelPlatformsResponseSchema as At, CreateCustomAppRequestSchema as B, UpdateOrganizationMemberResponseSchema as Bn, custom as Br, ListProjectMembersResponseSchema as Bt, ChannelAccountListResponseSchema as C, StartMcpOAuthConnectionResultSchema as Cn, originFromPublicUrl as Cr, InviteProjectMembersRequestSchema as Ct, CompleteProjectArtifactResponseSchema as D, SubmitTeamRequestRequestSchema as Dn, requiredDisplayTextSchema as Dr, ListAgentWorkspaceFilesResponseSchema as Dt, ChannelDirectoryListResponseSchema as E, SubmitMarketingContactRequestSchema as En, parseStoredRouteManifest as Er, ListAgentMemoryFilesResponseSchema as Et, CreateBillingPortalRequestSchema as F, UpdateChannelBindingBodySchema as Fn, _function as Fr, ListOrganizationMembersPageQuerySchema as Ft, CreateProjectRequestSchema as G, UpdateProjectSettingsRequestSchema as Gn, looseObject as Gr, McpDiscoverResponseSchema as Gt, CreateOrganizationRequestSchema as H, UpdateProjectMemberRequestSchema as Hn, intersection as Hr, ListProjectsResponseSchema as Ht, CreateCredentialInstanceBodySchema as I, UpdateCredentialInstanceBodySchema as In, _null as Ir, ListOrganizationMembersPageResponseSchema as It, CredentialAssignmentListQuerySchema as J, UpsertGatewayAttachmentBodySchema as Jn, optional as Jr, OrganizationSidebarBrandingSchema as Jt, CreateProjectResponseSchema as K, UploadProjectSourceManifestRequestSchema as Kn, number$1 as Kr, OpenApiDiscoverResponseSchema as Kt, CreateCredentialsRequestSchema as L, UpdateCredentialRequestSchema as Ln, any as Lr, ListOrganizationsResponseSchema as Lt, ConnectProvidersResponseSchema as M, TriggerRunDetailResponseSchema as Mn, number as Mr, ListCredentialsPageResponseSchema as Mt, CreateApiKeyRequestSchema as N, TriggerRunListResponseSchema as Nn, ZodType as Nr, ListManagedServiceCredentialsResponseSchema as Nt, ConfirmCheckoutRequestSchema as O, TriggerDetailResponseSchema as On, resolveConnectAppSlug as Or, ListApiKeysResponseSchema as Ot, CreateApiKeyResponseSchema as P, UpdateAutoTopupRequestSchema as Pn, _enum as Pr, ListOrganizationInvitationsResponseSchema as Pt, CredentialConsumerListResponseSchema as Q, UserPreferencesSchema as Qn, union as Qr, PresignChatAttachmentResponseSchema as Qt, CreateCredentialsResponseSchema as R, UpdateManagedServiceCredentialRequestSchema as Rn, array as Rr, ListProjectDeploymentsResponseSchema as Rt, CatalogAppsPageResponseSchema as S, StartMcpOAuthConnectionInputSchema as Sn, normalizeCredentialList as Sr, InviteOrganizationMembersResponseSchema as St, ChannelConnectionSchema as T, StartOAuthConnectionResultSchema as Tn, parseErrorResponse as Tr, LOCAL_PLATFORM_ORIGIN as Tt, CreateOrganizationResponseSchema as U, UpdateProjectMemberResponseSchema as Un, lazy as Ur, ManagedServiceCredentialSchema as Ut, CreateCustomAppResponseSchema as V, UpdateOrganizationRequestSchema as Vn, discriminatedUnion as Vr, ListProjectMetricsResponseSchema as Vt, CreateProjectArtifactResponseSchema as W, UpdateProjectRequestSchema as Wn, literal as Wr, ManagedServiceKindSchema as Wt, CredentialAssignmentRecordSchema as X, UserAvatarSchema as Xn, record as Xr, PROJECT_REACHABILITY_REQUEST_TIMEOUT_MS as Xt, CredentialAssignmentListResponseSchema as Y, UserAvatarPatchSchema as Yn, preprocess as Yr, PROJECT_PULL_STATE_RELATIVE_PATH as Yt, CredentialConsumerListQuerySchema as Z, UserPreferencesPatchSchema as Zn, string as Zr, PresignChatAttachmentRequestSchema as Zt, BindChannelBodySchema as _, SkillSummaryDetailResponseSchema as _n, credentialInputSchema as _r, HistoryRunCancelResponseSchema as _t, AgentSessionListResponseSchema as a, ProjectPullStateSchema as an, WorkflowRunInputsSchema as ar, DownloadActiveProjectArtifactResponseSchema as at, CatalogActionsPageResponseSchema as b, StartKeystrokeConnectionInputSchema as bn, isAcceptableInstallExit as br, HistoryRunListResponseSchema as bt, AgentTriggerSummaryListResponseSchema as c, ProjectSettingsResponseSchema as cn, WorkflowSummaryDetailResponseSchema as cr, DuplicateCredentialsResponseSchema as ct, AutoTopupSummarySchema as d, PromptResponseSchema as dn, WorkspaceTriggerFileSchema as dr, GatewayAttachmentRecordSchema as dt, url as ei, PresignOrgLogoResponseSchema as en, WorkflowCanvasRunSchema as er, CredentialInstanceRecordSchema as et, BillingActivityResponseSchema as f, PublicModelsResponseSchema as fn, WorkspaceTriggerListResponseSchema as fr, GetAppCatalogEntryResponseSchema as ft, BillingUsageResponseSchema as g, RecentResourceListResponseSchema as gn, buildConnectDeeplink as gr, HealthResponseSchema as gt, BillingSummaryResponseSchema as h, ROUTE_MANIFEST_REL_PATH as hn, WorkspaceWorkflowOverviewSchema as hr, GraphqlDiscoverResponseSchema as ht, AgentSessionDetailResponseSchema as i, NEVER as ii, PresignUserAvatarResponseSchema as in, WorkflowRunInputsPutBodySchema as ir, DeclineOrganizationInvitationResponseSchema as it, ConnectManagedServiceCredentialRequestSchema as j, TriggerListResponseSchema as jn, slugifyAppName as jr, ListCredentialsPageQuerySchema as jt, ConfirmCheckoutResponseSchema as k, TriggerInvokeInputsSchema as kn, resolveDocsMcpUrl as kr, ListAppsResponseSchema as kt, AppSlugAvailabilityResponseSchema as l, ProjectSlugAvailabilityResponseSchema as ln, WorkflowSummaryListResponseSchema as lr, ExecuteKeystrokeToolRequestSchema as lt, BillingRedirectResponseSchema as m, QueuedRunResponseSchema as mn, WorkspaceTriggerRunListResponseSchema as mr, GetCustomAppResponseSchema as mt, AcceptOrganizationInvitationResponseSchema as n, toJSONSchema as ni, PresignProjectSourceResponseSchema as nn, WorkflowRunDetailResponseSchema as nr, DOCS_QUERY_TOOL as nt, AgentSummaryDetailResponseSchema as o, ProjectReachabilityResponseSchema as on, WorkflowRunListResponseSchema as or, DownloadActiveProjectSourceResponseSchema as ot, BillingInvoiceUrlResponseSchema as p, QueuedAgentPromptResponseSchema as pn, WorkspaceTriggerOverviewSchema as pr, GetCredentialResponseSchema as pt, CreateSubscriptionCheckoutRequestSchema as q, UploadProjectSourceResponseSchema as qn, object as qr, OrganizationSidebarBrandingPatchSchema as qt, ActiveOrganizationResponseSchema as r, safeParse$1 as ri, PresignUserAvatarRequestSchema as rn, WorkflowRunHooksResponseSchema as rr, DOCS_SEARCH_TOOL as rt, AgentSummaryListResponseSchema as s, ProjectResponseSchema as sn, WorkflowRunResponseSchema as sr, DuplicateCredentialRequestSchema as st, ACTIVE_ORG_HEADER as t, datetime as ti, PresignProjectSourceRequestSchema as tn, WorkflowCanvasSchema as tr, DEFAULT_CLOUD_PLATFORM_ORIGIN as tt, AssignCredentialBodySchema as u, PromptInputSchema as un, WorkspaceTriggerDetailSchema as ur, FilePartSchema as ut, CLIENT_CHANNEL_HEADER as v, SkillSummaryListResponseSchema as vn, deriveCustomAppDisplay as vr, HistoryRunDetailResponseSchema as vt, ChannelConnectionListResponseSchema as w, StartOAuthConnectionInputSchema as wn, parseAppSlug as wr, InviteProjectMembersResponseSchema as wt, CatalogAppDetailResponseSchema as x, StartKeystrokeConnectionResultSchema as xn, listenPortFromPublicUrl as xr, InviteOrganizationMembersRequestSchema as xt, CatalogActionDetailResponseSchema as y, SlugAvailabilityResponseSchema as yn, detectProjectPackageManagerFromSnapshot as yr, HistoryRunListQuerySchema as yt, CreateCreditsCheckoutRequestSchema as z, UpdateOrganizationMemberRequestSchema as zn, boolean as zr, ListProjectFilesResponseSchema as zt };
8608
+ export { CredentialInstanceListResponseSchema as $, UpsertGatewayAttachmentBodySchema as $n, number$1 as $r, PresignChatAttachmentResponseSchema as $t, ConnectAuthorizeUrlResponseSchema as A, StartOAuthConnectionResultSchema as An, originFromPublicUrl as Ar, ListAppsResponseSchema as At, CreateCustomAppRequestSchema as B, UpdateChannelBindingBodySchema as Bn, ZodType as Br, ListProjectFilesResponseSchema as Bt, ChannelAccountListResponseSchema as C, SkillSummaryListResponseSchema as Cn, buildConnectDeeplink as Cr, InviteOrganizationMembersResponseSchema as Ct, CompleteProjectArtifactResponseSchema as D, StartMcpOAuthConnectionInputSchema as Dn, isAcceptableInstallExit as Dr, ListAgentMemoryFilesResponseSchema as Dt, ChannelDirectoryListResponseSchema as E, StartKeystrokeConnectionResultSchema as En, detectProjectPackageManagerFromSnapshot as Er, LOCAL_PLATFORM_ORIGIN as Et, CreateBillingPortalRequestSchema as F, TriggerInvokeResponseSchema as Fn, resolveConnectAppSlug as Fr, ListOrganizationInvitationsResponseSchema as Ft, CreateProjectRequestSchema as G, UpdateOrganizationMemberResponseSchema as Gn, array as Gr, ManagedServiceKindSchema as Gt, CreateOrganizationRequestSchema as H, UpdateCredentialRequestSchema as Hn, _function as Hr, ListProjectMetricsResponseSchema as Ht, CreateCredentialInstanceBodySchema as I, TriggerListResponseSchema as In, resolveDocsMcpUrl as Ir, ListOrganizationMembersPageQuerySchema as It, CredentialAssignmentListQuerySchema as J, UpdateProjectMemberResponseSchema as Jn, discriminatedUnion as Jr, OrganizationSidebarBrandingPatchSchema as Jt, CreateProjectResponseSchema as K, UpdateOrganizationRequestSchema as Kn, boolean as Kr, McpDiscoverResponseSchema as Kt, CreateCredentialsRequestSchema as L, TriggerRunDetailResponseSchema as Ln, resolvePublicPlatformOrigin as Lr, ListOrganizationMembersPageResponseSchema as Lt, ConnectProvidersResponseSchema as M, SubmitTeamRequestRequestSchema as Mn, parseErrorResponse as Mr, ListCredentialsPageQuerySchema as Mt, CreateApiKeyRequestSchema as N, TriggerDetailResponseSchema as Nn, parseStoredRouteManifest as Nr, ListCredentialsPageResponseSchema as Nt, ConfirmCheckoutRequestSchema as O, StartMcpOAuthConnectionResultSchema as On, listenPortFromPublicUrl as Or, ListAgentWorkspaceFilesResponseSchema as Ot, CreateApiKeyResponseSchema as P, TriggerInvokeInputsSchema as Pn, requiredDisplayTextSchema as Pr, ListManagedServiceCredentialsResponseSchema as Pt, CredentialConsumerListResponseSchema as Q, UploadProjectSourceResponseSchema as Qn, looseObject as Qr, PresignChatAttachmentRequestSchema as Qt, CreateCredentialsResponseSchema as R, TriggerRunListResponseSchema as Rn, slugifyAppName as Rr, ListOrganizationsResponseSchema as Rt, CatalogAppsPageResponseSchema as S, SkillSummaryDetailResponseSchema as Sn, WorkspaceWorkflowOverviewSchema as Sr, InviteOrganizationMembersRequestSchema as St, ChannelConnectionSchema as T, StartKeystrokeConnectionInputSchema as Tn, deriveCustomAppDisplay as Tr, InviteProjectMembersResponseSchema as Tt, CreateOrganizationResponseSchema as U, UpdateManagedServiceCredentialRequestSchema as Un, _null as Ur, ListProjectsResponseSchema as Ut, CreateCustomAppResponseSchema as V, UpdateCredentialInstanceBodySchema as Vn, _enum as Vr, ListProjectMembersResponseSchema as Vt, CreateProjectArtifactResponseSchema as W, UpdateOrganizationMemberRequestSchema as Wn, any as Wr, ManagedServiceCredentialSchema as Wt, CredentialAssignmentRecordSchema as X, UpdateProjectSettingsRequestSchema as Xn, lazy as Xr, PROJECT_PULL_STATE_RELATIVE_PATH as Xt, CredentialAssignmentListResponseSchema as Y, UpdateProjectRequestSchema as Yn, intersection as Yr, OrganizationSidebarBrandingSchema as Yt, CredentialConsumerListQuerySchema as Z, UploadProjectSourceManifestRequestSchema as Zn, literal as Zr, PROJECT_REACHABILITY_REQUEST_TIMEOUT_MS as Zt, BindChannelBodySchema as _, PublishedFormSchema as _n, WorkspaceTriggerDetailSchema as _r, HealthResponseSchema as _t, AgentSessionListResponseSchema as a, union as ai, PresignUserAvatarResponseSchema as an, WorkflowCanvasRunSchema as ar, DownloadActiveProjectArtifactResponseSchema as at, CatalogActionsPageResponseSchema as b, ROUTE_MANIFEST_REL_PATH as bn, WorkspaceTriggerOverviewSchema as br, HistoryRunListQuerySchema as bt, AgentTriggerSummaryListResponseSchema as c, datetime as ci, ProjectResponseSchema as cn, WorkflowFormUpsertBodySchema as cr, DuplicateCredentialsResponseSchema as ct, AutoTopupSummarySchema as d, NEVER as di, PromptInputSchema as dn, WorkflowRunInputsPutBodySchema as dr, FormFieldConfigSchema as dt, object as ei, PresignOrgLogoRequestSchema as en, UserAvatarPatchSchema as er, CredentialInstanceRecordSchema as et, BillingActivityResponseSchema as f, PromptResponseSchema as fn, WorkflowRunInputsSchema as fr, GatewayAttachmentRecordSchema as ft, BillingUsageResponseSchema as g, PublicModelsResponseSchema as gn, WorkflowSummaryListResponseSchema as gr, GraphqlDiscoverResponseSchema as gt, BillingSummaryResponseSchema as h, PublicFormSubmitResponseSchema as hn, WorkflowSummaryDetailResponseSchema as hr, GetCustomAppResponseSchema as ht, AgentSessionDetailResponseSchema as i, string as ii, PresignUserAvatarRequestSchema as in, WorkflowCanvasCredentialBindingsSchema as ir, DeclineOrganizationInvitationResponseSchema as it, ConnectManagedServiceCredentialRequestSchema as j, SubmitMarketingContactRequestSchema as jn, parseAppSlug as jr, ListChannelPlatformsResponseSchema as jt, ConfirmCheckoutResponseSchema as k, StartOAuthConnectionInputSchema as kn, normalizeCredentialList as kr, ListApiKeysResponseSchema as kt, AppSlugAvailabilityResponseSchema as l, toJSONSchema as li, ProjectSettingsResponseSchema as ln, WorkflowRunDetailResponseSchema as lr, ExecuteKeystrokeToolRequestSchema as lt, BillingRedirectResponseSchema as m, PublicFormSubmitBodySchema as mn, WorkflowRunResponseSchema as mr, GetCredentialResponseSchema as mt, AcceptOrganizationInvitationResponseSchema as n, preprocess as ni, PresignProjectSourceRequestSchema as nn, UserPreferencesPatchSchema as nr, DOCS_QUERY_TOOL as nt, AgentSummaryDetailResponseSchema as o, unknown as oi, ProjectPullStateSchema as on, WorkflowCanvasSchema as or, DownloadActiveProjectSourceResponseSchema as ot, BillingInvoiceUrlResponseSchema as p, PublicFormMetadataSchema as pn, WorkflowRunListResponseSchema as pr, GetAppCatalogEntryResponseSchema as pt, CreateSubscriptionCheckoutRequestSchema as q, UpdateProjectMemberRequestSchema as qn, custom as qr, OpenApiDiscoverResponseSchema as qt, ActiveOrganizationResponseSchema as r, record as ri, PresignProjectSourceResponseSchema as rn, UserPreferencesSchema as rr, DOCS_SEARCH_TOOL as rt, AgentSummaryListResponseSchema as s, url as si, ProjectReachabilityResponseSchema as sn, WorkflowFormResponseSchema as sr, DuplicateCredentialRequestSchema as st, ACTIVE_ORG_HEADER as t, optional as ti, PresignOrgLogoResponseSchema as tn, UserAvatarSchema as tr, DEFAULT_CLOUD_PLATFORM_ORIGIN as tt, AssignCredentialBodySchema as u, safeParse$1 as ui, ProjectSlugAvailabilityResponseSchema as un, WorkflowRunHooksResponseSchema as ur, FilePartSchema as ut, CLIENT_CHANNEL_HEADER as v, QueuedAgentPromptResponseSchema as vn, WorkspaceTriggerFileSchema as vr, HistoryRunCancelResponseSchema as vt, ChannelConnectionListResponseSchema as w, SlugAvailabilityResponseSchema as wn, credentialInputSchema as wr, InviteProjectMembersRequestSchema as wt, CatalogAppDetailResponseSchema as x, RecentResourceListResponseSchema as xn, WorkspaceTriggerRunListResponseSchema as xr, HistoryRunListResponseSchema as xt, CatalogActionDetailResponseSchema as y, QueuedRunResponseSchema as yn, WorkspaceTriggerListResponseSchema as yr, HistoryRunDetailResponseSchema as yt, CreateCreditsCheckoutRequestSchema as z, UpdateAutoTopupRequestSchema as zn, number as zr, ListProjectDeploymentsResponseSchema as zt };
8555
8609
 
8556
- //# sourceMappingURL=dist-Cv14W_rK.mjs.map
8610
+ //# sourceMappingURL=dist-B48EHpH2.mjs.map