sourceMapsDebugIDBundlesArtifacts.ts 560 B

123456789101112131415161718192021
  1. import type {DebugIdBundleArtifact} from 'sentry/types';
  2. export function SourceMapsDebugIDBundlesArtifacts(
  3. debugBundleIdArtifact: Partial<DebugIdBundleArtifact> = {}
  4. ): DebugIdBundleArtifact {
  5. return {
  6. bundleId: '7227e105-744e-4066-8c69-3e5e344723fc',
  7. release: '2.0',
  8. dist: 'android',
  9. files: [
  10. {
  11. id: 'ZmlsZXMvXy9fL21haW4uanM=',
  12. fileType: 2,
  13. filePath: 'files/_/_/main.js',
  14. fileSize: 239093,
  15. debugId: '69ac68eb-cc62-44c0-a5dc-b67f219a3696',
  16. },
  17. ],
  18. ...debugBundleIdArtifact,
  19. };
  20. }