@c15t/backend 0.0.1-rc.21 → 0.0.1-rc.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/.turbo/turbo-build.log +5 -5
  2. package/.turbo/turbo-fmt.log +3 -3
  3. package/.turbo/turbo-test.log +509 -36
  4. package/coverage/coverage-final.json +83 -0
  5. package/coverage/coverage-summary.json +84 -0
  6. package/coverage/html/backend/index.html +116 -0
  7. package/coverage/html/backend/rslib.config.ts.html +424 -0
  8. package/coverage/html/backend/src/core.ts.html +796 -0
  9. package/coverage/html/backend/src/index.html +131 -0
  10. package/coverage/html/backend/src/init.ts.html +1072 -0
  11. package/coverage/html/backend/src/integrations/cloudflare.ts.html +889 -0
  12. package/coverage/html/backend/src/integrations/index.html +146 -0
  13. package/coverage/html/backend/src/integrations/next.ts.html +691 -0
  14. package/coverage/html/backend/src/integrations/node.ts.html +505 -0
  15. package/coverage/html/backend/src/pkgs/api-router/hooks/index.html +116 -0
  16. package/coverage/html/backend/src/pkgs/api-router/hooks/processor.ts.html +538 -0
  17. package/coverage/html/backend/src/pkgs/api-router/index.html +131 -0
  18. package/coverage/html/backend/src/pkgs/api-router/index.ts.html +529 -0
  19. package/coverage/html/backend/src/pkgs/api-router/telemetry.ts.html +334 -0
  20. package/coverage/html/backend/src/pkgs/api-router/utils/cors.ts.html +304 -0
  21. package/coverage/html/backend/src/pkgs/api-router/utils/define-route.ts.html +1315 -0
  22. package/coverage/html/backend/src/pkgs/api-router/utils/index.html +146 -0
  23. package/coverage/html/backend/src/pkgs/api-router/utils/ip.ts.html +361 -0
  24. package/coverage/html/backend/src/pkgs/data-model/fields/field-factory.ts.html +709 -0
  25. package/coverage/html/backend/src/pkgs/data-model/fields/id-generator.ts.html +256 -0
  26. package/coverage/html/backend/src/pkgs/data-model/fields/index.html +161 -0
  27. package/coverage/html/backend/src/pkgs/data-model/fields/superjson-utils.ts.html +136 -0
  28. package/coverage/html/backend/src/pkgs/data-model/fields/zod-fields.ts.html +496 -0
  29. package/coverage/html/backend/src/pkgs/data-model/hooks/create-hooks.ts.html +349 -0
  30. package/coverage/html/backend/src/pkgs/data-model/hooks/index.html +176 -0
  31. package/coverage/html/backend/src/pkgs/data-model/hooks/update-hooks.ts.html +358 -0
  32. package/coverage/html/backend/src/pkgs/data-model/hooks/update-many-hooks.ts.html +613 -0
  33. package/coverage/html/backend/src/pkgs/data-model/hooks/utils.ts.html +538 -0
  34. package/coverage/html/backend/src/pkgs/data-model/hooks/with-hooks-factory.ts.html +289 -0
  35. package/coverage/html/backend/src/pkgs/db-adapters/adapter-factory.ts.html +277 -0
  36. package/coverage/html/backend/src/pkgs/db-adapters/adapters/drizzle-adapter/drizzle-adapter.ts.html +2212 -0
  37. package/coverage/html/backend/src/pkgs/db-adapters/adapters/drizzle-adapter/index.html +116 -0
  38. package/coverage/html/backend/src/pkgs/db-adapters/adapters/index.html +116 -0
  39. package/coverage/html/backend/src/pkgs/db-adapters/adapters/kysely-adapter/dialect.ts.html +676 -0
  40. package/coverage/html/backend/src/pkgs/db-adapters/adapters/kysely-adapter/index.html +131 -0
  41. package/coverage/html/backend/src/pkgs/db-adapters/adapters/kysely-adapter/kysely-adapter.ts.html +3637 -0
  42. package/coverage/html/backend/src/pkgs/db-adapters/adapters/kysely-adapter/tests/index.html +116 -0
  43. package/coverage/html/backend/src/pkgs/db-adapters/adapters/kysely-adapter/tests/test-utils.ts.html +1417 -0
  44. package/coverage/html/backend/src/pkgs/db-adapters/adapters/memory-adapter/index.html +116 -0
  45. package/coverage/html/backend/src/pkgs/db-adapters/adapters/memory-adapter/memory-adapter.ts.html +2074 -0
  46. package/coverage/html/backend/src/pkgs/db-adapters/adapters/prisma-adapter/index.html +116 -0
  47. package/coverage/html/backend/src/pkgs/db-adapters/adapters/prisma-adapter/prisma-adapter.ts.html +1837 -0
  48. package/coverage/html/backend/src/pkgs/db-adapters/adapters/test.ts.html +316 -0
  49. package/coverage/html/backend/src/pkgs/db-adapters/index.html +131 -0
  50. package/coverage/html/backend/src/pkgs/db-adapters/utils.ts.html +238 -0
  51. package/coverage/html/backend/src/pkgs/logger/console-formatter.ts.html +310 -0
  52. package/coverage/html/backend/src/pkgs/logger/index.html +176 -0
  53. package/coverage/html/backend/src/pkgs/logger/log-levels.ts.html +223 -0
  54. package/coverage/html/backend/src/pkgs/logger/logger-factory.ts.html +448 -0
  55. package/coverage/html/backend/src/pkgs/logger/result-logging.ts.html +487 -0
  56. package/coverage/html/backend/src/pkgs/logger/telemetry.ts.html +373 -0
  57. package/coverage/html/backend/src/pkgs/migrations/get-migration.ts.html +343 -0
  58. package/coverage/html/backend/src/pkgs/migrations/get-schema/get-schema.ts.html +217 -0
  59. package/coverage/html/backend/src/pkgs/migrations/get-schema/index.html +146 -0
  60. package/coverage/html/backend/src/pkgs/migrations/get-schema/process-fields.ts.html +280 -0
  61. package/coverage/html/backend/src/pkgs/migrations/get-schema/process-tables.ts.html +289 -0
  62. package/coverage/html/backend/src/pkgs/migrations/index.html +176 -0
  63. package/coverage/html/backend/src/pkgs/migrations/migration-builders.ts.html +595 -0
  64. package/coverage/html/backend/src/pkgs/migrations/migration-execution.ts.html +301 -0
  65. package/coverage/html/backend/src/pkgs/migrations/schema-comparison.ts.html +691 -0
  66. package/coverage/html/backend/src/pkgs/migrations/type-mapping.ts.html +817 -0
  67. package/coverage/html/backend/src/pkgs/results/core/error-class.ts.html +1012 -0
  68. package/coverage/html/backend/src/pkgs/results/core/error-codes.ts.html +703 -0
  69. package/coverage/html/backend/src/pkgs/results/core/index.html +146 -0
  70. package/coverage/html/backend/src/pkgs/results/core/tracing.ts.html +280 -0
  71. package/coverage/html/backend/src/pkgs/results/create-telemetry-options.ts.html +271 -0
  72. package/coverage/html/backend/src/pkgs/results/h3-integration.ts.html +511 -0
  73. package/coverage/html/backend/src/pkgs/results/index.html +131 -0
  74. package/coverage/html/backend/src/pkgs/results/pipeline/index.html +131 -0
  75. package/coverage/html/backend/src/pkgs/results/pipeline/retrieval-pipeline.ts.html +649 -0
  76. package/coverage/html/backend/src/pkgs/results/pipeline/validation-pipeline.ts.html +577 -0
  77. package/coverage/html/backend/src/pkgs/results/results/index.html +131 -0
  78. package/coverage/html/backend/src/pkgs/results/results/recovery-utils.ts.html +628 -0
  79. package/coverage/html/backend/src/pkgs/results/results/result-helpers.ts.html +1234 -0
  80. package/coverage/html/backend/src/pkgs/utils/env.ts.html +337 -0
  81. package/coverage/html/backend/src/pkgs/utils/index.html +131 -0
  82. package/coverage/html/backend/src/pkgs/utils/url.ts.html +400 -0
  83. package/coverage/html/backend/src/routes/index.html +176 -0
  84. package/coverage/html/backend/src/routes/index.ts.html +121 -0
  85. package/coverage/html/backend/src/routes/set-consent.ts.html +832 -0
  86. package/coverage/html/backend/src/routes/show-consent-banner.ts.html +478 -0
  87. package/coverage/html/backend/src/routes/status.ts.html +268 -0
  88. package/coverage/html/backend/src/routes/verify-consent.ts.html +703 -0
  89. package/coverage/html/backend/src/schema/audit-log/index.html +146 -0
  90. package/coverage/html/backend/src/schema/audit-log/registry.ts.html +436 -0
  91. package/coverage/html/backend/src/schema/audit-log/schema.ts.html +223 -0
  92. package/coverage/html/backend/src/schema/audit-log/table.ts.html +640 -0
  93. package/coverage/html/backend/src/schema/consent/index.html +146 -0
  94. package/coverage/html/backend/src/schema/consent/registry.ts.html +616 -0
  95. package/coverage/html/backend/src/schema/consent/schema.ts.html +238 -0
  96. package/coverage/html/backend/src/schema/consent/table.ts.html +748 -0
  97. package/coverage/html/backend/src/schema/consent-policy/index.html +146 -0
  98. package/coverage/html/backend/src/schema/consent-policy/registry.ts.html +1063 -0
  99. package/coverage/html/backend/src/schema/consent-policy/schema.ts.html +265 -0
  100. package/coverage/html/backend/src/schema/consent-policy/table.ts.html +535 -0
  101. package/coverage/html/backend/src/schema/consent-purpose/index.html +146 -0
  102. package/coverage/html/backend/src/schema/consent-purpose/registry.ts.html +589 -0
  103. package/coverage/html/backend/src/schema/consent-purpose/schema.ts.html +259 -0
  104. package/coverage/html/backend/src/schema/consent-purpose/table.ts.html +547 -0
  105. package/coverage/html/backend/src/schema/consent-record/index.html +131 -0
  106. package/coverage/html/backend/src/schema/consent-record/schema.ts.html +211 -0
  107. package/coverage/html/backend/src/schema/consent-record/table.ts.html +457 -0
  108. package/coverage/html/backend/src/schema/create-registry.ts.html +148 -0
  109. package/coverage/html/backend/src/schema/definition.ts.html +685 -0
  110. package/coverage/html/backend/src/schema/domain/index.html +146 -0
  111. package/coverage/html/backend/src/schema/domain/registry.ts.html +973 -0
  112. package/coverage/html/backend/src/schema/domain/schema.ts.html +214 -0
  113. package/coverage/html/backend/src/schema/domain/table.ts.html +496 -0
  114. package/coverage/html/backend/src/schema/index.html +146 -0
  115. package/coverage/html/backend/src/schema/schemas.ts.html +166 -0
  116. package/coverage/html/backend/src/schema/subject/index.html +146 -0
  117. package/coverage/html/backend/src/schema/subject/registry.ts.html +973 -0
  118. package/coverage/html/backend/src/schema/subject/schema.ts.html +208 -0
  119. package/coverage/html/backend/src/schema/subject/table.ts.html +499 -0
  120. package/coverage/html/base.css +224 -0
  121. package/coverage/html/block-navigation.js +87 -0
  122. package/coverage/html/favicon.png +0 -0
  123. package/coverage/html/index.html +581 -0
  124. package/coverage/html/prettify.css +1 -0
  125. package/coverage/html/prettify.js +2 -0
  126. package/coverage/html/sort-arrow-sprite.png +0 -0
  127. package/coverage/html/sorter.js +196 -0
  128. package/dist/index.cjs +1 -1
  129. package/dist/index.js +1 -1
  130. package/package.json +13 -12
  131. package/vitest.config.ts +14 -11
  132. package/.turbo/turbo-lint.log +0 -6
