forge-openclaw-plugin 0.2.35 → 0.2.36
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.
|
@@ -4781,6 +4781,7 @@ function buildOperatorOverview(request) {
|
|
|
4781
4781
|
generatedAt: new Date().toISOString(),
|
|
4782
4782
|
snapshot: buildV1Context(userIds),
|
|
4783
4783
|
operator: buildOperatorContext(userIds),
|
|
4784
|
+
sleep: getSleepViewData(userIds),
|
|
4784
4785
|
domains: listDomains(),
|
|
4785
4786
|
psyche: canReadPsyche ? getPsycheOverview(userIds) : null,
|
|
4786
4787
|
onboarding: buildAgentOnboardingPayload(request),
|
|
@@ -2446,6 +2446,7 @@ export function buildOpenApiDocument() {
|
|
|
2446
2446
|
"generatedAt",
|
|
2447
2447
|
"snapshot",
|
|
2448
2448
|
"operator",
|
|
2449
|
+
"sleep",
|
|
2449
2450
|
"domains",
|
|
2450
2451
|
"psyche",
|
|
2451
2452
|
"onboarding",
|
|
@@ -2457,6 +2458,7 @@ export function buildOpenApiDocument() {
|
|
|
2457
2458
|
generatedAt: { type: "string", format: "date-time" },
|
|
2458
2459
|
snapshot: { $ref: "#/components/schemas/ForgeSnapshot" },
|
|
2459
2460
|
operator: { $ref: "#/components/schemas/OperatorContextPayload" },
|
|
2461
|
+
sleep: { $ref: "#/components/schemas/SleepViewData" },
|
|
2460
2462
|
domains: arrayOf({ $ref: "#/components/schemas/Domain" }),
|
|
2461
2463
|
psyche: nullable({ $ref: "#/components/schemas/PsycheOverviewPayload" }),
|
|
2462
2464
|
onboarding: { $ref: "#/components/schemas/AgentOnboardingPayload" },
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED