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

inclusion-numerique / coop-mediation-numerique / d042ddf5-824b-4a46-8c8f-8237a8853f64

25 Mar 2026 10:41AM UTC coverage: 10.692% (+3.8%) from 6.896%
d042ddf5-824b-4a46-8c8f-8237a8853f64

push

circleci

web-flow
Merge pull request #465 from inclusion-numerique/fix/brevo-shared-contacts

fix(brevo): handle shared Brevo account with Les Bases

699 of 10508 branches covered (6.65%)

Branch coverage included in aggregate %.

18 of 122 new or added lines in 13 files covered. (14.75%)

814 existing lines in 86 files now uncovered.

2168 of 16307 relevant lines covered (13.29%)

2.0 hits per line

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

33.33
/apps/web/src/app/api/v1/transformJsonApiQueryParamsToObject.ts
1
import { set } from 'lodash-es'
1✔
2

3
/**
4
 * Json:api query params are given as string in brackets, e.g. "page[size]"
5
 * So the NextUrl SearchParams looks like { 'page[size]': '10' }
6
 * This function transforms them to object, e.g. { page: { size: 10 } }
7
 * To be able to be passed later to zod validation.
8
 *
9
 * A parameter with multiple values is given as a comma separated string, e.g. "sort=age,city"
10
 * and is transformed to an array, e.g. { sort: ['age', 'city'] }
11
 *
12
 * See https://jsonapi.org/format/#query-parameters-families
13
 */
14

15
export const transformJsonApiQueryParamsToObject = (
1✔
16
  params: URLSearchParams,
17
): Record<string, unknown> => {
18
  const result: Record<string, unknown> = {}
1✔
19

20
  for (const [rawKey, rawValue] of params.entries()) {
1✔
21
    // split rawKey into nested keys: e.g. "page[size]" -> ["page", "size"]
UNCOV
22
    const keys = rawKey.match(/[^[\]]+/g) || []
×
23

24
    // handle multiple values by splitting on comma
UNCOV
25
    const values = rawValue.includes(',') ? rawValue.split(',') : [rawValue]
×
26

UNCOV
27
    const finalValue = values.length === 1 ? values[0] : values
×
28

UNCOV
29
    set(result, keys, finalValue)
×
30
  }
31

32
  return result
1✔
33
}
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