@tinyrack/issuary-server 0.26.0 → 0.27.0

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 (386) hide show
  1. package/dist/entities/terms-content.entity.d.ts +9 -0
  2. package/dist/entities/terms-content.entity.d.ts.map +1 -1
  3. package/dist/entities/terms.entity.d.ts +9 -0
  4. package/dist/entities/terms.entity.d.ts.map +1 -1
  5. package/dist/entities/terms.entity.js +4 -0
  6. package/dist/entities/terms.entity.js.map +1 -1
  7. package/dist/entities/user-terms-consent.entity.d.ts +9 -0
  8. package/dist/entities/user-terms-consent.entity.d.ts.map +1 -1
  9. package/dist/entrypoints/app.d.ts +598 -3
  10. package/dist/entrypoints/app.d.ts.map +1 -1
  11. package/dist/entrypoints/database/postgres/compiled-functions.d.ts +19 -16
  12. package/dist/entrypoints/database/postgres/compiled-functions.d.ts.map +1 -1
  13. package/dist/entrypoints/database/postgres/compiled-functions.js +133 -76
  14. package/dist/entrypoints/database/postgres/compiled-functions.js.map +1 -1
  15. package/dist/entrypoints/database/sqlite/compiled-functions.d.ts +19 -16
  16. package/dist/entrypoints/database/sqlite/compiled-functions.d.ts.map +1 -1
  17. package/dist/entrypoints/database/sqlite/compiled-functions.js +133 -76
  18. package/dist/entrypoints/database/sqlite/compiled-functions.js.map +1 -1
  19. package/dist/lib/config/branding.d.ts +5 -0
  20. package/dist/lib/config/branding.d.ts.map +1 -1
  21. package/dist/lib/config/branding.js +23 -1
  22. package/dist/lib/config/branding.js.map +1 -1
  23. package/dist/lib/config/resolved.d.ts +3 -0
  24. package/dist/lib/config/resolved.d.ts.map +1 -1
  25. package/dist/lib/interpolate-html.d.ts +3 -3
  26. package/dist/lib/interpolate-html.js +3 -3
  27. package/dist/lib/interpolate-html.js.map +1 -1
  28. package/dist/migrations/postgres/Migration20260827090000_archive_terms.d.ts +6 -0
  29. package/dist/migrations/postgres/Migration20260827090000_archive_terms.d.ts.map +1 -0
  30. package/dist/migrations/postgres/Migration20260827090000_archive_terms.js +12 -0
  31. package/dist/migrations/postgres/Migration20260827090000_archive_terms.js.map +1 -0
  32. package/dist/migrations/postgres/index.d.ts.map +1 -1
  33. package/dist/migrations/postgres/index.js +2 -0
  34. package/dist/migrations/postgres/index.js.map +1 -1
  35. package/dist/migrations/sqlite/Migration20260827090000_archive_terms.d.ts +6 -0
  36. package/dist/migrations/sqlite/Migration20260827090000_archive_terms.d.ts.map +1 -0
  37. package/dist/migrations/sqlite/Migration20260827090000_archive_terms.js +12 -0
  38. package/dist/migrations/sqlite/Migration20260827090000_archive_terms.js.map +1 -0
  39. package/dist/migrations/sqlite/index.d.ts.map +1 -1
  40. package/dist/migrations/sqlite/index.js +2 -0
  41. package/dist/migrations/sqlite/index.js.map +1 -1
  42. package/dist/repositories/terms.repository.d.ts.map +1 -1
  43. package/dist/repositories/terms.repository.js +1 -1
  44. package/dist/repositories/terms.repository.js.map +1 -1
  45. package/dist/routes/api/admin/console/index.d.ts +523 -0
  46. package/dist/routes/api/admin/console/index.d.ts.map +1 -0
  47. package/dist/routes/api/admin/console/index.js +212 -0
  48. package/dist/routes/api/admin/console/index.js.map +1 -0
  49. package/dist/routes/api/admin/index.d.ts +584 -0
  50. package/dist/routes/api/admin/index.d.ts.map +1 -1
  51. package/dist/routes/api/admin/index.js +3 -1
  52. package/dist/routes/api/admin/index.js.map +1 -1
  53. package/dist/routes/api/admin/users/index.d.ts +64 -0
  54. package/dist/routes/api/admin/users/index.d.ts.map +1 -1
  55. package/dist/routes/api/admin/users/index.js +47 -0
  56. package/dist/routes/api/admin/users/index.js.map +1 -1
  57. package/dist/routes/api/config/get.d.ts +10 -3
  58. package/dist/routes/api/config/get.d.ts.map +1 -1
  59. package/dist/routes/api/config/get.js +3 -0
  60. package/dist/routes/api/config/get.js.map +1 -1
  61. package/dist/routes/api/config/index.d.ts +10 -3
  62. package/dist/routes/api/config/index.d.ts.map +1 -1
  63. package/dist/routes/api/index.d.ts +594 -3
  64. package/dist/routes/api/index.d.ts.map +1 -1
  65. package/dist/routes/index.d.ts +594 -3
  66. package/dist/routes/index.d.ts.map +1 -1
  67. package/dist/schemas/response.d.ts +4 -1
  68. package/dist/schemas/response.d.ts.map +1 -1
  69. package/dist/schemas/response.js +11 -2
  70. package/dist/schemas/response.js.map +1 -1
  71. package/dist/services/admin-console.service.d.ts +407 -0
  72. package/dist/services/admin-console.service.d.ts.map +1 -0
  73. package/dist/services/admin-console.service.js +377 -0
  74. package/dist/services/admin-console.service.js.map +1 -0
  75. package/dist/services/container.d.ts +5 -0
  76. package/dist/services/container.d.ts.map +1 -1
  77. package/dist/services/container.js +3 -0
  78. package/dist/services/container.js.map +1 -1
  79. package/dist/services/user.service.d.ts +21 -0
  80. package/dist/services/user.service.d.ts.map +1 -1
  81. package/dist/services/user.service.js +65 -1
  82. package/dist/services/user.service.js.map +1 -1
  83. package/package.json +1 -1
  84. package/public/assets/2fa-BowFczF7.js +2 -0
  85. package/public/assets/2fa-BowFczF7.js.map +1 -0
  86. package/public/assets/2fa-C_pA-n2i.js +2 -0
  87. package/public/assets/{2fa-DFTcWEMb.js.map → 2fa-C_pA-n2i.js.map} +1 -1
  88. package/public/assets/2fa-Cpfhakvn.js +2 -0
  89. package/public/assets/{2fa-huNZDYU9.js.map → 2fa-Cpfhakvn.js.map} +1 -1
  90. package/public/assets/2fa-o1a13VHx.js +2 -0
  91. package/public/assets/2fa-o1a13VHx.js.map +1 -0
  92. package/public/assets/FieldControl-ShLuCjvG.js +2 -0
  93. package/public/assets/FieldControl-ShLuCjvG.js.map +1 -0
  94. package/public/assets/Separator-C6MmGAmP.js +2 -0
  95. package/public/assets/Separator-C6MmGAmP.js.map +1 -0
  96. package/public/assets/admin-_jFLs8Ve.js +2 -0
  97. package/public/assets/admin-_jFLs8Ve.js.map +1 -0
  98. package/public/assets/admin-shell-B91U4-Ro.js +2 -0
  99. package/public/assets/admin-shell-B91U4-Ro.js.map +1 -0
  100. package/public/assets/alert-D3aaK-_3.js +2 -0
  101. package/public/assets/alert-D3aaK-_3.js.map +1 -0
  102. package/public/assets/alert-kRxM1xsM.js +2 -0
  103. package/public/assets/alert-kRxM1xsM.js.map +1 -0
  104. package/public/assets/auth-choice-row-h4heOMHs.js +2 -0
  105. package/public/assets/auth-choice-row-h4heOMHs.js.map +1 -0
  106. package/public/assets/auth-field-BpJ4AHtU.js +2 -0
  107. package/public/assets/{auth-field-CWyXGKoC.js.map → auth-field-BpJ4AHtU.js.map} +1 -1
  108. package/public/assets/auth-footer-Du6S-oDG.js +2 -0
  109. package/public/assets/auth-footer-Du6S-oDG.js.map +1 -0
  110. package/public/assets/auth-layout-BdRRr0vT.js +2 -0
  111. package/public/assets/auth-layout-BdRRr0vT.js.map +1 -0
  112. package/public/assets/auth-page-header-ChaCNNrn.js +2 -0
  113. package/public/assets/{auth-page-header-DgGAaIiP.js.map → auth-page-header-ChaCNNrn.js.map} +1 -1
  114. package/public/assets/authorization-context-banner-zVxGX5e8.js +2 -0
  115. package/public/assets/{authorization-context-banner-DznMDPOX.js.map → authorization-context-banner-zVxGX5e8.js.map} +1 -1
  116. package/public/assets/avatar-BxTPQIDp.js +2 -0
  117. package/public/assets/{avatar-D-FRGa1m.js.map → avatar-BxTPQIDp.js.map} +1 -1
  118. package/public/assets/badge-B8D0Q2qq.js +2 -0
  119. package/public/assets/{badge-CsOfUji0.js.map → badge-B8D0Q2qq.js.map} +1 -1
  120. package/public/assets/checkbox-DTPGfvmq.js +2 -0
  121. package/public/assets/{checkbox-C90dDDza.js.map → checkbox-DTPGfvmq.js.map} +1 -1
  122. package/public/assets/{circle-check-6QTLhwM_.js → circle-check-Cnzuu7xR.js} +2 -2
  123. package/public/assets/{circle-check-6QTLhwM_.js.map → circle-check-Cnzuu7xR.js.map} +1 -1
  124. package/public/assets/clients-DLqy7K3N.js +5 -0
  125. package/public/assets/clients-DLqy7K3N.js.map +1 -0
  126. package/public/assets/config-C18-l7z7.js +2 -0
  127. package/public/assets/config-C18-l7z7.js.map +1 -0
  128. package/public/assets/{consent-RtCi_85E.js → consent-BWniDzI3.js} +2 -2
  129. package/public/assets/{consent-RtCi_85E.js.map → consent-BWniDzI3.js.map} +1 -1
  130. package/public/assets/consent-r_tX8DTb.js +2 -0
  131. package/public/assets/{consent-B9sQEyO8.js.map → consent-r_tX8DTb.js.map} +1 -1
  132. package/public/assets/{createLucideIcon-BPpAIXR_.js → createLucideIcon-D-yizrWN.js} +2 -2
  133. package/public/assets/{createLucideIcon-BPpAIXR_.js.map → createLucideIcon-D-yizrWN.js.map} +1 -1
  134. package/public/assets/design-system-rich-text-B3NzIRoJ.js +2 -0
  135. package/public/assets/design-system-rich-text-B3NzIRoJ.js.map +1 -0
  136. package/public/assets/email-Bx9JlWp3.js +2 -0
  137. package/public/assets/email-Bx9JlWp3.js.map +1 -0
  138. package/public/assets/email-Cpfhakvn.js +2 -0
  139. package/public/assets/email-Cpfhakvn.js.map +1 -0
  140. package/public/assets/error-DDY8m_Px.js +2 -0
  141. package/public/assets/error-DDY8m_Px.js.map +1 -0
  142. package/public/assets/field-CsrUbl__.js +3 -0
  143. package/public/assets/field-CsrUbl__.js.map +1 -0
  144. package/public/assets/{fingerprint-pattern-DP62Vk8x.js → fingerprint-pattern-BwUoN1_w.js} +2 -2
  145. package/public/assets/{fingerprint-pattern-DP62Vk8x.js.map → fingerprint-pattern-BwUoN1_w.js.map} +1 -1
  146. package/public/assets/forgot-Cpfhakvn.js +2 -0
  147. package/public/assets/forgot-Cpfhakvn.js.map +1 -0
  148. package/public/assets/forgot-u52JMu6e.js +2 -0
  149. package/public/assets/forgot-u52JMu6e.js.map +1 -0
  150. package/public/assets/form-sJw-V9wb.js +2 -0
  151. package/public/assets/form-sJw-V9wb.js.map +1 -0
  152. package/public/assets/index-8mX6CKcW.css +2 -0
  153. package/public/assets/index-lTEyHSus.js +11 -0
  154. package/public/assets/index-lTEyHSus.js.map +1 -0
  155. package/public/assets/initial-avatar-WMjxW3Zz.js +2 -0
  156. package/public/assets/initial-avatar-WMjxW3Zz.js.map +1 -0
  157. package/public/assets/input-QvBxPgy5.js +2 -0
  158. package/public/assets/{input-CxVeC8Pn.js.map → input-QvBxPgy5.js.map} +1 -1
  159. package/public/assets/{key-round-CdvHb8vT.js → key-round-BxWppK6h.js} +2 -2
  160. package/public/assets/{key-round-CdvHb8vT.js.map → key-round-BxWppK6h.js.map} +1 -1
  161. package/public/assets/labeled-separator-DdkyYDWH.js +2 -0
  162. package/public/assets/labeled-separator-DdkyYDWH.js.map +1 -0
  163. package/public/assets/link-BHmn75Zo.js +2 -0
  164. package/public/assets/{link-C-WdTj3F.js.map → link-BHmn75Zo.js.map} +1 -1
  165. package/public/assets/{lock-7NRyvXBS.js → lock-8wpR2C78.js} +2 -2
  166. package/public/assets/{lock-7NRyvXBS.js.map → lock-8wpR2C78.js.map} +1 -1
  167. package/public/assets/login-Cpfhakvn.js +2 -0
  168. package/public/assets/login-Cpfhakvn.js.map +1 -0
  169. package/public/assets/login-DRcHjJ2-.js +2 -0
  170. package/public/assets/login-DRcHjJ2-.js.map +1 -0
  171. package/public/assets/logout-Dphj1d_0.js +2 -0
  172. package/public/assets/logout-Dphj1d_0.js.map +1 -0
  173. package/public/assets/{mail-D0B_1Dzd.js → mail-DVP_XMUi.js} +2 -2
  174. package/public/assets/{mail-D0B_1Dzd.js.map → mail-DVP_XMUi.js.map} +1 -1
  175. package/public/assets/modal-JuaLVSyx.js +2 -0
  176. package/public/assets/modal-JuaLVSyx.js.map +1 -0
  177. package/public/assets/mutationOptions-Cv_vJkJn.js +2 -0
  178. package/public/assets/{mutationOptions-DyYFUbyn.js.map → mutationOptions-Cv_vJkJn.js.map} +1 -1
  179. package/public/assets/passkey-CObBlfKK.js +2 -0
  180. package/public/assets/passkey-CObBlfKK.js.map +1 -0
  181. package/public/assets/{passkey-J1qnYp9A.js → passkey-CWTjw19S.js} +2 -2
  182. package/public/assets/{passkey-J1qnYp9A.js.map → passkey-CWTjw19S.js.map} +1 -1
  183. package/public/assets/passkey-CavITajY.js +2 -0
  184. package/public/assets/passkey-CavITajY.js.map +1 -0
  185. package/public/assets/passkey-Cpfhakvn.js +2 -0
  186. package/public/assets/passkey-Cpfhakvn.js.map +1 -0
  187. package/public/assets/{passkey-error-ZqqPQUta.js → passkey-error-CZ26Ss-I.js} +2 -2
  188. package/public/assets/{passkey-error-ZqqPQUta.js.map → passkey-error-CZ26Ss-I.js.map} +1 -1
  189. package/public/assets/password-Cpfhakvn.js +2 -0
  190. package/public/assets/password-Cpfhakvn.js.map +1 -0
  191. package/public/assets/password-Dk8PwtZN.js +2 -0
  192. package/public/assets/password-Dk8PwtZN.js.map +1 -0
  193. package/public/assets/password-reset-BcFpGOop.js +2 -0
  194. package/public/assets/{password-reset-sU5KkBKi.js.map → password-reset-BcFpGOop.js.map} +1 -1
  195. package/public/assets/password-strength-Bgvy7kz6.js +2 -0
  196. package/public/assets/{password-strength-BIPcWiM_.js.map → password-strength-Bgvy7kz6.js.map} +1 -1
  197. package/public/assets/pin-input-DhsRO4Ei.js +2 -0
  198. package/public/assets/{pin-input-CITrr-Yc.js.map → pin-input-DhsRO4Ei.js.map} +1 -1
  199. package/public/assets/profile-PjXEnzA-.js +2 -0
  200. package/public/assets/profile-PjXEnzA-.js.map +1 -0
  201. package/public/assets/profile-k66ruDWl.js +2 -0
  202. package/public/assets/{profile-BHPL9Px_.js.map → profile-k66ruDWl.js.map} +1 -1
  203. package/public/assets/provider-mark-CeYazOfu.js +2 -0
  204. package/public/assets/provider-mark-CeYazOfu.js.map +1 -0
  205. package/public/assets/recovery-hdRyezmb.js +2 -0
  206. package/public/assets/recovery-hdRyezmb.js.map +1 -0
  207. package/public/assets/register-Cpfhakvn.js +2 -0
  208. package/public/assets/register-Cpfhakvn.js.map +1 -0
  209. package/public/assets/register-DMgKT_fm.js +2 -0
  210. package/public/assets/register-DMgKT_fm.js.map +1 -0
  211. package/public/assets/reset-Cpfhakvn.js +2 -0
  212. package/public/assets/reset-Cpfhakvn.js.map +1 -0
  213. package/public/assets/reset-DBu3wYpE.js +2 -0
  214. package/public/assets/reset-DBu3wYpE.js.map +1 -0
  215. package/public/assets/select-5LheSsRl.js +2 -0
  216. package/public/assets/select-5LheSsRl.js.map +1 -0
  217. package/public/assets/select-Cpfhakvn.js +2 -0
  218. package/public/assets/{select-huNZDYU9.js.map → select-Cpfhakvn.js.map} +1 -1
  219. package/public/assets/separator-CMGc2Y1q.js +2 -0
  220. package/public/assets/separator-CMGc2Y1q.js.map +1 -0
  221. package/public/assets/settings-BVe4k3kJ.js +2 -0
  222. package/public/assets/settings-BVe4k3kJ.js.map +1 -0
  223. package/public/assets/shell-header-bar-CdOEWmCT.js +2 -0
  224. package/public/assets/shell-header-bar-CdOEWmCT.js.map +1 -0
  225. package/public/assets/{shield-check-D_p8H0ni.js → shield-check-DpYF8yeI.js} +2 -2
  226. package/public/assets/{shield-check-D_p8H0ni.js.map → shield-check-DpYF8yeI.js.map} +1 -1
  227. package/public/assets/standard-schema-C50nwAaQ.js +2 -0
  228. package/public/assets/{standard-schema-e8gtSzGE.js.map → standard-schema-C50nwAaQ.js.map} +1 -1
  229. package/public/assets/system-BoUqxc5h.js +2 -0
  230. package/public/assets/system-BoUqxc5h.js.map +1 -0
  231. package/public/assets/table-Dl89o43x.js +2 -0
  232. package/public/assets/table-Dl89o43x.js.map +1 -0
  233. package/public/assets/terms-B2wWfx1d.js +2 -0
  234. package/public/assets/terms-B2wWfx1d.js.map +1 -0
  235. package/public/assets/terms-COr3cDw5.js +2 -0
  236. package/public/assets/terms-COr3cDw5.js.map +1 -0
  237. package/public/assets/terms-checkbox-list-C9TkDC8Y.js +2 -0
  238. package/public/assets/terms-checkbox-list-C9TkDC8Y.js.map +1 -0
  239. package/public/assets/terms-k66ruDWl.js +2 -0
  240. package/public/assets/terms-k66ruDWl.js.map +1 -0
  241. package/public/assets/totp-BJycMMTC.js +2 -0
  242. package/public/assets/totp-BJycMMTC.js.map +1 -0
  243. package/public/assets/{totp-BNZ904Zm.js → totp-BhElob6P.js} +2 -2
  244. package/public/assets/{totp-BNZ904Zm.js.map → totp-BhElob6P.js.map} +1 -1
  245. package/public/assets/totp-C1ba10Is.js +2 -0
  246. package/public/assets/totp-C1ba10Is.js.map +1 -0
  247. package/public/assets/{trash-2-DZdKBLvC.js → trash-2-B3NVE8pR.js} +2 -2
  248. package/public/assets/{trash-2-DZdKBLvC.js.map → trash-2-B3NVE8pR.js.map} +1 -1
  249. package/public/assets/{triangle-alert-CqNn0kPs.js → triangle-alert-DATO9o3k.js} +2 -2
  250. package/public/assets/{triangle-alert-CqNn0kPs.js.map → triangle-alert-DATO9o3k.js.map} +1 -1
  251. package/public/assets/use-admin-selection-D2b7jnym.js +2 -0
  252. package/public/assets/use-admin-selection-D2b7jnym.js.map +1 -0
  253. package/public/assets/use-totp-setup-KOVNS2DC.js +3 -0
  254. package/public/assets/use-totp-setup-KOVNS2DC.js.map +1 -0
  255. package/public/assets/useAriaLabelledBy-CF3crxLc.js +2 -0
  256. package/public/assets/{useAriaLabelledBy-IIwdHUss.js.map → useAriaLabelledBy-CF3crxLc.js.map} +1 -1
  257. package/public/assets/useMutation-DqIIIiBW.js +2 -0
  258. package/public/assets/{useMutation-BWZ0G4Td.js.map → useMutation-DqIIIiBW.js.map} +1 -1
  259. package/public/assets/useQuery-CLr9TaKA.js +2 -0
  260. package/public/assets/{useQuery-Ccv_nzQl.js.map → useQuery-CLr9TaKA.js.map} +1 -1
  261. package/public/assets/users-BQQQm353.js +2 -0
  262. package/public/assets/users-BQQQm353.js.map +1 -0
  263. package/public/assets/{zod-C87S6Tec.js → zod-Dszyrytb.js} +2 -2
  264. package/public/assets/{zod-C87S6Tec.js.map → zod-Dszyrytb.js.map} +1 -1
  265. package/public/index.html +6 -6
  266. package/public/issuary-app-icon-512.png +0 -0
  267. package/public/issuary-app-icon.svg +8 -0
  268. package/public/assets/2fa-C9wUlSBS.js +0 -2
  269. package/public/assets/2fa-C9wUlSBS.js.map +0 -1
  270. package/public/assets/2fa-DFTcWEMb.js +0 -2
  271. package/public/assets/2fa-TtshNxXv.js +0 -2
  272. package/public/assets/2fa-TtshNxXv.js.map +0 -1
  273. package/public/assets/2fa-huNZDYU9.js +0 -2
  274. package/public/assets/DialogHandle-DICBMcjK.js +0 -2
  275. package/public/assets/DialogHandle-DICBMcjK.js.map +0 -1
  276. package/public/assets/FieldItemContext-BeNfhOsU.js +0 -2
  277. package/public/assets/FieldItemContext-BeNfhOsU.js.map +0 -1
  278. package/public/assets/admin-CFZaO1bM.js +0 -2
  279. package/public/assets/admin-CFZaO1bM.js.map +0 -1
  280. package/public/assets/admin-users-BK_BN8jm.js +0 -2
  281. package/public/assets/admin-users-BK_BN8jm.js.map +0 -1
  282. package/public/assets/alert-leqyvHOp.js +0 -2
  283. package/public/assets/alert-leqyvHOp.js.map +0 -1
  284. package/public/assets/auth-choice-row-CXuyJgkR.js +0 -2
  285. package/public/assets/auth-choice-row-CXuyJgkR.js.map +0 -1
  286. package/public/assets/auth-field-CWyXGKoC.js +0 -2
  287. package/public/assets/auth-footer-Cz5ivsDc.js +0 -2
  288. package/public/assets/auth-footer-Cz5ivsDc.js.map +0 -1
  289. package/public/assets/auth-layout-CiNn2-Nb.js +0 -2
  290. package/public/assets/auth-layout-CiNn2-Nb.js.map +0 -1
  291. package/public/assets/auth-page-header-DgGAaIiP.js +0 -2
  292. package/public/assets/authorization-context-banner-DznMDPOX.js +0 -2
  293. package/public/assets/avatar-D-FRGa1m.js +0 -2
  294. package/public/assets/badge-CsOfUji0.js +0 -2
  295. package/public/assets/checkbox-C90dDDza.js +0 -2
  296. package/public/assets/chevron-right-CN0jUyV0.js +0 -2
  297. package/public/assets/chevron-right-CN0jUyV0.js.map +0 -1
  298. package/public/assets/config-DTQCUlfZ.js +0 -2
  299. package/public/assets/config-DTQCUlfZ.js.map +0 -1
  300. package/public/assets/consent-B9sQEyO8.js +0 -2
  301. package/public/assets/email-8RKQzeig.js +0 -2
  302. package/public/assets/email-8RKQzeig.js.map +0 -1
  303. package/public/assets/email-huNZDYU9.js +0 -2
  304. package/public/assets/email-huNZDYU9.js.map +0 -1
  305. package/public/assets/error-BYe3gUMO.js +0 -2
  306. package/public/assets/error-BYe3gUMO.js.map +0 -1
  307. package/public/assets/field-BMT214_m.js +0 -3
  308. package/public/assets/field-BMT214_m.js.map +0 -1
  309. package/public/assets/forgot-BenoOUxC.js +0 -2
  310. package/public/assets/forgot-BenoOUxC.js.map +0 -1
  311. package/public/assets/forgot-huNZDYU9.js +0 -2
  312. package/public/assets/forgot-huNZDYU9.js.map +0 -1
  313. package/public/assets/index-CKpnrw9M.js +0 -11
  314. package/public/assets/index-CKpnrw9M.js.map +0 -1
  315. package/public/assets/index-Ct9o0oCZ.css +0 -2
  316. package/public/assets/initial-avatar-E5DK9Igm.js +0 -2
  317. package/public/assets/initial-avatar-E5DK9Igm.js.map +0 -1
  318. package/public/assets/input-CxVeC8Pn.js +0 -2
  319. package/public/assets/labeled-separator-CV7nb0XW.js +0 -2
  320. package/public/assets/labeled-separator-CV7nb0XW.js.map +0 -1
  321. package/public/assets/link-C-WdTj3F.js +0 -2
  322. package/public/assets/login-1YuiZD30.js +0 -2
  323. package/public/assets/login-1YuiZD30.js.map +0 -1
  324. package/public/assets/login-huNZDYU9.js +0 -2
  325. package/public/assets/login-huNZDYU9.js.map +0 -1
  326. package/public/assets/logout-B5T52P8u.js +0 -2
  327. package/public/assets/logout-B5T52P8u.js.map +0 -1
  328. package/public/assets/modal-tByFpy18.js +0 -2
  329. package/public/assets/modal-tByFpy18.js.map +0 -1
  330. package/public/assets/mutationOptions-DyYFUbyn.js +0 -2
  331. package/public/assets/passkey-CgAHaQ1p.js +0 -2
  332. package/public/assets/passkey-CgAHaQ1p.js.map +0 -1
  333. package/public/assets/passkey-huNZDYU9.js +0 -2
  334. package/public/assets/passkey-huNZDYU9.js.map +0 -1
  335. package/public/assets/passkey-v9Pzv-4A.js +0 -2
  336. package/public/assets/passkey-v9Pzv-4A.js.map +0 -1
  337. package/public/assets/password-Cuh9Hnjp.js +0 -2
  338. package/public/assets/password-Cuh9Hnjp.js.map +0 -1
  339. package/public/assets/password-huNZDYU9.js +0 -2
  340. package/public/assets/password-huNZDYU9.js.map +0 -1
  341. package/public/assets/password-reset-sU5KkBKi.js +0 -2
  342. package/public/assets/password-strength-BIPcWiM_.js +0 -2
  343. package/public/assets/pin-input-CITrr-Yc.js +0 -2
  344. package/public/assets/plus-DSBBSrgj.js +0 -2
  345. package/public/assets/plus-DSBBSrgj.js.map +0 -1
  346. package/public/assets/profile-BHPL9Px_.js +0 -2
  347. package/public/assets/profile-C8KaELVe.js +0 -2
  348. package/public/assets/profile-C8KaELVe.js.map +0 -1
  349. package/public/assets/provider-logos-u1YURWQr.js +0 -2
  350. package/public/assets/provider-logos-u1YURWQr.js.map +0 -1
  351. package/public/assets/recovery-CVROV9nj.js +0 -2
  352. package/public/assets/recovery-CVROV9nj.js.map +0 -1
  353. package/public/assets/register-cpxjX3qr.js +0 -2
  354. package/public/assets/register-cpxjX3qr.js.map +0 -1
  355. package/public/assets/register-huNZDYU9.js +0 -2
  356. package/public/assets/register-huNZDYU9.js.map +0 -1
  357. package/public/assets/reset-huNZDYU9.js +0 -2
  358. package/public/assets/reset-huNZDYU9.js.map +0 -1
  359. package/public/assets/reset-iNqYdsoa.js +0 -2
  360. package/public/assets/reset-iNqYdsoa.js.map +0 -1
  361. package/public/assets/select-DdjQtcLJ.js +0 -2
  362. package/public/assets/select-DdjQtcLJ.js.map +0 -1
  363. package/public/assets/select-huNZDYU9.js +0 -2
  364. package/public/assets/separator-B0Bvh1he.js +0 -2
  365. package/public/assets/separator-B0Bvh1he.js.map +0 -1
  366. package/public/assets/shell-header-bar-JcFhS7mb.js +0 -2
  367. package/public/assets/shell-header-bar-JcFhS7mb.js.map +0 -1
  368. package/public/assets/standard-schema-e8gtSzGE.js +0 -2
  369. package/public/assets/terms-BHPL9Px_.js +0 -2
  370. package/public/assets/terms-BHPL9Px_.js.map +0 -1
  371. package/public/assets/terms-BjwMWDFp.js +0 -2
  372. package/public/assets/terms-BjwMWDFp.js.map +0 -1
  373. package/public/assets/terms-checkbox-list-DNOq4Pb2.js +0 -2
  374. package/public/assets/terms-checkbox-list-DNOq4Pb2.js.map +0 -1
  375. package/public/assets/totp-D_EWG1h8.js +0 -2
  376. package/public/assets/totp-D_EWG1h8.js.map +0 -1
  377. package/public/assets/totp-DetFwOkk.js +0 -2
  378. package/public/assets/totp-DetFwOkk.js.map +0 -1
  379. package/public/assets/use-totp-setup-DtlgPUPJ.js +0 -3
  380. package/public/assets/use-totp-setup-DtlgPUPJ.js.map +0 -1
  381. package/public/assets/useAriaLabelledBy-IIwdHUss.js +0 -2
  382. package/public/assets/useMutation-BWZ0G4Td.js +0 -2
  383. package/public/assets/useQuery-Ccv_nzQl.js +0 -2
  384. package/public/assets/users-B1gvPM_x.js +0 -2
  385. package/public/assets/users-B1gvPM_x.js.map +0 -1
  386. package/public/vite.svg +0 -1
@@ -3451,7 +3451,7 @@ export default {
3451
3451
  return getPrimaryKeyHash(val_6);
3452
3452
  };
3453
3453
  },
3454
- 'hydrator-terms_20000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, terms_content_167, user_terms_consent_168) {
3454
+ 'hydrator-terms_20000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, terms_content_168, user_terms_consent_169) {
3455
3455
  // compiled hydrator for entity TermsEntity ( normalized)
3456
3456
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
3457
3457
  if (data.id === null) {
@@ -3506,6 +3506,20 @@ export default {
3506
3506
  else if (typeof data.version !== 'undefined') {
3507
3507
  entity.version = data.version;
3508
3508
  }
3509
+ if (data.archivedAt === null) {
3510
+ entity.archivedAt = null;
3511
+ }
3512
+ else if (typeof data.archivedAt !== 'undefined') {
3513
+ if (data.archivedAt instanceof Date) {
3514
+ entity.archivedAt = data.archivedAt;
3515
+ }
3516
+ else if (typeof data.archivedAt === 'number' || data.archivedAt.includes('+') || data.archivedAt.lastIndexOf('-') > 10 || data.archivedAt.endsWith('Z')) {
3517
+ entity.archivedAt = new Date(data.archivedAt);
3518
+ }
3519
+ else {
3520
+ entity.archivedAt = new Date(data.archivedAt + 'Z');
3521
+ }
3522
+ }
3509
3523
  if (data.managed_by === null) {
3510
3524
  entity.managed_by = null;
3511
3525
  }
@@ -3514,10 +3528,10 @@ export default {
3514
3528
  }
3515
3529
  const createCollectionItem_contents = (value, entity) => {
3516
3530
  if (isPrimaryKey(value, false))
3517
- return factory.createReference(terms_content_167, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3531
+ return factory.createReference(terms_content_168, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3518
3532
  if (value && isEntity(value))
3519
3533
  return value;
3520
- return factory.create(terms_content_167, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3534
+ return factory.create(terms_content_168, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3521
3535
  };
3522
3536
  if (data.contents && !Array.isArray(data.contents) && typeof data.contents === 'object') {
3523
3537
  data.contents = [data.contents];
@@ -3541,10 +3555,10 @@ export default {
3541
3555
  }
3542
3556
  const createCollectionItem_consents = (value, entity) => {
3543
3557
  if (isPrimaryKey(value, false))
3544
- return factory.createReference(user_terms_consent_168, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3558
+ return factory.createReference(user_terms_consent_169, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3545
3559
  if (value && isEntity(value))
3546
3560
  return value;
3547
- return factory.create(user_terms_consent_168, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3561
+ return factory.create(user_terms_consent_169, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3548
3562
  };
3549
3563
  if (data.consents && !Array.isArray(data.consents) && typeof data.consents === 'object') {
3550
3564
  data.consents = [data.consents];
@@ -3568,7 +3582,7 @@ export default {
3568
3582
  }
3569
3583
  };
3570
3584
  },
3571
- 'hydrator-terms_20000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, terms_content_176, user_terms_consent_177) {
3585
+ 'hydrator-terms_20000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, terms_content_178, user_terms_consent_179) {
3572
3586
  // compiled hydrator for entity TermsEntity ( normalized)
3573
3587
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
3574
3588
  if (data.id === null) {
@@ -3623,6 +3637,20 @@ export default {
3623
3637
  else if (typeof data.version !== 'undefined') {
3624
3638
  entity.version = data.version;
3625
3639
  }
3640
+ if (data.archivedAt === null) {
3641
+ entity.archivedAt = null;
3642
+ }
3643
+ else if (typeof data.archivedAt !== 'undefined') {
3644
+ if (data.archivedAt instanceof Date) {
3645
+ entity.archivedAt = data.archivedAt;
3646
+ }
3647
+ else if (typeof data.archivedAt === 'number' || data.archivedAt.includes('+') || data.archivedAt.lastIndexOf('-') > 10 || data.archivedAt.endsWith('Z')) {
3648
+ entity.archivedAt = new Date(data.archivedAt);
3649
+ }
3650
+ else {
3651
+ entity.archivedAt = new Date(data.archivedAt + 'Z');
3652
+ }
3653
+ }
3626
3654
  if (data.managed_by === null) {
3627
3655
  entity.managed_by = null;
3628
3656
  }
@@ -3631,10 +3659,10 @@ export default {
3631
3659
  }
3632
3660
  const createCollectionItem_contents = (value, entity) => {
3633
3661
  if (isPrimaryKey(value, false))
3634
- return factory.createReference(terms_content_176, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3662
+ return factory.createReference(terms_content_178, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3635
3663
  if (value && isEntity(value))
3636
3664
  return value;
3637
- return factory.create(terms_content_176, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3665
+ return factory.create(terms_content_178, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3638
3666
  };
3639
3667
  if (data.contents && !Array.isArray(data.contents) && typeof data.contents === 'object') {
3640
3668
  data.contents = [data.contents];
@@ -3658,10 +3686,10 @@ export default {
3658
3686
  }
3659
3687
  const createCollectionItem_consents = (value, entity) => {
3660
3688
  if (isPrimaryKey(value, false))
3661
- return factory.createReference(user_terms_consent_177, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3689
+ return factory.createReference(user_terms_consent_179, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
3662
3690
  if (value && isEntity(value))
3663
3691
  return value;
3664
- return factory.create(user_terms_consent_177, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3692
+ return factory.create(user_terms_consent_179, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
3665
3693
  };
3666
3694
  if (data.consents && !Array.isArray(data.consents) && typeof data.consents === 'object') {
3667
3695
  data.consents = [data.consents];
@@ -3755,6 +3783,17 @@ export default {
3755
3783
  else if (last.version !== current.version) {
3756
3784
  diff.version = current.version;
3757
3785
  }
3786
+ if (current.archivedAt === null && last.archivedAt === undefined) {
3787
+ diff.archivedAt = current.archivedAt;
3788
+ }
3789
+ else if (current.archivedAt == null && last.archivedAt == null) {
3790
+ }
3791
+ else if ((current.archivedAt != null && last.archivedAt == null) || (current.archivedAt == null && last.archivedAt != null)) {
3792
+ diff.archivedAt = current.archivedAt;
3793
+ }
3794
+ else if (last.archivedAt.valueOf() !== current.archivedAt.valueOf()) {
3795
+ diff.archivedAt = current.archivedAt;
3796
+ }
3758
3797
  if (current.managed_by === null && last.managed_by === undefined) {
3759
3798
  diff.managed_by = current.managed_by;
3760
3799
  }
@@ -3792,6 +3831,9 @@ export default {
3792
3831
  if (typeof entity.version !== 'undefined') {
3793
3832
  ret.version = entity.version;
3794
3833
  }
3834
+ if (typeof entity.archivedAt !== 'undefined') {
3835
+ ret.archivedAt = clone(processDateProperty(entity.archivedAt));
3836
+ }
3795
3837
  if (typeof entity.managed_by !== 'undefined') {
3796
3838
  ret.managed_by = entity.managed_by;
3797
3839
  }
@@ -3849,6 +3891,21 @@ export default {
3849
3891
  ret.version = result.version;
3850
3892
  mapped.version = true;
3851
3893
  }
3894
+ if (typeof result.archived_at !== 'undefined') {
3895
+ if (result.archived_at == null || result.archived_at instanceof Date) {
3896
+ ret.archivedAt = result.archived_at;
3897
+ }
3898
+ else if (typeof result.archived_at === 'bigint') {
3899
+ ret.archivedAt = parseDate(Number(result.archived_at));
3900
+ }
3901
+ else if (typeof result.archived_at === 'number' || result.archived_at.includes('+') || result.archived_at.lastIndexOf('-') > 10 || result.archived_at.endsWith('Z')) {
3902
+ ret.archivedAt = parseDate(result.archived_at);
3903
+ }
3904
+ else {
3905
+ ret.archivedAt = parseDate(result.archived_at + 'Z');
3906
+ }
3907
+ mapped.archived_at = true;
3908
+ }
3852
3909
  if (typeof result.managed_by !== 'undefined') {
3853
3910
  ret.managed_by = result.managed_by;
3854
3911
  mapped.managed_by = true;
@@ -3900,7 +3957,7 @@ export default {
3900
3957
  return '' + entity.id;
3901
3958
  };
3902
3959
  },
3903
- 'hydrator-terms_content_18000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, terms_183, terms_184) {
3960
+ 'hydrator-terms_content_18000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, terms_185, terms_186) {
3904
3961
  // compiled hydrator for entity TermsContentEntity ( normalized)
3905
3962
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
3906
3963
  if (data.id === null) {
@@ -3948,10 +4005,10 @@ export default {
3948
4005
  }
3949
4006
  else if (typeof data.terms !== 'undefined') {
3950
4007
  if (isPrimaryKey(data.terms, true)) {
3951
- entity.terms = factory.createReference(terms_183, data.terms, { merge: true, convertCustomTypes, normalizeAccessors, schema });
4008
+ entity.terms = factory.createReference(terms_185, data.terms, { merge: true, convertCustomTypes, normalizeAccessors, schema });
3952
4009
  }
3953
4010
  else if (data.terms && typeof data.terms === 'object') {
3954
- entity.terms = factory.create(terms_184, data.terms, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
4011
+ entity.terms = factory.create(terms_186, data.terms, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
3955
4012
  }
3956
4013
  }
3957
4014
  if (data.lang === null) {
@@ -3980,7 +4037,7 @@ export default {
3980
4037
  }
3981
4038
  };
3982
4039
  },
3983
- 'hydrator-terms_content_18000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, terms_192, terms_193) {
4040
+ 'hydrator-terms_content_18000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, terms_194, terms_195) {
3984
4041
  // compiled hydrator for entity TermsContentEntity ( normalized)
3985
4042
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
3986
4043
  if (data.id === null) {
@@ -4028,10 +4085,10 @@ export default {
4028
4085
  }
4029
4086
  else if (typeof data.terms !== 'undefined') {
4030
4087
  if (isPrimaryKey(data.terms, true)) {
4031
- entity.terms = factory.createReference(terms_192, data.terms, { merge: true, convertCustomTypes, normalizeAccessors, schema });
4088
+ entity.terms = factory.createReference(terms_194, data.terms, { merge: true, convertCustomTypes, normalizeAccessors, schema });
4032
4089
  }
4033
4090
  else if (data.terms && typeof data.terms === 'object') {
4034
- entity.terms = factory.create(terms_193, data.terms, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
4091
+ entity.terms = factory.create(terms_195, data.terms, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
4035
4092
  }
4036
4093
  }
4037
4094
  if (data.lang === null) {
@@ -5030,7 +5087,7 @@ export default {
5030
5087
  return '' + entity.id;
5031
5088
  };
5032
5089
  },
5033
- 'hydrator-revoked_tokens_12000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_237, oauth_client_238, user_239, user_240) {
5090
+ 'hydrator-revoked_tokens_12000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_239, oauth_client_240, user_241, user_242) {
5034
5091
  // compiled hydrator for entity RevokedTokenEntity ( normalized)
5035
5092
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
5036
5093
  if (data.id === null) {
@@ -5090,10 +5147,10 @@ export default {
5090
5147
  }
5091
5148
  else if (typeof data.client !== 'undefined') {
5092
5149
  if (isPrimaryKey(data.client, true)) {
5093
- entity.client = factory.createReference(oauth_client_237, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5150
+ entity.client = factory.createReference(oauth_client_239, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5094
5151
  }
5095
5152
  else if (data.client && typeof data.client === 'object') {
5096
- entity.client = factory.create(oauth_client_238, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5153
+ entity.client = factory.create(oauth_client_240, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5097
5154
  }
5098
5155
  }
5099
5156
  if (data.user === null) {
@@ -5101,10 +5158,10 @@ export default {
5101
5158
  }
5102
5159
  else if (typeof data.user !== 'undefined') {
5103
5160
  if (isPrimaryKey(data.user, true)) {
5104
- entity.user = factory.createReference(user_239, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5161
+ entity.user = factory.createReference(user_241, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5105
5162
  }
5106
5163
  else if (data.user && typeof data.user === 'object') {
5107
- entity.user = factory.create(user_240, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5164
+ entity.user = factory.create(user_242, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5108
5165
  }
5109
5166
  }
5110
5167
  if (data.expires_at === null) {
@@ -5137,7 +5194,7 @@ export default {
5137
5194
  }
5138
5195
  };
5139
5196
  },
5140
- 'hydrator-revoked_tokens_12000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_248, oauth_client_249, user_250, user_251) {
5197
+ 'hydrator-revoked_tokens_12000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_250, oauth_client_251, user_252, user_253) {
5141
5198
  // compiled hydrator for entity RevokedTokenEntity ( normalized)
5142
5199
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
5143
5200
  if (data.id === null) {
@@ -5197,10 +5254,10 @@ export default {
5197
5254
  }
5198
5255
  else if (typeof data.client !== 'undefined') {
5199
5256
  if (isPrimaryKey(data.client, true)) {
5200
- entity.client = factory.createReference(oauth_client_248, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5257
+ entity.client = factory.createReference(oauth_client_250, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5201
5258
  }
5202
5259
  else if (data.client && typeof data.client === 'object') {
5203
- entity.client = factory.create(oauth_client_249, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5260
+ entity.client = factory.create(oauth_client_251, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5204
5261
  }
5205
5262
  }
5206
5263
  if (data.user === null) {
@@ -5208,10 +5265,10 @@ export default {
5208
5265
  }
5209
5266
  else if (typeof data.user !== 'undefined') {
5210
5267
  if (isPrimaryKey(data.user, true)) {
5211
- entity.user = factory.createReference(user_250, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5268
+ entity.user = factory.createReference(user_252, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema });
5212
5269
  }
5213
5270
  else if (data.user && typeof data.user === 'object') {
5214
- entity.user = factory.create(user_251, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5271
+ entity.user = factory.create(user_253, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
5215
5272
  }
5216
5273
  }
5217
5274
  if (data.expires_at === null) {
@@ -6103,7 +6160,7 @@ export default {
6103
6160
  return getPrimaryKeyHash(val_9);
6104
6161
  };
6105
6162
  },
6106
- 'hydrator-password_reset_15000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_285, user_286) {
6163
+ 'hydrator-password_reset_15000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_287, user_288) {
6107
6164
  // compiled hydrator for entity PasswordResetEntity ( normalized)
6108
6165
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
6109
6166
  if (data.id === null) {
@@ -6151,10 +6208,10 @@ export default {
6151
6208
  }
6152
6209
  else if (typeof data.user !== 'undefined') {
6153
6210
  if (isPrimaryKey(data.user, true)) {
6154
- entity.user = Reference.create(factory.createReference(user_285, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
6211
+ entity.user = Reference.create(factory.createReference(user_287, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
6155
6212
  }
6156
6213
  else if (data.user && typeof data.user === 'object') {
6157
- entity.user = Reference.create(factory.create(user_286, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
6214
+ entity.user = Reference.create(factory.create(user_288, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
6158
6215
  }
6159
6216
  }
6160
6217
  if (data.token === null) {
@@ -6199,7 +6256,7 @@ export default {
6199
6256
  }
6200
6257
  };
6201
6258
  },
6202
- 'hydrator-password_reset_15000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_294, user_295) {
6259
+ 'hydrator-password_reset_15000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_296, user_297) {
6203
6260
  // compiled hydrator for entity PasswordResetEntity ( normalized)
6204
6261
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
6205
6262
  if (data.id === null) {
@@ -6247,10 +6304,10 @@ export default {
6247
6304
  }
6248
6305
  else if (typeof data.user !== 'undefined') {
6249
6306
  if (isPrimaryKey(data.user, true)) {
6250
- entity.user = Reference.create(factory.createReference(user_294, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
6307
+ entity.user = Reference.create(factory.createReference(user_296, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
6251
6308
  }
6252
6309
  else if (data.user && typeof data.user === 'object') {
6253
- entity.user = Reference.create(factory.create(user_295, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
6310
+ entity.user = Reference.create(factory.create(user_297, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
6254
6311
  }
6255
6312
  }
6256
6313
  if (data.token === null) {
@@ -6571,7 +6628,7 @@ export default {
6571
6628
  return getPrimaryKeyHash(val_10);
6572
6629
  };
6573
6630
  },
6574
- 'hydrator-oauth_device_code_11000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_307, oauth_client_308, convertToJSValue_scope, convertToDatabaseValue_scope, user_311, user_312) {
6631
+ 'hydrator-oauth_device_code_11000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_309, oauth_client_310, convertToJSValue_scope, convertToDatabaseValue_scope, user_313, user_314) {
6575
6632
  // compiled hydrator for entity OAuthDeviceCodeEntity ( normalized)
6576
6633
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
6577
6634
  if (data.id === null) {
@@ -6631,10 +6688,10 @@ export default {
6631
6688
  }
6632
6689
  else if (typeof data.client !== 'undefined') {
6633
6690
  if (isPrimaryKey(data.client, true)) {
6634
- entity.client = factory.createReference(oauth_client_307, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6691
+ entity.client = factory.createReference(oauth_client_309, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6635
6692
  }
6636
6693
  else if (data.client && typeof data.client === 'object') {
6637
- entity.client = factory.create(oauth_client_308, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6694
+ entity.client = factory.create(oauth_client_310, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6638
6695
  }
6639
6696
  }
6640
6697
  if (data.scope === null) {
@@ -6669,10 +6726,10 @@ export default {
6669
6726
  }
6670
6727
  else if (typeof data.authorizedUser !== 'undefined') {
6671
6728
  if (isPrimaryKey(data.authorizedUser, true)) {
6672
- entity.authorizedUser = factory.createReference(user_311, data.authorizedUser, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6729
+ entity.authorizedUser = factory.createReference(user_313, data.authorizedUser, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6673
6730
  }
6674
6731
  else if (data.authorizedUser && typeof data.authorizedUser === 'object') {
6675
- entity.authorizedUser = factory.create(user_312, data.authorizedUser, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6732
+ entity.authorizedUser = factory.create(user_314, data.authorizedUser, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6676
6733
  }
6677
6734
  }
6678
6735
  if (data.authorizedAt === null) {
@@ -6739,7 +6796,7 @@ export default {
6739
6796
  }
6740
6797
  };
6741
6798
  },
6742
- 'hydrator-oauth_device_code_11000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_323, oauth_client_324, convertToJSValue_scope, convertToDatabaseValue_scope, user_327, user_328) {
6799
+ 'hydrator-oauth_device_code_11000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_325, oauth_client_326, convertToJSValue_scope, convertToDatabaseValue_scope, user_329, user_330) {
6743
6800
  // compiled hydrator for entity OAuthDeviceCodeEntity ( normalized)
6744
6801
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
6745
6802
  if (data.id === null) {
@@ -6799,10 +6856,10 @@ export default {
6799
6856
  }
6800
6857
  else if (typeof data.client !== 'undefined') {
6801
6858
  if (isPrimaryKey(data.client, true)) {
6802
- entity.client = factory.createReference(oauth_client_323, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6859
+ entity.client = factory.createReference(oauth_client_325, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6803
6860
  }
6804
6861
  else if (data.client && typeof data.client === 'object') {
6805
- entity.client = factory.create(oauth_client_324, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6862
+ entity.client = factory.create(oauth_client_326, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6806
6863
  }
6807
6864
  }
6808
6865
  if (data.scope === null) {
@@ -6837,10 +6894,10 @@ export default {
6837
6894
  }
6838
6895
  else if (typeof data.authorizedUser !== 'undefined') {
6839
6896
  if (isPrimaryKey(data.authorizedUser, true)) {
6840
- entity.authorizedUser = factory.createReference(user_327, data.authorizedUser, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6897
+ entity.authorizedUser = factory.createReference(user_329, data.authorizedUser, { merge: true, convertCustomTypes, normalizeAccessors, schema });
6841
6898
  }
6842
6899
  else if (data.authorizedUser && typeof data.authorizedUser === 'object') {
6843
- entity.authorizedUser = factory.create(user_328, data.authorizedUser, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6900
+ entity.authorizedUser = factory.create(user_330, data.authorizedUser, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
6844
6901
  }
6845
6902
  }
6846
6903
  if (data.authorizedAt === null) {
@@ -7332,7 +7389,7 @@ export default {
7332
7389
  return getPrimaryKeyHash(val_11);
7333
7390
  };
7334
7391
  },
7335
- 'hydrator-oauth_code_10000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_340, oauth_client_341, user_342, user_343, convertToJSValue_scope, convertToDatabaseValue_scope) {
7392
+ 'hydrator-oauth_code_10000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_342, oauth_client_343, user_344, user_345, convertToJSValue_scope, convertToDatabaseValue_scope) {
7336
7393
  // compiled hydrator for entity OAuthCodeEntity ( normalized)
7337
7394
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
7338
7395
  if (data.id === null) {
@@ -7386,10 +7443,10 @@ export default {
7386
7443
  }
7387
7444
  else if (typeof data.client !== 'undefined') {
7388
7445
  if (isPrimaryKey(data.client, true)) {
7389
- entity.client = factory.createReference(oauth_client_340, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
7446
+ entity.client = factory.createReference(oauth_client_342, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
7390
7447
  }
7391
7448
  else if (data.client && typeof data.client === 'object') {
7392
- entity.client = factory.create(oauth_client_341, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
7449
+ entity.client = factory.create(oauth_client_343, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
7393
7450
  }
7394
7451
  }
7395
7452
  if (data.user === null) {
@@ -7397,10 +7454,10 @@ export default {
7397
7454
  }
7398
7455
  else if (typeof data.user !== 'undefined') {
7399
7456
  if (isPrimaryKey(data.user, true)) {
7400
- entity.user = Reference.create(factory.createReference(user_342, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
7457
+ entity.user = Reference.create(factory.createReference(user_344, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
7401
7458
  }
7402
7459
  else if (data.user && typeof data.user === 'object') {
7403
- entity.user = Reference.create(factory.create(user_343, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
7460
+ entity.user = Reference.create(factory.create(user_345, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
7404
7461
  }
7405
7462
  }
7406
7463
  if (data.redirectUri === null) {
@@ -7476,7 +7533,7 @@ export default {
7476
7533
  }
7477
7534
  };
7478
7535
  },
7479
- 'hydrator-oauth_code_10000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_356, oauth_client_357, user_358, user_359, convertToJSValue_scope, convertToDatabaseValue_scope) {
7536
+ 'hydrator-oauth_code_10000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, oauth_client_358, oauth_client_359, user_360, user_361, convertToJSValue_scope, convertToDatabaseValue_scope) {
7480
7537
  // compiled hydrator for entity OAuthCodeEntity ( normalized)
7481
7538
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
7482
7539
  if (data.id === null) {
@@ -7530,10 +7587,10 @@ export default {
7530
7587
  }
7531
7588
  else if (typeof data.client !== 'undefined') {
7532
7589
  if (isPrimaryKey(data.client, true)) {
7533
- entity.client = factory.createReference(oauth_client_356, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
7590
+ entity.client = factory.createReference(oauth_client_358, data.client, { merge: true, convertCustomTypes, normalizeAccessors, schema });
7534
7591
  }
7535
7592
  else if (data.client && typeof data.client === 'object') {
7536
- entity.client = factory.create(oauth_client_357, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
7593
+ entity.client = factory.create(oauth_client_359, data.client, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema });
7537
7594
  }
7538
7595
  }
7539
7596
  if (data.user === null) {
@@ -7541,10 +7598,10 @@ export default {
7541
7598
  }
7542
7599
  else if (typeof data.user !== 'undefined') {
7543
7600
  if (isPrimaryKey(data.user, true)) {
7544
- entity.user = Reference.create(factory.createReference(user_358, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
7601
+ entity.user = Reference.create(factory.createReference(user_360, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
7545
7602
  }
7546
7603
  else if (data.user && typeof data.user === 'object') {
7547
- entity.user = Reference.create(factory.create(user_359, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
7604
+ entity.user = Reference.create(factory.create(user_361, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
7548
7605
  }
7549
7606
  }
7550
7607
  if (data.redirectUri === null) {
@@ -8012,7 +8069,7 @@ export default {
8012
8069
  return getPrimaryKeyHash(val_12);
8013
8070
  };
8014
8071
  },
8015
- 'hydrator-oauth_client_14000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_grantTypes, convertToDatabaseValue_grantTypes, convertToJSValue_responseTypes, convertToDatabaseValue_responseTypes, convertToJSValue_scopes, convertToDatabaseValue_scopes, convertToJSValue_redirectUris, convertToDatabaseValue_redirectUris, convertToJSValue_postLogoutRedirectUris, convertToDatabaseValue_postLogoutRedirectUris, convertToJSValue_webOrigins, convertToDatabaseValue_webOrigins, oauth_code_386, oauth_device_code_387, user_consent_388, revoked_tokens_389) {
8072
+ 'hydrator-oauth_client_14000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_grantTypes, convertToDatabaseValue_grantTypes, convertToJSValue_responseTypes, convertToDatabaseValue_responseTypes, convertToJSValue_scopes, convertToDatabaseValue_scopes, convertToJSValue_redirectUris, convertToDatabaseValue_redirectUris, convertToJSValue_postLogoutRedirectUris, convertToDatabaseValue_postLogoutRedirectUris, convertToJSValue_webOrigins, convertToDatabaseValue_webOrigins, oauth_code_388, oauth_device_code_389, user_consent_390, revoked_tokens_391) {
8016
8073
  // compiled hydrator for entity OAuthClientEntity ( normalized)
8017
8074
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
8018
8075
  if (data.id === null) {
@@ -8171,10 +8228,10 @@ export default {
8171
8228
  }
8172
8229
  const createCollectionItem_codes = (value, entity) => {
8173
8230
  if (isPrimaryKey(value, false))
8174
- return factory.createReference(oauth_code_386, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8231
+ return factory.createReference(oauth_code_388, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8175
8232
  if (value && isEntity(value))
8176
8233
  return value;
8177
- return factory.create(oauth_code_386, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8234
+ return factory.create(oauth_code_388, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8178
8235
  };
8179
8236
  if (data.codes && !Array.isArray(data.codes) && typeof data.codes === 'object') {
8180
8237
  data.codes = [data.codes];
@@ -8198,10 +8255,10 @@ export default {
8198
8255
  }
8199
8256
  const createCollectionItem_deviceCodes = (value, entity) => {
8200
8257
  if (isPrimaryKey(value, false))
8201
- return factory.createReference(oauth_device_code_387, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8258
+ return factory.createReference(oauth_device_code_389, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8202
8259
  if (value && isEntity(value))
8203
8260
  return value;
8204
- return factory.create(oauth_device_code_387, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8261
+ return factory.create(oauth_device_code_389, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8205
8262
  };
8206
8263
  if (data.deviceCodes && !Array.isArray(data.deviceCodes) && typeof data.deviceCodes === 'object') {
8207
8264
  data.deviceCodes = [data.deviceCodes];
@@ -8225,10 +8282,10 @@ export default {
8225
8282
  }
8226
8283
  const createCollectionItem_consents = (value, entity) => {
8227
8284
  if (isPrimaryKey(value, false))
8228
- return factory.createReference(user_consent_388, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8285
+ return factory.createReference(user_consent_390, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8229
8286
  if (value && isEntity(value))
8230
8287
  return value;
8231
- return factory.create(user_consent_388, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8288
+ return factory.create(user_consent_390, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8232
8289
  };
8233
8290
  if (data.consents && !Array.isArray(data.consents) && typeof data.consents === 'object') {
8234
8291
  data.consents = [data.consents];
@@ -8252,10 +8309,10 @@ export default {
8252
8309
  }
8253
8310
  const createCollectionItem_revokedTokens = (value, entity) => {
8254
8311
  if (isPrimaryKey(value, false))
8255
- return factory.createReference(revoked_tokens_389, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8312
+ return factory.createReference(revoked_tokens_391, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8256
8313
  if (value && isEntity(value))
8257
8314
  return value;
8258
- return factory.create(revoked_tokens_389, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8315
+ return factory.create(revoked_tokens_391, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8259
8316
  };
8260
8317
  if (data.revokedTokens && !Array.isArray(data.revokedTokens) && typeof data.revokedTokens === 'object') {
8261
8318
  data.revokedTokens = [data.revokedTokens];
@@ -8279,7 +8336,7 @@ export default {
8279
8336
  }
8280
8337
  };
8281
8338
  },
8282
- 'hydrator-oauth_client_14000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_grantTypes, convertToDatabaseValue_grantTypes, convertToJSValue_responseTypes, convertToDatabaseValue_responseTypes, convertToJSValue_scopes, convertToDatabaseValue_scopes, convertToJSValue_redirectUris, convertToDatabaseValue_redirectUris, convertToJSValue_postLogoutRedirectUris, convertToDatabaseValue_postLogoutRedirectUris, convertToJSValue_webOrigins, convertToDatabaseValue_webOrigins, oauth_code_406, oauth_device_code_407, user_consent_408, revoked_tokens_409) {
8339
+ 'hydrator-oauth_client_14000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_grantTypes, convertToDatabaseValue_grantTypes, convertToJSValue_responseTypes, convertToDatabaseValue_responseTypes, convertToJSValue_scopes, convertToDatabaseValue_scopes, convertToJSValue_redirectUris, convertToDatabaseValue_redirectUris, convertToJSValue_postLogoutRedirectUris, convertToDatabaseValue_postLogoutRedirectUris, convertToJSValue_webOrigins, convertToDatabaseValue_webOrigins, oauth_code_408, oauth_device_code_409, user_consent_410, revoked_tokens_411) {
8283
8340
  // compiled hydrator for entity OAuthClientEntity ( normalized)
8284
8341
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
8285
8342
  if (data.id === null) {
@@ -8438,10 +8495,10 @@ export default {
8438
8495
  }
8439
8496
  const createCollectionItem_codes = (value, entity) => {
8440
8497
  if (isPrimaryKey(value, false))
8441
- return factory.createReference(oauth_code_406, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8498
+ return factory.createReference(oauth_code_408, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8442
8499
  if (value && isEntity(value))
8443
8500
  return value;
8444
- return factory.create(oauth_code_406, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8501
+ return factory.create(oauth_code_408, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8445
8502
  };
8446
8503
  if (data.codes && !Array.isArray(data.codes) && typeof data.codes === 'object') {
8447
8504
  data.codes = [data.codes];
@@ -8465,10 +8522,10 @@ export default {
8465
8522
  }
8466
8523
  const createCollectionItem_deviceCodes = (value, entity) => {
8467
8524
  if (isPrimaryKey(value, false))
8468
- return factory.createReference(oauth_device_code_407, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8525
+ return factory.createReference(oauth_device_code_409, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8469
8526
  if (value && isEntity(value))
8470
8527
  return value;
8471
- return factory.create(oauth_device_code_407, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8528
+ return factory.create(oauth_device_code_409, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8472
8529
  };
8473
8530
  if (data.deviceCodes && !Array.isArray(data.deviceCodes) && typeof data.deviceCodes === 'object') {
8474
8531
  data.deviceCodes = [data.deviceCodes];
@@ -8492,10 +8549,10 @@ export default {
8492
8549
  }
8493
8550
  const createCollectionItem_consents = (value, entity) => {
8494
8551
  if (isPrimaryKey(value, false))
8495
- return factory.createReference(user_consent_408, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8552
+ return factory.createReference(user_consent_410, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8496
8553
  if (value && isEntity(value))
8497
8554
  return value;
8498
- return factory.create(user_consent_408, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8555
+ return factory.create(user_consent_410, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8499
8556
  };
8500
8557
  if (data.consents && !Array.isArray(data.consents) && typeof data.consents === 'object') {
8501
8558
  data.consents = [data.consents];
@@ -8519,10 +8576,10 @@ export default {
8519
8576
  }
8520
8577
  const createCollectionItem_revokedTokens = (value, entity) => {
8521
8578
  if (isPrimaryKey(value, false))
8522
- return factory.createReference(revoked_tokens_409, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8579
+ return factory.createReference(revoked_tokens_411, value, { convertCustomTypes, schema, normalizeAccessors, merge: true });
8523
8580
  if (value && isEntity(value))
8524
8581
  return value;
8525
- return factory.create(revoked_tokens_409, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8582
+ return factory.create(revoked_tokens_411, value, { newEntity, convertCustomTypes, schema, normalizeAccessors, merge: true });
8526
8583
  };
8527
8584
  if (data.revokedTokens && !Array.isArray(data.revokedTokens) && typeof data.revokedTokens === 'object') {
8528
8585
  data.revokedTokens = [data.revokedTokens];
@@ -9492,7 +9549,7 @@ export default {
9492
9549
  return '' + entity.kid;
9493
9550
  };
9494
9551
  },
9495
- 'hydrator-email_verification_8000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_439, user_440) {
9552
+ 'hydrator-email_verification_8000-full-false': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_441, user_442) {
9496
9553
  // compiled hydrator for entity EmailVerificationEntity ( normalized)
9497
9554
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
9498
9555
  if (data.id === null) {
@@ -9540,10 +9597,10 @@ export default {
9540
9597
  }
9541
9598
  else if (typeof data.user !== 'undefined') {
9542
9599
  if (isPrimaryKey(data.user, true)) {
9543
- entity.user = Reference.create(factory.createReference(user_439, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
9600
+ entity.user = Reference.create(factory.createReference(user_441, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
9544
9601
  }
9545
9602
  else if (data.user && typeof data.user === 'object') {
9546
- entity.user = Reference.create(factory.create(user_440, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
9603
+ entity.user = Reference.create(factory.create(user_442, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
9547
9604
  }
9548
9605
  }
9549
9606
  if (data.token === null) {
@@ -9588,7 +9645,7 @@ export default {
9588
9645
  }
9589
9646
  };
9590
9647
  },
9591
- 'hydrator-email_verification_8000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_448, user_449) {
9648
+ 'hydrator-email_verification_8000-full-true': function (isPrimaryKey, isEntity, isScalarReference, Collection, Reference, PolymorphicRef, ValidationError, convertToJSValue_id, convertToDatabaseValue_id, user_450, user_451) {
9592
9649
  // compiled hydrator for entity EmailVerificationEntity ( normalized)
9593
9650
  return function (entity, data, factory, newEntity, convertCustomTypes, schema, parentSchema, normalizeAccessors) {
9594
9651
  if (data.id === null) {
@@ -9636,10 +9693,10 @@ export default {
9636
9693
  }
9637
9694
  else if (typeof data.user !== 'undefined') {
9638
9695
  if (isPrimaryKey(data.user, true)) {
9639
- entity.user = Reference.create(factory.createReference(user_448, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
9696
+ entity.user = Reference.create(factory.createReference(user_450, data.user, { merge: true, convertCustomTypes, normalizeAccessors, schema }));
9640
9697
  }
9641
9698
  else if (data.user && typeof data.user === 'object') {
9642
- entity.user = Reference.create(factory.create(user_449, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
9699
+ entity.user = Reference.create(factory.create(user_451, data.user, { initialized: true, merge: true, newEntity, convertCustomTypes, normalizeAccessors, schema }));
9643
9700
  }
9644
9701
  }
9645
9702
  if (data.token === null) {