• 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/wallets/wallets.module.ts
1
import { Module } from '@nestjs/common';
×
2
import { TypeOrmModule } from '@nestjs/typeorm';
×
3
import { PostgresDatabaseModuleV2 } from '@/datasources/db/v2/postgres-database.module';
×
4
import { Wallet } from '@/modules/wallets/datasources/entities/wallets.entity.db';
×
5
import { WalletsRepository } from '@/modules/wallets/domain/wallets.repository';
×
6
import { IWalletsRepository } from '@/modules/wallets/domain/wallets.repository.interface';
×
7

8
@Module({
9
  imports: [PostgresDatabaseModuleV2, TypeOrmModule.forFeature([Wallet])],
10
  providers: [
11
    {
12
      provide: IWalletsRepository,
13
      useClass: WalletsRepository,
14
    },
15
  ],
16
  exports: [IWalletsRepository],
17
})
18
export class WalletsModule {}
×
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