stationHistory.ts 423 B

123456789101112131415161718192021
  1. export interface StationHistory {
  2. _id: string;
  3. stationId: string;
  4. type: "song_played";
  5. payload: {
  6. song: {
  7. _id: string;
  8. mediaSource: string;
  9. title: string;
  10. artists: string[];
  11. duration: number;
  12. thumbnail: string;
  13. requestedBy: string;
  14. requestedAt: Date;
  15. verified: boolean;
  16. };
  17. skippedAt: Date;
  18. skipReason: "natural" | "force_skip" | "vote_skip" | "other";
  19. };
  20. documentVersion: number;
  21. }