forge-openclaw-plugin 0.2.82 → 0.2.83

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.
@@ -276,6 +276,7 @@ const mobileHealthSyncFamilySchema = z.enum([
276
276
  "sleep_segments",
277
277
  "sleep_raw_records",
278
278
  "workout_summaries",
279
+ "workout_archive",
279
280
  "workout_time_series",
280
281
  "workout_routes",
281
282
  "workout_tombstones",
@@ -2852,6 +2853,12 @@ function summarizeChunkPayload(family, payload) {
2852
2853
  return { sleepRawRecords: payload.sleepRawRecords?.length ?? 0 };
2853
2854
  case "workout_summaries":
2854
2855
  return { workouts: payload.workouts?.length ?? 0 };
2856
+ case "workout_archive":
2857
+ return {
2858
+ workouts: payload.workouts?.length ?? 0,
2859
+ samples: payload.workouts?.reduce((sum, workout) => sum + workout.timeSeriesSamples.length, 0) ?? 0,
2860
+ routePoints: payload.workouts?.reduce((sum, workout) => sum + workout.routePoints.length, 0) ?? 0
2861
+ };
2855
2862
  case "workout_time_series":
2856
2863
  return {
2857
2864
  workouts: payload.workoutTimeSeries?.length ?? 0,
@@ -2,7 +2,7 @@
2
2
  "id": "forge-openclaw-plugin",
3
3
  "name": "Forge",
4
4
  "description": "Curated OpenClaw adapter for the Forge collaboration API, UI entrypoint, and localhost auto-start runtime.",
5
- "version": "0.2.82",
5
+ "version": "0.2.83",
6
6
  "activation": {
7
7
  "onStartup": true,
8
8
  "onCapabilities": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forge-openclaw-plugin",
3
- "version": "0.2.82",
3
+ "version": "0.2.83",
4
4
  "description": "Curated OpenClaw adapter for the Forge collaboration API, UI entrypoint, and localhost auto-start runtime.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",