• 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/auth/auth.module.ts
1
import { Module } from '@nestjs/common';
×
2
import { JwtModule } from '@/datasources/jwt/jwt.module';
×
3
import { SiweModule } from '@/modules/siwe/siwe.module';
×
4
import { IAuthRepository } from '@/modules/auth/domain/auth.repository.interface';
×
5
import { AuthRepository } from '@/modules/auth/domain/auth.repository';
×
6
import { AuthController } from '@/modules/auth/routes/auth.controller';
×
7
import { AuthService } from '@/modules/auth/routes/auth.service';
×
8

9
@Module({
10
  imports: [JwtModule, SiweModule],
11
  providers: [
12
    {
13
      provide: IAuthRepository,
14
      useClass: AuthRepository,
15
    },
16
    AuthService,
17
  ],
18
  controllers: [AuthController],
19
  exports: [IAuthRepository],
20
})
21
export class AuthModule {}
×
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