Skip to content

chore(deps): bump axios from 1.12.2 to 1.16.0#394

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/axios-1.16.0
Open

chore(deps): bump axios from 1.12.2 to 1.16.0#394
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/axios-1.16.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 31, 2026

Bumps axios from 1.12.2 to 1.16.0.

Release notes

Sourced from axios's releases.

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#7378)
  • transformRequest input typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#10708, #10819, #7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#10795, #10772, #10806, #7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#10724, #7276, #10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#7414, #6389, #6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)
  • Reverted: Reverted the transformRequest input typing change from #10745 after follow-up review. (#10745, #10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#10785, #10813, #10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

... (truncated)

Changelog

Sourced from axios's changelog.

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#7378)
  • transformRequest input typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#10708, #10819, #7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#10795, #10772, #10806, #7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#10724, #7276, #10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#7414, #6389, #6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)
  • Reverted: Reverted the transformRequest input typing change from #10745 after follow-up review. (#10745, #10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#10785, #10813, #10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

... (truncated)

Commits
  • df53d7d chore(release): prepare release 1.16.0 (#10834)
  • 9d92bcd fix: gadgets and smaller issues (#10833)
  • 5107ee6 fix: prevent undefined error codes in settle (#7276)
  • e573499 fix(fetch): defer global access in fetch adapter (#7260)
  • ad68e1a fix(http): honor timeout during connect without redirects (#10819)
  • 2a51828 fix(http): decode URL basic auth credentials (#10825)
  • 0e8b6bb fix(http): preserve user-supplied Host header when forwarding through a proxy...
  • 79f39e1 docs: document paramsSerializer.encode for strict RFC 3986 query encoding (#1...
  • 0fe3a5f [Docs/Types] Update parseReviver TypeScript definitions for ES2023 and add ...
  • cd6737f chore: matches the sibling responseStream.on(aborted) handler and added tests...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for axios since your current version.

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [axios](https://github.com/axios/axios) from 1.12.2 to 1.16.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.12.2...v1.16.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.16.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 31, 2026
@github-actions
Copy link
Copy Markdown

Code Coverage

apps/backend-agent-controller79.16%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   79.16   20   28.57   79.16  
 job-registry.ts   79.16   20   28.57   79.16  75,79,83,87,91

apps/backend-agent-manager0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

apps/backend-billing-manager100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   75   100   100  
 job-registry.ts   100   75   100   100  33-35

apps/frontend-agent-console100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   100   100   100  
 ...component.html   100   100   100   100  
 app.component.ts   100   100   100   100  

apps/frontend-billing-console100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   100   100   100  
 ...component.html   100   100   100   100  
 app.component.ts   100   100   100   100  

apps/frontend-docs100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   100   100   100  
 ...component.html   100   100   100   100  
 app.component.ts   100   100   100   100  

apps/frontend-portal100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   100   100   100  
 ...component.html   100   100   100   100  
 app.component.ts   100   100   100   100  

apps/mcp-devkit0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

apps/mcp-proxy0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/framework/backend/feature-agent-controller70.26%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   70.26   49.02   62   70.48  
 context-import   79.24   56.52   83.47   79.49  
  ...o-markdown.ts   61.29   36.36   81.81   61.18  ...81,387-389,398
  ...-rest.util.ts   69.23   62.79   72.72   69.84  ...,88,93,104-131
  ...o-markdown.ts   76.78   49.6   72.97   77.31  ...97,401-416,422
  ...t-cql.util.ts   96.15   95.45   100   96.15  41
  ...cture.util.ts   88.46   37.5   77.77   88.46  67,97-98
  ...o-markdown.ts   96.59   82.6   100   96.53  ...89,335,374,445
  ...t-jql.util.ts   94.11   94.11   100   94.11  29
 controllers   87.76   70.83   72   87.15  
  ...controller.ts   87.5   100   50   83.33  12
  ...controller.ts   81.81   100   33.33   77.77  17,27
  ...controller.ts   92.59   100   83.33   92  118-120
  ...controller.ts   85.71   100   50   83.33  29-31
  ...controller.ts   80   100   50   77.77  40-42,52-53
  ...controller.ts   100   100   100   100  
  ...controller.ts   96.61   100   94.11   96.49  203-204
  ...controller.ts   90.38   68.61   100   90.24  ...08,604-608,612
  ...controller.ts   100   95.45   100   100  47
  ...controller.ts   100   92.85   100   100  29
  ...controller.ts   59.45   0   6.66   57.14  ...20,125,135-137
  ...controller.ts   93.93   83.33   85.71   93.54  133-135
  ...controller.ts   66.66   100   12.5   63.15  ...28,34,39,48,58
  ...controller.ts   52.63   0   7.69   50  ...18,123,133-135
 dto   98.07   100   0   98.07  
  ...client.dto.ts   100   100   100   100  
  ...server.dto.ts   96.42   100   0   96.42  100
  ...client.dto.ts   100   100   100   100  
 ...context-import   95.74   100   0   95.74  
  ...ection.dto.ts   100   100   100   100  
  ...config.dto.ts   94.73   100   0   94.73  25
  ...ection.dto.ts   100   100   100   100  
  ...config.dto.ts   93.75   100   0   93.75  20
 dto/filter-rules   92.85   100   0   92.85  
  ...r-rule.dto.ts   86.66   100   0   86.66  35,53
  ...r-rule.dto.ts   100   100   100   100  
 dto/knowledge   92.3   0   0   92.3  
  ...e-node.dto.ts   100   100   100   100  
  ...lation.dto.ts   81.81   0   0   81.81  20,26
  index.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...e-node.dto.ts   100   100   100   100  
  ...e-node.dto.ts   83.33   0   0   83.33  5
 ...ket-automation   92.5   100   0   92.5  
  ...tonomy.dto.ts   90.9   100   0   90.9  24
  index.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...mation.dto.ts   90.47   100   0   90.47  32,61
 dto/tickets   98.07   0   0   98.07  
  ...d-body.dto.ts   100   100   100   100  
  ...omment.dto.ts   100   100   100   100  
  ...ticket.dto.ts   100   100   100   100  
  index.ts   100   100   100   100  
  ...ticket.dto.ts   100   100   100   100  
  ...ession.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
  ...ticket.dto.ts   90.9   0   0   90.9  33
 entities   89.63   100   23.3   90.28  
  ...ent.entity.ts   78.57   100   0   81.81  14,21
  ...get.entity.ts   85   100   0   88.23  16,23
  ...ule.entity.ts   82.6   100   0   89.47  38,41
  ...ion.entity.ts   87.5   100   0   92.3  34
  ...omy.entity.ts   88.23   100   0   86.66  12,34
  ...fig.entity.ts   82.92   100   0   86.48  34,41,74,81,97
  ...ker.entity.ts   84   100   0   86.36  24,37,44
  ...port.enums.ts   100   100   100   100  
  ...ing.entity.ts   90.47   100   0   89.47  28,35
  ...ode.entity.ts   76.92   100   0   81.81  27,42,46,68
  ...node.enums.ts   100   100   100   100  
  ...ity.entity.ts   88.88   100   0   87.5  15,33
  ...ion.entity.ts   89.47   100   0   88.23  15,41
  ...nce.entity.ts   94.44   100   0   93.75  25
  ...ent.entity.ts   93.75   100   0   92.85  32
  ...rop.entity.ts   88.88   100   25   88  27,34,41
  ...lag.entity.ts   88.88   100   25   88  26,33,40
  ...-io.entity.ts   90.9   100   40   90.32  36,43,50
  ...ser.entity.ts   88.88   100   0   87.5  39,43
  ...ent.entity.ts   100   100   100   100  
  ...ent.entity.ts   85.71   100   25   85  46,53,60,67,74,81
  ...nce.entity.ts   94.73   100   0   94.11  33
  ...ser.entity.ts   100   100   100   100  
  ...ity.entity.ts   88.88   100   0   87.5  15,33
  ...ase.entity.ts   85   100   0   83.33  12,22,40
  ...tep.entity.ts   87.5   100   0   85.71  14,33
  ...run.entity.ts   96.55   100   0   96.29  17
  ...ion.entity.ts   86.2   100   0   85.18  18,29,41,92
  ...tion.enums.ts   100   100   100   100  
  ...ion.entity.ts   88.23   100   0   86.66  14,21
  ...ent.entity.ts   86.66   100   0   84.61  14,21
  ticket.entity.ts   78.57   100   0   83.33  23,30,34,66
  ticket.enums.ts   100   100   100   100  
  ...ate.entity.ts   100   100   100   100  
 gateways   64.25   47.17   52.27   64.36  
  ...ts.gateway.ts   57.81   41.23   42.62   58.04  ...1359,1372-1378
  ...rd.gateway.ts   70.31   44.64   42.85   70.49  ...,95-97,101-103
  ...us.gateway.ts   92.04   82.14   100   91.76  ...68,175-177,183
  ...rd.gateway.ts   81.53   51.78   57.14   82.25  51-67,95-97
 modules   97.03   50   50   96.85  
  ...nts.module.ts   100   50   100   100  121
  ...ort.module.ts   85   100   0   83.33  25-40
  ...les.module.ts   93.33   100   0   92.3  28
  ...ics.module.ts   100   100   100   100  
 providers   100   100   100   100  
  ...er.factory.ts   100   100   100   100  
  ...der.tokens.ts   100   100   100   100  
  ...er.factory.ts   100   100   100   100  
 providers/import   70.33   57.33   66.66   70.2  
  ...t.provider.ts   70.33   57.33   66.66   70.2  ...63,671,675,679
 ...s/provisioning   10.57   3.57   11.42   10.1  
  ...n.provider.ts   9.73   3.79   10.52   9.43  46-495
  ...r.provider.ts   11.57   3.37   12.5   10.86  44-447
 repositories   30.56   11.78   44.7   33.73  
  ...repository.ts   90.9   100   87.5   92.85  90-94
  ...repository.ts   100   100   100   100  
  ...repository.ts   9.64   0.81   6.25   10.74  ...68-256,288-813
  ...repository.ts   100   78.57   100   100  22,40-41
  ...repository.ts   100   83.33   100   100  33-43
 services   65.24   46.68   65.56   64.86  
  ...me.service.ts   95   76.47   100   94.73  46,71
  ...us.service.ts   95.28   75   100   95.02  ...84,410,425,455
  ...nt.service.ts   94.11   76.92   87.5   93.87  46,69,101
  ...on.service.ts   31.57   8.33   30   28.57  20,41-100
  ...er.service.ts   96.29   83.83   100   96.07  164,245-251,269
  ...or.service.ts   93.6   68.02   84   93.51  ...36,550,556,577
  ...my.service.ts   80   57.14   87.5   77.77  52-59,87
  ...xy.service.ts   74.32   37.5   78.94   75.71  ...84-196,217-225
  ...xy.service.ts   89.23   75.47   91.66   88.88  ...34,136,144-145
  ...xy.service.ts   90   72.6   94.11   89.74  ...36,138,146-147
  ...xy.service.ts   83.33   65.62   83.33   82.6  26,32-38,60,78,93
  ...xy.service.ts   68.18   64.48   68.18   68.22  ...53,291,357-405
  ...xy.service.ts   88.54   72.72   76.92   88.29  ...22-323,353-385
  ...me.service.ts   36.36   0   16.66   30  19-51
  ....constants.ts   100   100   100   100  
  ...xy.service.ts   60.41   12.82   62.5   58.69  ...,86-97,112-120
  ...ts.service.ts   88.82   74.69   85.29   88.34  ...23,367,394,415
  ...or.service.ts   90.69   61.9   100   90.24  45,72-76
  ...ig.service.ts   43.37   51.94   60   42.5  ...45-216,233-236
  ...er.service.ts   23.33   0   0   17.85  12-106
  ...nc.service.ts   98.03   72.72   88.88   97.91  39
  ...es.service.ts   18.57   2.97   33.33   17.64  ...67-194,204-301
  ....constants.ts   100   100   100   100  
  ...me.service.ts   69.23   0   75   63.63  21-27
  ...ee.service.ts   25.85   19.22   32.72   25.81  ...1001,1018-1051
  ...ng.service.ts   84.76   70   81.81   84.31  ...33,137,457,488
  ...on.service.ts   16.66   0   6.25   15.3  48-218
  ...nc.service.ts   35.29   0   33.33   31.25  27-79
  ...nc.service.ts   52.94   100   50   46.66  22-37
  ...ry.service.ts   61.86   20.65   52.17   64.15  ...45,584,598-600
  ...nc.service.ts   52.94   100   50   46.66  21-32
  ...cs.service.ts   82.4   73.52   83.33   81.35  ...34,461-465,518
  ...nc.service.ts   78.43   54.16   66.66   77.55  68-80,91,103-105
  ...on.service.ts   75.69   70.75   67.85   76.32  ...63,567,571,652
  ....constants.ts   100   100   100   100  
  ...me.service.ts   100   100   100   100  
  ...ts.service.ts   48.88   36.92   53.94   48.83  ...1245,1315-1323
 ...ces/embeddings   98.93   86.95   100   98.79  
  ...ex.service.ts   98.59   83.33   100   98.48  140
  ...g.provider.ts   100   100   100   100  
 utils   89.4   82.56   95.65   89.29  
  ....constants.ts   100   100   100   100  
  ...re-routing.ts   100   100   100   100  
  ...le-partial.ts   100   100   100   100  
  ...sage.utils.ts   95.45   84.61   100   95.45  44
  ...t-security.ts   68.49   55.26   87.5   68.49  ...43-145,168-179
  ...st-headers.ts   91.66   86.95   100   91.66  45,52
  ...asks.utils.ts   100   100   100   100  
  ...-sanitizer.ts   100   96   100   100  45
  ...load.utils.ts   75   70   50   75  12,29,33,37
  ....constants.ts   100   100   100   100  
  ...anch.utils.ts   100   100   100   100  
  ...me-mappers.ts   100   83.92   100   100  20,34-35,42-58
  ...asks.utils.ts   100   96.66   100   100  29
  ...ompt.utils.ts   100   100   100   100  
  ...validation.ts   95.34   95.34   100   95.23  63,78

libs/domains/framework/backend/feature-agent-manager78.62%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   78.62   61.32   85.59   78.28  
 constants   100   100   100   100  
  ....constants.ts   100   100   100   100  
  ...setup-mode.ts   100   100   100   100  
  ...n-settings.ts   100   100   100   100  
 controllers   94.09   64.35   98.66   93.6  
  ...controller.ts   97.14   0   92.85   96.96  121
  ...controller.ts   100   91.66   100   100  154
  ...controller.ts   78.26   55.76   100   77.61  ...91,178-182,186
  ...controller.ts   100   100   100   100  
  ...controller.ts   100   100   100   100  
  ...controller.ts   100   63.63   100   100  73-114
  ...controller.ts   100   100   100   100  
  ...controller.ts   100   100   100   100  
  ...controller.ts   100   100   100   100  
  ...controller.ts   100   100   100   100  
 dto   95.68   100   0   98.23  
  commit.dto.ts   100   100   100   100  
  ...-agent.dto.ts   81.25   100   0   100  
  ...branch.dto.ts   100   100   100   100  
  ...riable.dto.ts   100   100   100   100  
  ...e-file.dto.ts   100   100   100   100  
  ...r-rule.dto.ts   90.9   100   0   90.9  26
  ...nt-run.dto.ts   100   100   100   100  
  move-file.dto.ts   100   100   100   100  
  ...kspace.dto.ts   100   100   100   100  
  ...ptions.dto.ts   100   100   100   100  
  rebase.dto.ts   100   100   100   100  
  ...nflict.dto.ts   100   100   100   100  
  ...mmands.dto.ts   90.9   100   0   90.9  16
  ...-files.dto.ts   100   100   100   100  
  ...-files.dto.ts   100   100   100   100  
  ...-agent.dto.ts   100   100   100   100  
  ...riable.dto.ts   100   100   100   100  
  ...r-rule.dto.ts   100   100   100   100  
  ...erride.dto.ts   100   100   100   100  
  ...e-file.dto.ts   100   100   100   100  
 entities   96.35   100   16.66   95.86  
  ...ble.entity.ts   92.85   100   0   91.66  26
  ...ent.entity.ts   93.75   100   0   92.85  23
  ...age.entity.ts   92.85   100   0   91.66  25
  agent.entity.ts   100   100   100   100  
  ...ion.entity.ts   94.44   100   0   93.75  26
  ...run.entity.ts   95.45   100   0   95  25
  ...ule.entity.ts   100   100   100   100  
  ...ide.entity.ts   100   100   100   100  
 gateways   57.95   43.58   55.84   57.86  
  ...ts.gateway.ts   57.95   43.58   55.84   57.86  ...2571,2672-2676
 modules   100   100   100   100  
  agents.module.ts   100   100   100   100  
 providers   100   100   100   100  
  ...er.factory.ts   100   100   100   100  
  ...er.factory.ts   100   100   100   100  
  ....interface.ts   100   100   100   100  
  ...er.factory.ts   100   100   100   100  
 providers/agents   85.34   73.52   93.54   84.64  
  ...t.provider.ts   81.81   74.66   92   81.25  ...70,477,486-499
  ...t.provider.ts   96.15   100   93.75   95.83  118
  ...t.provider.ts   87.93   71.71   95.23   87.15  ...64,384,419-423
 providers/filters   100   100   100   100  
  ...hat-filter.ts   100   100   100   100  
  ...hat-filter.ts   100   100   100   100  
  ...hat-filter.ts   100   100   100   100  
  ...hat-filter.ts   100   100   100   100  
  ...hat-filter.ts   100   100   100   100  
  ...hat-filter.ts   100   100   100   100  
 ...ders/pipelines   83.46   70.86   98   82.52  
  ...b.provider.ts   82.97   70.75   96   82.08  ...26,439,444-445
  ...b.provider.ts   84.03   71.11   100   83.03  ...08,441,445,449
 repositories   91   58.62   87.5   90.17  
  ...repository.ts   100   100   100   100  
  ...repository.ts   66.66   0   33.33   60  17-33
  ...repository.ts   100   100   100   100  
  ...repository.ts   88.88   100   83.33   88  72-85
  ...repository.ts   100   100   100   100  
  ...repository.ts   96   100   87.5   95.65  40
  ...repository.ts   100   50   100   100  33
  ...repository.ts   47.05   0   20   40  16-43
 services   76.76   64.66   84.24   76.64  
  ...es.service.ts   73.14   40.47   66.66   74.75  ...36-239,247,254
  ...em.service.ts   84.95   66.66   100   84.71  ...40,663,695-696
  ...st.service.ts   100   100   100   100  
  ...ts.service.ts   41.17   0   20   33.33  14-44
  ...es.service.ts   100   93.75   100   100  31
  ...on.service.ts   100   100   100   100  
  ...rs.service.ts   45.45   12.5   25   41.93  25-34,57-86
  ...cs.service.ts   70.61   50.95   97.36   70.78  ...1146,1165-1172
  ...on.service.ts   76.27   61.53   85.71   76.78  ...,70,81,101-113
  ...ts.service.ts   79.82   81.99   94.44   79.64  ...1104,1147-1148
  ...ig.service.ts   91.66   100   80   90  27
  ...ts.service.ts   72.32   53.12   68.18   73.33  ...27,331,352-356
  ...er.service.ts   74.84   65.72   78.82   74.74  ...1572,1655-1757
  ...er.service.ts   100   97.72   100   100  33
  ...he.service.ts   100   100   100   100  
  ...te.service.ts   66.66   37.5   100   64.51  23,30-34,54,61-77
  ...es.service.ts   96.36   92   100   96.15  41,117
 utils   92.57   86.73   100   92.39  
  ...er-context.ts   100   100   100   100  
  ...ompt.utils.ts   100   100   100   100  
  ...ompt.utils.ts   100   100   100   100  
  ...transcript.ts   87.87   78.43   100   87.5  ...44-145,154,165
  ...path.utils.ts   100   100   100   100  
  ...rule.utils.ts   96.77   89.47   100   96.77  14
  ...ompt.utils.ts   100   100   100   100  

libs/domains/framework/backend/feature-billing-manager82.31%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   82.31   70.08   65.86   81.35  
 constants   100   100   100   100  
  ....constants.ts   100   100   100   100  
 controllers   83.84   61.03   64.58   83.89  
  ...controller.ts   100   77.77   100   100  ...-54,78,103-105
  ...controller.ts   66.66   30   50   63.63  22,32-46
  ...controller.ts   68.85   26.31   33.33   70.17  ...07-113,152-158
  ...controller.ts   100   85.71   100   100  38,54,56-68,74
  ...controller.ts   90.9   80   81.81   92.1  43,93,124
  ...controller.ts   66.66   0   30   66.66  ...92-100,108-112
  ...controller.ts   100   78.57   100   100  21,49,60
 dto   97.8   100   0   97.8  
  ...cancel.dto.ts   100   100   100   100  
  ...-retry.dto.ts   100   100   100   100  
  ...nvoice.dto.ts   100   100   100   100  
  ...e-plan.dto.ts   95.45   100   0   95.45  84
  ...e-type.dto.ts   100   100   100   100  
  ...record.dto.ts   100   100   100   100  
  ...rofile.dto.ts   100   100   100   100  
  ...hlight.dto.ts   100   100   100   100  
  ...e-plan.dto.ts   95.23   100   0   95.23  79
  ...e-type.dto.ts   100   100   100   100  
 entities   92.48   100   20   91.62  
  ...hot.entity.ts   91.66   100   0   90  20
  ...der.entity.ts   92   100   33.33   91.3  41,44
  ...ile.entity.ts   100   100   100   100  
  ...ref.entity.ts   93.75   100   0   92.85  16
  ...ion.entity.ts   88.88   100   0   87.5  14,36
  ...ame.entity.ts   90   100   0   87.5  20
  ...lan.entity.ts   90.62   100   25   90  33,70,73
  ...ype.entity.ts   92.85   100   0   91.66  20
  ...tem.entity.ts   92.3   100   33.33   91.66  29,36
  ...ion.entity.ts   96   100   50   95.65  31
  ...ord.entity.ts   86.66   100   0   84.61  13,26
 gateways   84.61   72.85   86.66   83.72  
  ...us.gateway.ts   84.61   72.85   86.66   83.72  ...90,208,219-222
 maps   93.33   90   100   90.9  
  ...try-id.map.ts   93.33   90   100   90.9  534
 repositories   61.56   41.02   41.66   57.39  
  ...repository.ts   70   100   0   62.5  11-17
  ...repository.ts   33.33   0   0   26.31  11-53
  ...repository.ts   38.88   0   0   31.25  11-39
  ...repository.ts   50   85.71   20   45.83  21-53,79-93
  ...repository.ts   100   100   100   100  
  ...repository.ts   100   100   100   100  
  ...repository.ts   21.87   0   0   16.66  11-87
  ...repository.ts   30.43   0   0   23.8  11-53
  ...repository.ts   70   42.85   63.63   68.42  53-87
  ...repository.ts   100   20   100   100  28-71
  ...repository.ts   63.63   100   0   55.55  11-24
  ...repository.ts   100   100   100   100  
 services   80.58   66.41   78.74   79.44  
  ...ty.service.ts   80.39   76.47   70   78.26  ...01-104,128-130
  ...ob-handler.ts   100   75   100   100  10
  ...er.service.ts   84.26   51.61   50   83.9  ...15,149,186-204
  ...le.service.ts   100   100   100   100  
  ...cy.service.ts   92.85   77.77   100   91.66  33
  ...ns.service.ts   79.54   86.11   100   78.57  ...,85-87,115-121
  ...es.service.ts   71.42   62.5   71.42   66.66  36,43,53-59
  ...ng.service.ts   80.28   73.95   100   79.1  ...53,175,191-194
  ...ng.service.ts   100   90.27   100   100  44,102,108-119
  ...on.service.ts   90.32   66.66   100   89.28  46-50
  ...on.service.ts   78.78   61.9   83.33   77.95  ...51,273-274,280
  ...ja.service.ts   75.39   58.42   75   75  ...94,350,366,381
  ...ng.service.ts   92.3   62.5   100   90.9  30
  ...ry.service.ts   100   100   100   100  
  ...es.service.ts   88.88   89.47   100   87.87  84-86,116-118
  ...ng.service.ts   96.15   92.85   100   95.83  52-58
  ...ob-handler.ts   100   75   100   100  13-37
  ...er.service.ts   16.98   0   0   13.72  15-129
  ...on.service.ts   80.18   61.03   71.42   79.81  ...22,229,250-264
  usage.service.ts   62.5   100   0   50  7-20
 utils   90.64   81.75   100   92.18  
  ...cess.utils.ts   88.88   83.33   100   88.88  20,44
  ...-day.utils.ts   100   88.88   100   100  24
  ...user.utils.ts   85.71   56.25   100   85.71  9
  ...tion.utils.ts   81.48   78.78   100   81.48  13,28,34-38
  ...ator.utils.ts   94.73   85.71   100   94.44  100
  ...tion.utils.ts   92.3   88.13   100   97.61  63
  ssh-key.utils.ts   100   100   100   100  
 utils/cloud-init   98.87   72.8   100   98.85  
  ...ller.utils.ts   100   71   100   100  ...98-216,232-758
  ...ager.utils.ts   96.29   75.15   100   96.29  102
  ...rap.script.ts   100   66.66   100   100  12
  env.utils.ts   100   100   100   100  

libs/domains/framework/backend/feature-monitoring100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   100   100   100  
 ....controller.ts   100   100   100   100  
 ...ring.module.ts   100   100   100   100  

libs/domains/framework/backend/util-http-context98.63%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   98.63   91.48   100   98.61  
 ...sole-logger.ts   100   100   100   100  
 ....middleware.ts   100   90   100   100  22-23,53
 ...-id.storage.ts   100   100   100   100  
 ...correlation.ts   92.85   84.84   100   92.85  15,19,33
 ...log-payload.ts   100   95.74   100   100  60-61
 ...request-log.ts   100   87.5   100   100  10
 ...-io.adapter.ts   100   88.09   100   100  21-22,37,43,46
 typeorm-logger.ts   100   100   100   100  

libs/domains/framework/frontend/data-access-agent-console84.77%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   84.77   57.49   74.7   84.85  
 services   85.62   74.4   80.28   84.51  
  ...ts.service.ts   100   100   100   100  
  ...ts.service.ts   83.33   100   70.58   82.14  91-119
  ...in.service.ts   100   100   100   100  
  ...ts.service.ts   47.22   30   37.5   44.11  ...37,156,174-193
  env.service.ts   100   100   100   100  
  files.service.ts   100   100   100   100  
  ...es.service.ts   94.73   100   83.33   94.11  40
  ...ge.service.ts   100   100   100   100  
  ...cs.service.ts   88.57   64.1   84.61   87.87  96-106,183-194
  ...ts.service.ts   61.36   35.29   60   59.52  ...1,58-64,80-117
  vcs.service.ts   100   100   100   100  
  ...ig.service.ts   83.33   100   50   80  35-42
 state/agents   98.46   78.4   98.53   98.07  
  ...ts.actions.ts   100   100   100   100  
  ...ts.effects.ts   97.36   52.94   100   97.32  306,362-363
  agents.facade.ts   92.1   100   90   91.66  128-146
  ...ts.reducer.ts   100   93.93   100   100  223,354,376,398
  ....selectors.ts   100   95.23   100   100  126-133
 ...agent-autonomy   90.9   57.14   88.88   91.42  
  ...my.actions.ts   100   100   100   100  
  ...my.effects.ts   85.18   58.82   100   85.18  37,44-48
  ...omy.facade.ts   100   100   100   100  
  ...my.reducer.ts   83.33   50   75   83.33  43,70
  ....selectors.ts   91.66   100   80   100  
 state/clients   78.61   50.48   61.01   79.01  
  ...ts.actions.ts   100   100   100   100  
  ...ts.effects.ts   83.33   42.59   70.96   83.33  ...01-306,315-320
  ...nts.facade.ts   71.42   100   44   70.21  164-239,276-303
  ...ts.reducer.ts   63.23   68.18   61.53   61.53  ...77-382,400-402
  ....selectors.ts   77.63   51.85   55.26   82.5  ...65,68,71,81,84
 ...context-import   74.07   45.76   51.94   74.07  
  ...rt.actions.ts   100   100   100   100  
  ...rt.effects.ts   54.34   41.81   17.77   54.34  ...81-286,296-301
  ...rt.reducer.ts   100   100   100   100  
 state/deployments   77.18   9.09   61.14   73.94  
  ...ts.actions.ts   100   100   100   100  
  ...ts.effects.ts   41.17   7.14   24.56   41.17  ...61-266,276-281
  ...nts.facade.ts   90   100   73.68   89.58  206-234
  ...ts.reducer.ts   72.34   50   69.76   72.34  ...99,316,334,352
  ....selectors.ts   100   100   100   100  
 state/env   84.83   50   78.5   87.21  
  env.actions.ts   100   100   100   100  
  env.effects.ts   71.18   9.67   86.2   71.18  ...5,62,72,93-124
  env.facade.ts   66.66   100   52.63   64  84-168
  env.reducer.ts   96.49   50   95.83   96.36  102-104
  env.selectors.ts   88.75   100   74.28   100  
 state/files   97.12   79.27   92.91   100  
  files.actions.ts   100   100   100   100  
  files.effects.ts   100   65.71   100   100  ...86,114,141,160
  files.facade.ts   100   60   100   100  139-219
  files.reducer.ts   100   90.9   100   100  299,383,397,411
  ....selectors.ts   89.28   81.48   75   100  61,86-118
 ...e/filter-rules   77.9   38.7   60.52   77.9  
  ...es.actions.ts   100   100   100   100  
  ...es.effects.ts   66   37.03   38.09   66  ...20-125,135-140
  ...es.reducer.ts   90.47   50   88.23   90.47  60-61
 state/knowledge   86.45   32.35   80.45   86.66  
  ...ge.actions.ts   100   100   100   100  
  ...ge.effects.ts   69.73   12   68.18   69.73  ...79,194,219-228
  ...dge.facade.ts   96.29   100   90   96  74
  ...ge.reducer.ts   100   92.85   100   100  121
  ....selectors.ts   93.33   75   83.33   100  37
 ...e-board-socket   74.13   39.06   55.88   74.78  
  ...et.actions.ts   100   100   100   100  
  ....constants.ts   100   100   100   100  
  ...et.effects.ts   71.27   39.06   61.29   71.27  ...40,257-259,295
  ....selectors.ts   62.5   100   0   71.42  9,13
 .../notifications   96.35   65.38   96.47   96.41  
  ...ntion.util.ts   100   100   100   100  
  ...socket-url.ts   100   100   100   100  
  ...ns.actions.ts   100   100   100   100  
  ...ns.effects.ts   90.81   51.61   90.9   91.57  51-61,73,221,226
  ...ons.facade.ts   100   100   100   100  
  ...ns.reducer.ts   100   87.5   100   100  45,136
  ....selectors.ts   100   66.66   100   100  17,26-32
  ....constants.ts   100   100   100   100  
 state/sockets   83.2   65.26   74.14   83.33  
  ....constants.ts   100   100   100   100  
  ...ts.actions.ts   100   100   100   100  
  ...ts.effects.ts   65.15   30.66   57.77   64.61  ...39-451,462-465
  ...ets.facade.ts   88.23   80   77.77   89  ...05-334,349-353
  ...ts.reducer.ts   95.19   80.19   100   95.19  ...12,376,400,425
  ....selectors.ts   82.25   68   71.11   82.22  ...27-146,184,203
  sockets.types.ts   100   100   100   100  
 state/statistics   81.3   23.07   66.39   84.02  
  ...cs.actions.ts   100   100   100   100  
  ...cs.effects.ts   83.87   24.13   80.48   86.44  98-104,172-177
  ...ics.facade.ts   76.92   100   55   75.67  ...35-145,155-170
  ...cs.reducer.ts   73.52   100   70   73.52  ...09,226-243,260
  ....selectors.ts   76.56   20   51.61   84.84  18,27,30,33,36
 state/stats   90.09   79.41   87.5   91.48  
  stats.actions.ts   100   100   100   100  
  stats.effects.ts   100   83.33   100   100  17
  stats.facade.ts   95.23   100   90.9   94.73  55
  stats.reducer.ts   88.88   100   80   88.88  78-80
  ....selectors.ts   84   72.22   85   85.71  50-57
 ...ket-automation   82.9   62.68   68.83   84.44  
  ...on.actions.ts   100   100   100   100  
  ...on.effects.ts   68.85   50   60.6   68.85  ...73-174,178,183
  ...ion.facade.ts   100   100   100   100  
  ...on.reducer.ts   85.71   75.75   80   88.46  ...61,204,234,240
  ....selectors.ts   72.72   100   40   80  9,18,29
 state/tickets   89.69   65.25   89.62   89.74  
  ...arch.utils.ts   88.05   67.27   92.3   87.5  54,95,111,150-157
  ...unts.utils.ts   100   100   100   100  
  ...ts.actions.ts   100   100   100   100  
  ....constants.ts   100   100   100   100  
  ...ts.effects.ts   85.96   22.22   88.23   85.96  ...85,126,184,187
  ...ets.facade.ts   96.55   100   90   96.29  94
  ...ts.reducer.ts   81.42   66.66   83.67   82.67  ...67,371,378,382
  ....selectors.ts   98.64   83.33   100   98.27  117
  tickets.types.ts   100   100   100   100  
 ...s-board-socket   76.88   43.24   61.29   76.8  
  ...et.actions.ts   100   100   100   100  
  ....constants.ts   100   100   100   100  
  ...et.effects.ts   65.81   33.33   40   65.81  ...54,277-279,317
  ...ket.facade.ts   91.66   85.71   100   91.17  50-52,85
  ...et.reducer.ts   100   100   100   100  
  ....selectors.ts   81.25   100   57.14   84.61  13,18
 state/vcs   83.45   21.56   71.73   81.78  
  vcs.actions.ts   100   100   100   100  
  vcs.effects.ts   73.56   6.97   71.18   73.56  ...48,263,278,290
  vcs.facade.ts   100   100   100   100  
  vcs.reducer.ts   53.19   100   48.83   53.19  ...12-317,329-334
  vcs.selectors.ts   100   100   100   100  
 ...rkspace-config   55.38   11.36   22.95   56.88  
  ...ig.actions.ts   100   100   100   100  
  ...ig.effects.ts   50   6.25   33.33   50  ...60,71-77,88-90
  ...fig.facade.ts   57.89   100   27.27   52.94  32-56,72
  ...ig.reducer.ts   51.85   40   46.15   50  50-58,80-118
  ....selectors.ts   48.83   0   0   56  ...33,39,44,47-52
 utils   50   0   0   50  
  ...run-mapper.ts   50   0   0   50  12,38,54

libs/domains/framework/frontend/data-access-billing-console88.36%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   88.36   54.99   86.57   88.09  
 services   98.55   97.05   96.36   98.33  
  ...ty.service.ts   100   100   100   100  
  ...rs.service.ts   100   95   100   100  53
  ...le.service.ts   100   100   100   100  
  ...es.service.ts   92.85   100   85.71   91.66  40
  ...ns.service.ts   100   100   100   100  
  ...es.service.ts   95.23   100   88.88   94.73  42
  ...ms.service.ts   100   100   100   100  
  ...ns.service.ts   100   95   100   100  73
  usage.service.ts   100   100   100   100  
 ...e/availability   86.86   60   84   87.5  
  ...ty.actions.ts   100   100   100   100  
  ...ty.effects.ts   81.48   6.66   100   87.5  22-26
  ...ity.facade.ts   65.21   100   50   61.9  43,51-67,75-79
  ...ty.reducer.ts   100   100   100   100  
  ....selectors.ts   100   92   100   100  29
 state/backorders   84.37   36.95   82.81   83.96  
  ...rs.actions.ts   100   100   100   100  
  ...rs.effects.ts   76.19   16   94.11   81.08  23-27,43-45,70-72
  ...ers.facade.ts   58.33   100   41.17   54.54  38-74
  ...rs.reducer.ts   100   62.5   100   100  71-90
  ....selectors.ts   100   60   100   100  23
 ...stomer-profile   81.7   33.33   85.29   84.28  
  ...le.actions.ts   100   100   100   100  
  ...le.effects.ts   65.51   12.5   100   75  19-23,28-32
  ...ile.facade.ts   72.22   100   54.54   68.75  29-41,49
  ...le.reducer.ts   100   100   100   100  
  ....selectors.ts   100   88.88   100   100  18
 state/invoices   87.91   52.94   83.11   89.14  
  ...es.actions.ts   100   100   100   100  
  ...es.effects.ts   84.37   5.88   100   89.65  25-29
  ...ces.facade.ts   72.97   75   58.33   71.42  ...6,72-76,84-104
  ...es.reducer.ts   100   75   100   100  123,129
  ....selectors.ts   92.1   83.33   83.33   95.65  25
 .../service-plans   85.36   28.84   84.88   83.33  
  ...ns.actions.ts   100   100   100   100  
  ...ns.effects.ts   77.77   10.34   96   77.77  31-39,57-61,86-97
  ...ans.facade.ts   57.14   100   42.85   53.84  52-96
  ...ns.reducer.ts   100   61.11   100   100  82-144
  ....selectors.ts   100   20   100   100  32
 .../service-types   84.86   27.27   83   83.53  
  ...es.actions.ts   100   100   100   100  
  ...es.effects.ts   79.66   9.67   96.55   79.66  ...,78-82,107-118
  ...pes.facade.ts   56.25   100   44   53.33  64-71,99-176
  ...es.reducer.ts   100   61.11   100   100  108-170
  ....selectors.ts   95.34   16.66   90.9   96  33
 ...on-server-info   92.89   61.42   89.55   93.12  
  ...fo.actions.ts   100   100   100   100  
  ...fo.effects.ts   86.95   40   87.09   87.5  ...21,210,218,226
  ...nfo.facade.ts   100   100   100   100  
  ...fo.reducer.ts   95.34   82.14   85.71   95.34  181,189
  ....selectors.ts   96   85.71   91.66   95.65  42
 .../subscriptions   89.65   42.59   90.32   88.07  
  ...ns.actions.ts   100   100   100   100  
  ...ns.effects.ts   83.33   17.24   100   83.33  31-39,61,86-90
  ...ons.facade.ts   70   100   60.86   67.85  59-71,87,95-107
  ...ns.reducer.ts   100   65   100   100  83-146
  ....selectors.ts   100   100   100   100  
 utils   88.63   82.25   100   88.63  
  ...ider.utils.ts   88.63   82.25   100   88.63  88-95,109

libs/domains/framework/frontend/data-access-portal100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   87.23   100   100  
 constants   100   100   100   100  
  ....constants.ts   100   100   100   100  
 services   100   100   100   100  
  ...gs.service.ts   100   100   100   100  
 .../service-plans   100   73.91   100   100  
  ...ns.actions.ts   100   100   100   100  
  ...ns.effects.ts   100   73.91   100   100  37,64,98
  ...ans.facade.ts   100   100   100   100  
  ...ns.reducer.ts   100   100   100   100  
  ....selectors.ts   100   100   100   100  

libs/domains/framework/frontend/feature-agent-console78.57%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   78.57   62.16   90.98   78.32  
 ...n-import-admin   94.54   80   100   94.33  
  ...gest.utils.ts   93.1   71.42   100   92.59  34,61
  ...h-cql.util.ts   96.15   92.85   100   96.15  39
 chat   79.15   63.02   88.42   78.98  
  ...nt-display.ts   82.47   63.96   100   82.29  ...67,576,593,600
  ....directive.ts   16.12   0   12.5   13.33  13,35-100
  ...e-markdown.ts   75.75   60.36   81.81   75.77  ...91,322,336,343
  ...-aggregate.ts   80.43   57.14   100   80.43  ...46,62,67,80-86
  ...card-merge.ts   85.71   64.1   100   85.71  24,66
  ...ad-display.ts   85.1   66.5   100   84.91  ...68-572,602,608
 guards   97.29   85.71   100   97.14  
  ...itor.guard.ts   94.73   87.5   100   94.44  30
  ...ient.guard.ts   100   83.33   100   100  18
 tickets   54.21   36.66   100   53.65  
  ...run-labels.ts   34.69   17.94   100   34.69  ...,97-99,103-105
  ...hy-context.ts   96   92.85   100   95.83  8
  ...atus-label.ts   44.44   28.57   100   44.44  10-12,16-20

libs/domains/framework/frontend/feature-billing-console0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/framework/frontend/feature-docs0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/framework/frontend/feature-portal0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/framework/frontend/util-configuration93.33%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   93.33   75   100   93.33  
 ...nment.token.ts   92.85   75   100   92.85  10
 environment.ts   100   100   100   100  

libs/domains/framework/frontend/util-cookie-consent0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/framework/frontend/util-docs-parser0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/framework/frontend/util-express-server100.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   100   95.83   100   100  
 ...onfig-route.ts   100   83.33   100   100  23
 ...ity-headers.ts   100   97.61   100   100  159

libs/domains/framework/frontend/util-meta82.41%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   82.41   68   84.61   82.22  
 page-meta.util.ts   100   83.33   100   100  30
 ...w-meta.util.ts   79.22   66.66   81.81   78.94  ...76,202,234-235

libs/domains/framework/frontend/util-runtime-config-server84.21%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   84.21   82.6   87.5   84.94  
 ...onfig-proxy.ts   82.95   82.72   85.71   83.72  ...03,219,231,241
 ...nse-headers.ts   100   80   100   100  22

libs/domains/identity/backend/feature-auth49.86%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   49.86   20.27   18.69   47.54  
 src   100   100   100   100  
  index.ts   100   100   100   100  
 ...ib/controllers   65.51   30   20   62.96  
  ...controller.ts   61.29   0   0   58.62  ...39,46,53,60-70
  ...controller.ts   70.37   37.5   37.5   68  ...46-49,54,79-81
 src/lib/dto   100   100   100   100  
  ...t-user.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
 src/lib/dto/auth   100   100   100   100  
  ...ssword.dto.ts   100   100   100   100  
  ...-email.dto.ts   100   100   100   100  
  ...e-user.dto.ts   100   100   100   100  
  login.dto.ts   100   100   100   100  
  register.dto.ts   100   100   100   100  
  ...-reset.dto.ts   100   100   100   100  
  ...ssword.dto.ts   100   100   100   100  
  ...e-user.dto.ts   100   100   100   100  
  ...sponse.dto.ts   100   100   100   100  
 src/lib/entities   96.87   100   0   96.42  
  ...ial.entity.ts   100   100   100   100  
  client.entity.ts   95.23   100   0   94.73  64
 src/lib/guards   56.94   34.54   56.25   55.63  
  ...auth.guard.ts   81.08   61.9   100   80  37,41,48,85-97
  ...oles.guard.ts   13.04   0   0   9.52  14-98
  ...auth.guard.ts   89.47   73.33   100   88.88  35,39,57,84
  ...oles.guard.ts   52.17   18.75   66.66   50  23,27,34-50
 src/lib/modules   100   100   100   100  
  ...ync.module.ts   100   100   100   100  
  ...uth.module.ts   100   100   100   100  
 ...b/repositories   31.81   0   0   25  
  ...repository.ts   50   0   0   41.66  11-28
  ...repository.ts   26.92   0   0   20.83  14-133
  ...repository.ts   26.92   0   0   20.83  10-82
 src/lib/services   24.68   11.46   15.21   21.96  
  auth.service.ts   35.89   15.21   37.5   34.21  41,49,55,67-197
  ...ls.service.ts   62.5   100   0   50  7-14
  ...rs.service.ts   17.5   0   0   13.15  22-179
  ...en.service.ts   15.62   0   0   10  23-116
  ...th.service.ts   9.87   0   0   7.59  24-207
  users.service.ts   32.09   28.57   25   31.57  49-161,188,197
 src/lib/utils   100   100   100   100  
  ...ule-secret.ts   100   100   100   100  

libs/domains/identity/backend/util-auth97.93%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   97.93   88.23   91.89   98.12  
 lib   98.38   88.01   96.96   98.26  
  ...oak.guards.ts   100   100   100   100  
  ...quest-path.ts   100   83.33   100   100  7-8
  ...tler.guard.ts   90   50   100   87.5  15
  ...cess.utils.ts   95.45   78.78   85.71   95.45  36,105,134
  ...-path.util.ts   100   71.42   100   100  6-9
  ...auth.guard.ts   100   96.15   100   100  56
  ...oak.module.ts   100   100   100   100  
  ...ak.service.ts   100   100   100   100  
  ...middleware.ts   100   95.65   100   100  23,53
  ...rd.service.ts   100   100   100   100  
  ...mit.config.ts   100   100   100   100  
  token.utils.ts   100   100   100   100  
 lib/decorators   80   100   0   100  
  ....decorator.ts   80   100   0   100  
 lib/entities   97.29   100   66.66   96.96  
  ...ser.entity.ts   93.75   100   50   92.85  41
  user.entity.ts   100   100   100   100  

libs/domains/identity/frontend/data-access-auth77.05%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   77.05   51.33   62.3   75.9  
 src   100   100   100   100  
  index.ts   100   100   100   100  
 ...b/interceptors   80.85   65.62   90   78.57  
  ...nterceptor.ts   80.85   65.62   90   78.57  ...43,74,89-90,99
 src/lib/services   100   100   100   100  
  auth.service.ts   100   100   100   100  
 ...authentication   74.48   46.57   57.22   73.36  
  ...on.actions.ts   100   100   100   100  
  ...on.effects.ts   67.17   43.14   53.24   67.85  ...39-544,554-559
  ...ion.facade.ts   80.85   100   47.05   80  ...25-133,145-149
  ...on.reducer.ts   52.72   71.42   48   52.72  143-221,251-296
  ....selectors.ts   100   87.5   100   100  54

libs/domains/identity/frontend/feature-auth45.63%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   45.63   17.28   11.4   42.74  
 src   100   100   0   100  
  index.ts   100   100   0   100  
 src/lib   100   100   100   100  
  ...uth.routes.ts   100   100   100   100  
 .../confirm-email   31.7   0   0   28.2  
  ...omponent.html   100   100   100   100  
  ....component.ts   30   0   0   26.31  22-88
 src/lib/guards   91.11   82   83.33   90.69  
  admin.guard.ts   100   100   100   100  
  auth.guard.ts   100   90   100   100  60-61
  login.guard.ts   100   87.5   100   100  30,73-74
  ...bled.guard.ts   38.46   0   0   33.33  11-24
 src/lib/login   89.36   66.66   80   88.63  
  ...omponent.html   100   100   100   100  
  ....component.ts   89.13   66.66   80   88.37  79-81,102,121-122
 src/lib/otp-input   9.72   0   0   8.69  
  ...omponent.html   100   100   100   100  
  ....component.ts   8.45   0   0   7.35  25,31-161
 src/lib/register   32.5   0   0   28.94  
  ...omponent.html   100   100   100   100  
  ....component.ts   30.76   0   0   27.02  28-98
 ...password-reset   40.62   0   0   36.66  
  ...omponent.html   100   100   100   100  
  ....component.ts   38.7   0   0   34.48  21-68
 ...t-confirmation   29.54   0   0   26.19  
  ...omponent.html   100   100   100   100  
  ....component.ts   27.9   0   0   24.39  29-111
 ...reset-password   29.54   0   0   26.19  
  ...omponent.html   100   100   100   100  
  ....component.ts   27.9   0   0   24.39  29-111
 ...b/user-manager   12.37   0   0   12.08  
  ...omponent.html   100   100   100   100  
  ....component.ts   11.45   0   0   11.11  26-219

libs/domains/identity/frontend/util-auth93.93%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   93.93   92   50   96.77  
 ...environment.ts   100   100   100   100  
 ...interceptor.ts   93.54   92   50   96.55  78

libs/domains/shared/backend/util-crypto93.93%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   93.93   91.17   100   94.91  
 ...transformer.ts   93.93   91.17   100   94.91  22,59,136

libs/domains/shared/backend/util-email96.77%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   96.77   100   75   96.55  
 email.service.ts   96.77   100   75   96.55  85

libs/domains/shared/backend/util-network-address80.95%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   80.95   73.8   80   80.95  
 ...or-loopback.ts   80.95   73.8   80   80.95  ...46,73,86-90,97

libs/domains/shared/backend/util-queue97.85%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   97.85   87.24   100   97.84  
 ....middleware.ts   93.33   94.11   100   93.33  31,37
 ...obal-prefix.ts   100   100   100   100  
 ...ue-unit-job.ts   100   100   100   100  
 ...queue-error.ts   100   100   100   100  
 job-id.util.ts   95.83   90.9   100   95.83  27
 ...tion.config.ts   100   88.88   100   100  11,28-33,38,50,57
 queue-role.ts   100   80   100   100  40,44-49,69
 ...dinator-job.ts   100   75   100   100  23-35
 ...ns-for-role.ts   100   66.66   100   100  11

libs/domains/shared/frontend/util-loading-indicator0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

libs/domains/shared/shared/util-network-address80.95%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   80.95   73.8   80   80.95  
 ...or-loopback.ts   80.95   73.8   80   80.95  ...46,73,86-90,97

tools/ai60.74%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   60.74   40.67   65   64.13  
 src   85.71   77.77   50   89.74  
  transform.ts   85.71   77.77   50   89.74  68-70,101-103
 src/emitter   45.65   23.33   80   44.18  
  file-emitter.ts   100   62.5   100   100  12,22-24
  index.ts   100   100   100   100  
  ...ide-copier.ts   19.35   9.09   50   20  30-78
 ...rators/context   63.07   52.17   75   64.06  
  context.ts   63.07   52.17   75   64.06  22,70,93,109-144
 src/reader   65.48   53.69   100   71.56  
  ...ext-reader.ts   64.86   53.69   100   71.28  ...34-148,221-241
  index.ts   100   100   100   100  
 src/transformers   55.59   29.45   57.5   59.3  
  ...ransformer.ts   100   100   100   100  
  ...ransformer.ts   78.78   61.85   80   85.24  ...11-113,123,161
  ...ack-merger.ts   57.14   83.33   50   53.84  19-21,28-34
  ...ransformer.ts   52.77   18.18   60   58.46  ...34-141,148-155
  index.ts   90.47   50   28.57   93.33  29
  ...ransformer.ts   29.76   4.34   50   32  ...30-156,163-166
 src/validator   90   75   100   88.88  
  index.ts   100   100   100   100  
  ...-validator.ts   87.5   75   100   87.5  17

tools/code0.00%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   0   0   0   0  

tools/release-integrity79.87%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   79.87   63.63   90   80.53  
 ...56-manifest.ts   79.87   63.63   90   80.53  ...83,287,300-309

tools/sbom93.50%✅ 0.00%
Coverage Report
File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files   93.5   78.04   100   93.5  
 impl.ts   93.5   78.04   100   93.5  21,29,46,131,159

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants