@autohq/cli 0.1.265 → 0.1.267
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/agent-bridge.js +4 -3
- package/dist/index.js +21 -3
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23353,7 +23353,7 @@ Object.assign(lookup, {
|
|
|
23353
23353
|
// package.json
|
|
23354
23354
|
var package_default = {
|
|
23355
23355
|
name: "@autohq/cli",
|
|
23356
|
-
version: "0.1.
|
|
23356
|
+
version: "0.1.267",
|
|
23357
23357
|
license: "SEE LICENSE IN README.md",
|
|
23358
23358
|
publishConfig: {
|
|
23359
23359
|
access: "public"
|
|
@@ -26420,8 +26420,9 @@ var AgentApplySpecSchema = AgentSpecFieldsSchema.extend({
|
|
|
26420
26420
|
triggers: ApplyTriggersSchema.default([])
|
|
26421
26421
|
}).superRefine(validateRunnableConfig);
|
|
26422
26422
|
var AgentStatusSchema = external_exports.object({
|
|
26423
|
-
runCount: external_exports.number().int().nonnegative().default(0)
|
|
26424
|
-
|
|
26423
|
+
runCount: external_exports.number().int().nonnegative().default(0),
|
|
26424
|
+
lastActivityAt: external_exports.string().datetime().nullable().default(null)
|
|
26425
|
+
}).default({ runCount: 0, lastActivityAt: null });
|
|
26425
26426
|
var AgentResourceSchema = resourceEnvelopeSchema(
|
|
26426
26427
|
AgentSpecSchema
|
|
26427
26428
|
).extend({
|
package/dist/index.js
CHANGED
|
@@ -18217,8 +18217,9 @@ var init_agents = __esm({
|
|
|
18217
18217
|
triggers: ApplyTriggersSchema.default([])
|
|
18218
18218
|
}).superRefine(validateRunnableConfig);
|
|
18219
18219
|
AgentStatusSchema = external_exports.object({
|
|
18220
|
-
runCount: external_exports.number().int().nonnegative().default(0)
|
|
18221
|
-
|
|
18220
|
+
runCount: external_exports.number().int().nonnegative().default(0),
|
|
18221
|
+
lastActivityAt: external_exports.string().datetime().nullable().default(null)
|
|
18222
|
+
}).default({ runCount: 0, lastActivityAt: null });
|
|
18222
18223
|
AgentResourceSchema = resourceEnvelopeSchema(
|
|
18223
18224
|
AgentSpecSchema
|
|
18224
18225
|
).extend({
|
|
@@ -19841,6 +19842,13 @@ var init_specifier = __esm({
|
|
|
19841
19842
|
}
|
|
19842
19843
|
});
|
|
19843
19844
|
|
|
19845
|
+
// ../../packages/schemas/src/templates/content-source.ts
|
|
19846
|
+
var init_content_source = __esm({
|
|
19847
|
+
"../../packages/schemas/src/templates/content-source.ts"() {
|
|
19848
|
+
"use strict";
|
|
19849
|
+
}
|
|
19850
|
+
});
|
|
19851
|
+
|
|
19844
19852
|
// ../../packages/schemas/src/templates/registry.ts
|
|
19845
19853
|
function deriveLatestVersion(template) {
|
|
19846
19854
|
const [first, ...rest] = template.versions;
|
|
@@ -20050,6 +20058,7 @@ var init_templates = __esm({
|
|
|
20050
20058
|
"use strict";
|
|
20051
20059
|
init_types();
|
|
20052
20060
|
init_specifier();
|
|
20061
|
+
init_content_source();
|
|
20053
20062
|
init_registry();
|
|
20054
20063
|
init_hardcoded();
|
|
20055
20064
|
init_subscription();
|
|
@@ -22895,7 +22904,7 @@ var init_package = __esm({
|
|
|
22895
22904
|
"package.json"() {
|
|
22896
22905
|
package_default = {
|
|
22897
22906
|
name: "@autohq/cli",
|
|
22898
|
-
version: "0.1.
|
|
22907
|
+
version: "0.1.267",
|
|
22899
22908
|
license: "SEE LICENSE IN README.md",
|
|
22900
22909
|
publishConfig: {
|
|
22901
22910
|
access: "public"
|
|
@@ -24869,6 +24878,14 @@ var init_template_bump_diagnostics = __esm({
|
|
|
24869
24878
|
}
|
|
24870
24879
|
});
|
|
24871
24880
|
|
|
24881
|
+
// ../../packages/schemas/src/project-apply-files/template-staleness.ts
|
|
24882
|
+
var init_template_staleness = __esm({
|
|
24883
|
+
"../../packages/schemas/src/project-apply-files/template-staleness.ts"() {
|
|
24884
|
+
"use strict";
|
|
24885
|
+
init_templates();
|
|
24886
|
+
}
|
|
24887
|
+
});
|
|
24888
|
+
|
|
24872
24889
|
// ../../packages/schemas/src/project-apply-files/index.ts
|
|
24873
24890
|
function readProjectApplyDirectorySource(input) {
|
|
24874
24891
|
const resourceRoot = normalizeSourcePath(input.resourceRoot ?? "");
|
|
@@ -25024,6 +25041,7 @@ var init_project_apply_files = __esm({
|
|
|
25024
25041
|
init_template_injection();
|
|
25025
25042
|
init_template_injection();
|
|
25026
25043
|
init_template_bump_diagnostics();
|
|
25044
|
+
init_template_staleness();
|
|
25027
25045
|
}
|
|
25028
25046
|
});
|
|
25029
25047
|
|