teamReleaseCounts.tsx 637 B

123456789101112131415161718192021222324252627282930
  1. import {ProjectReleaseCount} from 'sentry/views/organizationStats/teamInsights/teamReleases';
  2. export function TeamReleaseCounts(): ProjectReleaseCount {
  3. return {
  4. release_counts: {
  5. '2021-03-11': 1,
  6. '2021-03-12': 2,
  7. '2021-03-13': 1,
  8. '2021-03-14': 0,
  9. '2021-03-15': 0,
  10. '2021-03-16': 0,
  11. '2021-03-17': 0,
  12. '2021-03-18': 0,
  13. '2021-03-19': 0,
  14. '2021-03-20': 1,
  15. '2021-03-21': 0,
  16. '2021-03-22': 1,
  17. '2021-03-23': 0,
  18. '2021-03-24': 0,
  19. },
  20. project_avgs: {
  21. 123: 3,
  22. 234: 4,
  23. },
  24. last_week_totals: {
  25. 123: 2,
  26. 234: 4,
  27. },
  28. };
  29. }