hvp-shared 6.14.0 → 6.15.0

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.
@@ -179,14 +179,20 @@ export interface CreateBatchSyncJobRequest {
179
179
  * Sync status for a report type
180
180
  */
181
181
  export interface SyncReportStatus {
182
- /** Last sync job ID */
182
+ /** Last sync job ID (from BackgroundJob tracking) */
183
183
  lastJobId?: string;
184
- /** Last sync status */
184
+ /** Last sync status (from BackgroundJob tracking) */
185
185
  lastStatus?: JobStatus;
186
- /** Last sync timestamp */
186
+ /** Last sync timestamp (from BackgroundJob or data's syncedAt field) */
187
187
  lastSyncAt?: string;
188
188
  /** Whether a sync is currently running */
189
189
  isRunning: boolean;
190
+ /** Total records in the collection (from actual data) */
191
+ totalRecords?: number;
192
+ /** Earliest date in the data (from actual data) */
193
+ minDate?: string;
194
+ /** Latest date in the data (from actual data) */
195
+ maxDate?: string;
190
196
  }
191
197
  /**
192
198
  * Overall sync status response
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hvp-shared",
3
- "version": "6.14.0",
3
+ "version": "6.15.0",
4
4
  "description": "Shared types and utilities for HVP backend and frontend",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",