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

safe-global / safe-client-gateway / 11340871916

15 Oct 2024 06:58AM UTC coverage: 46.83% (-45.0%) from 91.836%
11340871916

push

github

web-flow
Bump typescript from 5.6.2 to 5.6.3 (#2015)

Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.2 to 5.6.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.6.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  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>

500 of 3096 branches covered (16.15%)

Branch coverage included in aggregate %.

5092 of 8845 relevant lines covered (57.57%)

12.16 hits per line

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

22.22
/src/datasources/network/entities/network.error.entity.ts
1
export type NetworkError = NetworkResponseError | NetworkRequestError;
2

3
/**
4
 * Represent a network error where a response was received.
5
 * This usually means that {@link status} is within an error range.
6
 *
7
 * {@link data} represents the payload which was received in the response
8
 */
9
export class NetworkResponseError extends Error {
18✔
10
  constructor(
11
    readonly url: URL,
×
12
    readonly response: Response,
×
13
    readonly data?: unknown,
×
14
  ) {
15
    super();
×
16
  }
17
}
18

19
/**
20
 * Represents a network error where the request was made but a response
21
 * was never received.
22
 */
23
export class NetworkRequestError extends Error {
18✔
24
  constructor(
25
    readonly url: URL | null,
×
26
    readonly data?: unknown,
×
27
  ) {
28
    super();
×
29
  }
30
}
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