hevy-shared 1.0.569 → 1.0.571

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/built/index.d.ts CHANGED
@@ -1641,8 +1641,8 @@ interface BaseFeedback {
1641
1641
  type: FeedbackType;
1642
1642
  userId: string;
1643
1643
  message?: string;
1644
- data?: object | null;
1645
- debugInfo?: object | null;
1644
+ data?: Record<string, unknown> | null;
1645
+ debugInfo?: Record<string, unknown> | null;
1646
1646
  }
1647
1647
  export interface GeneralFeedback extends BaseFeedback {
1648
1648
  type: 'general';
@@ -1710,8 +1710,8 @@ export type BackofficeFeedback = {
1710
1710
  type: string;
1711
1711
  username?: string;
1712
1712
  message?: string;
1713
- data?: object | null;
1714
- debug_info?: object | null;
1713
+ data?: Record<string, unknown> | null;
1714
+ debug_info?: Record<string, unknown> | null;
1715
1715
  created_at: Date;
1716
1716
  };
1717
1717
  export interface BackofficeFeedbacksResponse {