openmeld 0.3.80 → 0.3.82
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-BCjOGyKq.js → add-me-membership-Chf7oIxu.js} +2 -2
- package/dist/{add-me-membership-BCjOGyKq.js.map → add-me-membership-Chf7oIxu.js.map} +1 -1
- package/dist/{api-client-foundation-jjwUa25Q.js → api-client-foundation-CFHEblaZ.js} +3 -3
- package/dist/{api-client-foundation-jjwUa25Q.js.map → api-client-foundation-CFHEblaZ.js.map} +1 -1
- package/dist/{auth-session-BOKcW_84.js → auth-session-BJZuJ2bM.js} +2 -2
- package/dist/{auth-session-BOKcW_84.js.map → auth-session-BJZuJ2bM.js.map} +1 -1
- package/dist/{command-BRUv0I9O.js → command-BL4XDrtV.js} +49 -44
- package/dist/{command-BRUv0I9O.js.map → command-BL4XDrtV.js.map} +1 -1
- package/dist/{dist-DtEdipqO.js → dist-D9smLL6A.js} +50 -13
- package/dist/dist-D9smLL6A.js.map +1 -0
- package/dist/openmeld.js +72 -8
- package/dist/openmeld.js.map +1 -1
- package/dist/{runtime-transport-BLEvh9zX.js → runtime-transport-DI97Fndy.js} +68 -33
- package/dist/runtime-transport-DI97Fndy.js.map +1 -0
- package/package.json +2 -2
- package/dist/dist-DtEdipqO.js.map +0 -1
- package/dist/runtime-transport-BLEvh9zX.js.map +0 -1
|
@@ -1101,6 +1101,12 @@ const PUBLIC_FAILURE_RECOVERY_BY_CODE = [
|
|
|
1101
1101
|
primaryActionId: "connect_openmeld_service",
|
|
1102
1102
|
recoveryTarget: "prepare_setup"
|
|
1103
1103
|
},
|
|
1104
|
+
{
|
|
1105
|
+
body: (targetName) => `OpenMeld Service is connected, but ${formatObjectTargetName(targetName)} did not become ready in time for this Wake. Try waking the agent again in a moment.`,
|
|
1106
|
+
kind: "system_retry",
|
|
1107
|
+
patterns: ["=daemon.profile.pending_first_report"],
|
|
1108
|
+
recoveryTarget: null
|
|
1109
|
+
},
|
|
1104
1110
|
{
|
|
1105
1111
|
body: (targetName) => `OpenMeld could not reach ${formatObjectTargetName(targetName)} on this computer for this Wake. Reconnect OpenMeld Service, then try again.`,
|
|
1106
1112
|
kind: "local_service",
|
|
@@ -5969,13 +5975,15 @@ const runtimeTransportRuntimeCoordinatorHeadNoExecutionReasonCodeSchema = z.enum
|
|
|
5969
5975
|
"organization_binding_authorization.required",
|
|
5970
5976
|
"local_service.identity_mismatch",
|
|
5971
5977
|
"daemon.profile.offline",
|
|
5978
|
+
"daemon.profile.pending_first_report",
|
|
5972
5979
|
"service.update_required"
|
|
5973
5980
|
]);
|
|
5974
5981
|
const runtimeTransportRuntimeCoordinatorHeadNoExecutionPublicationCategorySchema = z.enum([
|
|
5975
5982
|
"binding_required",
|
|
5976
5983
|
"local_connection_mismatch",
|
|
5977
5984
|
"service_not_connected",
|
|
5978
|
-
"update_required"
|
|
5985
|
+
"update_required",
|
|
5986
|
+
"wake_route_registration_pending"
|
|
5979
5987
|
]);
|
|
5980
5988
|
const runtimeTransportRuntimeCoordinatorHeadNoExecutionRecoveryActionSchema = z.enum([
|
|
5981
5989
|
"set_up_agent_binding",
|
|
@@ -5984,7 +5992,8 @@ const runtimeTransportRuntimeCoordinatorHeadNoExecutionRecoveryActionSchema = z.
|
|
|
5984
5992
|
"authorize_agent_binding_for_organization",
|
|
5985
5993
|
"reconnect_agent_binding",
|
|
5986
5994
|
"start_or_restart_openmeld_service",
|
|
5987
|
-
"update_openmeld_service"
|
|
5995
|
+
"update_openmeld_service",
|
|
5996
|
+
"wait_for_wake_route_report"
|
|
5988
5997
|
]);
|
|
5989
5998
|
const runtimeTransportRuntimeCoordinatorHeadNoExecutionDecisionSourceSchema = z.enum([
|
|
5990
5999
|
"dispatch_preflight",
|
|
@@ -6019,47 +6028,73 @@ z.discriminatedUnion("status", [z.strictObject({
|
|
|
6019
6028
|
status: z.enum(["conflict", "retry_later"]),
|
|
6020
6029
|
targetWakeLifecycleId: z.string().min(1).max(2048)
|
|
6021
6030
|
})]);
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
|
|
6025
|
-
const
|
|
6031
|
+
z.enum(["daemon.profile.offline", "daemon.profile.pending_first_report"]);
|
|
6032
|
+
z.enum(["service_not_connected", "wake_route_registration_pending"]);
|
|
6033
|
+
z.enum(["start_or_restart_openmeld_service", "wait_for_wake_route_report"]);
|
|
6034
|
+
const runtimeCoordinatorOfflineWaitingDecisionShape = {
|
|
6035
|
+
reasonCode: z.literal("daemon.profile.offline"),
|
|
6036
|
+
userRecoveryAction: z.literal("start_or_restart_openmeld_service"),
|
|
6037
|
+
waitingCategory: z.literal("service_not_connected")
|
|
6038
|
+
};
|
|
6039
|
+
const runtimeCoordinatorPendingFirstReportWaitingDecisionShape = {
|
|
6040
|
+
reasonCode: z.literal("daemon.profile.pending_first_report"),
|
|
6041
|
+
userRecoveryAction: z.literal("wait_for_wake_route_report"),
|
|
6042
|
+
waitingCategory: z.literal("wake_route_registration_pending")
|
|
6043
|
+
};
|
|
6044
|
+
const runtimeCoordinatorHeadWaitingBoundaryCommonShape = {
|
|
6026
6045
|
deadlineAtMs: z.number().int().nonnegative(),
|
|
6027
6046
|
deadlineOutcome: z.literal("publication_intent_ready"),
|
|
6028
6047
|
observedAtMs: z.number().int().nonnegative(),
|
|
6029
|
-
reasonCode: runtimeTransportRuntimeCoordinatorHeadWaitingReasonCodeSchema,
|
|
6030
6048
|
softDeadlineAtMs: z.number().int().nonnegative(),
|
|
6031
|
-
trigger: z.literal("openmeld_service_route_connected"),
|
|
6032
6049
|
triggerOwner: z.literal("runtime_coordinator"),
|
|
6033
|
-
userRecoveryAction: runtimeTransportRuntimeCoordinatorHeadWaitingRecoveryActionSchema,
|
|
6034
|
-
userVisibleState: z.literal("waiting_for_openmeld_service"),
|
|
6035
|
-
waitingCategory: runtimeTransportRuntimeCoordinatorHeadWaitingCategorySchema,
|
|
6036
|
-
waitingFor: z.literal("openmeld_service_route_connection"),
|
|
6037
6050
|
waitingSinceMs: z.number().int().nonnegative()
|
|
6038
|
-
}
|
|
6039
|
-
z.strictObject({
|
|
6051
|
+
};
|
|
6052
|
+
const runtimeTransportRuntimeCoordinatorHeadWaitingBoundarySchema = z.discriminatedUnion("reasonCode", [z.strictObject({
|
|
6053
|
+
...runtimeCoordinatorHeadWaitingBoundaryCommonShape,
|
|
6054
|
+
...runtimeCoordinatorOfflineWaitingDecisionShape,
|
|
6055
|
+
trigger: z.literal("openmeld_service_route_connected"),
|
|
6056
|
+
userVisibleState: z.literal("waiting_for_openmeld_service"),
|
|
6057
|
+
waitingFor: z.literal("openmeld_service_route_connection")
|
|
6058
|
+
}), z.strictObject({
|
|
6059
|
+
...runtimeCoordinatorHeadWaitingBoundaryCommonShape,
|
|
6060
|
+
...runtimeCoordinatorPendingFirstReportWaitingDecisionShape,
|
|
6061
|
+
trigger: z.literal("wake_route_reported"),
|
|
6062
|
+
userVisibleState: z.literal("waiting_for_wake_route_report"),
|
|
6063
|
+
waitingFor: z.literal("wake_route_report")
|
|
6064
|
+
})]);
|
|
6065
|
+
const runtimeCoordinatorHeadWaitingRequestCommonShape = {
|
|
6040
6066
|
v: z.literal(1),
|
|
6041
6067
|
ownerUserId: z.string().min(1),
|
|
6042
6068
|
dispatchId: z.string().min(1),
|
|
6043
6069
|
idempotencyKey: z.string().min(1).max(512),
|
|
6044
6070
|
observedAtMs: z.number().int().nonnegative(),
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6048
|
-
|
|
6049
|
-
|
|
6050
|
-
z.
|
|
6071
|
+
targetWakeLifecycleIdentity: targetWakeLifecycleIdentitySchema
|
|
6072
|
+
};
|
|
6073
|
+
z.discriminatedUnion("reasonCode", [z.strictObject({
|
|
6074
|
+
...runtimeCoordinatorHeadWaitingRequestCommonShape,
|
|
6075
|
+
...runtimeCoordinatorOfflineWaitingDecisionShape
|
|
6076
|
+
}), z.strictObject({
|
|
6077
|
+
...runtimeCoordinatorHeadWaitingRequestCommonShape,
|
|
6078
|
+
...runtimeCoordinatorPendingFirstReportWaitingDecisionShape
|
|
6079
|
+
})]);
|
|
6080
|
+
const runtimeCoordinatorHeadWaitingResponseCommonShape = {
|
|
6081
|
+
deadlineAtMs: z.number().int().nonnegative(),
|
|
6082
|
+
nextTriggerAtMs: z.number().int().nonnegative(),
|
|
6083
|
+
ok: z.literal(true),
|
|
6084
|
+
primaryDispatchId: z.string().min(1),
|
|
6085
|
+
runtimeCoordinatorExecutionId: z.null(),
|
|
6086
|
+
softDeadlineAtMs: z.number().int().nonnegative(),
|
|
6087
|
+
status: z.literal("waiting"),
|
|
6088
|
+
targetWakeLifecycleId: z.string().min(1).max(2048)
|
|
6089
|
+
};
|
|
6090
|
+
z.union([
|
|
6051
6091
|
z.strictObject({
|
|
6052
|
-
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
softDeadlineAtMs: z.number().int().nonnegative(),
|
|
6059
|
-
status: z.literal("waiting"),
|
|
6060
|
-
targetWakeLifecycleId: z.string().min(1).max(2048),
|
|
6061
|
-
userRecoveryAction: runtimeTransportRuntimeCoordinatorHeadWaitingRecoveryActionSchema,
|
|
6062
|
-
waitingCategory: runtimeTransportRuntimeCoordinatorHeadWaitingCategorySchema
|
|
6092
|
+
...runtimeCoordinatorHeadWaitingResponseCommonShape,
|
|
6093
|
+
...runtimeCoordinatorOfflineWaitingDecisionShape
|
|
6094
|
+
}),
|
|
6095
|
+
z.strictObject({
|
|
6096
|
+
...runtimeCoordinatorHeadWaitingResponseCommonShape,
|
|
6097
|
+
...runtimeCoordinatorPendingFirstReportWaitingDecisionShape
|
|
6063
6098
|
}),
|
|
6064
6099
|
z.strictObject({
|
|
6065
6100
|
ok: z.literal(true),
|
|
@@ -6536,6 +6571,6 @@ z.strictObject({
|
|
|
6536
6571
|
})
|
|
6537
6572
|
});
|
|
6538
6573
|
//#endregion
|
|
6539
|
-
export {
|
|
6574
|
+
export { agentTaskTerminalOutcomeSchema as $, openMeldProfileIdSchema as $n, workingLanguageTagSchema as $t, runtimeTransportResumeControllerConversationFramePayloadSchema as A, postSpaceWakeStopBodySchema as An, spaceMessageAttachmentsSchema as At, openMeldSpaceEgressActionSchema as B, SPACE_PASSWORD_RATE_LIMITED_ERROR_CODE as Bn, conversationExecutionStateSchema as Bt, runtimeTransportLocalAgentControlRefreshCatalogFramePayloadSchema as C, formatLocalSetupActionLabel as Cn, resolveCommandAgentWorkActivity as Cr, projectSpaceMessageAttachment as Ct, runtimeTransportRegisterSessionRequestSchema as D, localComponentUpdateProjectionSchema as Dn, spaceAttachmentMimeTypeSchema as Dt, runtimeTransportLookupRouteOwnerServiceEvidenceSchema as E, localComponentUpdatePolicySchema as En, spaceAttachmentFileNameSchema as Et, openMeldDaemonProviderAccessEvidenceProviderSchema as F, runtimeCoordinatorExecutionEventSchema as Fn, openMeldDaemonControlPlaneRequestSchema as Ft, localFolderPickerHelperResultSchema as G, spaceMentionLabelSchema as Gn, spaceThreadSignalPlacementSchema as Gt, OPENMELD_LOCAL_FOLDER_PICKER_CAPABILITY_HEADER as H, spacePasswordSchema as Hn, spaceThreadContextSchema as Ht, openMeldDaemonTaskResultEnvelopeWriteSchema as I, runtimeCoordinatorExecutionRecordSchema as In, openMeldDaemonControlPlaneResponseSchema as It, localFolderPathSchema as J, organizationProtectedInformationSchema as Jn, resultArchivePolicySchema as Jt, localFolderPickerRequestSchema as K, spaceMentionLabelSourceSchema as Kn, spaceContractFieldsSchema as Kt, openMeldDaemonTaskResultOpenClawGatewayVisibilityStatusSchema as L, runtimeCoordinatorExecutionTokenEnvelopeSchema as Ln, openMeldDaemonSyncRouteCatalogPayloadSchema as Lt, runtimeTransportRouteCatalogChangedFramePayloadSchema as M, clientMessageIdSchema as Mn, spaceStatusSchema as Mt, runtimeTransportRuntimeCoordinatorRespondInteractionResponseSchema as N, parseOptionalClientMessageId as Nn, centerAgentInteractionSourceSchema as Nt, runtimeTransportRegisterSessionResponseSchema as O, localComponentUpdateStatusSchema as On, spaceAttachmentSizeBytesSchema as Ot, runtimeTransportSubmitTaskResultRequestSchema as P, runtimeCoordinatorExecutionCreationDiagnosticSchema as Pn, localAgentInstallationOptionSchema as Pt, agentTaskHandleSchema as Q, inspectExecutionRecoveryResponseSchema as Qn, workingLanguageGuidanceSchema as Qt, openMeldDaemonTaskResultPayloadSchema as R, runtimeTransportDeliveryExecutionIdentitySchema as Rn, skippedDaemonProfileSchema as Rt, runtimeTransportLocalAgentControlManageInstallationFramePayloadSchema as S, formatLocalSetupActionDescription as Sn, openMeldWebUrlSchema as Sr, detectSpaceAttachmentMimeType as St, runtimeTransportLocalAgentControlSetProfileWorkspaceFramePayloadSchema as T, localCliComponentUpdateProjectionSchema as Tn, spaceAttachmentDimensionSchema as Tt, localFolderPickerDaemonFrameSchema as U, resolveSingleSpaceMentionLabels as Un, spaceThreadEventSchema as Ut, LOCAL_FOLDER_PICKER_RUNTIME_CAPABILITY as V, normalizeSpacePasswordText as Vn, dispatchExecutionSchema as Vt, localFolderPickerHelperProtocolResultSchema as W, resolveSpaceMentionLabels as Wn, spaceThreadSchema as Wt, agentTaskCompletionConditionSchema as X, executeExecutionRecoveryBodySchema as Xn, spacePublicationModeSchema as Xt, agentDelegationSnapshotSchema as Y, updateOrganizationInformationProtectionPolicyBodySchema as Yn, spaceAllowedActionsSchema as Yt, agentTaskCompletionObservationSchema as Z, executeExecutionRecoveryResponseSchema as Zn, spaceDispatchPolicySchema as Zt, runtimeTransportHeartbeatRequestSchema as _, agentInteractionRequestSchema as _n, resolvePublicAgentAvailabilityCopy as _r, signalStatusDataSchema as _t, runtimeTransportCapabilitiesSchema as a, messageEnvelopeSchema as an, profileKindSchema as ar, AGENT_REPLYING_PURPOSE as at, runtimeTransportLocalAgentControlForkSessionFramePayloadSchema as b, formatLocalComponentsSummaryDescription as bn, computerSetupModeSchema as br, signalTextSchema as bt, runtimeTransportDispatchInteractionRequestSchema as c, AGENT_STREAM_SNAPSHOT_MAX_CHARS as cn, profileWorkspaceModeSchema as cr, CONVERSATION_CONTINUITY_WARNING_PURPOSE as ct, runtimeTransportDispatchPreviewEndRequestSchema as d, spaceAgentStreamPartFrameSchema as dn, nonEmptyTrimmedStringFromUnknown as dr, DISPATCH_ACTIVITY_RETRYING_PURPOSE as dt, targetWakeLifecycleIdentitySchema as en, openMeldRequestContextSchema as er, areAgentTaskTerminalOutcomesEqual as et, runtimeTransportDispatchPreviewRequestSchema as f, spaceAgentStreamPresenceSchema as fn, optionalBooleanQuerySchema as fr, SPACE_MEMBER_JOIN_NOTICE_PURPOSE as ft, runtimeTransportForkAgentSessionResultSchema as g, agentInteractionPendingSummarySchema as gn, resolveMappedPublicAgentFailureReason as gr, sanitizeSignalTextPreview as gt, runtimeTransportErrorCodeSchema as h, AGENT_INTERACTION_DEFAULT_TIMEOUT_MS as hn, resolveDetailedPublicAgentFailureReason as hr, centerAgentTaskReferenceSchema as ht, localWakeRouteReportSchema as i, getSpaceMessageAddressingRelationSupportForTargetKind as in, openMeldRuntimeProfileIdSchema as ir, AGENT_REPLYING_END_PURPOSE as it, runtimeTransportResumeControllerConversationResultFramePayloadSchema as j, postSpaceWakeStopResponseSchema as jn, conversationCompactionMarkerSchema as jt, runtimeTransportRejectedProfileRegistrationSchema as k, localServiceComponentUpdateProjectionSchema as kn, spaceMessageAttachmentSchema as kt, runtimeTransportDispatchInteractionResponseFramePayloadSchema as l, agentStreamToolPartSchema as ln, uuidProfileIdSchema as lr, DISPATCH_ACTIVITY_DISPATCHING_PURPOSE as lt, runtimeTransportDispatchToolActivityRequestSchema as m, spaceAgentStreamTerminalFrameSchema as mn, MAX_TEXT_LENGTH as mr, SPACE_MENTION_REJECT_NOTICE_PURPOSE as mt, daemonExecutionCompatibilitySchema as n, collectCanonicalMentionTextFragments as nn, agentProfileIdSchema as nr, controllerAgentTaskHandleSchema as nt, runtimeTransportDeliverDispatchRequestSchema as o, normalizeMessageEnvelope as on, profileSchema as or, AGENT_REPLY_PREVIEW_END_PURPOSE as ot, runtimeTransportDispatchRuntimeEvidenceRequestSchema as p, spaceAgentStreamSnapshotSchema as pn, trimmedStringFromUnknown as pr, SPACE_MEMBER_REMOVE_NOTICE_PURPOSE as pt, localFolderPickerResultSchema as q, organizationInformationProtectionPolicyResponseSchema as qn, spaceContractSchema as qt, daemonStreamFrameSchema as r, formatCanonicalMentionLiteral as rn, normalizeOptionalWorkingDirectory as rr, spaceWakeAgentTaskHandleSchema as rt, runtimeTransportDispatchInteractionDeliveredRequestSchema as s, resolveMessageEnvelopeTargetField as sn, profileWorkingDirectorySchema as sr, AGENT_REPLY_PREVIEW_PURPOSE as st, CURRENT_DAEMON_EXECUTION_CONTRACT_EPOCH as t, MESSAGE_MENTION_TYPE_VALUES as tn, MAX_PROFILE_WORKING_DIRECTORY_LENGTH as tr, buildAgentTaskKey as tt, runtimeTransportDispatchLifecycleRequestSchema as u, spaceAgentStreamDeltaFrameSchema as un, finiteIntegerNumber as ur, DISPATCH_ACTIVITY_FAILED_PURPOSE as ut, runtimeTransportHeartbeatResponseSchema as v, agentInteractionResolutionSchema as vn, resolvePublicAgentFailureRecovery as vr, signalSystemNoticeDataSchema as vt, runtimeTransportLocalAgentControlSetEnabledFramePayloadSchema as w, installedLocalComponentsSnapshotSchema as wn, spaceAttachmentDescriptorSchema as wt, runtimeTransportLocalAgentControlInterruptFramePayloadSchema as x, formatLocalComponentsSummaryLabel as xn, openMeldNavigationTargetSchema as xr, SPACE_ATTACHMENT_MAX_SIZE_BYTES as xt, runtimeTransportLocalAgentControlCancelFramePayloadSchema as y, agentInteractionResponseSchema as yn, shouldPreferMappedPublicAgentFailureReason as yr, signalTextDataSchema as yt, openMeldDaemonTaskResultProjectFailureContextSchema as z, spaceTraceExecutionIdentityProjectionSchema as zn, providerDispatchRuntimeContextSchema as zt };
|
|
6540
6575
|
|
|
6541
|
-
//# sourceMappingURL=runtime-transport-
|
|
6576
|
+
//# sourceMappingURL=runtime-transport-DI97Fndy.js.map
|