• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-client-gateway / 22575363049

02 Mar 2026 12:09PM UTC coverage: 56.52% (-32.9%) from 89.388%
22575363049

push

github

web-flow
build(deps): bump @nestjs/swagger from 11.2.0 to 11.2.6 (#2957)

Bumps [@nestjs/swagger](https://github.com/nestjs/swagger) from 11.2.0 to 11.2.6.
- [Release notes](https://github.com/nestjs/swagger/releases)
- [Commits](https://github.com/nestjs/swagger/compare/11.2.0...11.2.6)

---
updated-dependencies:
- dependency-name: "@nestjs/swagger"
  dependency-version: 11.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

1979 of 3720 branches covered (53.2%)

Branch coverage included in aggregate %.

8406 of 14654 relevant lines covered (57.36%)

132.06 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/modules/csv-export/v1/csv-export.controller.ts
1
import {
×
2
  Body,
3
  Controller,
4
  Get,
5
  Param,
6
  ParseUUIDPipe,
7
  Post,
8
} from '@nestjs/common';
9
import {
×
10
  ApiAcceptedResponse,
11
  ApiBody,
12
  ApiNotFoundResponse,
13
  ApiOkResponse,
14
  ApiTags,
15
} from '@nestjs/swagger';
16
import { ValidationPipe } from '@/validation/pipes/validation.pipe';
×
17
import { AddressSchema } from '@/validation/entities/schemas/address.schema';
×
18
import { NumericStringSchema } from '@/validation/entities/schemas/numeric-string.schema';
×
19
import { CsvExportService } from '@/modules/csv-export/v1/csv-export.service';
×
20
import {
×
21
  JobStatusDto,
22
  JobStatusErrorDto,
23
  JobStatusResponseDto,
24
} from '@/routes/jobs/entities/job-status.dto';
25
import { TransactionExportDtoSchema } from '@/modules/csv-export/v1/entities/schemas/transaction-export.dto.schema';
×
26
import { TransactionExportDto } from '@/modules/csv-export/v1/entities/transaction-export-request';
×
27
import type { Address } from 'viem';
28

29
@ApiTags('export')
30
@Controller({
31
  path: 'export',
32
  version: '1',
33
})
34
export class CsvExportController {
×
35
  constructor(private readonly csvExportService: CsvExportService) {}
×
36

37
  @ApiAcceptedResponse({ type: JobStatusDto })
38
  @ApiBody({
39
    description: 'Transaction export request',
40
    type: TransactionExportDto,
41
    required: false,
42
  })
43
  @Post('chains/:chainId/:safeAddress')
44
  async launchExport(
×
45
    @Param('chainId', new ValidationPipe(NumericStringSchema)) chainId: string,
46
    @Param('safeAddress', new ValidationPipe(AddressSchema))
47
    safeAddress: Address,
48
    @Body(new ValidationPipe(TransactionExportDtoSchema))
49
    exportDto?: TransactionExportDto,
50
  ): Promise<JobStatusDto> {
51
    const args = {
×
52
      chainId,
53
      safeAddress,
54
      ...exportDto,
55
    };
56
    return this.csvExportService.registerExportJob(args);
×
57
  }
58

59
  @ApiOkResponse({
60
    description: 'CSV export status retrieved successfully',
61
    type: JobStatusDto,
62
  })
63
  @ApiNotFoundResponse({
64
    description: 'CSV export not found',
65
    type: JobStatusErrorDto,
66
  })
67
  @Get('/:jobId/status')
68
  async getExportStatus(
×
69
    @Param('jobId', ParseUUIDPipe) jobId: string,
70
  ): Promise<JobStatusResponseDto> {
71
    return this.csvExportService.getExportJobStatus(jobId);
×
72
  }
73
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc