@c15t/backend 0.0.1-rc.10

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 (521) hide show
  1. package/.turbo/turbo-build.log +11 -0
  2. package/.turbo/turbo-check-types.log +5 -0
  3. package/.turbo/turbo-fmt.log +7 -0
  4. package/.turbo/turbo-lint.log +6 -0
  5. package/.turbo/turbo-test.log +26 -0
  6. package/README-next.md +223 -0
  7. package/README.md +164 -0
  8. package/dist/api/call.d.ts +176 -0
  9. package/dist/api/call.d.ts.map +1 -0
  10. package/dist/api/index.d.ts +935 -0
  11. package/dist/api/index.d.ts.map +1 -0
  12. package/dist/api/middlewares/index.d.ts +39 -0
  13. package/dist/api/middlewares/index.d.ts.map +1 -0
  14. package/dist/api/middlewares/origin-check.d.ts +82 -0
  15. package/dist/api/middlewares/origin-check.d.ts.map +1 -0
  16. package/dist/api/middlewares/validate-context.d.ts +38 -0
  17. package/dist/api/middlewares/validate-context.d.ts.map +1 -0
  18. package/dist/api/routes/__tests__/consent.test.d.ts +2 -0
  19. package/dist/api/routes/__tests__/consent.test.d.ts.map +1 -0
  20. package/dist/api/routes/__tests__/status.test.d.ts +2 -0
  21. package/dist/api/routes/__tests__/status.test.d.ts.map +1 -0
  22. package/dist/api/routes/error.d.ts +57 -0
  23. package/dist/api/routes/error.d.ts.map +1 -0
  24. package/dist/api/routes/generate-consent-receipt.d.ts +130 -0
  25. package/dist/api/routes/generate-consent-receipt.d.ts.map +1 -0
  26. package/dist/api/routes/get-consent-history.d.ts +133 -0
  27. package/dist/api/routes/get-consent-history.d.ts.map +1 -0
  28. package/dist/api/routes/get-consent-policy.d.ts +164 -0
  29. package/dist/api/routes/get-consent-policy.d.ts.map +1 -0
  30. package/dist/api/routes/get-consent.d.ts +148 -0
  31. package/dist/api/routes/get-consent.d.ts.map +1 -0
  32. package/dist/api/routes/index.d.ts +339 -0
  33. package/dist/api/routes/index.d.ts.map +1 -0
  34. package/dist/api/routes/ok.d.ts +87 -0
  35. package/dist/api/routes/ok.d.ts.map +1 -0
  36. package/dist/api/routes/set-consent.d.ts +245 -0
  37. package/dist/api/routes/set-consent.d.ts.map +1 -0
  38. package/dist/api/routes/show-consent-banner.d.ts +127 -0
  39. package/dist/api/routes/show-consent-banner.d.ts.map +1 -0
  40. package/dist/api/routes/status.d.ts +61 -0
  41. package/dist/api/routes/status.d.ts.map +1 -0
  42. package/dist/api/routes/verify-consent.d.ts +179 -0
  43. package/dist/api/routes/verify-consent.d.ts.map +1 -0
  44. package/dist/api/routes/withdraw-consent.d.ts +194 -0
  45. package/dist/api/routes/withdraw-consent.d.ts.map +1 -0
  46. package/dist/api/to-endpoints.d.ts +35 -0
  47. package/dist/api/to-endpoints.d.ts.map +1 -0
  48. package/dist/client/index.cjs +139 -0
  49. package/dist/client/index.d.ts +203 -0
  50. package/dist/client/index.d.ts.map +1 -0
  51. package/dist/client/index.js +106 -0
  52. package/dist/client/types.d.ts +431 -0
  53. package/dist/client/types.d.ts.map +1 -0
  54. package/dist/core.d.ts +124 -0
  55. package/dist/core.d.ts.map +1 -0
  56. package/dist/core.test.d.ts +2 -0
  57. package/dist/core.test.d.ts.map +1 -0
  58. package/dist/db/adapters/drizzle-adapter/drizzle-adapter.d.ts +122 -0
  59. package/dist/db/adapters/drizzle-adapter/drizzle-adapter.d.ts.map +1 -0
  60. package/dist/db/adapters/drizzle-adapter/index.d.ts +2 -0
  61. package/dist/db/adapters/drizzle-adapter/index.d.ts.map +1 -0
  62. package/dist/db/adapters/drizzle.cjs +1531 -0
  63. package/dist/db/adapters/drizzle.js +1489 -0
  64. package/dist/db/adapters/kysely-adapter/dialect.d.ts +72 -0
  65. package/dist/db/adapters/kysely-adapter/dialect.d.ts.map +1 -0
  66. package/dist/db/adapters/kysely-adapter/index.d.ts +4 -0
  67. package/dist/db/adapters/kysely-adapter/index.d.ts.map +1 -0
  68. package/dist/db/adapters/kysely-adapter/kysely-adapter.d.ts +98 -0
  69. package/dist/db/adapters/kysely-adapter/kysely-adapter.d.ts.map +1 -0
  70. package/dist/db/adapters/kysely-adapter/types.d.ts +281 -0
  71. package/dist/db/adapters/kysely-adapter/types.d.ts.map +1 -0
  72. package/dist/db/adapters/kysely.cjs +1551 -0
  73. package/dist/db/adapters/kysely.js +1508 -0
  74. package/dist/db/adapters/memory-adapter/index.d.ts +2 -0
  75. package/dist/db/adapters/memory-adapter/index.d.ts.map +1 -0
  76. package/dist/db/adapters/memory-adapter/memory-adapter.d.ts +56 -0
  77. package/dist/db/adapters/memory-adapter/memory-adapter.d.ts.map +1 -0
  78. package/dist/db/adapters/memory.cjs +1391 -0
  79. package/dist/db/adapters/memory.js +1349 -0
  80. package/dist/db/adapters/prisma-adapter/index.d.ts +2 -0
  81. package/dist/db/adapters/prisma-adapter/index.d.ts.map +1 -0
  82. package/dist/db/adapters/prisma-adapter/prisma-adapter.d.ts +143 -0
  83. package/dist/db/adapters/prisma-adapter/prisma-adapter.d.ts.map +1 -0
  84. package/dist/db/adapters/prisma.cjs +1503 -0
  85. package/dist/db/adapters/prisma.js +1461 -0
  86. package/dist/db/adapters/types.d.ts +154 -0
  87. package/dist/db/adapters/types.d.ts.map +1 -0
  88. package/dist/db/adapters/utils.d.ts +36 -0
  89. package/dist/db/adapters/utils.d.ts.map +1 -0
  90. package/dist/db/core/fields/field-factory.d.ts +383 -0
  91. package/dist/db/core/fields/field-factory.d.ts.map +1 -0
  92. package/dist/db/core/fields/field-inference.d.ts +218 -0
  93. package/dist/db/core/fields/field-inference.d.ts.map +1 -0
  94. package/dist/db/core/fields/field-options-integration.d.ts +90 -0
  95. package/dist/db/core/fields/field-options-integration.d.ts.map +1 -0
  96. package/dist/db/core/fields/field-types.d.ts +182 -0
  97. package/dist/db/core/fields/field-types.d.ts.map +1 -0
  98. package/dist/db/core/fields/id-generator.d.ts +19 -0
  99. package/dist/db/core/fields/id-generator.d.ts.map +1 -0
  100. package/dist/db/core/fields/index.d.ts +8 -0
  101. package/dist/db/core/fields/index.d.ts.map +1 -0
  102. package/dist/db/core/fields/superjson-utils.d.ts +34 -0
  103. package/dist/db/core/fields/superjson-utils.d.ts.map +1 -0
  104. package/dist/db/core/fields/zod-fields.d.ts +1011 -0
  105. package/dist/db/core/fields/zod-fields.d.ts.map +1 -0
  106. package/dist/db/core/get-schema.d.ts +36 -0
  107. package/dist/db/core/get-schema.d.ts.map +1 -0
  108. package/dist/db/core/types.d.ts +41 -0
  109. package/dist/db/core/types.d.ts.map +1 -0
  110. package/dist/db/create-registry.d.ts +760 -0
  111. package/dist/db/create-registry.d.ts.map +1 -0
  112. package/dist/db/hooks/create-hooks.d.ts +32 -0
  113. package/dist/db/hooks/create-hooks.d.ts.map +1 -0
  114. package/dist/db/hooks/index.d.ts +40 -0
  115. package/dist/db/hooks/index.d.ts.map +1 -0
  116. package/dist/db/hooks/types.d.ts +133 -0
  117. package/dist/db/hooks/types.d.ts.map +1 -0
  118. package/dist/db/hooks/update-hooks.d.ts +33 -0
  119. package/dist/db/hooks/update-hooks.d.ts.map +1 -0
  120. package/dist/db/hooks/update-many-hooks.d.ts +55 -0
  121. package/dist/db/hooks/update-many-hooks.d.ts.map +1 -0
  122. package/dist/db/hooks/utils.d.ts +62 -0
  123. package/dist/db/hooks/utils.d.ts.map +1 -0
  124. package/dist/db/hooks/with-hooks-factory.d.ts +33 -0
  125. package/dist/db/hooks/with-hooks-factory.d.ts.map +1 -0
  126. package/dist/db/index.cjs +2458 -0
  127. package/dist/db/index.d.ts +11 -0
  128. package/dist/db/index.d.ts.map +1 -0
  129. package/dist/db/index.js +2404 -0
  130. package/dist/db/migration/get-migration.d.ts +32 -0
  131. package/dist/db/migration/get-migration.d.ts.map +1 -0
  132. package/dist/db/migration/get-schema/get-schema.d.ts +27 -0
  133. package/dist/db/migration/get-schema/get-schema.d.ts.map +1 -0
  134. package/dist/db/migration/get-schema/index.d.ts +21 -0
  135. package/dist/db/migration/get-schema/index.d.ts.map +1 -0
  136. package/dist/db/migration/get-schema/process-fields.d.ts +16 -0
  137. package/dist/db/migration/get-schema/process-fields.d.ts.map +1 -0
  138. package/dist/db/migration/get-schema/process-tables.d.ts +13 -0
  139. package/dist/db/migration/get-schema/process-tables.d.ts.map +1 -0
  140. package/dist/db/migration/get-schema/types.d.ts +17 -0
  141. package/dist/db/migration/get-schema/types.d.ts.map +1 -0
  142. package/dist/db/migration/index.cjs +1613 -0
  143. package/dist/db/migration/index.d.ts +14 -0
  144. package/dist/db/migration/index.d.ts.map +1 -0
  145. package/dist/db/migration/index.js +1571 -0
  146. package/dist/db/migration/migration-builders.d.ts +28 -0
  147. package/dist/db/migration/migration-builders.d.ts.map +1 -0
  148. package/dist/db/migration/migration-execution.d.ts +12 -0
  149. package/dist/db/migration/migration-execution.d.ts.map +1 -0
  150. package/dist/db/migration/schema-comparison.d.ts +54 -0
  151. package/dist/db/migration/schema-comparison.d.ts.map +1 -0
  152. package/dist/db/migration/type-mapping.d.ts +86 -0
  153. package/dist/db/migration/type-mapping.d.ts.map +1 -0
  154. package/dist/db/migration/types.d.ts +37 -0
  155. package/dist/db/migration/types.d.ts.map +1 -0
  156. package/dist/db/schema/audit-log/index.d.ts +4 -0
  157. package/dist/db/schema/audit-log/index.d.ts.map +1 -0
  158. package/dist/db/schema/audit-log/registry.d.ts +128 -0
  159. package/dist/db/schema/audit-log/registry.d.ts.map +1 -0
  160. package/dist/db/schema/audit-log/schema.d.ts +67 -0
  161. package/dist/db/schema/audit-log/schema.d.ts.map +1 -0
  162. package/dist/db/schema/audit-log/table.d.ts +175 -0
  163. package/dist/db/schema/audit-log/table.d.ts.map +1 -0
  164. package/dist/db/schema/audit-log/types.d.ts +29 -0
  165. package/dist/db/schema/audit-log/types.d.ts.map +1 -0
  166. package/dist/db/schema/consent/index.d.ts +4 -0
  167. package/dist/db/schema/consent/index.d.ts.map +1 -0
  168. package/dist/db/schema/consent/registry.d.ts +318 -0
  169. package/dist/db/schema/consent/registry.d.ts.map +1 -0
  170. package/dist/db/schema/consent/schema.d.ts +135 -0
  171. package/dist/db/schema/consent/schema.d.ts.map +1 -0
  172. package/dist/db/schema/consent/table.d.ts +245 -0
  173. package/dist/db/schema/consent/table.d.ts.map +1 -0
  174. package/dist/db/schema/consent/types.d.ts +37 -0
  175. package/dist/db/schema/consent/types.d.ts.map +1 -0
  176. package/dist/db/schema/consent-geo-location/index.d.ts +4 -0
  177. package/dist/db/schema/consent-geo-location/index.d.ts.map +1 -0
  178. package/dist/db/schema/consent-geo-location/registry.d.ts +96 -0
  179. package/dist/db/schema/consent-geo-location/registry.d.ts.map +1 -0
  180. package/dist/db/schema/consent-geo-location/schema.d.ts +71 -0
  181. package/dist/db/schema/consent-geo-location/schema.d.ts.map +1 -0
  182. package/dist/db/schema/consent-geo-location/table.d.ts +167 -0
  183. package/dist/db/schema/consent-geo-location/table.d.ts.map +1 -0
  184. package/dist/db/schema/consent-geo-location/types.d.ts +21 -0
  185. package/dist/db/schema/consent-geo-location/types.d.ts.map +1 -0
  186. package/dist/db/schema/consent-policy/index.d.ts +4 -0
  187. package/dist/db/schema/consent-policy/index.d.ts.map +1 -0
  188. package/dist/db/schema/consent-policy/registry.d.ts +186 -0
  189. package/dist/db/schema/consent-policy/registry.d.ts.map +1 -0
  190. package/dist/db/schema/consent-policy/schema.d.ts +68 -0
  191. package/dist/db/schema/consent-policy/schema.d.ts.map +1 -0
  192. package/dist/db/schema/consent-policy/table.d.ts +147 -0
  193. package/dist/db/schema/consent-policy/table.d.ts.map +1 -0
  194. package/dist/db/schema/consent-policy/types.d.ts +28 -0
  195. package/dist/db/schema/consent-policy/types.d.ts.map +1 -0
  196. package/dist/db/schema/consent-purpose/index.d.ts +4 -0
  197. package/dist/db/schema/consent-purpose/index.d.ts.map +1 -0
  198. package/dist/db/schema/consent-purpose/registry.d.ts +136 -0
  199. package/dist/db/schema/consent-purpose/registry.d.ts.map +1 -0
  200. package/dist/db/schema/consent-purpose/schema.d.ts +79 -0
  201. package/dist/db/schema/consent-purpose/schema.d.ts.map +1 -0
  202. package/dist/db/schema/consent-purpose/table.d.ts +161 -0
  203. package/dist/db/schema/consent-purpose/table.d.ts.map +1 -0
  204. package/dist/db/schema/consent-purpose/types.d.ts +16 -0
  205. package/dist/db/schema/consent-purpose/types.d.ts.map +1 -0
  206. package/dist/db/schema/consent-purpose-junction/index.d.ts +4 -0
  207. package/dist/db/schema/consent-purpose-junction/index.d.ts.map +1 -0
  208. package/dist/db/schema/consent-purpose-junction/registry.d.ts +109 -0
  209. package/dist/db/schema/consent-purpose-junction/registry.d.ts.map +1 -0
  210. package/dist/db/schema/consent-purpose-junction/schema.d.ts +57 -0
  211. package/dist/db/schema/consent-purpose-junction/schema.d.ts.map +1 -0
  212. package/dist/db/schema/consent-purpose-junction/table.d.ts +138 -0
  213. package/dist/db/schema/consent-purpose-junction/table.d.ts.map +1 -0
  214. package/dist/db/schema/consent-purpose-junction/types.d.ts +14 -0
  215. package/dist/db/schema/consent-purpose-junction/types.d.ts.map +1 -0
  216. package/dist/db/schema/consent-record/index.d.ts +4 -0
  217. package/dist/db/schema/consent-record/index.d.ts.map +1 -0
  218. package/dist/db/schema/consent-record/registry.d.ts +119 -0
  219. package/dist/db/schema/consent-record/registry.d.ts.map +1 -0
  220. package/dist/db/schema/consent-record/schema.d.ts +57 -0
  221. package/dist/db/schema/consent-record/schema.d.ts.map +1 -0
  222. package/dist/db/schema/consent-record/table.d.ts +123 -0
  223. package/dist/db/schema/consent-record/table.d.ts.map +1 -0
  224. package/dist/db/schema/consent-record/types.d.ts +21 -0
  225. package/dist/db/schema/consent-record/types.d.ts.map +1 -0
  226. package/dist/db/schema/consent-withdrawal/index.d.ts +4 -0
  227. package/dist/db/schema/consent-withdrawal/index.d.ts.map +1 -0
  228. package/dist/db/schema/consent-withdrawal/registry.d.ts +134 -0
  229. package/dist/db/schema/consent-withdrawal/registry.d.ts.map +1 -0
  230. package/dist/db/schema/consent-withdrawal/schema.d.ts +67 -0
  231. package/dist/db/schema/consent-withdrawal/schema.d.ts.map +1 -0
  232. package/dist/db/schema/consent-withdrawal/table.d.ts +170 -0
  233. package/dist/db/schema/consent-withdrawal/table.d.ts.map +1 -0
  234. package/dist/db/schema/consent-withdrawal/types.d.ts +28 -0
  235. package/dist/db/schema/consent-withdrawal/types.d.ts.map +1 -0
  236. package/dist/db/schema/definition.d.ts +1100 -0
  237. package/dist/db/schema/definition.d.ts.map +1 -0
  238. package/dist/db/schema/domain/index.d.ts +4 -0
  239. package/dist/db/schema/domain/index.d.ts.map +1 -0
  240. package/dist/db/schema/domain/registry.d.ts +169 -0
  241. package/dist/db/schema/domain/registry.d.ts.map +1 -0
  242. package/dist/db/schema/domain/schema.d.ts +60 -0
  243. package/dist/db/schema/domain/schema.d.ts.map +1 -0
  244. package/dist/db/schema/domain/table.d.ts +140 -0
  245. package/dist/db/schema/domain/table.d.ts.map +1 -0
  246. package/dist/db/schema/domain/types.d.ts +27 -0
  247. package/dist/db/schema/domain/types.d.ts.map +1 -0
  248. package/dist/db/schema/geo-location/index.d.ts +4 -0
  249. package/dist/db/schema/geo-location/index.d.ts.map +1 -0
  250. package/dist/db/schema/geo-location/registry.d.ts +114 -0
  251. package/dist/db/schema/geo-location/registry.d.ts.map +1 -0
  252. package/dist/db/schema/geo-location/schema.d.ts +58 -0
  253. package/dist/db/schema/geo-location/schema.d.ts.map +1 -0
  254. package/dist/db/schema/geo-location/table.d.ts +132 -0
  255. package/dist/db/schema/geo-location/table.d.ts.map +1 -0
  256. package/dist/db/schema/geo-location/types.d.ts +17 -0
  257. package/dist/db/schema/geo-location/types.d.ts.map +1 -0
  258. package/dist/db/schema/index.d.ts +85 -0
  259. package/dist/db/schema/index.d.ts.map +1 -0
  260. package/dist/db/schema/parser.d.ts +183 -0
  261. package/dist/db/schema/parser.d.ts.map +1 -0
  262. package/dist/db/schema/schemas.d.ts +383 -0
  263. package/dist/db/schema/schemas.d.ts.map +1 -0
  264. package/dist/db/schema/subject/index.d.ts +4 -0
  265. package/dist/db/schema/subject/index.d.ts.map +1 -0
  266. package/dist/db/schema/subject/registry.d.ts +141 -0
  267. package/dist/db/schema/subject/registry.d.ts.map +1 -0
  268. package/dist/db/schema/subject/schema.d.ts +56 -0
  269. package/dist/db/schema/subject/schema.d.ts.map +1 -0
  270. package/dist/db/schema/subject/table.d.ts +136 -0
  271. package/dist/db/schema/subject/table.d.ts.map +1 -0
  272. package/dist/db/schema/subject/types.d.ts +22 -0
  273. package/dist/db/schema/subject/types.d.ts.map +1 -0
  274. package/dist/db/schema/types.d.ts +136 -0
  275. package/dist/db/schema/types.d.ts.map +1 -0
  276. package/dist/db/utils/adapter-factory.d.ts +21 -0
  277. package/dist/db/utils/adapter-factory.d.ts.map +1 -0
  278. package/dist/db/utils/index.d.ts +10 -0
  279. package/dist/db/utils/index.d.ts.map +1 -0
  280. package/dist/db/utils.d.ts +4 -0
  281. package/dist/db/utils.d.ts.map +1 -0
  282. package/dist/error/codes.cjs +68 -0
  283. package/dist/error/codes.d.ts +175 -0
  284. package/dist/error/codes.d.ts.map +1 -0
  285. package/dist/error/codes.js +35 -0
  286. package/dist/error/error.d.ts +79 -0
  287. package/dist/error/error.d.ts.map +1 -0
  288. package/dist/error/index.cjs +172 -0
  289. package/dist/error/index.d.ts +9 -0
  290. package/dist/error/index.d.ts.map +1 -0
  291. package/dist/error/index.js +129 -0
  292. package/dist/error/logging.d.ts +25 -0
  293. package/dist/error/logging.d.ts.map +1 -0
  294. package/dist/error/pipeline.d.ts +19 -0
  295. package/dist/error/pipeline.d.ts.map +1 -0
  296. package/dist/error/recovery.d.ts +22 -0
  297. package/dist/error/recovery.d.ts.map +1 -0
  298. package/dist/error/results.d.ts +56 -0
  299. package/dist/error/results.d.ts.map +1 -0
  300. package/dist/index.cjs +4777 -0
  301. package/dist/index.d.ts +46 -0
  302. package/dist/index.d.ts.map +1 -0
  303. package/dist/index.js +4708 -0
  304. package/dist/init.d.ts +52 -0
  305. package/dist/init.d.ts.map +1 -0
  306. package/dist/init.test.d.ts +2 -0
  307. package/dist/init.test.d.ts.map +1 -0
  308. package/dist/integrations/index.cjs +281 -0
  309. package/dist/integrations/index.d.ts +7 -0
  310. package/dist/integrations/index.d.ts.map +1 -0
  311. package/dist/integrations/index.js +248 -0
  312. package/dist/integrations/next.cjs +131 -0
  313. package/dist/integrations/next.d.ts +29 -0
  314. package/dist/integrations/next.d.ts.map +1 -0
  315. package/dist/integrations/next.js +99 -0
  316. package/dist/integrations/react.cjs +182 -0
  317. package/dist/integrations/react.d.ts +257 -0
  318. package/dist/integrations/react.d.ts.map +1 -0
  319. package/dist/integrations/react.js +150 -0
  320. package/dist/plugins/geo/index.d.ts +2 -0
  321. package/dist/plugins/geo/index.d.ts.map +1 -0
  322. package/dist/test/utils.d.ts +65 -0
  323. package/dist/test/utils.d.ts.map +1 -0
  324. package/dist/types/api.d.ts +89 -0
  325. package/dist/types/api.d.ts.map +1 -0
  326. package/dist/types/context.d.ts +205 -0
  327. package/dist/types/context.d.ts.map +1 -0
  328. package/dist/types/helper.d.ts +78 -0
  329. package/dist/types/helper.d.ts.map +1 -0
  330. package/dist/types/index.cjs +19 -0
  331. package/dist/types/index.d.ts +6 -0
  332. package/dist/types/index.d.ts.map +1 -0
  333. package/dist/types/index.js +0 -0
  334. package/dist/types/options.d.ts +172 -0
  335. package/dist/types/options.d.ts.map +1 -0
  336. package/dist/types/plugins.d.ts +442 -0
  337. package/dist/types/plugins.d.ts.map +1 -0
  338. package/dist/utils/env.d.ts +77 -0
  339. package/dist/utils/env.d.ts.map +1 -0
  340. package/dist/utils/hide-metadata.d.ts +22 -0
  341. package/dist/utils/hide-metadata.d.ts.map +1 -0
  342. package/dist/utils/index.cjs +268 -0
  343. package/dist/utils/index.d.ts +18 -0
  344. package/dist/utils/index.d.ts.map +1 -0
  345. package/dist/utils/index.js +210 -0
  346. package/dist/utils/ip.d.ts +10 -0
  347. package/dist/utils/ip.d.ts.map +1 -0
  348. package/dist/utils/json.d.ts +14 -0
  349. package/dist/utils/json.d.ts.map +1 -0
  350. package/dist/utils/logger.d.ts +108 -0
  351. package/dist/utils/logger.d.ts.map +1 -0
  352. package/dist/utils/url.d.ts +87 -0
  353. package/dist/utils/url.d.ts.map +1 -0
  354. package/dist/utils/wildcard.d.ts +46 -0
  355. package/dist/utils/wildcard.d.ts.map +1 -0
  356. package/knip.json +37 -0
  357. package/package.json +146 -0
  358. package/rslib.config.ts +104 -0
  359. package/src/api/call.ts +177 -0
  360. package/src/api/index.ts +303 -0
  361. package/src/api/middlewares/index.ts +38 -0
  362. package/src/api/middlewares/origin-check.ts +260 -0
  363. package/src/api/middlewares/validate-context.ts +175 -0
  364. package/src/api/routes/__tests__/consent.test.ts +270 -0
  365. package/src/api/routes/__tests__/status.test.ts +36 -0
  366. package/src/api/routes/error.ts +130 -0
  367. package/src/api/routes/generate-consent-receipt.ts +244 -0
  368. package/src/api/routes/get-consent-history.ts +128 -0
  369. package/src/api/routes/get-consent-policy.ts +327 -0
  370. package/src/api/routes/get-consent.ts +230 -0
  371. package/src/api/routes/index.ts +12 -0
  372. package/src/api/routes/ok.ts +45 -0
  373. package/src/api/routes/set-consent.ts +328 -0
  374. package/src/api/routes/show-consent-banner.ts +149 -0
  375. package/src/api/routes/status.ts +62 -0
  376. package/src/api/routes/verify-consent.ts +272 -0
  377. package/src/api/routes/withdraw-consent.ts +293 -0
  378. package/src/api/to-endpoints.ts +371 -0
  379. package/src/client/index.ts +471 -0
  380. package/src/client/types.ts +458 -0
  381. package/src/core.test.ts +303 -0
  382. package/src/core.ts +267 -0
  383. package/src/db/adapters/drizzle-adapter/drizzle-adapter.ts +711 -0
  384. package/src/db/adapters/drizzle-adapter/index.ts +1 -0
  385. package/src/db/adapters/kysely-adapter/dialect.ts +192 -0
  386. package/src/db/adapters/kysely-adapter/index.ts +3 -0
  387. package/src/db/adapters/kysely-adapter/kysely-adapter.ts +1168 -0
  388. package/src/db/adapters/kysely-adapter/types.ts +307 -0
  389. package/src/db/adapters/memory-adapter/index.ts +1 -0
  390. package/src/db/adapters/memory-adapter/memory-adapter.ts +648 -0
  391. package/src/db/adapters/prisma-adapter/index.ts +1 -0
  392. package/src/db/adapters/prisma-adapter/prisma-adapter.ts +586 -0
  393. package/src/db/adapters/types.ts +203 -0
  394. package/src/db/adapters/utils.ts +51 -0
  395. package/src/db/core/fields/field-factory.ts +804 -0
  396. package/src/db/core/fields/field-inference.ts +298 -0
  397. package/src/db/core/fields/field-options-integration.ts +135 -0
  398. package/src/db/core/fields/field-types.ts +233 -0
  399. package/src/db/core/fields/id-generator.ts +57 -0
  400. package/src/db/core/fields/index.ts +56 -0
  401. package/src/db/core/fields/superjson-utils.ts +155 -0
  402. package/src/db/core/fields/zod-fields.ts +269 -0
  403. package/src/db/core/get-schema.ts +102 -0
  404. package/src/db/core/types.ts +52 -0
  405. package/src/db/create-registry.ts +31 -0
  406. package/src/db/hooks/create-hooks.ts +88 -0
  407. package/src/db/hooks/index.ts +39 -0
  408. package/src/db/hooks/types.ts +164 -0
  409. package/src/db/hooks/update-hooks.ts +91 -0
  410. package/src/db/hooks/update-many-hooks.ts +176 -0
  411. package/src/db/hooks/utils.ts +151 -0
  412. package/src/db/hooks/with-hooks-factory.ts +68 -0
  413. package/src/db/index.ts +32 -0
  414. package/src/db/migration/get-migration.ts +89 -0
  415. package/src/db/migration/get-schema/get-schema.ts +44 -0
  416. package/src/db/migration/get-schema/index.ts +20 -0
  417. package/src/db/migration/get-schema/process-fields.ts +66 -0
  418. package/src/db/migration/get-schema/process-tables.ts +68 -0
  419. package/src/db/migration/get-schema/types.ts +18 -0
  420. package/src/db/migration/index.ts +18 -0
  421. package/src/db/migration/migration-builders.ts +170 -0
  422. package/src/db/migration/migration-execution.ts +79 -0
  423. package/src/db/migration/schema-comparison.ts +216 -0
  424. package/src/db/migration/type-mapping.ts +255 -0
  425. package/src/db/migration/types.ts +46 -0
  426. package/src/db/schema/audit-log/index.ts +3 -0
  427. package/src/db/schema/audit-log/registry.ts +228 -0
  428. package/src/db/schema/audit-log/schema.ts +46 -0
  429. package/src/db/schema/audit-log/table.ts +185 -0
  430. package/src/db/schema/audit-log/types.ts +29 -0
  431. package/src/db/schema/consent/index.ts +3 -0
  432. package/src/db/schema/consent/registry.ts +381 -0
  433. package/src/db/schema/consent/schema.ts +65 -0
  434. package/src/db/schema/consent/table.ts +220 -0
  435. package/src/db/schema/consent/types.ts +39 -0
  436. package/src/db/schema/consent-geo-location/index.ts +3 -0
  437. package/src/db/schema/consent-geo-location/registry.ts +124 -0
  438. package/src/db/schema/consent-geo-location/schema.ts +51 -0
  439. package/src/db/schema/consent-geo-location/table.ts +169 -0
  440. package/src/db/schema/consent-geo-location/types.ts +21 -0
  441. package/src/db/schema/consent-policy/index.ts +3 -0
  442. package/src/db/schema/consent-policy/registry.ts +313 -0
  443. package/src/db/schema/consent-policy/schema.ts +47 -0
  444. package/src/db/schema/consent-policy/table.ts +141 -0
  445. package/src/db/schema/consent-policy/types.ts +28 -0
  446. package/src/db/schema/consent-purpose/index.ts +3 -0
  447. package/src/db/schema/consent-purpose/registry.ts +188 -0
  448. package/src/db/schema/consent-purpose/schema.ts +58 -0
  449. package/src/db/schema/consent-purpose/table.ts +154 -0
  450. package/src/db/schema/consent-purpose/types.ts +16 -0
  451. package/src/db/schema/consent-purpose-junction/index.ts +3 -0
  452. package/src/db/schema/consent-purpose-junction/registry.ts +189 -0
  453. package/src/db/schema/consent-purpose-junction/schema.ts +49 -0
  454. package/src/db/schema/consent-purpose-junction/table.ts +142 -0
  455. package/src/db/schema/consent-purpose-junction/types.ts +14 -0
  456. package/src/db/schema/consent-record/index.ts +3 -0
  457. package/src/db/schema/consent-record/registry.ts +209 -0
  458. package/src/db/schema/consent-record/schema.ts +42 -0
  459. package/src/db/schema/consent-record/table.ts +124 -0
  460. package/src/db/schema/consent-record/types.ts +21 -0
  461. package/src/db/schema/consent-withdrawal/index.ts +3 -0
  462. package/src/db/schema/consent-withdrawal/registry.ts +219 -0
  463. package/src/db/schema/consent-withdrawal/schema.ts +48 -0
  464. package/src/db/schema/consent-withdrawal/table.ts +181 -0
  465. package/src/db/schema/consent-withdrawal/types.ts +29 -0
  466. package/src/db/schema/definition.ts +196 -0
  467. package/src/db/schema/domain/index.ts +3 -0
  468. package/src/db/schema/domain/registry.ts +272 -0
  469. package/src/db/schema/domain/schema.ts +43 -0
  470. package/src/db/schema/domain/table.ts +137 -0
  471. package/src/db/schema/domain/types.ts +27 -0
  472. package/src/db/schema/geo-location/index.ts +3 -0
  473. package/src/db/schema/geo-location/registry.ts +159 -0
  474. package/src/db/schema/geo-location/schema.ts +45 -0
  475. package/src/db/schema/geo-location/table.ts +148 -0
  476. package/src/db/schema/geo-location/types.ts +18 -0
  477. package/src/db/schema/index.ts +96 -0
  478. package/src/db/schema/parser.ts +417 -0
  479. package/src/db/schema/schemas.ts +35 -0
  480. package/src/db/schema/subject/index.ts +3 -0
  481. package/src/db/schema/subject/registry.ts +371 -0
  482. package/src/db/schema/subject/schema.ts +41 -0
  483. package/src/db/schema/subject/table.ts +139 -0
  484. package/src/db/schema/subject/types.ts +22 -0
  485. package/src/db/schema/types.ts +154 -0
  486. package/src/db/utils/adapter-factory.ts +64 -0
  487. package/src/db/utils/index.ts +10 -0
  488. package/src/db/utils.ts +42 -0
  489. package/src/docs/ADVANCED_JSON_HANDLING.md +99 -0
  490. package/src/docs/neverthrow.md +171 -0
  491. package/src/error/codes.ts +201 -0
  492. package/src/error/error.ts +145 -0
  493. package/src/error/index.ts +23 -0
  494. package/src/error/logging.ts +52 -0
  495. package/src/error/pipeline.ts +57 -0
  496. package/src/error/recovery.ts +45 -0
  497. package/src/error/results.ts +100 -0
  498. package/src/index.ts +79 -0
  499. package/src/init.test.ts +235 -0
  500. package/src/init.ts +261 -0
  501. package/src/integrations/index.ts +10 -0
  502. package/src/integrations/next.ts +136 -0
  503. package/src/integrations/react.ts +567 -0
  504. package/src/plugins/geo/index.ts +563 -0
  505. package/src/test/utils.ts +244 -0
  506. package/src/types/api.ts +101 -0
  507. package/src/types/context.ts +235 -0
  508. package/src/types/helper.ts +87 -0
  509. package/src/types/index.ts +5 -0
  510. package/src/types/options.ts +189 -0
  511. package/src/types/plugins.ts +538 -0
  512. package/src/utils/env.ts +103 -0
  513. package/src/utils/hide-metadata.ts +21 -0
  514. package/src/utils/index.ts +17 -0
  515. package/src/utils/ip.ts +45 -0
  516. package/src/utils/json.ts +19 -0
  517. package/src/utils/logger.ts +252 -0
  518. package/src/utils/url.ts +194 -0
  519. package/src/utils/wildcard.ts +253 -0
  520. package/tsconfig.json +12 -0
  521. package/vitest.config.ts +14 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../../src/integrations/react.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AAEH;;;;;;;GAOG;AACH,KAAK,SAAS,CAAC,CAAC,IAAI,MAAM,CAAC,CAAC;AAE5B;;;;GAIG;AACH,UAAU,YAAY;IACrB;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IAEnB;;;;;OAKG;IACH,YAAY,EAAE,OAAO,GAAG,IAAI,CAAC;IAE7B;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;IAE5C;;OAEG;IACH,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;IAEpB;;OAEG;IACH,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B;AAED;;;;;GAKG;AACH,UAAU,cAAc;IACvB;;;;;OAKG;IACH,UAAU,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpE;;;;;OAKG;IACH,SAAS,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/B;;;;;OAKG;IACH,UAAU,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IAEhC;;;;OAIG;IACH,aAAa,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnC;;OAEG;IACH,UAAU,EAAE,MAAM,IAAI,CAAC;CACvB;AAED;;GAEG;AACH,KAAK,YAAY,GAAG,YAAY,GAAG,cAAc,CAAC;AAElD;;GAEG;AACH,UAAU,gBAAgB;IACzB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;;;;;;;;;;OAYG;IACH,kBAAkB,CAAC,EAAE;QACpB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;KACnC,CAAC;CACF;AAED;;;;;;GAMG;AACH,UAAU,QAAQ,CAAC,CAAC;IACnB;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC,CAAC;IAElB;;;OAGG;IACH,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;IAErE;;;;OAIG;IACH,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,KAAK,MAAM,IAAI,CAAC;CACxD;AAED;;GAEG;AACH,UAAU,wBAAwB;IACjC;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,YAAY,EAAE,OAAO,GAAG,IAAI,CAAC;IAE7B;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;CAC5C;AAED;;GAEG;AACH,UAAU,aAAa;IACtB;;OAEG;IACH,KAAK,EAAE,QAAQ,CAAC,YAAY,CAAC,CAAC;IAE9B;;OAEG;IACH,UAAU,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;IAEpC;;OAEG;IACH,qBAAqB,EAAE,CACtB,eAAe,EAAE,MAAM,GAAG,MAAM,EAAE,KAC9B,wBAAwB,CAAC;CAC9B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,wBAAgB,mBAAmB,CAClC,MAAM,GAAE,gBAAqB,GAC3B,aAAa,CA0Rf"}