@@ -1,78 +1,551 @@
1
1
 
2
2
  
3
- > @c15t/backend@0.0.1-rc.19 test /Users/christopherburns/glados/k/c15t/packages/backend
4
- > vitest
3
+ > @c15t/backend@0.0.1-rc.22 test /Users/christopherburns/glados/k/c15t/packages/backend
4
+ > vitest run
5
5
 
6
6
  [?25l
7
-  DEV  v3.1.1 /Users/christopherburns/glados/k/c15t/packages/backend
7
+  RUN  v3.1.1 /Users/christopherburns/glados/k/c15t/packages/backend
8
+ Coverage enabled with istanbul
8
9
 
9
10
  [?2026h
10
-  ❯ src/routes/__test__/verify-consent.test.ts [queued]
11
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
11
12
 
12
13
   Test Files 0 passed (23)
13
14
   Tests 0 passed (0)
14
-  Start at 19:43:01
15
-  Duration 307ms
15
+  Start at 11:55:39
16
+  Duration 553ms
16
17
  [?2026l[?2026h
17
-  ❯ src/pkgs/api-router/hooks/__tests__/processor.test.ts 0/6
18
+  ❯ src/pkgs/api-router/hooks/__tests__/processor.test.ts [queued]
19
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
20
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
21
+  ❯ src/pkgs/logger/__tests__/integration.test.ts [queued]
22
+  ❯ src/pkgs/logger/__tests__/logger-factory.test.ts [queued]
23
+  ❯ src/pkgs/results/__tests__/error-class.test.ts [queued]
24
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts [queued]
25
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
26
+
27
+  Test Files 0 passed (23)
28
+  Tests 0 passed (0)
29
+  Start at 11:55:39
30
+  Duration 656ms
31
+ [?2026l[?2026h
32
+  ❯ src/init.test.ts [queued]
33
+  ❯ src/pkgs/api-router/hooks/__tests__/processor.test.ts [queued]
34
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
35
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
36
+  ❯ src/pkgs/logger/__tests__/integration.test.ts [queued]
37
+  ❯ src/pkgs/logger/__tests__/logger-factory.test.ts [queued]
38
+  ❯ src/pkgs/logger/__tests__/result-logging.test.ts [queued]
39
+  ❯ src/pkgs/results/__tests__/error-class.test.ts [queued]
40
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts [queued]
41
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
42
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
43
+
44
+  Test Files 0 passed (23)
45
+  Tests 0 passed (0)
46
+  Start at 11:55:39
47
+  Duration 978ms
48
+ [?2026l[?2026h
49
+  ❯ src/init.test.ts [queued]
50
+  ❯ src/pkgs/api-router/hooks/__tests__/processor.test.ts 1/6
18
51
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
19
52
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
53
+  ❯ src/pkgs/logger/__tests__/integration.test.ts [queued]
54
+  ❯ src/pkgs/logger/__tests__/logger-factory.test.ts [queued]
55
+  ❯ src/pkgs/logger/__tests__/result-logging.test.ts [queued]
56
+  ❯ src/pkgs/results/__tests__/error-class.test.ts [queued]
20
57
   ❯ src/pkgs/results/__tests__/result-helpers.test.ts [queued]
21
58
   ❯ src/routes/__test__/set-consent.test.ts [queued]
22
59
   ❯ src/routes/__test__/verify-consent.test.ts [queued]
23
60
 
24
61
   Test Files 0 passed (23)
25
-  Tests 0 passed (6)
26
-  Start at 19:43:01
27
-  Duration 418ms
28
- [?2026l[?2026h ✓ src/pkgs/api-router/hooks/__tests__/processor.test.ts (6 tests) 20ms
62
+  Tests 1 passed (6)
63
+  Start at 11:55:39
64
+  Duration 1.19s
65
+ [?2026l[?2026h ✓ src/pkgs/api-router/hooks/__tests__/processor.test.ts (6 tests) 34ms
29
66
 
67
+  ❯ src/init.test.ts [queued]
30
68
   ❯ src/pkgs/api-router/hooks/__tests__/processor.test.ts 6/6
31
69
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
32
70
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
33
-  ❯ src/pkgs/results/__tests__/result-helpers.test.ts 0/11
71
+  ❯ src/pkgs/logger/__tests__/integration.test.ts 0/5
72
+  ❯ src/pkgs/logger/__tests__/logger-factory.test.ts 1/7
73
+  ❯ src/pkgs/logger/__tests__/result-logging.test.ts 0/7
74
+  ❯ src/pkgs/results/__tests__/error-class.test.ts [queued]
75
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts [queued]
34
76
   ❯ src/routes/__test__/set-consent.test.ts [queued]
35
77
   ❯ src/routes/__test__/verify-consent.test.ts [queued]
36
78
 
37
79
   Test Files 1 passed (23)
38
-  Tests 6 passed (17)
39
-  Start at 19:43:01
40
-  Duration 619ms
41
- [?2026l[?2026h ✓ src/pkgs/results/__tests__/result-helpers.test.ts (11 tests) 14ms
80
+  Tests 7 passed (25)
81
+  Start at 11:55:39
82
+  Duration 1.29s
83
+ [?2026l[?2026h ✓ src/pkgs/logger/__tests__/logger-factory.test.ts (7 tests) 5ms
84
+ ✓ src/pkgs/logger/__tests__/result-logging.test.ts (7 tests) 4ms
85
+ ✓ src/pkgs/logger/__tests__/integration.test.ts (5 tests) 8ms
42
86
 
87
+  ❯ src/init.test.ts [queued]
88
+  ❯ src/pkgs/api-router/hooks/__tests__/processor.test.ts 6/6
43
89
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
44
90
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
45
-  ❯ src/pkgs/logger/__tests__/integration.test.ts [queued]
91
+  ❯ src/pkgs/logger/__tests__/integration.test.ts 5/5
92
+  ❯ src/pkgs/logger/__tests__/logger-factory.test.ts 7/7
93
+  ❯ src/pkgs/logger/__tests__/result-logging.test.ts 7/7
94
+  ❯ src/pkgs/results/__tests__/error-class.test.ts 1/12
95
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts [queued]
96
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
97
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
98
+
99
+  Test Files 4 passed (23)
100
+  Tests 26 passed (37)
101
+  Start at 11:55:39
102
+  Duration 1.39s
103
+ [?2026l[?2026h ✓ src/pkgs/results/__tests__/error-class.test.ts (12 tests) 10ms
104
+
105
+  ❯ src/init.test.ts [queued]
106
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
107
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
108
+  ❯ src/pkgs/logger/__tests__/integration.test.ts 5/5
109
+  ❯ src/pkgs/logger/__tests__/logger-factory.test.ts 7/7
110
+  ❯ src/pkgs/logger/__tests__/result-logging.test.ts 7/7
111
+  ❯ src/pkgs/results/__tests__/error-class.test.ts 12/12
112
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts 1/11
113
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts [queued]
114
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
115
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
116
+
117
+  Test Files 5 passed (23)
118
+  Tests 38 passed (48)
119
+  Start at 11:55:39
120
+  Duration 1.59s
121
+ [?2026l[?2026h ✓ src/pkgs/results/__tests__/result-helpers.test.ts (11 tests) 11ms
122
+
123
+  ❯ src/init.test.ts [queued]
124
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
125
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
126
+  ❯ src/pkgs/logger/__tests__/integration.test.ts 5/5
127
+  ❯ src/pkgs/logger/__tests__/result-logging.test.ts 7/7
128
+  ❯ src/pkgs/results/__tests__/error-class.test.ts 12/12
46
129
   ❯ src/pkgs/results/__tests__/result-helpers.test.ts 11/11
130
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts [queued]
131
+  ❯ src/pkgs/results/__tests__/validation-pipeline.test.ts [queued]
47
132
   ❯ src/routes/__test__/set-consent.test.ts [queued]
48
133
   ❯ src/routes/__test__/verify-consent.test.ts [queued]
49
134
 
50
-  Test Files 2 passed (23)
51
-  Tests 17 passed (17)
52
-  Start at 19:43:01
53
-  Duration 826ms
54
- [?2026l[?2026h
135
+  Test Files 6 passed (23)
136
+  Tests 48 passed (48)
137
+  Start at 11:55:39
138
+  Duration 1.74s
139
+ [?2026l[?2026h
140
+  ❯ src/init.test.ts [queued]
55
141
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
56
142
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
57
-  ❯ src/pkgs/logger/__tests__/integration.test.ts [queued]
58
-  ❯ src/pkgs/results/__tests__/error-class.test.ts [queued]
143
+  ❯ src/pkgs/logger/__tests__/integration.test.ts 5/5
144
+  ❯ src/pkgs/results/__tests__/error-class.test.ts 12/12
145
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts [queued]
146
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts 11/11
147
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts [queued]
148
+  ❯ src/pkgs/results/__tests__/validation-pipeline.test.ts [queued]
59
149
   ❯ src/routes/__test__/set-consent.test.ts [queued]
60
150
   ❯ src/routes/__test__/verify-consent.test.ts [queued]
61
151
 
62
-  Test Files 2 passed (23)
63
-  Tests 17 passed (17)
64
-  Start at 19:43:01
65
-  Duration 944ms
66
- [?2026l[?2026h
152
+  Test Files 6 passed (23)
153
+  Tests 48 passed (48)
154
+  Start at 11:55:39
155
+  Duration 1.85s
156
+ [?2026l[?2026h
157
+  ❯ src/init.test.ts [queued]
158
+  ❯ src/pkgs/api-router/utils/core.test.ts [queued]
67
159
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
68
160
   ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
69
-  ❯ src/pkgs/logger/__tests__/integration.test.ts 0/5
70
-  ❯ src/pkgs/results/__tests__/error-class.test.ts [queued]
161
+  ❯ src/pkgs/logger/__tests__/types.test.ts [queued]
162
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts [queued]
163
+  ❯ src/pkgs/results/__tests__/result-helpers.test.ts 11/11
164
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts [queued]
165
+  ❯ src/pkgs/results/__tests__/validation-pipeline.test.ts [queued]
166
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
167
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
168
+
169
+  Test Files 6 passed (23)
170
+  Tests 48 passed (48)
171
+  Start at 11:55:39
172
+  Duration 1.97s
173
+ [?2026l[?2026h
174
+  ❯ src/init.test.ts [queued]
175
+  ❯ src/pkgs/api-router/utils/core.test.ts 0/11
176
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
177
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
178
+  ❯ src/pkgs/logger/__tests__/log-levels.test.ts [queued]
179
+  ❯ src/pkgs/logger/__tests__/types.test.ts [queued]
180
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts [queued]
181
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts 0/8
182
+  ❯ src/pkgs/results/__tests__/validation-pipeline.test.ts [queued]
71
183
   ❯ src/routes/__test__/set-consent.test.ts [queued]
72
184
   ❯ src/routes/__test__/verify-consent.test.ts [queued]
73
185
 
74
-  Test Files 2 passed (23)
75
-  Tests 17 passed (22)
76
-  Start at 19:43:01
77
-  Duration 1.47s
78
- [?2026l
186
+  Test Files 6 passed (23)
187
+  Tests 48 passed (67)
188
+  Start at 11:55:39
189
+  Duration 2.07s
190
+ [?2026l[?2026h ✓ src/pkgs/results/__tests__/retrieval-pipeline.test.ts (8 tests) 8ms
191
+ ✓ src/pkgs/logger/__tests__/types.test.ts (4 tests) 3ms
192
+ ✓ src/pkgs/api-router/utils/core.test.ts (11 tests) 10ms
193
+
194
+  ❯ src/init.test.ts [queued]
195
+  ❯ src/pkgs/api-router/utils/core.test.ts 11/11
196
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
197
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
198
+  ❯ src/pkgs/logger/__tests__/log-levels.test.ts 1/4
199
+  ❯ src/pkgs/logger/__tests__/types.test.ts 4/4
200
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts [queued]
201
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts 8/8
202
+  ❯ src/pkgs/results/__tests__/validation-pipeline.test.ts [queued]
203
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
204
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
205
+
206
+  Test Files 9 passed (23)
207
+  Tests 72 passed (75)
208
+  Start at 11:55:39
209
+  Duration 2.17s
210
+ [?2026l[?2026h ✓ src/pkgs/logger/__tests__/log-levels.test.ts (4 tests) 3ms
211
+
212
+  ❯ src/init.test.ts [queued]
213
+  ❯ src/pkgs/api-router/utils/core.test.ts 11/11
214
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
215
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
216
+  ❯ src/pkgs/logger/__tests__/log-levels.test.ts 4/4
217
+  ❯ src/pkgs/logger/__tests__/types.test.ts 4/4
218
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts 1/7
219
+  ❯ src/pkgs/results/__tests__/retrieval-pipeline.test.ts 8/8
220
+  ❯ src/pkgs/results/__tests__/validation-pipeline.test.ts 0/5
221
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
222
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
223
+
224
+  Test Files 10 passed (23)
225
+  Tests 76 passed (87)
226
+  Start at 11:55:39
227
+  Duration 2.49s
228
+ [?2026l[?2026h ✓ src/pkgs/results/__tests__/recovery-utils.test.ts (7 tests) 4ms
229
+ ✓ src/pkgs/results/__tests__/validation-pipeline.test.ts (5 tests) 44ms
230
+
231
+  ❯ src/init.test.ts [queued]
232
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
233
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
234
+  ❯ src/pkgs/logger/__tests__/log-levels.test.ts 4/4
235
+  ❯ src/pkgs/results/__tests__/error-codes.test.ts [queued]
236
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts 7/7
237
+  ❯ src/routes/__test__/index.test.ts [queued]
238
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
239
+  ❯ src/routes/__test__/show-consent-banner.test.ts [queued]
240
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
241
+
242
+  Test Files 12 passed (23)
243
+  Tests 87 passed (87)
244
+  Start at 11:55:39
245
+  Duration 2.59s
246
+ [?2026l[?2026h
247
+  ❯ src/init.test.ts [queued]
248
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
249
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
250
+  ❯ src/pkgs/results/__tests__/error-codes.test.ts 1/6
251
+  ❯ src/pkgs/results/__tests__/neverthrow-integration.test.ts [queued]
252
+  ❯ src/pkgs/results/__tests__/recovery-utils.test.ts 7/7
253
+  ❯ src/routes/__test__/index.test.ts [queued]
254
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
255
+  ❯ src/routes/__test__/show-consent-banner.test.ts [queued]
256
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
257
+
258
+  Test Files 12 passed (23)
259
+  Tests 88 passed (93)
260
+  Start at 11:55:39
261
+  Duration 2.71s
262
+ [?2026l[?2026h ✓ src/pkgs/results/__tests__/error-codes.test.ts (6 tests) 5ms
263
+ ✓ src/pkgs/logger/__tests__/console-formatter.test.ts (5 tests) 5ms
264
+
265
+  ❯ src/init.test.ts [queued]
266
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
267
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
268
+  ❯ src/pkgs/results/__tests__/neverthrow-integration.test.ts 0/5
269
+  ❯ src/routes/__test__/index.test.ts [queued]
270
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
271
+  ❯ src/routes/__test__/show-consent-banner.test.ts 0/3
272
+  ❯ src/routes/__test__/status.test.ts [queued]
273
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
274
+
275
+  Test Files 14 passed (23)
276
+  Tests 98 passed (106)
277
+  Start at 11:55:39
278
+  Duration 2.81s
279
+ [?2026l[?2026h ✓ src/pkgs/results/__tests__/neverthrow-integration.test.ts (5 tests) 8ms
280
+ ✓ src/routes/__test__/show-consent-banner.test.ts (3 tests) 4ms
281
+
282
+  ❯ src/init.test.ts [queued]
283
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
284
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
285
+  ❯ src/routes/__test__/index.test.ts [queued]
286
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
287
+  ❯ src/routes/__test__/status.test.ts 0/2
288
+  ❯ src/routes/__test__/verify-consent.test.ts [queued]
289
+
290
+  Test Files 16 passed (23)
291
+  Tests 106 passed (108)
292
+  Start at 11:55:39
293
+  Duration 2.91s
294
+ [?2026l[?2026h ✓ src/routes/__test__/status.test.ts (2 tests) 6ms
295
+
296
+  ❯ src/init.test.ts [queued]
297
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
298
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
299
+  ❯ src/routes/__test__/index.test.ts [queued]
300
+  ❯ src/routes/__test__/set-consent.test.ts [queued]
301
+  ❯ src/routes/__test__/verify-consent.test.ts 0/9
302
+
303
+  Test Files 17 passed (23)
304
+  Tests 108 passed (117)
305
+  Start at 11:55:39
306
+  Duration 3.12s
307
+ [?2026l[?2026h
308
+  ❯ src/init.test.ts [queued]
309
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
310
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
311
+  ❯ src/routes/__test__/index.test.ts 0/20
312
+  ❯ src/routes/__test__/set-consent.test.ts 0/6
313
+  ❯ src/routes/__test__/verify-consent.test.ts 1/9
314
+
315
+  Test Files 17 passed (23)
316
+  Tests 109 passed (143)
317
+  Start at 11:55:39
318
+  Duration 3.42s
319
+ [?2026l[?2026h ✓ src/routes/__test__/verify-consent.test.ts (9 tests) 6ms
320
+
321
+  ❯ src/init.test.ts [queued]
322
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
323
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
324
+  ❯ src/routes/__test__/index.test.ts 0/20
325
+  ❯ src/routes/__test__/set-consent.test.ts 1/6
326
+
327
+  Test Files 18 passed (23)
328
+  Tests 118 passed (143)
329
+  Start at 11:55:39
330
+  Duration 3.52s
331
+ [?2026l[?2026h ✓ src/routes/__test__/set-consent.test.ts (6 tests) 7ms
332
+ ✓ src/routes/__test__/index.test.ts (20 tests) 10ms
333
+
334
+  ❯ src/init.test.ts [queued]
335
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
336
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
337
+
338
+  Test Files 20 passed (23)
339
+  Tests 143 passed (143)
340
+  Start at 11:55:39
341
+  Duration 4.03s
342
+ [?2026l[?2026h
343
+  ❯ src/init.test.ts [queued]
344
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
345
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
346
+
347
+  Test Files 20 passed (23)
348
+  Tests 143 passed (143)
349
+  Start at 11:55:39
350
+  Duration 5.01s
351
+ [?2026l[?2026h
352
+  ❯ src/init.test.ts [queued]
353
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts [queued]
354
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
355
+
356
+  Test Files 20 passed (23)
357
+  Tests 143 passed (143)
358
+  Start at 11:55:39
359
+  Duration 5.12s
360
+ [?2026l[?2026h
361
+  ❯ src/init.test.ts [queued]
362
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts 0/9
363
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts [queued]
364
+
365
+  Test Files 20 passed (23)
366
+  Tests 143 passed (152)
367
+  Start at 11:55:39
368
+  Duration 5.35s
369
+ [?2026l[?2026h
370
+  ❯ src/init.test.ts [queued]
371
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts 0/9
372
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts 1/9
373
+
374
+  Test Files 20 passed (23)
375
+  Tests 144 passed (161)
376
+  Start at 11:55:39
377
+  Duration 5.55s
378
+ [?2026l[?2026h
379
+  ❯ src/init.test.ts [queued]
380
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts 0/9
381
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts 2/9
382
+
383
+  Test Files 20 passed (23)
384
+  Tests 145 passed (161)
385
+  Start at 11:55:39
386
+  Duration 5.75s
387
+ [?2026l[?2026h ✓ src/pkgs/db-adapters/adapters/kysely-adapter/tests/sqlite.test.ts (9 tests | 1 skipped) 180ms
388
+
389
+  ❯ src/init.test.ts 0/11
390
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts 0/9
391
+
392
+  Test Files 21 passed (23)
393
+  Tests 151 passed | 1 skipped (172)
394
+  Start at 11:55:39
395
+  Duration 5.97s
396
+ [?2026l[?2026h
397
+  ❯ src/init.test.ts 0/11
398
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts 0/9
399
+
400
+  Test Files 21 passed (23)
401
+  Tests 151 passed | 1 skipped (172)
402
+  Start at 11:55:39
403
+  Duration 6.17s
404
+ [?2026l[?2026h ✓ src/init.test.ts (11 tests) 73ms
405
+
406
+  ❯ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts 1/9
407
+
408
+  Test Files 22 passed (23)
409
+  Tests 163 passed | 1 skipped (172)
410
+  Start at 11:55:39
411
+  Duration 6.88s
412
+ [?2026l[?2026h ✓ src/pkgs/db-adapters/adapters/kysely-adapter/tests/postgres.test.ts (9 tests) 1428ms
413
+
414
+
415
+  Test Files 23 passed (23)
416
+  Tests 171 passed | 1 skipped (172)
417
+  Start at 11:55:39
418
+  Duration 7.00s
419
+ [?2026l[?2026h
420
+
421
+  Test Files 23 passed (23)
422
+  Tests 171 passed | 1 skipped (172)
423
+  Start at 11:55:39
424
+  Duration 7.20s
425
+ [?2026l
426
+  Test Files  23 passed (23)
427
+  Tests  171 passed | 1 skipped (172)
428
+  Start at  11:55:38
429
+  Duration  7.54s (transform 6.05s, setup 0ms, collect 27.61s, tests 1.88s, environment 4ms, prepare 4.48s)
430
+
431
+  % Coverage report from istanbul
432
+ --------------------------------------|---------|----------|---------|---------|-------------------
433
+ File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
434
+ --------------------------------------|---------|----------|---------|---------|-------------------
435
+ All files  |  34.66 |  33.99 |  34.8 |  34.89 |  
436
+  backend  |  0 |  100 |  100 |  0 |  
437
+  rslib.config.ts  |  0 |  100 |  100 |  0 | 3 
438
+  backend/src  |  60.86 |  50.64 |  30.76 |  60.86 |  
439
+  core.ts  |  0 |  0 |  0 |  0 | 137-228 
440
+  init.ts  |  82.35 |  56.52 |  80 |  82.35 | ...98,218,251-257
441
+  backend/src/integrations  |  0 |  0 |  0 |  0 |  
442
+  cloudflare.ts  |  0 |  0 |  0 |  0 | 34-265 
443
+  next.ts  |  0 |  0 |  0 |  0 | 43-198 
444
+  node.ts  |  0 |  0 |  0 |  0 | 32-130 
445
+  backend/src/pkgs/api-router  |  0 |  0 |  0 |  0 |  
446
+  index.ts  |  0 |  0 |  0 |  0 | 25-147 
447
+  telemetry.ts  |  0 |  0 |  0 |  0 | 4-80 
448
+  backend/src/pkgs/api-router/hooks  |  93.54 |  96.66 |  66.66 |  100 |  
449
+  processor.ts  |  93.54 |  96.66 |  66.66 |  100 | 53 
450
+  backend/src/pkgs/api-router/utils  |  39.47 |  34.72 |  25 |  39.47 |  
451
+  cors.ts  |  85.71 |  83.33 |  100 |  85.71 | 31-32,43-44 
452
+  define-route.ts  |  30 |  32.6 |  15.38 |  30 | ...27-363,405-409
453
+  ip.ts  |  0 |  0 |  0 |  0 | 4-91 
454
+  backend/src/pkgs/data-model/fields  |  70 |  0 |  14.28 |  70 |  
455
+  field-factory.ts  |  16.66 |  0 |  0 |  16.66 | 139-206 
456
+  id-generator.ts  |  100 |  100 |  100 |  100 |  
457
+  superjson-utils.ts  |  50 |  100 |  0 |  50 | 16 
458
+  zod-fields.ts  |  90.9 |  100 |  0 |  90.9 | 136 
459
+  backend/src/pkgs/data-model/hooks  |  1.16 |  0 |  9.09 |  1.16 |  
460
+  create-hooks.ts  |  0 |  0 |  0 |  0 | 42-87 
461
+  update-hooks.ts  |  0 |  0 |  0 |  0 | 43-90 
462
+  update-many-hooks.ts  |  0 |  0 |  0 |  0 | 31-175 
463
+  utils.ts  |  0 |  0 |  0 |  0 | 45-142 
464
+  with-hooks-factory.ts  |  25 |  100 |  25 |  25 | 47-66 
465
+  backend/src/pkgs/db-adapters  |  76.19 |  64.7 |  100 |  76.19 |  
466
+  adapter-factory.ts  |  71.42 |  37.5 |  100 |  71.42 | 53-61 
467
+  utils.ts  |  85.71 |  88.88 |  100 |  85.71 | 46 
468
+  ...end/src/pkgs/db-adapters/adapters |  0 |  100 |  0 |  0 |  
469
+  test.ts  |  0 |  100 |  0 |  0 | 19-55 
470
+  ...adapters/adapters/drizzle-adapter |  1.19 |  0 |  0 |  1.22 |  
471
+  drizzle-adapter.ts  |  1.19 |  0 |  0 |  1.22 | 52-457,534-704 
472
+  ...-adapters/adapters/kysely-adapter |  42.39 |  33.1 |  41.66 |  42.39 |  
473
+  dialect.ts  |  15 |  7.57 |  50 |  15 | 36-67,144,158-193
474
+  kysely-adapter.ts  |  46.02 |  40.43 |  41.37 |  46.02 | ...1154,1171-1177
475
+  ...ers/adapters/kysely-adapter/tests |  46.23 |  25 |  38.23 |  46.23 |  
476
+  test-utils.ts  |  46.23 |  25 |  38.23 |  46.23 | 66-233 
477
+  ...-adapters/adapters/memory-adapter |  7.63 |  1.68 |  13.04 |  7.8 |  
478
+  memory-adapter.ts  |  7.63 |  1.68 |  13.04 |  7.8 | ...69-304,376-660
479
+  ...-adapters/adapters/prisma-adapter |  1.73 |  0 |  0 |  1.8 |  
480
+  prisma-adapter.ts  |  1.73 |  0 |  0 |  1.8 | 89-292,331-578 
481
+  backend/src/pkgs/logger  |  87.5 |  77.96 |  93.75 |  87.5 |  
482
+  console-formatter.ts  |  100 |  100 |  100 |  100 |  
483
+  log-levels.ts  |  100 |  100 |  100 |  100 |  
484
+  logger-factory.ts  |  80.64 |  76.66 |  85.71 |  80.64 | 35,76-82,98 
485
+  result-logging.ts  |  100 |  100 |  100 |  100 |  
486
+  telemetry.ts  |  82.14 |  75 |  100 |  82.14 | 22,37,81,88-92 
487
+  backend/src/pkgs/migrations  |  59.84 |  46.34 |  59.09 |  60.93 |  
488
+  get-migration.ts  |  73.33 |  50 |  100 |  73.33 | 47-50,55-58 
489
+  migration-builders.ts  |  69.23 |  54.16 |  80 |  69.23 | 33-63,100,109 
490
+  migration-execution.ts  |  45.45 |  100 |  50 |  50 | 52-68 
491
+  schema-comparison.ts  |  51.35 |  30 |  57.14 |  52.94 | ...09-111,166-196
492
+  type-mapping.ts  |  56.66 |  50 |  40 |  56.66 | ...53,224,227-234
493
+  ...nd/src/pkgs/migrations/get-schema |  68.42 |  60 |  100 |  68.42 |  
494
+  get-schema.ts  |  60 |  0 |  100 |  60 | 39-40 
495
+  process-fields.ts  |  75 |  72.72 |  100 |  75 | 25,55-59 
496
+  process-tables.ts  |  64.7 |  58.33 |  100 |  64.7 | 24,33-36,41-42,51
497
+  backend/src/pkgs/results  |  10.71 |  20 |  14.28 |  10.71 |  
498
+  create-telemetry-options.ts  |  100 |  71.42 |  100 |  100 | 35-39 
499
+  h3-integration.ts  |  0 |  0 |  0 |  0 | 35-139 
500
+  backend/src/pkgs/results/core  |  72.05 |  55.22 |  82.35 |  72.05 |  
501
+  error-class.ts  |  77.08 |  64.28 |  76.92 |  77.08 | 195,287-307 
502
+  error-codes.ts  |  100 |  100 |  100 |  100 |  
503
+  tracing.ts  |  50 |  9.09 |  100 |  50 | 34-62 
504
+  backend/src/pkgs/results/pipeline  |  89.13 |  73.46 |  100 |  89.13 |  
505
+  retrieval-pipeline.ts  |  100 |  76 |  100 |  100 | ...49-155,176-182
506
+  validation-pipeline.ts  |  82.75 |  70.83 |  100 |  82.75 | ...08,111,115-119
507
+  backend/src/pkgs/results/results  |  95.52 |  55.55 |  93.1 |  95.52 |  
508
+  recovery-utils.ts  |  100 |  100 |  100 |  100 |  
509
+  result-helpers.ts  |  93.33 |  48.71 |  89.47 |  93.33 | 357-366 
510
+  backend/src/pkgs/utils  |  80.95 |  48.27 |  75 |  80.95 |  
511
+  env.ts  |  80 |  58.33 |  0 |  80 | 54 
512
+  url.ts  |  81.25 |  41.17 |  100 |  81.25 | 26,56,104 
513
+  backend/src/routes  |  8.45 |  2.04 |  6.25 |  8.51 |  
514
+  index.ts  |  0 |  100 |  100 |  0 | 7 
515
+  set-consent.ts  |  10.9 |  0 |  0 |  10.9 | 52-246 
516
+  show-consent-banner.ts  |  2.56 |  0 |  0 |  2.56 | 20-126 
517
+  status.ts  |  100 |  100 |  100 |  100 |  
518
+  verify-consent.ts  |  4.54 |  0 |  0 |  4.65 | 35-202 
519
+  backend/src/schema  |  38.46 |  25 |  75 |  38.46 |  
520
+  create-registry.ts  |  100 |  100 |  100 |  100 |  
521
+  definition.ts  |  30.43 |  25 |  66.66 |  30.43 | 45-54,159-198 
522
+  schemas.ts  |  100 |  100 |  100 |  100 |  
523
+  backend/src/schema/audit-log  |  50 |  93.75 |  40 |  50 |  
524
+  registry.ts  |  33.33 |  0 |  50 |  33.33 | 94-114 
525
+  schema.ts  |  50 |  100 |  0 |  50 | 36 
526
+  table.ts  |  75 |  100 |  50 |  75 | 135 
527
+  backend/src/schema/consent  |  33.33 |  76 |  25 |  33.33 |  
528
+  registry.ts  |  33.33 |  0 |  33.33 |  33.33 | 84-170 
529
+  schema.ts  |  50 |  100 |  0 |  50 | 39 
530
+  table.ts  |  31.25 |  82.6 |  25 |  31.25 | 142-192 
531
+  backend/src/schema/consent-policy  |  18.42 |  63.41 |  16.66 |  18.42 |  
532
+  registry.ts  |  9.67 |  0 |  12.5 |  9.67 | 35-37,109-309 
533
+  schema.ts  |  50 |  100 |  0 |  50 | 49-50 
534
+  table.ts  |  66.66 |  100 |  50 |  66.66 | 132 
535
+  backend/src/schema/consent-purpose  |  31.25 |  81.25 |  22.22 |  31.25 |  
536
+  registry.ts  |  25 |  0 |  33.33 |  25 | 100-163 
537
+  schema.ts  |  33.33 |  100 |  0 |  33.33 | 47-48 
538
+  table.ts  |  40 |  100 |  25 |  40 | 83-136 
539
+  backend/src/schema/consent-record  |  62.5 |  100 |  25 |  62.5 |  
540
+  schema.ts  |  33.33 |  100 |  0 |  33.33 | 31-32 
541
+  table.ts  |  80 |  100 |  50 |  80 | 106 
542
+  backend/src/schema/domain  |  18.18 |  59.45 |  16.66 |  18.18 |  
543
+  registry.ts  |  11.53 |  0 |  14.28 |  11.53 | 88-289 
544
+  schema.ts  |  33.33 |  100 |  0 |  33.33 | 32-33 
545
+  table.ts  |  50 |  100 |  33.33 |  50 | 76-109 
546
+  backend/src/schema/subject  |  10 |  36.06 |  18.18 |  10 |  
547
+  registry.ts  |  4.76 |  0 |  20 |  4.76 | 54-291 
548
+  schema.ts  |  33.33 |  100 |  0 |  33.33 | 30-31 
549
+  table.ts  |  40 |  100 |  25 |  40 | 57-110 
550
+ --------------------------------------|---------|----------|---------|---------|-------------------
551
+ [?25h