openmeld 0.3.63 → 0.3.65
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/{add-me-membership-CVpMqRyD.js → add-me-membership-V07v7WN2.js} +2 -2
- package/dist/{add-me-membership-CVpMqRyD.js.map → add-me-membership-V07v7WN2.js.map} +1 -1
- package/dist/{api-client-foundation-Di5XZCUV.js → api-client-foundation-B2VXUaHu.js} +3 -3
- package/dist/{api-client-foundation-Di5XZCUV.js.map → api-client-foundation-B2VXUaHu.js.map} +1 -1
- package/dist/{auth-session-Dg72Xh3J.js → auth-session-je3kV35Z.js} +2 -2
- package/dist/{auth-session-Dg72Xh3J.js.map → auth-session-je3kV35Z.js.map} +1 -1
- package/dist/{command-CwpZzTGc.js → command-DyBhBtjU.js} +243 -54
- package/dist/{command-CwpZzTGc.js.map → command-DyBhBtjU.js.map} +1 -1
- package/dist/{dist-Da8tvfsY.js → dist-otYW6tMl.js} +203 -113
- package/dist/dist-otYW6tMl.js.map +1 -0
- package/dist/openmeld.js +19 -9
- package/dist/openmeld.js.map +1 -1
- package/dist/{runtime-transport-eiQG68PK.js → runtime-transport-DB1vho68.js} +66 -2
- package/dist/runtime-transport-DB1vho68.js.map +1 -0
- package/package.json +3 -3
- package/dist/dist-Da8tvfsY.js.map +0 -1
- package/dist/runtime-transport-eiQG68PK.js.map +0 -1
|
@@ -3720,6 +3720,20 @@ const openMeldDaemonSetLocalAgentEnabledRequestPayloadSchema = z.strictObject({
|
|
|
3720
3720
|
agentId: z.string().trim().min(1).max(256),
|
|
3721
3721
|
enabled: z.boolean()
|
|
3722
3722
|
});
|
|
3723
|
+
const localAgentInstallationOptionSchema = z.strictObject({
|
|
3724
|
+
installationId: z.string().trim().min(1).max(256),
|
|
3725
|
+
name: z.string().trim().min(1).max(256),
|
|
3726
|
+
details: z.string().trim().min(1).max(256),
|
|
3727
|
+
selected: z.boolean()
|
|
3728
|
+
});
|
|
3729
|
+
const openMeldDaemonManageLocalAgentInstallationRequestPayloadSchema = z.discriminatedUnion("operation", [z.strictObject({
|
|
3730
|
+
agentId: z.string().trim().min(1).max(256),
|
|
3731
|
+
operation: z.literal("list")
|
|
3732
|
+
}), z.strictObject({
|
|
3733
|
+
agentId: z.string().trim().min(1).max(256),
|
|
3734
|
+
installationId: z.string().trim().min(1).max(256),
|
|
3735
|
+
operation: z.literal("select")
|
|
3736
|
+
})]);
|
|
3723
3737
|
const openMeldDaemonSetProfileWorkspaceRequestPayloadSchema = z.strictObject({
|
|
3724
3738
|
targetProfileId: agentProfileIdSchema,
|
|
3725
3739
|
workspaceMode: profileWorkspaceModeSchema,
|
|
@@ -3871,6 +3885,34 @@ const openMeldDaemonSetLocalAgentEnabledPayloadSchema = z.strictObject({
|
|
|
3871
3885
|
"rejected"
|
|
3872
3886
|
])
|
|
3873
3887
|
});
|
|
3888
|
+
const openMeldDaemonManageLocalAgentInstallationPayloadSchema = z.discriminatedUnion("accepted", [z.strictObject({
|
|
3889
|
+
accepted: z.literal(true),
|
|
3890
|
+
agentControllerRef: z.string().min(1),
|
|
3891
|
+
agentId: z.string().trim().min(1).max(256),
|
|
3892
|
+
changed: z.boolean(),
|
|
3893
|
+
installations: z.array(localAgentInstallationOptionSchema),
|
|
3894
|
+
reportSyncStatus: z.enum([
|
|
3895
|
+
"submitted",
|
|
3896
|
+
"skipped",
|
|
3897
|
+
"failed"
|
|
3898
|
+
]),
|
|
3899
|
+
selectedInstallationId: z.string().trim().min(1).max(256).nullable(),
|
|
3900
|
+
status: z.enum([
|
|
3901
|
+
"listed",
|
|
3902
|
+
"updated",
|
|
3903
|
+
"unchanged"
|
|
3904
|
+
])
|
|
3905
|
+
}), z.strictObject({
|
|
3906
|
+
accepted: z.literal(false),
|
|
3907
|
+
agentId: z.string().trim().min(1).max(256),
|
|
3908
|
+
changed: z.literal(false),
|
|
3909
|
+
installations: z.array(localAgentInstallationOptionSchema),
|
|
3910
|
+
message: z.string().min(1).optional(),
|
|
3911
|
+
reasonCode: z.string().min(1).optional(),
|
|
3912
|
+
reportSyncStatus: z.literal("failed"),
|
|
3913
|
+
selectedInstallationId: z.string().trim().min(1).max(256).nullable(),
|
|
3914
|
+
status: z.literal("rejected")
|
|
3915
|
+
})]);
|
|
3874
3916
|
const openMeldDaemonSetProfileWorkspacePayloadSchema = z.discriminatedUnion("accepted", [z.strictObject({
|
|
3875
3917
|
accepted: z.literal(true),
|
|
3876
3918
|
targetProfileId: agentProfileIdSchema,
|
|
@@ -5257,6 +5299,7 @@ const runtimeTransportCapabilitiesSchema = z.strictObject({
|
|
|
5257
5299
|
localAgentControl: z.strictObject({
|
|
5258
5300
|
cancel: z.literal(true).optional(),
|
|
5259
5301
|
interrupt: z.literal(true).optional(),
|
|
5302
|
+
manageInstallations: z.literal(true).optional(),
|
|
5260
5303
|
refreshCatalog: z.literal(true).optional(),
|
|
5261
5304
|
resumeControllerConversation: z.literal(true).optional(),
|
|
5262
5305
|
setEnabled: z.literal(true).optional(),
|
|
@@ -5445,6 +5488,21 @@ z.discriminatedUnion("status", [z.strictObject({
|
|
|
5445
5488
|
reasonCode: z.string().min(1),
|
|
5446
5489
|
message: z.string().min(1)
|
|
5447
5490
|
})]);
|
|
5491
|
+
z.strictObject({
|
|
5492
|
+
v: z.literal(1),
|
|
5493
|
+
ownerUserId: z.string().min(1),
|
|
5494
|
+
deviceId: z.string().min(1),
|
|
5495
|
+
lane: daemonServiceLaneSchema,
|
|
5496
|
+
request: openMeldDaemonManageLocalAgentInstallationRequestPayloadSchema
|
|
5497
|
+
});
|
|
5498
|
+
z.discriminatedUnion("status", [z.strictObject({
|
|
5499
|
+
status: z.literal("accepted"),
|
|
5500
|
+
payload: openMeldDaemonManageLocalAgentInstallationPayloadSchema
|
|
5501
|
+
}), z.strictObject({
|
|
5502
|
+
status: z.literal("rejected"),
|
|
5503
|
+
reasonCode: z.string().min(1),
|
|
5504
|
+
message: z.string().min(1)
|
|
5505
|
+
})]);
|
|
5448
5506
|
z.strictObject({
|
|
5449
5507
|
v: z.literal(1),
|
|
5450
5508
|
ownerUserId: z.string().min(1),
|
|
@@ -5492,6 +5550,10 @@ const runtimeTransportLocalAgentControlSetEnabledFramePayloadSchema = z.strictOb
|
|
|
5492
5550
|
requestId: z.string().min(1),
|
|
5493
5551
|
payload: openMeldDaemonSetLocalAgentEnabledRequestPayloadSchema
|
|
5494
5552
|
});
|
|
5553
|
+
const runtimeTransportLocalAgentControlManageInstallationFramePayloadSchema = z.strictObject({
|
|
5554
|
+
requestId: z.string().min(1),
|
|
5555
|
+
payload: openMeldDaemonManageLocalAgentInstallationRequestPayloadSchema
|
|
5556
|
+
});
|
|
5495
5557
|
const runtimeTransportLocalAgentControlRefreshCatalogFramePayloadSchema = z.strictObject({
|
|
5496
5558
|
requestId: z.string().min(1),
|
|
5497
5559
|
payload: openMeldDaemonSyncRouteCatalogRequestPayloadSchema
|
|
@@ -5511,6 +5573,7 @@ const runtimeTransportLocalAgentControlInterruptFramePayloadSchema = z.strictObj
|
|
|
5511
5573
|
z.strictObject({
|
|
5512
5574
|
requestId: z.string().min(1),
|
|
5513
5575
|
payload: z.union([
|
|
5576
|
+
openMeldDaemonManageLocalAgentInstallationPayloadSchema,
|
|
5514
5577
|
openMeldDaemonSetLocalAgentEnabledPayloadSchema,
|
|
5515
5578
|
openMeldDaemonSetProfileWorkspacePayloadSchema,
|
|
5516
5579
|
openMeldDaemonSyncRouteCatalogPayloadSchema,
|
|
@@ -6380,6 +6443,7 @@ const daemonStreamCodeSchema = z.enum([
|
|
|
6380
6443
|
"daemon.route_catalog.changed",
|
|
6381
6444
|
"daemon.local_agent_control.cancel",
|
|
6382
6445
|
"daemon.local_agent_control.interrupt",
|
|
6446
|
+
"daemon.local_agent_control.manage_installation",
|
|
6383
6447
|
"daemon.local_agent_control.refresh_catalog",
|
|
6384
6448
|
"daemon.local_agent_control.set_enabled",
|
|
6385
6449
|
"daemon.local_agent_control.set_profile_workspace",
|
|
@@ -6415,6 +6479,6 @@ z.strictObject({
|
|
|
6415
6479
|
})
|
|
6416
6480
|
});
|
|
6417
6481
|
//#endregion
|
|
6418
|
-
export {
|
|
6482
|
+
export { localFolderPickerResultSchema as $, updateOrganizationInformationProtectionPolicyBodySchema as $n, spaceContractSchema as $t, runtimeTransportRouteCatalogChangedFramePayloadSchema as A, installedLocalComponentsSnapshotSchema as An, spaceAttachmentDescriptorSchema as At, runtimeTransportSubmitTaskResultRequestSchema as B, runtimeCoordinatorExecutionRecordSchema as Bn, localAgentInstallationOptionSchema as Bt, runtimeTransportLocalAgentControlSetProfileWorkspaceFramePayloadSchema as C, agentInteractionRequestSchema as Cn, shouldPreferMappedPublicAgentFailureReason as Cr, signalStatusDataSchema as Ct, runtimeTransportRejectedProfileRegistrationSchema as D, formatLocalComponentsSummaryLabel as Dn, resolveCommandAgentWorkActivity as Dr, SPACE_ATTACHMENT_MAX_SIZE_BYTES as Dt, runtimeTransportRegisterSessionResponseSchema as E, formatLocalComponentsSummaryDescription as En, openMeldWebUrlSchema as Er, signalTextSchema as Et, runtimeTransportRuntimeCoordinatorHeadNoExecutionRecoveryActionSchema as F, postSpaceWakeStopResponseSchema as Fn, spaceMessageAttachmentSchema as Ft, openMeldDaemonTaskResultProjectFailureContextSchema as G, normalizeSpacePasswordText as Gn, providerDispatchRuntimeContextSchema as Gt, openMeldDaemonTaskResultEnvelopeWriteSchema as H, runtimeTransportDeliveryExecutionIdentitySchema as Hn, openMeldDaemonControlPlaneResponseSchema as Ht, runtimeTransportRuntimeCoordinatorHeadWaitingCategorySchema as I, clientMessageIdSchema as In, spaceMessageAttachmentsSchema as It, OPENMELD_LOCAL_FOLDER_PICKER_CAPABILITY_HEADER as J, resolveSpaceMentionLabels as Jn, spaceThreadContextSchema as Jt, openMeldSpaceEgressActionSchema as K, spacePasswordSchema as Kn, conversationExecutionStateSchema as Kt, runtimeTransportRuntimeCoordinatorHeadWaitingReasonCodeSchema as L, parseOptionalClientMessageId as Ln, conversationCompactionMarkerSchema as Lt, runtimeTransportRuntimeCoordinatorHeadNoExecutionDecisionSourceSchema as M, localComponentUpdateProjectionSchema as Mn, spaceAttachmentFileNameSchema as Mt, runtimeTransportRuntimeCoordinatorHeadNoExecutionPublicationCategorySchema as N, localServiceComponentUpdateProjectionSchema as Nn, spaceAttachmentMimeTypeSchema as Nt, runtimeTransportResumeControllerConversationFramePayloadSchema as O, formatLocalSetupActionDescription as On, detectSpaceAttachmentMimeType as Ot, runtimeTransportRuntimeCoordinatorHeadNoExecutionReasonCodeSchema as P, postSpaceWakeStopBodySchema as Pn, spaceAttachmentSizeBytesSchema as Pt, localFolderPickerRequestSchema as Q, organizationProtectedInformationSchema as Qn, spaceContractFieldsSchema as Qt, runtimeTransportRuntimeCoordinatorHeadWaitingRecoveryActionSchema as R, runtimeCoordinatorExecutionCreationDiagnosticSchema as Rn, spaceStatusSchema as Rt, runtimeTransportLocalAgentControlSetEnabledFramePayloadSchema as S, agentInteractionPendingSummarySchema as Sn, resolvePublicAgentFailureRecovery as Sr, sanitizeSignalTextPreview as St, runtimeTransportRegisterSessionRequestSchema as T, agentInteractionResponseSchema as Tn, openMeldNavigationTargetSchema as Tr, signalTextDataSchema as Tt, openMeldDaemonTaskResultOpenClawGatewayVisibilityStatusSchema as U, spaceTraceExecutionIdentityProjectionSchema as Un, openMeldDaemonSyncRouteCatalogPayloadSchema as Ut, openMeldDaemonProviderAccessEvidenceProviderSchema as V, runtimeCoordinatorExecutionTokenEnvelopeSchema as Vn, openMeldDaemonControlPlaneRequestSchema as Vt, openMeldDaemonTaskResultPayloadSchema as W, SPACE_PASSWORD_RATE_LIMITED_ERROR_CODE as Wn, skippedDaemonProfileSchema as Wt, localFolderPickerHelperProtocolResultSchema as X, spaceMentionLabelSourceSchema as Xn, spaceThreadSchema as Xt, localFolderPickerDaemonFrameSchema as Y, spaceMentionLabelSchema as Yn, spaceThreadEventSchema as Yt, localFolderPickerHelperResultSchema as Z, organizationInformationProtectionPolicyResponseSchema as Zn, spaceThreadSignalPlacementSchema as Zt, runtimeTransportHeartbeatResponseSchema as _, spaceAgentStreamPartFrameSchema as _n, trimmedStringFromUnknown as _r, DISPATCH_ACTIVITY_RETRYING_PURPOSE as _t, runtimeTransportCapabilitiesSchema as a, workingLanguageTagSchema as an, MAX_PROFILE_WORKING_DIRECTORY_LENGTH as ar, agentTaskTerminalOutcomeSchema as at, runtimeTransportLocalAgentControlManageInstallationFramePayloadSchema as b, spaceAgentStreamTerminalFrameSchema as bn, resolveMappedPublicAgentFailureReason as br, SPACE_MENTION_REJECT_NOTICE_PURPOSE as bt, runtimeTransportDispatchInteractionRequestSchema as c, collectCanonicalMentionTextFragments as cn, openMeldRuntimeProfileIdSchema as cr, controllerAgentTaskHandleSchema as ct, runtimeTransportDispatchPreviewEndRequestSchema as d, messageEnvelopeSchema as dn, profileWorkingDirectorySchema as dr, AGENT_REPLYING_PURPOSE as dt, resultArchivePolicySchema as en, executeExecutionRecoveryBodySchema as er, localFolderPathSchema as et, runtimeTransportDispatchPreviewRequestSchema as f, normalizeMessageEnvelope as fn, profileWorkspaceModeSchema as fr, AGENT_REPLY_PREVIEW_END_PURPOSE as ft, runtimeTransportHeartbeatRequestSchema as g, spaceAgentStreamDeltaFrameSchema as gn, optionalBooleanQuerySchema as gr, DISPATCH_ACTIVITY_FAILED_PURPOSE as gt, runtimeTransportErrorCodeSchema as h, agentStreamToolPartSchema as hn, nonEmptyTrimmedStringFromUnknown as hr, DISPATCH_ACTIVITY_DISPATCHING_PURPOSE as ht, localWakeRouteReportSchema as i, workingLanguageGuidanceSchema as in, openMeldRequestContextSchema as ir, agentTaskHandleSchema as it, runtimeTransportRuntimeCoordinatorHeadLifecycleStatusSchema as j, localCliComponentUpdateProjectionSchema as jn, spaceAttachmentDimensionSchema as jt, runtimeTransportResumeControllerConversationResultFramePayloadSchema as k, formatLocalSetupActionLabel as kn, projectSpaceMessageAttachment as kt, runtimeTransportDispatchInteractionResponseFramePayloadSchema as l, formatCanonicalMentionLiteral as ln, profileKindSchema as lr, spaceWakeAgentTaskHandleSchema as lt, runtimeTransportDispatchToolActivityRequestSchema as m, AGENT_STREAM_SNAPSHOT_MAX_CHARS as mn, finiteIntegerNumber as mr, CONVERSATION_CONTINUITY_WARNING_PURPOSE as mt, daemonExecutionCompatibilitySchema as n, spacePublicationModeSchema as nn, inspectExecutionRecoveryResponseSchema as nr, agentTaskCompletionConditionSchema as nt, runtimeTransportDeliverDispatchRequestSchema as o, targetWakeLifecycleIdentitySchema as on, agentProfileIdSchema as or, areAgentTaskTerminalOutcomesEqual as ot, runtimeTransportDispatchRuntimeEvidenceRequestSchema as p, resolveMessageEnvelopeTargetField as pn, uuidProfileIdSchema as pr, AGENT_REPLY_PREVIEW_PURPOSE as pt, LOCAL_FOLDER_PICKER_RUNTIME_CAPABILITY as q, resolveSingleSpaceMentionLabels as qn, dispatchExecutionSchema as qt, daemonStreamFrameSchema as r, spaceDispatchPolicySchema as rn, openMeldProfileIdSchema as rr, agentTaskCompletionObservationSchema as rt, runtimeTransportDispatchInteractionDeliveredRequestSchema as s, MESSAGE_MENTION_TYPE_VALUES as sn, normalizeOptionalWorkingDirectory as sr, buildAgentTaskKey as st, CURRENT_DAEMON_EXECUTION_CONTRACT_EPOCH as t, spaceAllowedActionsSchema as tn, executeExecutionRecoveryResponseSchema as tr, agentDelegationSnapshotSchema as tt, runtimeTransportDispatchLifecycleRequestSchema as u, getSpaceMessageAddressingRelationSupportForTargetKind as un, profileSchema as ur, AGENT_REPLYING_END_PURPOSE as ut, runtimeTransportLocalAgentControlCancelFramePayloadSchema as v, spaceAgentStreamPresenceSchema as vn, MAX_TEXT_LENGTH as vr, SPACE_MEMBER_JOIN_NOTICE_PURPOSE as vt, runtimeTransportLookupRouteOwnerServiceEvidenceSchema as w, agentInteractionResolutionSchema as wn, computerSetupModeSchema as wr, signalSystemNoticeDataSchema as wt, runtimeTransportLocalAgentControlRefreshCatalogFramePayloadSchema as x, AGENT_INTERACTION_DEFAULT_TIMEOUT_MS as xn, resolvePublicAgentAvailabilityCopy as xr, centerAgentTaskReferenceSchema as xt, runtimeTransportLocalAgentControlInterruptFramePayloadSchema as y, spaceAgentStreamSnapshotSchema as yn, resolveDetailedPublicAgentFailureReason as yr, SPACE_MEMBER_REMOVE_NOTICE_PURPOSE as yt, runtimeTransportRuntimeCoordinatorRespondInteractionResponseSchema as z, runtimeCoordinatorExecutionEventSchema as zn, centerAgentInteractionSourceSchema as zt };
|
|
6419
6483
|
|
|
6420
|
-
//# sourceMappingURL=runtime-transport-
|
|
6484
|
+
//# sourceMappingURL=runtime-transport-DB1vho68.js.map
|