agent-transport-system 0.7.47 → 0.7.49
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/ats-dev.js +2 -2
- package/dist/ats.js +97 -160
- package/dist/ats.js.map +1 -1
- package/dist/{base-url-B7FKL8D9.js → base-url-CT4Hugox.js} +2 -2
- package/dist/{base-url-B7FKL8D9.js.map → base-url-CT4Hugox.js.map} +1 -1
- package/dist/{daemon-runtime-lease-CgRixlgO.js → daemon-runtime-lease-C-1gNOFL.js} +1 -1
- package/dist/{lock-BvgZX0qs.js → lock-CYlR3Czx.js} +113 -85
- package/dist/lock-CYlR3Czx.js.map +1 -0
- package/package.json +2 -2
- package/dist/lock-BvgZX0qs.js.map +0 -1
|
@@ -4081,7 +4081,7 @@ var ZodFirstPartyTypeKind;
|
|
|
4081
4081
|
(function(ZodFirstPartyTypeKind) {})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));
|
|
4082
4082
|
|
|
4083
4083
|
//#endregion
|
|
4084
|
-
//#region ../../packages/schemas/dist/
|
|
4084
|
+
//#region ../../packages/schemas/dist/route-observation-summary-p83jK1_H.js
|
|
4085
4085
|
const agentControllerConversationExternalImportCapabilitySchema = _enum(["unsupported", "by_ref_id"]);
|
|
4086
4086
|
const agentControllerConversationResumeCapabilitySchema = _enum(["unsupported", "by_ref_id"]);
|
|
4087
4087
|
const agentControllerConversationDiscoverCapabilitySchema = literal("unsupported");
|
|
@@ -4168,68 +4168,6 @@ function canonicalizeBuiltinAgentControllerRef(agentControllerRef) {
|
|
|
4168
4168
|
const builtinId = normalizeBuiltinControllerId(agentControllerRef);
|
|
4169
4169
|
return builtinId ? `${BUILTIN_AGENT_CONTROLLER_REF_PREFIX}${builtinId}` : null;
|
|
4170
4170
|
}
|
|
4171
|
-
const DAEMON_ROUTE_OBSERVATION_STATUS_VALUES = [
|
|
4172
|
-
"online",
|
|
4173
|
-
"offline",
|
|
4174
|
-
"unavailable"
|
|
4175
|
-
];
|
|
4176
|
-
const DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES = [
|
|
4177
|
-
"lookup_failed",
|
|
4178
|
-
"not_requested",
|
|
4179
|
-
"profile_not_agent",
|
|
4180
|
-
"profile_not_selected",
|
|
4181
|
-
"server_unsupported"
|
|
4182
|
-
];
|
|
4183
|
-
const DAEMON_ROUTE_OBSERVATION_REASON_CODE_VALUES = [
|
|
4184
|
-
"online",
|
|
4185
|
-
"route.not_registered",
|
|
4186
|
-
...DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES
|
|
4187
|
-
];
|
|
4188
|
-
const daemonRouteObservationStatusSchema = _enum(DAEMON_ROUTE_OBSERVATION_STATUS_VALUES);
|
|
4189
|
-
const daemonRouteObservationUnavailableReasonCodeSchema = _enum(DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES);
|
|
4190
|
-
const daemonRouteObservationReasonCodeSchema = _enum(DAEMON_ROUTE_OBSERVATION_REASON_CODE_VALUES);
|
|
4191
|
-
const CANONICAL_UNAVAILABLE_REASON_CODE_SET = new Set(DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES);
|
|
4192
|
-
function isCanonicalUnavailableReasonCode(value) {
|
|
4193
|
-
return value !== null && value !== void 0 ? CANONICAL_UNAVAILABLE_REASON_CODE_SET.has(value) : false;
|
|
4194
|
-
}
|
|
4195
|
-
function createDaemonRouteObservationSummary(input) {
|
|
4196
|
-
if (input.status === "online") return {
|
|
4197
|
-
observedAt: input.observedAt,
|
|
4198
|
-
reasonCode: "online",
|
|
4199
|
-
status: "online"
|
|
4200
|
-
};
|
|
4201
|
-
if (input.status === "offline") return {
|
|
4202
|
-
observedAt: input.observedAt,
|
|
4203
|
-
reasonCode: "route.not_registered",
|
|
4204
|
-
status: "offline"
|
|
4205
|
-
};
|
|
4206
|
-
return {
|
|
4207
|
-
observedAt: input.observedAt,
|
|
4208
|
-
reasonCode: isCanonicalUnavailableReasonCode(input.reasonCode) ? input.reasonCode : "lookup_failed",
|
|
4209
|
-
status: "unavailable"
|
|
4210
|
-
};
|
|
4211
|
-
}
|
|
4212
|
-
const daemonRouteObservationSummarySchema = strictObject({
|
|
4213
|
-
observedAt: datetime({ offset: true }),
|
|
4214
|
-
reasonCode: daemonRouteObservationReasonCodeSchema,
|
|
4215
|
-
status: daemonRouteObservationStatusSchema
|
|
4216
|
-
}).superRefine((value, ctx) => {
|
|
4217
|
-
if (value.status === "online" && value.reasonCode !== "online") ctx.addIssue({
|
|
4218
|
-
code: "custom",
|
|
4219
|
-
message: "online route observation must use online reasonCode",
|
|
4220
|
-
path: ["reasonCode"]
|
|
4221
|
-
});
|
|
4222
|
-
if (value.status === "offline" && value.reasonCode !== "route.not_registered") ctx.addIssue({
|
|
4223
|
-
code: "custom",
|
|
4224
|
-
message: "offline route observation must normalize to route.not_registered",
|
|
4225
|
-
path: ["reasonCode"]
|
|
4226
|
-
});
|
|
4227
|
-
if (value.status === "unavailable" && (value.reasonCode === "online" || value.reasonCode === "route.not_registered")) ctx.addIssue({
|
|
4228
|
-
code: "custom",
|
|
4229
|
-
message: "unavailable route observation must use an unavailable reasonCode",
|
|
4230
|
-
path: ["reasonCode"]
|
|
4231
|
-
});
|
|
4232
|
-
});
|
|
4233
4171
|
const MAX_PROFILE_ID_LENGTH = 64;
|
|
4234
4172
|
const MAX_PROFILE_NAME_LENGTH = 64;
|
|
4235
4173
|
const MAX_TEXT_LENGTH = 4e3;
|
|
@@ -6855,9 +6793,71 @@ const daemonStreamErrorFrameSchema = strictObject({
|
|
|
6855
6793
|
message: string().min(1)
|
|
6856
6794
|
})
|
|
6857
6795
|
});
|
|
6796
|
+
const DAEMON_ROUTE_OBSERVATION_STATUS_VALUES = [
|
|
6797
|
+
"online",
|
|
6798
|
+
"offline",
|
|
6799
|
+
"unavailable"
|
|
6800
|
+
];
|
|
6801
|
+
const DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES = [
|
|
6802
|
+
"lookup_failed",
|
|
6803
|
+
"not_requested",
|
|
6804
|
+
"profile_not_agent",
|
|
6805
|
+
"profile_not_selected",
|
|
6806
|
+
"server_unsupported"
|
|
6807
|
+
];
|
|
6808
|
+
const DAEMON_ROUTE_OBSERVATION_REASON_CODE_VALUES = [
|
|
6809
|
+
"online",
|
|
6810
|
+
"route.not_registered",
|
|
6811
|
+
...DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES
|
|
6812
|
+
];
|
|
6813
|
+
const daemonRouteObservationStatusSchema = _enum(DAEMON_ROUTE_OBSERVATION_STATUS_VALUES);
|
|
6814
|
+
const daemonRouteObservationUnavailableReasonCodeSchema = _enum(DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES);
|
|
6815
|
+
const daemonRouteObservationReasonCodeSchema = _enum(DAEMON_ROUTE_OBSERVATION_REASON_CODE_VALUES);
|
|
6816
|
+
const CANONICAL_UNAVAILABLE_REASON_CODE_SET = new Set(DAEMON_ROUTE_OBSERVATION_UNAVAILABLE_REASON_CODE_VALUES);
|
|
6817
|
+
function isCanonicalUnavailableReasonCode(value) {
|
|
6818
|
+
return value !== null && value !== void 0 ? CANONICAL_UNAVAILABLE_REASON_CODE_SET.has(value) : false;
|
|
6819
|
+
}
|
|
6820
|
+
function createDaemonRouteObservationSummary(input) {
|
|
6821
|
+
if (input.status === "online") return {
|
|
6822
|
+
observedAt: input.observedAt,
|
|
6823
|
+
reasonCode: "online",
|
|
6824
|
+
status: "online"
|
|
6825
|
+
};
|
|
6826
|
+
if (input.status === "offline") return {
|
|
6827
|
+
observedAt: input.observedAt,
|
|
6828
|
+
reasonCode: "route.not_registered",
|
|
6829
|
+
status: "offline"
|
|
6830
|
+
};
|
|
6831
|
+
return {
|
|
6832
|
+
observedAt: input.observedAt,
|
|
6833
|
+
reasonCode: isCanonicalUnavailableReasonCode(input.reasonCode) ? input.reasonCode : "lookup_failed",
|
|
6834
|
+
status: "unavailable"
|
|
6835
|
+
};
|
|
6836
|
+
}
|
|
6837
|
+
const daemonRouteObservationSummarySchema = strictObject({
|
|
6838
|
+
observedAt: datetime({ offset: true }),
|
|
6839
|
+
reasonCode: daemonRouteObservationReasonCodeSchema,
|
|
6840
|
+
status: daemonRouteObservationStatusSchema
|
|
6841
|
+
}).superRefine((value, ctx) => {
|
|
6842
|
+
if (value.status === "online" && value.reasonCode !== "online") ctx.addIssue({
|
|
6843
|
+
code: "custom",
|
|
6844
|
+
message: "online route observation must use online reasonCode",
|
|
6845
|
+
path: ["reasonCode"]
|
|
6846
|
+
});
|
|
6847
|
+
if (value.status === "offline" && value.reasonCode !== "route.not_registered") ctx.addIssue({
|
|
6848
|
+
code: "custom",
|
|
6849
|
+
message: "offline route observation must normalize to route.not_registered",
|
|
6850
|
+
path: ["reasonCode"]
|
|
6851
|
+
});
|
|
6852
|
+
if (value.status === "unavailable" && (value.reasonCode === "online" || value.reasonCode === "route.not_registered")) ctx.addIssue({
|
|
6853
|
+
code: "custom",
|
|
6854
|
+
message: "unavailable route observation must use an unavailable reasonCode",
|
|
6855
|
+
path: ["reasonCode"]
|
|
6856
|
+
});
|
|
6857
|
+
});
|
|
6858
6858
|
|
|
6859
6859
|
//#endregion
|
|
6860
|
-
//#region ../../packages/schemas/dist/entry-brief-
|
|
6860
|
+
//#region ../../packages/schemas/dist/entry-brief-Dh9WMYS4.js
|
|
6861
6861
|
const AGENT_EXECUTION_READINESS_IMPACT_FRESH_TTL_MS = 1800 * 1e3;
|
|
6862
6862
|
const AGENT_EXECUTION_READINESS_IMPACT_REASON_CODES = [
|
|
6863
6863
|
"controller.launch.choice_required",
|
|
@@ -7026,19 +7026,33 @@ const agentExecutionReadinessPrimaryActionPlanSchema = discriminatedUnion("actio
|
|
|
7026
7026
|
})
|
|
7027
7027
|
})
|
|
7028
7028
|
]);
|
|
7029
|
-
const
|
|
7029
|
+
const wakeRouteEvidenceSchema = daemonRouteObservationSummarySchema;
|
|
7030
|
+
const wakeRouteStatusSchema = discriminatedUnion("status", [strictObject({
|
|
7031
|
+
connectionGeneration: int().positive(),
|
|
7032
|
+
daemonSessionId: trimmedNonEmptyStringSchema$8,
|
|
7033
|
+
deviceId: trimmedNonEmptyStringSchema$8,
|
|
7034
|
+
lane: daemonServiceLaneSchema,
|
|
7035
|
+
lastHeartbeatMs: int().nonnegative(),
|
|
7036
|
+
leaseEpoch: int().positive(),
|
|
7037
|
+
status: literal("ready")
|
|
7038
|
+
}), strictObject({ status: _enum([
|
|
7039
|
+
"checking",
|
|
7040
|
+
"offline",
|
|
7041
|
+
"unavailable"
|
|
7042
|
+
]) })]);
|
|
7043
|
+
const agentWakeAvailabilityStatusSchema = _enum([
|
|
7030
7044
|
"available_for_wake",
|
|
7031
7045
|
"checking_connection",
|
|
7032
7046
|
"offline_for_wake",
|
|
7033
7047
|
"unavailable_for_wake"
|
|
7034
7048
|
]);
|
|
7035
|
-
const
|
|
7049
|
+
const agentWakeAvailabilityCategorySchema = _enum([
|
|
7036
7050
|
"available",
|
|
7037
7051
|
"checking",
|
|
7038
7052
|
"offline",
|
|
7039
7053
|
"unavailable"
|
|
7040
7054
|
]);
|
|
7041
|
-
const
|
|
7055
|
+
const agentWakeAvailabilityPhaseSchema = _enum([
|
|
7042
7056
|
"available",
|
|
7043
7057
|
"checking_route",
|
|
7044
7058
|
"checking_runtime",
|
|
@@ -7051,15 +7065,15 @@ const agentProfilePublicAvailabilityPhaseSchema = _enum([
|
|
|
7051
7065
|
"service_update_required",
|
|
7052
7066
|
"unavailable"
|
|
7053
7067
|
]);
|
|
7054
|
-
const
|
|
7068
|
+
const agentWakeAvailabilitySchema = strictObject({
|
|
7055
7069
|
action: agentExecutionReadinessPrimaryActionSchema,
|
|
7056
7070
|
badgeLabel: trimmedNonEmptyStringSchema$8,
|
|
7057
|
-
category:
|
|
7071
|
+
category: agentWakeAvailabilityCategorySchema,
|
|
7058
7072
|
isRefreshing: boolean(),
|
|
7059
7073
|
label: trimmedNonEmptyStringSchema$8,
|
|
7060
|
-
phase:
|
|
7074
|
+
phase: agentWakeAvailabilityPhaseSchema,
|
|
7061
7075
|
reasonCode: nullableTrimmedStringSchema$8,
|
|
7062
|
-
status:
|
|
7076
|
+
status: agentWakeAvailabilityStatusSchema,
|
|
7063
7077
|
summary: trimmedNonEmptyStringSchema$8,
|
|
7064
7078
|
tooltip: trimmedNonEmptyStringSchema$8
|
|
7065
7079
|
});
|
|
@@ -7179,17 +7193,18 @@ const agentExecutionReadinessSchema = strictObject({
|
|
|
7179
7193
|
});
|
|
7180
7194
|
const getAgentExecutionReadinessResponseSchema = strictObject({
|
|
7181
7195
|
agentExecutionReadiness: agentExecutionReadinessSchema,
|
|
7196
|
+
agentWakeAvailability: agentWakeAvailabilitySchema,
|
|
7182
7197
|
agentProfileId: agentProfileIdSchema,
|
|
7183
7198
|
agentControllerRef: nullableTrimmedStringSchema$8,
|
|
7184
|
-
daemonRouteObservation: daemonRouteObservationSummarySchema,
|
|
7185
7199
|
generatedAt: ISO_DATE_TIME_SCHEMA$7,
|
|
7186
7200
|
ownerUserId: nullableTrimmedStringSchema$8,
|
|
7187
7201
|
primaryActionPlan: agentExecutionReadinessPrimaryActionPlanSchema,
|
|
7188
7202
|
profileName: nullableTrimmedStringSchema$8,
|
|
7189
|
-
publicAvailability: agentProfilePublicAvailabilitySchema,
|
|
7190
7203
|
routeDeviceId: nullableTrimmedStringSchema$8,
|
|
7191
7204
|
routeLane: union([daemonServiceLaneSchema, _null()]),
|
|
7192
|
-
runtimeDeviceDisplayName: nullableTrimmedStringSchema$8
|
|
7205
|
+
runtimeDeviceDisplayName: nullableTrimmedStringSchema$8,
|
|
7206
|
+
wakeRouteEvidence: wakeRouteEvidenceSchema,
|
|
7207
|
+
wakeRouteStatus: wakeRouteStatusSchema
|
|
7193
7208
|
});
|
|
7194
7209
|
const getAgentExecutionReadinessBatchResponseSchema = strictObject({ items: array(getAgentExecutionReadinessResponseSchema) });
|
|
7195
7210
|
const ISO_DATE_TIME_SCHEMA$6 = datetime({ offset: true });
|
|
@@ -7203,7 +7218,9 @@ const retiredAgentSnapshotKeys = new Set([
|
|
|
7203
7218
|
"agentExecutionReadiness",
|
|
7204
7219
|
"daemonRouteObservation",
|
|
7205
7220
|
"publicReplyPresence",
|
|
7221
|
+
"publicPresence",
|
|
7206
7222
|
"viewerLocalControl",
|
|
7223
|
+
"viewerLocalRecovery",
|
|
7207
7224
|
"wakeState",
|
|
7208
7225
|
"wakeability"
|
|
7209
7226
|
]);
|
|
@@ -7235,15 +7252,16 @@ const spaceMemberSourceSchema = _enum([
|
|
|
7235
7252
|
"backfilled"
|
|
7236
7253
|
]);
|
|
7237
7254
|
const spaceMemberAgentExecutionReadinessSchema = agentExecutionReadinessSchema;
|
|
7238
|
-
const
|
|
7239
|
-
const
|
|
7255
|
+
const spaceMemberAgentWakeAvailabilitySchema = agentWakeAvailabilitySchema;
|
|
7256
|
+
const spaceMemberAgentOwnerWakeDiagnosticsSchema = object({
|
|
7240
7257
|
state: _enum([
|
|
7241
7258
|
"none",
|
|
7242
|
-
"
|
|
7259
|
+
"checking_wake_status",
|
|
7243
7260
|
"action_required"
|
|
7244
7261
|
]),
|
|
7245
7262
|
agentExecutionReadiness: spaceMemberAgentExecutionReadinessSchema,
|
|
7246
|
-
|
|
7263
|
+
wakeRouteEvidence: wakeRouteEvidenceSchema,
|
|
7264
|
+
wakeRouteStatus: wakeRouteStatusSchema
|
|
7247
7265
|
});
|
|
7248
7266
|
const baseSpaceMemberSnapshotSchema = object({
|
|
7249
7267
|
profileId: profileIdSchema,
|
|
@@ -7290,8 +7308,8 @@ const spaceMemberAgentSnapshotSchema = rejectRetiredAgentSnapshotKeysSchema.pipe
|
|
|
7290
7308
|
runtimeDeviceDisplayName: nullableTrimmedStringSchema$7.optional(),
|
|
7291
7309
|
agentControllerConversationId: nullableTrimmedStringSchema$7,
|
|
7292
7310
|
workingDirectory: profileWorkingDirectorySchema.nullable().optional(),
|
|
7293
|
-
|
|
7294
|
-
|
|
7311
|
+
agentWakeAvailability: spaceMemberAgentWakeAvailabilitySchema.optional(),
|
|
7312
|
+
ownerWakeDiagnostics: union([spaceMemberAgentOwnerWakeDiagnosticsSchema, _null()]).optional()
|
|
7295
7313
|
}).superRefine((value, ctx) => {
|
|
7296
7314
|
validateRuntimeProfileIdForMemberKind({
|
|
7297
7315
|
profileId: value.profileId,
|
|
@@ -7452,16 +7470,16 @@ function addSummaryMismatchIssue(input) {
|
|
|
7452
7470
|
});
|
|
7453
7471
|
}
|
|
7454
7472
|
function isPublicWakeableAgent(agent) {
|
|
7455
|
-
return agent.
|
|
7473
|
+
return agent.agentWakeAvailability?.status === "available_for_wake";
|
|
7456
7474
|
}
|
|
7457
7475
|
function isPublicCheckingAgent(agent) {
|
|
7458
|
-
return agent.
|
|
7476
|
+
return agent.agentWakeAvailability?.status === "checking_connection";
|
|
7459
7477
|
}
|
|
7460
7478
|
function isPublicOfflineAgent(agent) {
|
|
7461
|
-
return agent.
|
|
7479
|
+
return agent.agentWakeAvailability?.status === "offline_for_wake";
|
|
7462
7480
|
}
|
|
7463
7481
|
function isPublicUnavailableAgent(agent) {
|
|
7464
|
-
return agent.
|
|
7482
|
+
return agent.agentWakeAvailability?.status === "unavailable_for_wake";
|
|
7465
7483
|
}
|
|
7466
7484
|
const spaceMembersEventSchema = strictObject({
|
|
7467
7485
|
type: literal("system.space.members"),
|
|
@@ -8385,6 +8403,16 @@ const ensureAgentProfilePrimaryBindingBodySchema = strictObject({
|
|
|
8385
8403
|
atsServiceRuntimeId: agentProfileBindingRuntimeIdSchema,
|
|
8386
8404
|
writeMode: agentProfileBindingWriteModeSchema.optional()
|
|
8387
8405
|
});
|
|
8406
|
+
const disableAgentProfilePrimaryBindingResponseSchema = strictObject({
|
|
8407
|
+
agentProfileId: boundedIdentifierSchema$1,
|
|
8408
|
+
disabled: boolean(),
|
|
8409
|
+
reasonCodes: array(reasonCodeSchema$2),
|
|
8410
|
+
status: _enum([
|
|
8411
|
+
"disabled",
|
|
8412
|
+
"missing",
|
|
8413
|
+
"unavailable"
|
|
8414
|
+
])
|
|
8415
|
+
});
|
|
8388
8416
|
const notifyAgentProfileRouteCatalogChangedBodySchema = strictObject({ reason: string().trim().min(1).max(100).optional() });
|
|
8389
8417
|
const notifyAgentProfileRouteCatalogChangedResponseSchema = strictObject({
|
|
8390
8418
|
ok: boolean(),
|
|
@@ -13950,4 +13978,4 @@ function toErrorMessage(error) {
|
|
|
13950
13978
|
|
|
13951
13979
|
//#endregion
|
|
13952
13980
|
export { formatLocalSetupActionLabel as $, buildAgentControllerRoutingKey as $n, setLocalRuntimeDisplayNameBodySchema as $t, continuitySchema as A, AGENT_REPLY_PREVIEW_PURPOSE as An, resolveBuiltinAgentControllerConversationKind as Ar, notifyAgentProfileRouteCatalogChangedResponseSchema as At, daemonRouteCatalogCacheSchema as B, MAX_SIGNAL_REPLY_TO_PREVIEW_LENGTH as Bn, postSpaceThreadSignalBodySchema as Bt, agentExecutionReadinessRouteParamsSchema as C, writeCurrentDeviceObservedMetadataBodySchema as Cn, normalizeKnownBuiltinAgentControllerId as Cr, listSpaceThreadSignalsResponseSchema as Ct, atsdControlPlaneRequestSchema as D, AGENT_REPLYING_END_PURPOSE as Dn, parseAgentControllerRef as Dr, normalizeListSignalsReadQuerySemantics as Dt, atsRequestContextSchema as E, writeSetupTokenLocalRuntimeObservedMetadataResponseSchema as En, normalizeSpacePasswordText as Er, localRuntimesResponseSchema as Et, createSpaceThreadBodySchema as F, DISPATCH_ACTIVITY_DISPATCHING_PURPOSE as Fn, runtimeAgentControllerSettingsSchema as Fr, patchStartSessionBodySchema as Ft, ensureAgentProfilePrimaryBindingBodySchema as G, SPACE_PASSWORD_MIN_LENGTH as Gn, projectSpaceDispatchTraceFinalVisibleOutcome as Gt, daemonRuntimeLeaseSchema as H, SPACE_MEMBER_JOIN_NOTICE_PURPOSE as Hn, prepareSessionResponseSchema as Ht, createSpaceThreadResponseSchema as I, DISPATCH_ACTIVITY_FAILED_PURPOSE as In, runtimeCoordinatorExecutionTokenEnvelopeSchema as Ir, postNormalMessageBodySchema as It, forgetComputerResponseSchema as J, atsSpaceEgressActionSchema as Jn, resolveSpaceDispatchTraceRootCause as Jt, ensureAgentProfilePrimaryBindingResponseSchema as K, SPACE_UPDATES_MAX_LIMIT as Kn, providerDispatchRuntimeContextSchema as Kt, createStartSessionBodySchema as L, DISPATCH_ACTIVITY_RETRYING_PURPOSE as Ln, sanitizeSignalTextPreview as Lr, postNormalMessageResponseSchema as Lt, createSpaceDiagnosticReportBodySchema as M, CONVERSATION_CONTINUITY_WARNING_PURPOSE as Mn, resolveSingleSpaceMentionLabels as Mr, patchProfileSpaceHistoryStatusResponseSchema as Mt, createSpaceDiagnosticReportResponseSchema as N, CURRENT_DAEMON_EXECUTION_CONTRACT_EPOCH as Nn, resolveSpaceMentionLabels as Nr, patchSpaceContractBodySchema as Nt, atsdControlPlaneResponseSchema as O, AGENT_REPLYING_PURPOSE as On, parseOptionalClientMessageId as Or, normalizeSpaceCursorPatch as Ot, createSpaceResponseSchema as P, DAEMON_HUB_SCHEMA_VERSION as Pn, runtimeAgentControllerLaunchContractSchema as Pr, patchSpaceContractResponseSchema as Pt, formatLocalSetupActionDescription as Q, buildAgentControllerConversationRef as Qn, setCurrentDeviceTargetBodySchema as Qt, currentDeviceTargetResponseSchema as R, LEGACY_RUNTIME_DISPATCH_POLICY as Rn, postSpaceMembersBodySchema as Rt, accountSpaceIndexResponseSchema as S, upsertProfileSpaceHistoryResponseSchema as Sn, normalizeBuiltinAgentControllerId as Sr, listSpaceThreadEventsResponseSchema as St, atsProfileIdSchema as T, writeSetupTokenLocalRuntimeObservedMetadataBodySchema as Tn, normalizeOptionalWorkingDirectory as Tr, localRuntimesQuerySchema as Tt, deleteSpaceResponseSchema as U, SPACE_MEMBER_REMOVE_NOTICE_PURPOSE as Un, prepareSessionStreamServerFrameSchema as Ut, daemonRouteObservationResponseSchema as V, MESSAGE_MENTION_TYPE_VALUES as Vn, postSpaceThreadSignalResponseSchema as Vt, dispatchBriefSchema as W, SPACE_MENTION_REJECT_NOTICE_PURPOSE as Wn, projectObservabilityWakeCorrelation as Wt, formatLocalComponentsSummaryDescription as X, atsdTaskResultOpenClawGatewayVisibilityStatusSchema as Xn, resolveStartHandoffResponseSchema as Xt, forgetCurrentComputerResponseSchema as Y, atsdTaskResultEnvelopeWriteSchema as Yn, resolveStartHandoffBodySchema as Yt, formatLocalComponentsSummaryLabel as Z, atsdTaskResultPayloadSchema as Zn, serverErrorFrameSchema as Zt, ATSD_CONTROL_PLANE_SCHEMA_VERSION as _, submitRuntimeAgentControllerReportsResponseSchema as _n, daemonServiceContractSchema as _r, getSpaceWakeTraceWaterfallResponseSchema as _t, runWithHeldLock as a, spaceMembersSnapshotSchema as an, daemonHubDeliverDispatchRequestSchema as ar, getAgentExecutionReadinessResponseSchema as at, LOCAL_COMPONENTS_SCHEMA_VERSION as b, submitRuntimeRegistrationBodySchema as bn, formatCanonicalMentionLiteral as br, leaveSpaceResponseSchema as bt, LEGACY_ATS_CLI_CONTEXT_ENV_KEY as c, startDeviceProjectionSchema as cn, daemonHubDispatchPreviewEndRequestSchema as cr, getPrepareReadinessResponseSchema as ct, resolveCliContext as d, startSessionResponseSchema as dn, daemonHubHeartbeatRequestSchema as dr, getSpaceDispatchResultResponseSchema as dt, signalEnvelopeSchema as en, canonicalizeAgentControllerRef as er, gatewayErrorCodeSchema as et, resolveCliContextId as f, startSessionSpaceChoiceBodySchema as fn, daemonHubHeartbeatResponseSchema as fr, getSpaceMessageDetailsResponseSchema as ft, resolveMappedPublicAgentFailureReason as g, submitRuntimeAgentControllerReportsBodySchema as gn, daemonHubSubmitTaskResultRequestSchema as gr, getSpaceWakeProgressResponseSchema as gt, resolveBuiltinAgentControllerBrand as h, structuredGuidePayloadFromInputSchema as hn, daemonHubRouteCatalogChangedFramePayloadSchema as hr, getSpaceUpdatesResponseSchema as ht, releaseLock as i, spaceIdentityDirectorySchema as in, createDaemonRouteObservationSummary as ir, getAgentExecutionReadinessBatchResponseSchema as it, createSpaceBodySchema as j, ATSD_TASK_RESULT_SCHEMA_VERSION as jn, resolveMessageEnvelopeTargetField as jr, observabilityWakeTraceSelectorSchema as jt, catchupResponseSchema as k, AGENT_REPLY_PREVIEW_END_PURPOSE as kn, profileWorkspaceModeSchema as kr, notifyAgentProfileRouteCatalogChangedBodySchema as kt, listCliContextStates as l, startProfileReadinessSummarySchema as ln, daemonHubDispatchPreviewRequestSchema as lr, getSpaceContractResponseSchema as lt, CODEX_UPGRADE_REQUIRED_REASON as m, startSessionWithTokenResponseSchema as mn, daemonHubRegisterSessionResponseSchema as mr, getSpaceThreadResponseSchema as mt, isAtsLockError as n, spaceCreatorSchema as nn, collectCanonicalMentionTextFragments as nr, getActiveSpaceWakeProgressResponseSchema as nt, tryCleanupStaleLock as o, spaceMetaSchema as on, daemonHubDeliveryExecutionIdentitySchema as or, getAgentProfilePrimaryBindingResponseSchema as ot, writeCliContextState as p, startSessionSpaceChoiceResponseSchema as pn, daemonHubRegisterSessionRequestSchema as pr, getSpaceStatusResponseSchema as pt, entryBriefSchema as q, atsRuntimeProfileIdSchema as qn, removeSpaceMembersResponseSchema as qt, readLockMeta as r, spaceDispatchTraceResponseSchema as rn, conversationExecutionStateSchema as rr, getAgentExecutionReadinessBatchBodySchema as rt, ATS_CLI_CONTEXT_ENV_KEY as s, spaceViewerMembershipResponseSchema as sn, daemonHubDispatchLifecycleRequestSchema as sr, getPrepareReadinessQuerySchema as st, acquireLock as t, spaceBootstrapResponseSchema as tn, canonicalizeBuiltinAgentControllerRef as tr, gatewayErrorEnvelopeSchema as tt, readCliContextState as u, startSessionProgressSchema as un, daemonHubDispatchRuntimeEvidenceRequestSchema as ur, getSpaceDispatchLookupResponseSchema as ut, DAEMON_ROUTE_CATALOG_CACHE_SCHEMA_NAME as v, submitRuntimeProviderConversationProofsBodySchema as vn, daemonServiceLaneSchema as vr, incomingServerMessageSchema as vt, agentProfileBindingRouteParamsSchema as w, writeCurrentDeviceObservedMetadataResponseSchema as wn, normalizeMessageEnvelope as wr, listSpaceThreadsResponseSchema as wt, SPACE_DISPATCH_TRACE_PROMPT_PREVIEW_MAX_CHARS as x, submitRuntimeRegistrationResponseSchema as xn, getSpaceMessageAddressingRelationSupportForTargetKind as xr, listProfileSpaceHistoryResponseSchema as xt, DAEMON_ROUTE_CATALOG_CACHE_SCHEMA_VERSION as y, submitRuntimeProviderConversationProofsResponseSchema as yn, daemonStreamFrameSchema as yr, installedLocalComponentsSnapshotSchema as yt, currentLocalRuntimeReplyReadinessResponseSchema as z, MAX_PROFILE_WORKING_DIRECTORY_LENGTH as zn, postSpaceMembersResponseSchema as zt };
|
|
13953
|
-
//# sourceMappingURL=lock-
|
|
13981
|
+
//# sourceMappingURL=lock-CYlR3Czx.js.map
|