@@ -0,0 +1,150 @@
1
+ function createConsentClient(config = {}) {
2
+ const { baseUrl = '/api/c15t', refreshInterval = 0, defaultPreferences = {
3
+ analytics: true,
4
+ marketing: true,
5
+ preferences: true
6
+ } } = config;
7
+ function createStore(createState) {
8
+ let state;
9
+ const listeners = new Set();
10
+ const setState = (partial)=>{
11
+ const nextState = 'function' == typeof partial ? {
12
+ ...state,
13
+ ...partial(state)
14
+ } : {
15
+ ...state,
16
+ ...partial
17
+ };
18
+ state = nextState;
19
+ for (const listener of listeners)listener(state);
20
+ };
21
+ const getState = ()=>state;
22
+ const subscribe = (listener)=>{
23
+ listeners.add(listener);
24
+ return ()=>listeners.delete(listener);
25
+ };
26
+ state = createState(setState, getState);
27
+ return {
28
+ getState,
29
+ setState,
30
+ subscribe
31
+ };
32
+ }
33
+ const consentStore = createStore((set, get)=>({
34
+ isLoading: true,
35
+ hasConsented: null,
36
+ preferences: null,
37
+ error: null,
38
+ lastUpdated: null,
39
+ setConsent: async (preferences)=>{
40
+ try {
41
+ set({
42
+ isLoading: true,
43
+ error: null
44
+ });
45
+ const response = await fetch(`${baseUrl}/set`, {
46
+ method: 'POST',
47
+ headers: {
48
+ 'Content-Type': 'application/json'
49
+ },
50
+ body: JSON.stringify({
51
+ preferences
52
+ }),
53
+ credentials: 'same-origin'
54
+ });
55
+ if (!response.ok) throw new Error(`Failed to set consent: ${response.statusText}`);
56
+ const result = await response.json();
57
+ set({
58
+ isLoading: false,
59
+ hasConsented: true,
60
+ preferences: result.preferences || preferences,
61
+ lastUpdated: Date.now()
62
+ });
63
+ return result;
64
+ } catch (error) {
65
+ set({
66
+ isLoading: false,
67
+ error: error instanceof Error ? error : new Error(String(error))
68
+ });
69
+ throw error;
70
+ }
71
+ },
72
+ acceptAll: async ()=>{
73
+ const cleanPreferences = Object.entries(defaultPreferences).filter(([_, value])=>void 0 !== value).reduce((acc, [key, value])=>{
74
+ acc[key] = value;
75
+ return acc;
76
+ }, {});
77
+ return await get().setConsent(cleanPreferences);
78
+ },
79
+ declineAll: async ()=>{
80
+ const minimalConsent = Object.keys(defaultPreferences).reduce((acc, key)=>{
81
+ acc[key] = false;
82
+ return acc;
83
+ }, {});
84
+ return await get().setConsent(minimalConsent);
85
+ },
86
+ refreshStatus: async ()=>{
87
+ try {
88
+ set({
89
+ isLoading: true,
90
+ error: null
91
+ });
92
+ const response = await fetch(`${baseUrl}/status`, {
93
+ credentials: 'same-origin'
94
+ });
95
+ if (!response.ok) throw new Error(`Failed to get consent status: ${response.statusText}`);
96
+ const { consented, preferences } = await response.json();
97
+ set({
98
+ isLoading: false,
99
+ hasConsented: consented,
100
+ preferences: preferences,
101
+ lastUpdated: Date.now()
102
+ });
103
+ } catch (error) {
104
+ set({
105
+ isLoading: false,
106
+ error: error instanceof Error ? error : new Error(String(error))
107
+ });
108
+ }
109
+ },
110
+ clearError: ()=>{
111
+ set({
112
+ error: null
113
+ });
114
+ }
115
+ }));
116
+ const useConsent = ()=>{
117
+ const storeState = consentStore.getState();
118
+ if ('undefined' == typeof window) return storeState;
119
+ setTimeout(()=>{
120
+ if (null === storeState.hasConsented && !storeState.isLoading) storeState.refreshStatus();
121
+ if (refreshInterval > 0) {
122
+ const intervalId = setInterval(()=>{
123
+ storeState.refreshStatus();
124
+ }, refreshInterval);
125
+ window.addEventListener('unload', ()=>clearInterval(intervalId));
126
+ }
127
+ }, 0);
128
+ return storeState;
129
+ };
130
+ const useConditionalContent = (requiredConsent)=>{
131
+ const store = useConsent();
132
+ const canShow = ()=>{
133
+ if (store.isLoading || !store.hasConsented || !store.preferences) return false;
134
+ if (Array.isArray(requiredConsent)) return requiredConsent.every((key)=>store.preferences?.[key]);
135
+ return !!store.preferences[requiredConsent];
136
+ };
137
+ return {
138
+ isLoading: store.isLoading,
139
+ hasConsented: store.hasConsented,
140
+ canShow: canShow(),
141
+ preferences: store.preferences
142
+ };
143
+ };
144
+ return {
145
+ store: consentStore,
146
+ useConsent,
147
+ useConditionalContent
148
+ };
149
+ }
150
+ export { createConsentClient };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/geo/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,65 @@
1
+ import type { C15TContext } from '../types';
2
+ /**
3
+ * Creates a mock context for testing API endpoints
4
+ *
5
+ * @returns A mock C15TContext with default values
6
+ */
7
+ export declare function createMockContext(): C15TContext;
8
+ /**
9
+ * Creates a mock request for testing
10
+ *
11
+ * @param url - The request URL
12
+ * @param method - The HTTP method
13
+ * @param body - Optional request body
14
+ * @returns A mock Request object
15
+ */
16
+ export declare function createMockRequest(url: string, method?: string, body?: unknown): Request;
17
+ /**
18
+ * Creates a mock response for testing
19
+ *
20
+ * @param status - The HTTP status code
21
+ * @param body - The response body
22
+ * @returns A mock Response object
23
+ */
24
+ export declare function createMockResponse(status: number, body: unknown): Response;
25
+ /**
26
+ * Helper to create a mock consent object
27
+ *
28
+ * @param overrides - Optional overrides for the default consent object
29
+ * @returns A mock consent object
30
+ */
31
+ export declare function createMockConsent(overrides?: Partial<{
32
+ subjectId: string;
33
+ domain: string;
34
+ preferences: Record<string, string>;
35
+ status: string;
36
+ givenAt: string;
37
+ }>): {
38
+ subjectId: string;
39
+ domain: string;
40
+ preferences: Record<string, string>;
41
+ status: string;
42
+ givenAt: string;
43
+ };
44
+ /**
45
+ * Helper to create a mock consent policy
46
+ *
47
+ * @param overrides - Optional overrides for the default policy object
48
+ * @returns A mock consent policy object
49
+ */
50
+ export declare function createMockPolicy(overrides?: Partial<{
51
+ id: string;
52
+ domain: string;
53
+ version: string;
54
+ content: string;
55
+ availablePreferences: Record<string, string[]>;
56
+ createdAt: string;
57
+ }>): {
58
+ id: string;
59
+ domain: string;
60
+ version: string;
61
+ content: string;
62
+ availablePreferences: Record<string, string[]>;
63
+ createdAt: string;
64
+ };
65
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/test/utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C;;;;GAIG;AACH,wBAAgB,iBAAiB,IAAI,WAAW,CAyI/C;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAChC,GAAG,EAAE,MAAM,EACX,MAAM,SAAQ,EACd,IAAI,CAAC,EAAE,OAAO,GACZ,OAAO,CAQT;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,GAAG,QAAQ,CAO1E;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAChC,SAAS,GAAE,OAAO,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CAChB,CAAM;eALK,MAAM;YACT,MAAM;iBACD,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;YAC3B,MAAM;aACL,MAAM;EAehB;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAC/B,SAAS,GAAE,OAAO,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,oBAAoB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IAC/C,SAAS,EAAE,MAAM,CAAC;CAClB,CAAM;QANF,MAAM;YACF,MAAM;aACL,MAAM;aACN,MAAM;0BACO,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC;eACnC,MAAM;EAgBlB"}
@@ -0,0 +1,89 @@
1
+ /**
2
+ * API Types for c15t
3
+ *
4
+ * Definitions for API routes, request handlers, and endpoint configuration
5
+ */
6
+ import type { Endpoint } from 'better-call';
7
+ /**
8
+ * Filter action methods from an object type
9
+ *
10
+ * This type utility extracts only the method properties from an object type,
11
+ * useful for API type inference.
12
+ *
13
+ * @typeParam TObject - The object type to filter action methods from
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * interface APIHandlers {
18
+ * getSubject: (id: string) => Promise<Subject>;
19
+ * userData: Subject;
20
+ * updateSubject: (subject: Subject) => Promise<void>;
21
+ * }
22
+ *
23
+ * // ActionKeys will be 'getSubject' | 'updateSubject'
24
+ * type ActionKeys = FilterActions<APIHandlers>[keyof FilterActions<APIHandlers>];
25
+ * ```
26
+ */
27
+ export type FilterActions<TObject extends Record<string, unknown>> = {
28
+ [Key in keyof TObject]: TObject[Key] extends (...args: unknown[]) => unknown ? Key : never;
29
+ };
30
+ /**
31
+ * Base API path template literal for c15t endpoints
32
+ *
33
+ * This type defines the base path for all API routes in the c15t system.
34
+ * Used as a foundation for building type-safe API route paths.
35
+ *
36
+ * @see ApiPath for complete path patterns
37
+ */
38
+ export type ApiPathBase = `/api/c15t`;
39
+ /**
40
+ * API route path with strict type checking
41
+ *
42
+ * This type union represents all valid API paths in the system.
43
+ * It enforces type safety when defining routes or middlewares to
44
+ * prevent typos and ensure consistency.
45
+ *
46
+ * @example
47
+ * ```ts
48
+ * // Valid API path
49
+ * const consentPath: ApiPath = '/api/c15t/consent';
50
+ *
51
+ * // Invalid - would cause a type error
52
+ * const invalidPath: ApiPath = '/api/c15t/unknown-endpoint';
53
+ * ```
54
+ */
55
+ export type ApiPath = `${ApiPathBase}` | `${ApiPathBase}/consent` | `${ApiPathBase}/consent/:id` | `${ApiPathBase}/jurisdictions` | `${ApiPathBase}/jurisdictions/:code` | `${ApiPathBase}/plugins/:id`;
56
+ /**
57
+ * Strongly-typed middleware configuration
58
+ *
59
+ * Defines the structure for API middleware registrations,
60
+ * ensuring that both the path and middleware function are properly typed.
61
+ *
62
+ * @see ApiPath for valid path patterns
63
+ *
64
+ * @example
65
+ * ```ts
66
+ * // Register a middleware for the consent endpoint
67
+ * const authMiddleware: ApiMiddleware = {
68
+ * path: '/api/c15t/consent',
69
+ * middleware: async (ctx, next) => {
70
+ * // Verify authentication
71
+ * if (!ctx.request.headers.get('Authorization')) {
72
+ * return ctx.json({ error: 'Unauthorized' }, { status: 401 });
73
+ * }
74
+ * return next();
75
+ * }
76
+ * };
77
+ * ```
78
+ */
79
+ export interface ApiMiddleware {
80
+ /**
81
+ * The API path to apply this middleware to
82
+ */
83
+ path: ApiPath;
84
+ /**
85
+ * The middleware function to execute
86
+ */
87
+ middleware: Endpoint;
88
+ }
89
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/types/api.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE5C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,MAAM,aAAa,CAAC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI;KACnE,GAAG,IAAI,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,GACzE,GAAG,GACH,KAAK;CACR,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,MAAM,WAAW,GAAG,WAAW,CAAC;AAEtC;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,OAAO,GAChB,GAAG,WAAW,EAAE,GAChB,GAAG,WAAW,UAAU,GACxB,GAAG,WAAW,cAAc,GAC5B,GAAG,WAAW,gBAAgB,GAC9B,GAAG,WAAW,sBAAsB,GACpC,GAAG,WAAW,cAAc,CAAC;AAEhC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,WAAW,aAAa;IAC7B;;OAEG;IACH,IAAI,EAAE,OAAO,CAAC;IAEd;;OAEG;IACH,UAAU,EAAE,QAAQ,CAAC;CACrB"}
@@ -0,0 +1,205 @@
1
+ import type { EndpointContext, EndpointOptions, InputContext } from 'better-call';
2
+ import type { getConsentTables } from '../db';
3
+ import type { Adapter } from '../db/adapters/types';
4
+ import type { EntityName } from '../db/core/types';
5
+ import type { createRegistry } from '../db/create-registry';
6
+ import type { DatabaseHook } from '../db/hooks/types';
7
+ import type { createLogger } from '../utils';
8
+ import type { C15TOptions } from './index';
9
+ /**
10
+ * Extended endpoint context for hooks
11
+ *
12
+ * This type extends the standard endpoint context with additional properties
13
+ * specific to c15t hooks, allowing hooks to access the complete c15t context.
14
+ *
15
+ * @typeParam TOptions - Endpoint configuration options type
16
+ *
17
+ * @see GenericEndpointContext for a simpler context type without input context inclusion
18
+ */
19
+ export type HookEndpointContext<TOptions extends EndpointOptions = EndpointOptions> = EndpointContext<string, TOptions> & Omit<InputContext<string, TOptions>, 'method'> & {
20
+ /**
21
+ * The c15t context with possible hook-specific extensions
22
+ */
23
+ context: C15TContext & {
24
+ /**
25
+ * Value returned by the endpoint handler, available in 'after' hooks
26
+ */
27
+ returned?: unknown;
28
+ /**
29
+ * Response headers, available in 'after' hooks
30
+ */
31
+ responseHeaders?: Headers;
32
+ };
33
+ /**
34
+ * Request headers
35
+ */
36
+ headers?: Headers;
37
+ };
38
+ /**
39
+ * Standard endpoint context for c15t handlers
40
+ *
41
+ * A simplified context type that includes the c15t context,
42
+ * used by endpoint handlers throughout the system.
43
+ *
44
+ * @typeParam TOptions - Endpoint configuration options type
45
+ */
46
+ export type GenericEndpointContext<TOptions extends EndpointOptions = EndpointOptions> = EndpointContext<string, TOptions> & {
47
+ /**
48
+ * The c15t application context
49
+ */
50
+ context: C15TContext;
51
+ };
52
+ /**
53
+ * Base shared context for all c15t components
54
+ *
55
+ * Contains the minimal set of properties needed by all components
56
+ * in the c15t system, including configuration options and logging.
57
+ */
58
+ export interface BaseContext {
59
+ /**
60
+ * Configuration options for the c15t system
61
+ */
62
+ options: C15TOptions;
63
+ /**
64
+ * Logger instance for recording events and errors
65
+ */
66
+ logger: ReturnType<typeof createLogger>;
67
+ }
68
+ /**
69
+ * Registry-specific context for database adapters
70
+ *
71
+ * Extends the base context with properties needed for
72
+ * database operations and entity management.
73
+ */
74
+ export interface RegistryContext extends BaseContext {
75
+ /**
76
+ * Database adapter instance
77
+ */
78
+ adapter: Adapter;
79
+ /**
80
+ * Database lifecycle hooks
81
+ */
82
+ hooks: DatabaseHook[];
83
+ /**
84
+ * Function to generate unique IDs for entities
85
+ *
86
+ * @param options - Options for ID generation including entity type and length
87
+ * @returns A unique ID string
88
+ */
89
+ generateId: (options: {
90
+ model: EntityName;
91
+ size?: number;
92
+ }) => string;
93
+ }
94
+ /**
95
+ * Base context without plugin-specific extensions
96
+ *
97
+ * This interface defines the core context properties available to all
98
+ * components in the c15t system before plugin extensions are applied.
99
+ */
100
+ export interface BaseC15TContext {
101
+ /**
102
+ * Application name displayed in consent dialogs
103
+ */
104
+ appName: string;
105
+ /**
106
+ * Configuration options for the c15t system
107
+ */
108
+ options: C15TOptions;
109
+ /**
110
+ * List of origins that are trusted for CORS and CSRF protection
111
+ */
112
+ trustedOrigins: string[];
113
+ /**
114
+ * Base URL for API requests
115
+ */
116
+ baseURL: string;
117
+ /**
118
+ * Secret key used for signing cookies and tokens
119
+ */
120
+ secret: string;
121
+ /**
122
+ * Logger instance for recording events and errors
123
+ */
124
+ logger: ReturnType<typeof createLogger>;
125
+ /**
126
+ * Function to generate unique IDs for entities
127
+ *
128
+ * @param options - Options for ID generation including entity type and length
129
+ * @returns A unique ID string
130
+ */
131
+ generateId: (options: {
132
+ model: EntityName;
133
+ size?: number;
134
+ }) => string;
135
+ /**
136
+ * Database adapter instance
137
+ */
138
+ adapter: Adapter;
139
+ /**
140
+ * Entity registry for database operations
141
+ */
142
+ registry: ReturnType<typeof createRegistry>;
143
+ /**
144
+ * Database tables for the consent system
145
+ */
146
+ tables: ReturnType<typeof getConsentTables>;
147
+ /**
148
+ * IP address of the client
149
+ */
150
+ ipAddress?: string | null;
151
+ /**
152
+ * Subject agent of the client
153
+ */
154
+ userAgent?: string | null;
155
+ }
156
+ /**
157
+ * Extended context type with plugin extensions
158
+ *
159
+ * This type extends the base context with plugin-specific properties,
160
+ * allowing plugins to add their own functionality to the context.
161
+ *
162
+ * @typeParam TPluginContext - Record of plugin-specific context extensions
163
+ *
164
+ * @example
165
+ * ```ts
166
+ * // Plugin extending the context with analytics capabilities
167
+ * interface AnalyticsContext {
168
+ * analytics: {
169
+ * trackEvent: (event: string, data: unknown) => void;
170
+ * getSessionId: () => string;
171
+ * }
172
+ * }
173
+ *
174
+ * // Using the extended context in a component
175
+ * function handleConsent(ctx: C15TContext<AnalyticsContext>) {
176
+ * // Base context is available
177
+ * const { baseURL, logger } = ctx;
178
+ *
179
+ * // Plugin context is also available
180
+ * ctx.analytics.trackEvent('consent_given', { timestamp: Date.now() });
181
+ * }
182
+ * ```
183
+ */
184
+ export type C15TContext<TPluginContext extends Record<string, unknown> = Record<string, unknown>> = BaseC15TContext & TPluginContext;
185
+ /**
186
+ * Helper to extract context with a specific plugin's context type
187
+ *
188
+ * This utility type makes it easier to work with context that has been
189
+ * extended by a specific plugin, providing proper type information.
190
+ *
191
+ * @typeParam TPluginName - The name of the plugin providing the context extension
192
+ * @typeParam TPluginContext - The type of the context extension provided by the plugin
193
+ *
194
+ * @example
195
+ * ```ts
196
+ * // Working with a specific plugin's context
197
+ * function useGeoPlugin(ctx: ContextWithPlugin<'geo', GeoPluginContext>) {
198
+ * // TypeScript knows that ctx.geo exists and has the right type
199
+ * const country = ctx.geo.getCurrentCountry();
200
+ * return country;
201
+ * }
202
+ * ```
203
+ */
204
+ export type ContextWithPlugin<TPluginName extends string, TPluginContext extends Record<string, unknown>> = C15TContext<Record<TPluginName, TPluginContext>>;
205
+ //# sourceMappingURL=context.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/types/context.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,78 @@
1
+ /**
2
+ * Represents a string literal type
3
+ *
4
+ * This type ensures that only string literals are accepted, not general string types.
5
+ * It's useful for ensuring type safety with specific string values.
6
+ *
7
+ * @example
8
+ * ```ts
9
+ * // Function that only accepts literal strings, not string variables
10
+ * function doSomething(value: LiteralString) {
11
+ * // Implementation
12
+ * }
13
+ *
14
+ * // Valid usage:
15
+ * doSomething('specific-value');
16
+ *
17
+ * // Invalid usage:
18
+ * const dynamicString = getStringFromSomewhere();
19
+ * doSomething(dynamicString); // Type error
20
+ * ```
21
+ */
22
+ export type LiteralString = '' | (string & Record<never, never>);
23
+ /**
24
+ * Extracts all required keys from an object type
25
+ *
26
+ * This utility type identifies which keys in an object type are required
27
+ * (not optional or undefined). Useful for type manipulation in complex types.
28
+ *
29
+ * @typeParam BaseType - The object type to extract required keys from
30
+ *
31
+ * @example
32
+ * ```ts
33
+ * interface Subject {
34
+ * id: number;
35
+ * name: string;
36
+ * email?: string;
37
+ * }
38
+ *
39
+ * // RequiredKeysOf<Subject> will be 'id' | 'name'
40
+ * type RequiredsubjectFields = RequiredKeysOf<Subject>;
41
+ * ```
42
+ */
43
+ export type RequiredKeysOf<BaseType extends object> = Exclude<{
44
+ [Key in keyof BaseType]: BaseType extends Record<Key, BaseType[Key]> ? Key : never;
45
+ }[keyof BaseType], undefined>;
46
+ /**
47
+ * Makes all properties in an object type optional recursively
48
+ *
49
+ * Unlike TypeScript's built-in Partial<T>, this type makes nested object
50
+ * properties optional as well. Functions are preserved as-is.
51
+ *
52
+ * @typeParam T - The type to make deeply partial
53
+ */
54
+ export type DeepPartial<T> = T extends (...args: unknown[]) => unknown ? T : T extends object ? {
55
+ [K in keyof T]?: DeepPartial<T[K]>;
56
+ } : T;
57
+ /**
58
+ * Recursively expands object types for better IntelliSense
59
+ *
60
+ * This utility improves type display in editors by expanding nested type
61
+ * definitions. Particularly useful when working with complex types
62
+ * created through composition or manipulation.
63
+ *
64
+ * @typeParam T - The type to expand recursively
65
+ *
66
+ * @example
67
+ * ```ts
68
+ * // Before expansion: Intersection of multiple types
69
+ * type ComplexType = TypeA & TypeB & { extraProp: string };
70
+ *
71
+ * // After expansion: Flat object type with all properties visible
72
+ * type ExpandedType = ExpandRecursively<ComplexType>;
73
+ * ```
74
+ */
75
+ export type ExpandRecursively<T> = T extends infer O ? {
76
+ [K in keyof O]: O[K];
77
+ } : never;
78
+ //# sourceMappingURL=helper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helper.d.ts","sourceRoot":"","sources":["../../src/types/helper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,MAAM,aAAa,GAAG,EAAE,GAAG,CAAC,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;AAEjE;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,MAAM,cAAc,CAAC,QAAQ,SAAS,MAAM,IAAI,OAAO,CAC5D;KACE,GAAG,IAAI,MAAM,QAAQ,GAAG,QAAQ,SAAS,MAAM,CAAC,GAAG,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,GACjE,GAAG,GACH,KAAK;CACR,CAAC,MAAM,QAAQ,CAAC,EACjB,SAAS,CACT,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,GACnE,CAAC,GACD,CAAC,SAAS,MAAM,GACf;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GACtC,CAAC,CAAC;AAEN;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,MAAM,iBAAiB,CAAC,CAAC,IAAI,CAAC,SAAS,MAAM,CAAC,GACjD;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAE,GACxB,KAAK,CAAC"}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.r = function(exports1) {
5
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
6
+ value: 'Module'
7
+ });
8
+ Object.defineProperty(exports1, '__esModule', {
9
+ value: true
10
+ });
11
+ };
12
+ })();
13
+ var __webpack_exports__ = {};
14
+ __webpack_require__.r(__webpack_exports__);
15
+ var __webpack_export_target__ = exports;
16
+ for(var __webpack_i__ in __webpack_exports__)__webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
17
+ if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
18
+ value: true
19
+ });
@@ -0,0 +1,6 @@
1
+ export type * from './api';
2
+ export type * from './context';
3
+ export type * from './helper';
4
+ export type * from './options';
5
+ export type * from './plugins';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,OAAO,CAAC;AAC3B,mBAAmB,WAAW,CAAC;AAC/B,mBAAmB,UAAU,CAAC;AAC9B,mBAAmB,WAAW,CAAC;AAC/B,mBAAmB,WAAW,CAAC"}
File without changes