@tinyrack/tinyauth-server 0.0.13 → 0.0.15

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 (152) hide show
  1. package/dist/entities/background-job.entity.d.ts +111 -0
  2. package/dist/entities/background-job.entity.d.ts.map +1 -0
  3. package/dist/entities/background-job.entity.js +41 -0
  4. package/dist/entities/background-job.entity.js.map +1 -0
  5. package/dist/entities/oauth-client.entity.d.ts.map +1 -1
  6. package/dist/entities/oauth-client.entity.js +2 -2
  7. package/dist/entities/oauth-client.entity.js.map +1 -1
  8. package/dist/entities/scheduler-job.entity.d.ts +134 -0
  9. package/dist/entities/scheduler-job.entity.d.ts.map +1 -0
  10. package/dist/entities/scheduler-job.entity.js +48 -0
  11. package/dist/entities/scheduler-job.entity.js.map +1 -0
  12. package/dist/entities/user.entity.d.ts.map +1 -1
  13. package/dist/entities/user.entity.js +2 -2
  14. package/dist/entities/user.entity.js.map +1 -1
  15. package/dist/entrypoints/app.d.ts +1 -1
  16. package/dist/entrypoints/database/postgres/compiled-functions.d.ts +280 -170
  17. package/dist/entrypoints/database/postgres/compiled-functions.d.ts.map +1 -1
  18. package/dist/entrypoints/database/postgres/compiled-functions.js +3435 -2167
  19. package/dist/entrypoints/database/postgres/compiled-functions.js.map +1 -1
  20. package/dist/entrypoints/database/postgres/postgres.d.ts +7 -2
  21. package/dist/entrypoints/database/postgres/postgres.d.ts.map +1 -1
  22. package/dist/entrypoints/database/postgres/postgres.js +4 -5
  23. package/dist/entrypoints/database/postgres/postgres.js.map +1 -1
  24. package/dist/entrypoints/database/sqlite/compiled-functions.d.ts +280 -170
  25. package/dist/entrypoints/database/sqlite/compiled-functions.d.ts.map +1 -1
  26. package/dist/entrypoints/database/sqlite/compiled-functions.js +3435 -2167
  27. package/dist/entrypoints/database/sqlite/compiled-functions.js.map +1 -1
  28. package/dist/entrypoints/database/sqlite/sqlite.d.ts +6 -2
  29. package/dist/entrypoints/database/sqlite/sqlite.d.ts.map +1 -1
  30. package/dist/entrypoints/database/sqlite/sqlite.js +3 -4
  31. package/dist/entrypoints/database/sqlite/sqlite.js.map +1 -1
  32. package/dist/entrypoints/frontend/index.d.ts +0 -2
  33. package/dist/entrypoints/frontend/index.d.ts.map +1 -1
  34. package/dist/entrypoints/frontend/index.js +0 -1
  35. package/dist/entrypoints/frontend/index.js.map +1 -1
  36. package/dist/entrypoints/scheduler/cron.d.ts +3 -0
  37. package/dist/entrypoints/scheduler/cron.d.ts.map +1 -0
  38. package/dist/entrypoints/scheduler/cron.js +34 -0
  39. package/dist/entrypoints/scheduler/cron.js.map +1 -0
  40. package/dist/entrypoints/scheduler/croner.d.ts +1 -1
  41. package/dist/entrypoints/scheduler/croner.d.ts.map +1 -1
  42. package/dist/entrypoints/scheduler/croner.js +27 -7
  43. package/dist/entrypoints/scheduler/croner.js.map +1 -1
  44. package/dist/entrypoints/scheduler/database.d.ts +38 -0
  45. package/dist/entrypoints/scheduler/database.d.ts.map +1 -0
  46. package/dist/entrypoints/scheduler/database.js +444 -0
  47. package/dist/entrypoints/scheduler/database.js.map +1 -0
  48. package/dist/entrypoints/scheduler/distributed-runner.d.ts +134 -0
  49. package/dist/entrypoints/scheduler/distributed-runner.d.ts.map +1 -0
  50. package/dist/entrypoints/scheduler/distributed-runner.js +327 -0
  51. package/dist/entrypoints/scheduler/distributed-runner.js.map +1 -0
  52. package/dist/lib/config/client.d.ts.map +1 -1
  53. package/dist/lib/config/client.js +5 -1
  54. package/dist/lib/config/client.js.map +1 -1
  55. package/dist/lib/config/index.d.ts +2 -2
  56. package/dist/lib/config/index.d.ts.map +1 -1
  57. package/dist/lib/config/index.js +1 -1
  58. package/dist/lib/config/index.js.map +1 -1
  59. package/dist/lib/config/resolved.d.ts +1 -1
  60. package/dist/lib/config/resolved.d.ts.map +1 -1
  61. package/dist/lib/config/resolved.js +1 -1
  62. package/dist/lib/config/resolved.js.map +1 -1
  63. package/dist/lib/config/scheduler.d.ts +41 -2
  64. package/dist/lib/config/scheduler.d.ts.map +1 -1
  65. package/dist/lib/config/scheduler.js +9 -3
  66. package/dist/lib/config/scheduler.js.map +1 -1
  67. package/dist/lib/config/user.d.ts.map +1 -1
  68. package/dist/lib/config/user.js +5 -1
  69. package/dist/lib/config/user.js.map +1 -1
  70. package/dist/lib/database/entities.d.ts.map +1 -1
  71. package/dist/lib/database/entities.js +4 -0
  72. package/dist/lib/database/entities.js.map +1 -1
  73. package/dist/migrations/postgres/Migration20260509171036_initial.d.ts.map +1 -1
  74. package/dist/migrations/postgres/Migration20260509171036_initial.js +14 -14
  75. package/dist/migrations/postgres/Migration20260509171036_initial.js.map +1 -1
  76. package/dist/migrations/postgres/Migration20260512120000_add_scheduler_jobs.d.ts +5 -0
  77. package/dist/migrations/postgres/Migration20260512120000_add_scheduler_jobs.d.ts.map +1 -0
  78. package/dist/migrations/postgres/Migration20260512120000_add_scheduler_jobs.js +15 -0
  79. package/dist/migrations/postgres/Migration20260512120000_add_scheduler_jobs.js.map +1 -0
  80. package/dist/migrations/postgres/index.d.ts.map +1 -1
  81. package/dist/migrations/postgres/index.js +5 -1
  82. package/dist/migrations/postgres/index.js.map +1 -1
  83. package/dist/migrations/sqlite/Migration20260512120000_add_scheduler_jobs.d.ts +5 -0
  84. package/dist/migrations/sqlite/Migration20260512120000_add_scheduler_jobs.d.ts.map +1 -0
  85. package/dist/migrations/sqlite/Migration20260512120000_add_scheduler_jobs.js +13 -0
  86. package/dist/migrations/sqlite/Migration20260512120000_add_scheduler_jobs.js.map +1 -0
  87. package/dist/migrations/sqlite/index.d.ts.map +1 -1
  88. package/dist/migrations/sqlite/index.js +5 -1
  89. package/dist/migrations/sqlite/index.js.map +1 -1
  90. package/dist/repositories/background-job.repository.d.ts +5 -0
  91. package/dist/repositories/background-job.repository.d.ts.map +1 -0
  92. package/dist/repositories/background-job.repository.js +4 -0
  93. package/dist/repositories/background-job.repository.js.map +1 -0
  94. package/dist/repositories/scheduler-job.repository.d.ts +5 -0
  95. package/dist/repositories/scheduler-job.repository.d.ts.map +1 -0
  96. package/dist/repositories/scheduler-job.repository.js +4 -0
  97. package/dist/repositories/scheduler-job.repository.js.map +1 -0
  98. package/dist/schemas/field.d.ts +2 -1
  99. package/dist/schemas/field.d.ts.map +1 -1
  100. package/dist/schemas/field.js +6 -1
  101. package/dist/schemas/field.js.map +1 -1
  102. package/dist/schemas/oauth.js +1 -1
  103. package/dist/schemas/oauth.js.map +1 -1
  104. package/dist/schemas/response.d.ts +12 -12
  105. package/dist/schemas/response.js +2 -2
  106. package/dist/schemas/response.js.map +1 -1
  107. package/dist/services/container.d.ts +2 -2
  108. package/dist/services/container.d.ts.map +1 -1
  109. package/dist/services/container.js +7 -1
  110. package/dist/services/container.js.map +1 -1
  111. package/dist/services/mikro.service.d.ts +4 -0
  112. package/dist/services/mikro.service.d.ts.map +1 -1
  113. package/dist/services/mikro.service.js +6 -0
  114. package/dist/services/mikro.service.js.map +1 -1
  115. package/dist/services/scheduler.service.d.ts +6 -1
  116. package/dist/services/scheduler.service.d.ts.map +1 -1
  117. package/dist/services/scheduler.service.js +44 -11
  118. package/dist/services/scheduler.service.js.map +1 -1
  119. package/package.json +8 -18
  120. package/readme.md +0 -1
  121. package/dist/entrypoints/database/d1/cli.d.ts +0 -4
  122. package/dist/entrypoints/database/d1/cli.d.ts.map +0 -1
  123. package/dist/entrypoints/database/d1/cli.js +0 -45
  124. package/dist/entrypoints/database/d1/cli.js.map +0 -1
  125. package/dist/entrypoints/database/d1/compiled-functions.d.ts +0 -691
  126. package/dist/entrypoints/database/d1/compiled-functions.d.ts.map +0 -1
  127. package/dist/entrypoints/database/d1/compiled-functions.js +0 -8616
  128. package/dist/entrypoints/database/d1/compiled-functions.js.map +0 -1
  129. package/dist/entrypoints/database/d1/d1.d.ts +0 -5
  130. package/dist/entrypoints/database/d1/d1.d.ts.map +0 -1
  131. package/dist/entrypoints/database/d1/d1.js +0 -35
  132. package/dist/entrypoints/database/d1/d1.js.map +0 -1
  133. package/dist/entrypoints/frontend/cloudflare.d.ts +0 -2
  134. package/dist/entrypoints/frontend/cloudflare.d.ts.map +0 -1
  135. package/dist/entrypoints/frontend/cloudflare.js +0 -2
  136. package/dist/entrypoints/frontend/cloudflare.js.map +0 -1
  137. package/dist/lib/database/compiled-functions.d.ts +0 -16
  138. package/dist/lib/database/compiled-functions.d.ts.map +0 -1
  139. package/dist/lib/database/compiled-functions.js +0 -66
  140. package/dist/lib/database/compiled-functions.js.map +0 -1
  141. package/dist/lib/frontend/cloudflare.d.ts +0 -12
  142. package/dist/lib/frontend/cloudflare.d.ts.map +0 -1
  143. package/dist/lib/frontend/cloudflare.js +0 -34
  144. package/dist/lib/frontend/cloudflare.js.map +0 -1
  145. package/dist/migrations/d1/Migration20260509172833_initial.d.ts +0 -5
  146. package/dist/migrations/d1/Migration20260509172833_initial.d.ts.map +0 -1
  147. package/dist/migrations/d1/Migration20260509172833_initial.js +0 -62
  148. package/dist/migrations/d1/Migration20260509172833_initial.js.map +0 -1
  149. package/dist/migrations/d1/index.d.ts +0 -3
  150. package/dist/migrations/d1/index.d.ts.map +0 -1
  151. package/dist/migrations/d1/index.js +0 -3
  152. package/dist/migrations/d1/index.js.map +0 -1
@@ -1,8 +1,8 @@
1
1
  declare const _default: {
2
2
  __version: string;
3
- 'hydrator-user_totp_recovery_code_5000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_3: any, user_4: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
4
- 'hydrator-user_totp_recovery_code_5000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_11: any, user_12: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
5
- 'comparator-user_totp_recovery_code_5000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
3
+ 'hydrator-user_totp_recovery_code_6000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_3: any, user_4: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
4
+ 'hydrator-user_totp_recovery_code_6000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_11: any, user_12: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
5
+ 'comparator-user_totp_recovery_code_6000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
6
6
  id: any;
7
7
  created_at: any;
8
8
  updated_at: any;
@@ -11,7 +11,7 @@ declare const _default: {
11
11
  used: any;
12
12
  used_at: any;
13
13
  };
14
- 'snapshotGenerator-user_totp_recovery_code_5000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
14
+ 'snapshotGenerator-user_totp_recovery_code_6000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
15
15
  id: any;
16
16
  created_at: any;
17
17
  updated_at: any;
@@ -20,7 +20,7 @@ declare const _default: {
20
20
  used: any;
21
21
  used_at: any;
22
22
  };
23
- 'resultMapper-user_totp_recovery_code_5000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
23
+ 'resultMapper-user_totp_recovery_code_6000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
24
24
  id: any;
25
25
  created_at: any;
26
26
  updated_at: any;
@@ -29,14 +29,14 @@ declare const _default: {
29
29
  used: any;
30
30
  used_at: any;
31
31
  };
32
- 'hydrator-user_totp_recovery_code_5000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
33
- 'hydrator-user_totp_recovery_code_5000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
34
- 'pkGetter-user_totp_recovery_code_5000': (isEntityOrRef: any) => (entity: any) => any;
35
- 'pkGetterConverted-user_totp_recovery_code_5000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
36
- 'pkSerializer-user_totp_recovery_code_5000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
37
- 'hydrator-user_totp_4000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_21: any, user_22: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
38
- 'hydrator-user_totp_4000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_29: any, user_30: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
39
- 'comparator-user_totp_4000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
32
+ 'hydrator-user_totp_recovery_code_6000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
33
+ 'hydrator-user_totp_recovery_code_6000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
34
+ 'pkGetter-user_totp_recovery_code_6000': (isEntityOrRef: any) => (entity: any) => any;
35
+ 'pkGetterConverted-user_totp_recovery_code_6000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
36
+ 'pkSerializer-user_totp_recovery_code_6000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
37
+ 'hydrator-user_totp_5000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_21: any, user_22: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
38
+ 'hydrator-user_totp_5000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_29: any, user_30: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
39
+ 'comparator-user_totp_5000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
40
40
  id: any;
41
41
  created_at: any;
42
42
  updated_at: any;
@@ -45,7 +45,7 @@ declare const _default: {
45
45
  verified: any;
46
46
  recovery_confirmed: any;
47
47
  };
48
- 'snapshotGenerator-user_totp_4000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
48
+ 'snapshotGenerator-user_totp_5000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
49
49
  id: any;
50
50
  created_at: any;
51
51
  updated_at: any;
@@ -54,7 +54,7 @@ declare const _default: {
54
54
  verified: any;
55
55
  recovery_confirmed: any;
56
56
  };
57
- 'resultMapper-user_totp_4000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
57
+ 'resultMapper-user_totp_5000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
58
58
  id: any;
59
59
  created_at: any;
60
60
  updated_at: any;
@@ -63,14 +63,14 @@ declare const _default: {
63
63
  verified: any;
64
64
  recovery_confirmed: any;
65
65
  };
66
- 'hydrator-user_totp_4000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
67
- 'hydrator-user_totp_4000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
68
- 'pkGetter-user_totp_4000': (isEntityOrRef: any) => (entity: any) => any;
69
- 'pkGetterConverted-user_totp_4000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
70
- 'pkSerializer-user_totp_4000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
71
- 'hydrator-user_terms_consent_16000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_39: any, user_40: any, terms_41: any, terms_42: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
72
- 'hydrator-user_terms_consent_16000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_50: any, user_51: any, terms_52: any, terms_53: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
73
- 'comparator-user_terms_consent_16000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
66
+ 'hydrator-user_totp_5000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
67
+ 'hydrator-user_totp_5000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
68
+ 'pkGetter-user_totp_5000': (isEntityOrRef: any) => (entity: any) => any;
69
+ 'pkGetterConverted-user_totp_5000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
70
+ 'pkSerializer-user_totp_5000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
71
+ 'hydrator-user_terms_consent_18000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_39: any, user_40: any, terms_41: any, terms_42: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
72
+ 'hydrator-user_terms_consent_18000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_50: any, user_51: any, terms_52: any, terms_53: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
73
+ 'comparator-user_terms_consent_18000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
74
74
  id: any;
75
75
  created_at: any;
76
76
  updated_at: any;
@@ -81,7 +81,7 @@ declare const _default: {
81
81
  consentType: any;
82
82
  agreedAt: any;
83
83
  };
84
- 'snapshotGenerator-user_terms_consent_16000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
84
+ 'snapshotGenerator-user_terms_consent_18000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
85
85
  id: any;
86
86
  created_at: any;
87
87
  updated_at: any;
@@ -92,7 +92,7 @@ declare const _default: {
92
92
  consentType: any;
93
93
  agreedAt: any;
94
94
  };
95
- 'resultMapper-user_terms_consent_16000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
95
+ 'resultMapper-user_terms_consent_18000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
96
96
  id: any;
97
97
  created_at: any;
98
98
  updated_at: any;
@@ -103,14 +103,14 @@ declare const _default: {
103
103
  consentType: any;
104
104
  agreedAt: any;
105
105
  };
106
- 'hydrator-user_terms_consent_16000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
107
- 'hydrator-user_terms_consent_16000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
108
- 'pkGetter-user_terms_consent_16000': (isEntityOrRef: any) => (entity: any) => any;
109
- 'pkGetterConverted-user_terms_consent_16000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
110
- 'pkSerializer-user_terms_consent_16000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
111
- 'hydrator-user_passkey_3000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_63: any, user_64: any, convertToJSValue_transports: any, convertToDatabaseValue_transports: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
112
- 'hydrator-user_passkey_3000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_76: any, user_77: any, convertToJSValue_transports: any, convertToDatabaseValue_transports: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
113
- 'comparator-user_passkey_3000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
106
+ 'hydrator-user_terms_consent_18000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
107
+ 'hydrator-user_terms_consent_18000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
108
+ 'pkGetter-user_terms_consent_18000': (isEntityOrRef: any) => (entity: any) => any;
109
+ 'pkGetterConverted-user_terms_consent_18000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
110
+ 'pkSerializer-user_terms_consent_18000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
111
+ 'hydrator-user_passkey_4000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_63: any, user_64: any, convertToJSValue_transports: any, convertToDatabaseValue_transports: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
112
+ 'hydrator-user_passkey_4000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_76: any, user_77: any, convertToJSValue_transports: any, convertToDatabaseValue_transports: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
113
+ 'comparator-user_passkey_4000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
114
114
  id: any;
115
115
  created_at: any;
116
116
  updated_at: any;
@@ -124,7 +124,7 @@ declare const _default: {
124
124
  name: any;
125
125
  aaguid: any;
126
126
  };
127
- 'snapshotGenerator-user_passkey_3000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any, convertToDatabaseValue_transports: any) => (entity: any) => {
127
+ 'snapshotGenerator-user_passkey_4000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any, convertToDatabaseValue_transports: any) => (entity: any) => {
128
128
  id: any;
129
129
  created_at: any;
130
130
  updated_at: any;
@@ -138,7 +138,7 @@ declare const _default: {
138
138
  name: any;
139
139
  aaguid: any;
140
140
  };
141
- 'resultMapper-user_passkey_3000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
141
+ 'resultMapper-user_passkey_4000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
142
142
  id: any;
143
143
  created_at: any;
144
144
  updated_at: any;
@@ -152,14 +152,14 @@ declare const _default: {
152
152
  name: any;
153
153
  aaguid: any;
154
154
  };
155
- 'hydrator-user_passkey_3000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
156
- 'hydrator-user_passkey_3000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
157
- 'pkGetter-user_passkey_3000': (isEntityOrRef: any) => (entity: any) => any;
158
- 'pkGetterConverted-user_passkey_3000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
159
- 'pkSerializer-user_passkey_3000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
160
- 'hydrator-user_oauth_2000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_91: any, user_92: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
161
- 'hydrator-user_oauth_2000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_101: any, user_102: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
162
- 'comparator-user_oauth_2000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any, compareValues_4: any) => (last: any, current: any, options: any) => {
155
+ 'hydrator-user_passkey_4000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
156
+ 'hydrator-user_passkey_4000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
157
+ 'pkGetter-user_passkey_4000': (isEntityOrRef: any) => (entity: any) => any;
158
+ 'pkGetterConverted-user_passkey_4000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
159
+ 'pkSerializer-user_passkey_4000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
160
+ 'hydrator-user_oauth_3000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_91: any, user_92: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
161
+ 'hydrator-user_oauth_3000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_101: any, user_102: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
162
+ 'comparator-user_oauth_3000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any, compareValues_4: any) => (last: any, current: any, options: any) => {
163
163
  id: any;
164
164
  created_at: any;
165
165
  updated_at: any;
@@ -170,7 +170,7 @@ declare const _default: {
170
170
  refresh_token: any;
171
171
  expires_at: any;
172
172
  };
173
- 'snapshotGenerator-user_oauth_2000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
173
+ 'snapshotGenerator-user_oauth_3000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
174
174
  id: any;
175
175
  created_at: any;
176
176
  updated_at: any;
@@ -181,7 +181,7 @@ declare const _default: {
181
181
  refresh_token: any;
182
182
  expires_at: any;
183
183
  };
184
- 'resultMapper-user_oauth_2000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
184
+ 'resultMapper-user_oauth_3000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
185
185
  id: any;
186
186
  created_at: any;
187
187
  updated_at: any;
@@ -192,14 +192,14 @@ declare const _default: {
192
192
  refresh_token: any;
193
193
  expires_at: any;
194
194
  };
195
- 'hydrator-user_oauth_2000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
196
- 'hydrator-user_oauth_2000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
197
- 'pkGetter-user_oauth_2000': (isEntityOrRef: any) => (entity: any) => any;
198
- 'pkGetterConverted-user_oauth_2000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
199
- 'pkSerializer-user_oauth_2000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
200
- 'hydrator-user_6000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_sub: any, convertToDatabaseValue_sub: any, user_oauth_119: any, user_passkey_120: any, user_totp_121: any, user_totp_recovery_code_122: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
201
- 'hydrator-user_6000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_sub: any, convertToDatabaseValue_sub: any, user_oauth_132: any, user_passkey_133: any, user_totp_134: any, user_totp_recovery_code_135: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
202
- 'comparator-user_6000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
195
+ 'hydrator-user_oauth_3000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
196
+ 'hydrator-user_oauth_3000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
197
+ 'pkGetter-user_oauth_3000': (isEntityOrRef: any) => (entity: any) => any;
198
+ 'pkGetterConverted-user_oauth_3000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
199
+ 'pkSerializer-user_oauth_3000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
200
+ 'hydrator-user_7000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, user_oauth_119: any, user_passkey_120: any, user_totp_121: any, user_totp_recovery_code_122: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
201
+ 'hydrator-user_7000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, user_oauth_132: any, user_passkey_133: any, user_totp_134: any, user_totp_recovery_code_135: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
202
+ 'comparator-user_7000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
203
203
  sub: any;
204
204
  created_at: any;
205
205
  updated_at: any;
@@ -210,7 +210,7 @@ declare const _default: {
210
210
  role: any;
211
211
  deleted_at: any;
212
212
  };
213
- 'snapshotGenerator-user_6000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_sub: any, processDateProperty: any) => (entity: any) => {
213
+ 'snapshotGenerator-user_7000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
214
214
  sub: any;
215
215
  created_at: any;
216
216
  updated_at: any;
@@ -221,7 +221,7 @@ declare const _default: {
221
221
  role: any;
222
222
  deleted_at: any;
223
223
  };
224
- 'resultMapper-user_6000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
224
+ 'resultMapper-user_7000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
225
225
  sub: any;
226
226
  created_at: any;
227
227
  updated_at: any;
@@ -232,14 +232,14 @@ declare const _default: {
232
232
  role: any;
233
233
  deleted_at: any;
234
234
  };
235
- 'hydrator-user_6000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_sub: any, convertToDatabaseValue_sub: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
236
- 'hydrator-user_6000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_sub: any, convertToDatabaseValue_sub: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
237
- 'pkGetter-user_6000': (isEntityOrRef: any) => (entity: any) => any;
238
- 'pkGetterConverted-user_6000': (isEntityOrRef: any, convertToDatabaseValue_sub: any) => (entity: any) => any;
239
- 'pkSerializer-user_6000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_sub: any) => (entity: any) => any;
240
- 'hydrator-user_consent_11000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_141: any, user_142: any, oauth_client_143: any, oauth_client_144: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
241
- 'hydrator-user_consent_11000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_151: any, user_152: any, oauth_client_153: any, oauth_client_154: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
242
- 'comparator-user_consent_11000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
235
+ 'hydrator-user_7000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
236
+ 'hydrator-user_7000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
237
+ 'pkGetter-user_7000': (isEntityOrRef: any) => (entity: any) => any;
238
+ 'pkGetterConverted-user_7000': (isEntityOrRef: any) => (entity: any) => any;
239
+ 'pkSerializer-user_7000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
240
+ 'hydrator-user_consent_12000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_141: any, user_142: any, oauth_client_143: any, oauth_client_144: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
241
+ 'hydrator-user_consent_12000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_151: any, user_152: any, oauth_client_153: any, oauth_client_154: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
242
+ 'comparator-user_consent_12000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
243
243
  id: any;
244
244
  created_at: any;
245
245
  updated_at: any;
@@ -249,7 +249,7 @@ declare const _default: {
249
249
  granted_at: any;
250
250
  revoked_at: any;
251
251
  };
252
- 'snapshotGenerator-user_consent_11000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any, convertToDatabaseValue_scopes: any) => (entity: any) => {
252
+ 'snapshotGenerator-user_consent_12000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any, convertToDatabaseValue_scopes: any) => (entity: any) => {
253
253
  id: any;
254
254
  created_at: any;
255
255
  updated_at: any;
@@ -259,7 +259,7 @@ declare const _default: {
259
259
  granted_at: any;
260
260
  revoked_at: any;
261
261
  };
262
- 'resultMapper-user_consent_11000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
262
+ 'resultMapper-user_consent_12000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
263
263
  id: any;
264
264
  created_at: any;
265
265
  updated_at: any;
@@ -269,14 +269,14 @@ declare const _default: {
269
269
  granted_at: any;
270
270
  revoked_at: any;
271
271
  };
272
- 'hydrator-user_consent_11000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
273
- 'hydrator-user_consent_11000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
274
- 'pkGetter-user_consent_11000': (isEntityOrRef: any) => (entity: any) => any;
275
- 'pkGetterConverted-user_consent_11000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
276
- 'pkSerializer-user_consent_11000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
277
- 'hydrator-terms_17000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, terms_content_167: any, user_terms_consent_168: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
278
- 'hydrator-terms_17000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, terms_content_176: any, user_terms_consent_177: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
279
- 'comparator-terms_17000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
272
+ 'hydrator-user_consent_12000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
273
+ 'hydrator-user_consent_12000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
274
+ 'pkGetter-user_consent_12000': (isEntityOrRef: any) => (entity: any) => any;
275
+ 'pkGetterConverted-user_consent_12000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
276
+ 'pkSerializer-user_consent_12000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
277
+ 'hydrator-terms_19000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, terms_content_167: any, user_terms_consent_168: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
278
+ 'hydrator-terms_19000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, terms_content_176: any, user_terms_consent_177: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
279
+ 'comparator-terms_19000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
280
280
  id: any;
281
281
  created_at: any;
282
282
  updated_at: any;
@@ -285,7 +285,7 @@ declare const _default: {
285
285
  version: any;
286
286
  managed_by: any;
287
287
  };
288
- 'snapshotGenerator-terms_17000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
288
+ 'snapshotGenerator-terms_19000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
289
289
  id: any;
290
290
  created_at: any;
291
291
  updated_at: any;
@@ -294,7 +294,7 @@ declare const _default: {
294
294
  version: any;
295
295
  managed_by: any;
296
296
  };
297
- 'resultMapper-terms_17000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
297
+ 'resultMapper-terms_19000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
298
298
  id: any;
299
299
  created_at: any;
300
300
  updated_at: any;
@@ -303,14 +303,14 @@ declare const _default: {
303
303
  version: any;
304
304
  managed_by: any;
305
305
  };
306
- 'hydrator-terms_17000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
307
- 'hydrator-terms_17000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
308
- 'pkGetter-terms_17000': (isEntityOrRef: any) => (entity: any) => any;
309
- 'pkGetterConverted-terms_17000': (isEntityOrRef: any) => (entity: any) => any;
310
- 'pkSerializer-terms_17000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
311
- 'hydrator-terms_content_15000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, terms_183: any, terms_184: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
312
- 'hydrator-terms_content_15000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, terms_192: any, terms_193: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
313
- 'comparator-terms_content_15000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
306
+ 'hydrator-terms_19000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
307
+ 'hydrator-terms_19000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
308
+ 'pkGetter-terms_19000': (isEntityOrRef: any) => (entity: any) => any;
309
+ 'pkGetterConverted-terms_19000': (isEntityOrRef: any) => (entity: any) => any;
310
+ 'pkSerializer-terms_19000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
311
+ 'hydrator-terms_content_17000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, terms_183: any, terms_184: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
312
+ 'hydrator-terms_content_17000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, terms_192: any, terms_193: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
313
+ 'comparator-terms_content_17000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
314
314
  id: any;
315
315
  created_at: any;
316
316
  updated_at: any;
@@ -320,7 +320,7 @@ declare const _default: {
320
320
  type: any;
321
321
  content: any;
322
322
  };
323
- 'snapshotGenerator-terms_content_15000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
323
+ 'snapshotGenerator-terms_content_17000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
324
324
  id: any;
325
325
  created_at: any;
326
326
  updated_at: any;
@@ -330,7 +330,7 @@ declare const _default: {
330
330
  type: any;
331
331
  content: any;
332
332
  };
333
- 'resultMapper-terms_content_15000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
333
+ 'resultMapper-terms_content_17000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
334
334
  id: any;
335
335
  created_at: any;
336
336
  updated_at: any;
@@ -340,14 +340,72 @@ declare const _default: {
340
340
  type: any;
341
341
  content: any;
342
342
  };
343
- 'hydrator-terms_content_15000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
344
- 'hydrator-terms_content_15000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
345
- 'pkGetter-terms_content_15000': (isEntityOrRef: any) => (entity: any) => any;
346
- 'pkGetterConverted-terms_content_15000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
347
- 'pkSerializer-terms_content_15000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
348
- 'hydrator-revoked_tokens_10000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_205: any, oauth_client_206: any, user_207: any, user_208: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
349
- 'hydrator-revoked_tokens_10000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_216: any, oauth_client_217: any, user_218: any, user_219: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
350
- 'comparator-revoked_tokens_10000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
343
+ 'hydrator-terms_content_17000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
344
+ 'hydrator-terms_content_17000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
345
+ 'pkGetter-terms_content_17000': (isEntityOrRef: any) => (entity: any) => any;
346
+ 'pkGetterConverted-terms_content_17000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
347
+ 'pkSerializer-terms_content_17000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
348
+ 'hydrator-scheduled_jobs_16000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
349
+ 'hydrator-scheduled_jobs_16000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
350
+ 'comparator-scheduled_jobs_16000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
351
+ id: any;
352
+ created_at: any;
353
+ updated_at: any;
354
+ name: any;
355
+ enabled: any;
356
+ cron: any;
357
+ nextRunAt: any;
358
+ lastRunAt: any;
359
+ lastSuccessAt: any;
360
+ lastErrorAt: any;
361
+ lastError: any;
362
+ lockedBy: any;
363
+ lockedUntil: any;
364
+ runCount: any;
365
+ failureCount: any;
366
+ };
367
+ 'snapshotGenerator-scheduled_jobs_16000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
368
+ id: any;
369
+ created_at: any;
370
+ updated_at: any;
371
+ name: any;
372
+ enabled: any;
373
+ cron: any;
374
+ nextRunAt: any;
375
+ lastRunAt: any;
376
+ lastSuccessAt: any;
377
+ lastErrorAt: any;
378
+ lastError: any;
379
+ lockedBy: any;
380
+ lockedUntil: any;
381
+ runCount: any;
382
+ failureCount: any;
383
+ };
384
+ 'resultMapper-scheduled_jobs_16000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
385
+ id: any;
386
+ created_at: any;
387
+ updated_at: any;
388
+ name: any;
389
+ enabled: any;
390
+ cron: any;
391
+ nextRunAt: any;
392
+ lastRunAt: any;
393
+ lastSuccessAt: any;
394
+ lastErrorAt: any;
395
+ lastError: any;
396
+ lockedBy: any;
397
+ lockedUntil: any;
398
+ runCount: any;
399
+ failureCount: any;
400
+ };
401
+ 'hydrator-scheduled_jobs_16000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
402
+ 'hydrator-scheduled_jobs_16000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
403
+ 'pkGetter-scheduled_jobs_16000': (isEntityOrRef: any) => (entity: any) => any;
404
+ 'pkGetterConverted-scheduled_jobs_16000': (isEntityOrRef: any) => (entity: any) => any;
405
+ 'pkSerializer-scheduled_jobs_16000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
406
+ 'hydrator-revoked_tokens_11000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_237: any, oauth_client_238: any, user_239: any, user_240: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
407
+ 'hydrator-revoked_tokens_11000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_248: any, oauth_client_249: any, user_250: any, user_251: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
408
+ 'comparator-revoked_tokens_11000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
351
409
  id: any;
352
410
  created_at: any;
353
411
  updated_at: any;
@@ -358,7 +416,7 @@ declare const _default: {
358
416
  expires_at: any;
359
417
  revoked_at: any;
360
418
  };
361
- 'snapshotGenerator-revoked_tokens_10000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
419
+ 'snapshotGenerator-revoked_tokens_11000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
362
420
  id: any;
363
421
  created_at: any;
364
422
  updated_at: any;
@@ -369,7 +427,7 @@ declare const _default: {
369
427
  expires_at: any;
370
428
  revoked_at: any;
371
429
  };
372
- 'resultMapper-revoked_tokens_10000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
430
+ 'resultMapper-revoked_tokens_11000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
373
431
  id: any;
374
432
  created_at: any;
375
433
  updated_at: any;
@@ -380,14 +438,14 @@ declare const _default: {
380
438
  expires_at: any;
381
439
  revoked_at: any;
382
440
  };
383
- 'hydrator-revoked_tokens_10000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
384
- 'hydrator-revoked_tokens_10000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
385
- 'pkGetter-revoked_tokens_10000': (isEntityOrRef: any) => (entity: any) => any;
386
- 'pkGetterConverted-revoked_tokens_10000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
387
- 'pkSerializer-revoked_tokens_10000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
388
- 'hydrator-pending_oauth_registration_14000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, convertToJSValue_userInfo: any, convertToDatabaseValue_userInfo: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
389
- 'hydrator-pending_oauth_registration_14000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, convertToJSValue_userInfo: any, convertToDatabaseValue_userInfo: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
390
- 'comparator-pending_oauth_registration_14000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
441
+ 'hydrator-revoked_tokens_11000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
442
+ 'hydrator-revoked_tokens_11000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
443
+ 'pkGetter-revoked_tokens_11000': (isEntityOrRef: any) => (entity: any) => any;
444
+ 'pkGetterConverted-revoked_tokens_11000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
445
+ 'pkSerializer-revoked_tokens_11000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
446
+ 'hydrator-pending_oauth_registration_15000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, convertToJSValue_userInfo: any, convertToDatabaseValue_userInfo: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
447
+ 'hydrator-pending_oauth_registration_15000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, convertToJSValue_userInfo: any, convertToDatabaseValue_userInfo: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
448
+ 'comparator-pending_oauth_registration_15000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
391
449
  id: any;
392
450
  created_at: any;
393
451
  updated_at: any;
@@ -401,7 +459,7 @@ declare const _default: {
401
459
  returnUrl: any;
402
460
  expiresAt: any;
403
461
  };
404
- 'snapshotGenerator-pending_oauth_registration_14000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, convertToDatabaseValue_userInfo: any) => (entity: any) => {
462
+ 'snapshotGenerator-pending_oauth_registration_15000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, convertToDatabaseValue_userInfo: any) => (entity: any) => {
405
463
  id: any;
406
464
  created_at: any;
407
465
  updated_at: any;
@@ -415,7 +473,7 @@ declare const _default: {
415
473
  returnUrl: any;
416
474
  expiresAt: any;
417
475
  };
418
- 'resultMapper-pending_oauth_registration_14000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
476
+ 'resultMapper-pending_oauth_registration_15000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
419
477
  id: any;
420
478
  created_at: any;
421
479
  updated_at: any;
@@ -429,14 +487,14 @@ declare const _default: {
429
487
  returnUrl: any;
430
488
  expiresAt: any;
431
489
  };
432
- 'hydrator-pending_oauth_registration_14000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
433
- 'hydrator-pending_oauth_registration_14000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
434
- 'pkGetter-pending_oauth_registration_14000': (isEntityOrRef: any) => (entity: any) => any;
435
- 'pkGetterConverted-pending_oauth_registration_14000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
436
- 'pkSerializer-pending_oauth_registration_14000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
437
- 'hydrator-password_reset_13000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_253: any, user_254: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
438
- 'hydrator-password_reset_13000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_262: any, user_263: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
439
- 'comparator-password_reset_13000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
490
+ 'hydrator-pending_oauth_registration_15000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
491
+ 'hydrator-pending_oauth_registration_15000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
492
+ 'pkGetter-pending_oauth_registration_15000': (isEntityOrRef: any) => (entity: any) => any;
493
+ 'pkGetterConverted-pending_oauth_registration_15000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
494
+ 'pkSerializer-pending_oauth_registration_15000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
495
+ 'hydrator-password_reset_14000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_285: any, user_286: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
496
+ 'hydrator-password_reset_14000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_294: any, user_295: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
497
+ 'comparator-password_reset_14000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
440
498
  id: any;
441
499
  created_at: any;
442
500
  updated_at: any;
@@ -446,7 +504,7 @@ declare const _default: {
446
504
  used: any;
447
505
  usedAt: any;
448
506
  };
449
- 'snapshotGenerator-password_reset_13000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
507
+ 'snapshotGenerator-password_reset_14000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
450
508
  id: any;
451
509
  created_at: any;
452
510
  updated_at: any;
@@ -456,7 +514,7 @@ declare const _default: {
456
514
  used: any;
457
515
  usedAt: any;
458
516
  };
459
- 'resultMapper-password_reset_13000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
517
+ 'resultMapper-password_reset_14000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
460
518
  id: any;
461
519
  created_at: any;
462
520
  updated_at: any;
@@ -466,14 +524,14 @@ declare const _default: {
466
524
  used: any;
467
525
  usedAt: any;
468
526
  };
469
- 'hydrator-password_reset_13000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
470
- 'hydrator-password_reset_13000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
471
- 'pkGetter-password_reset_13000': (isEntityOrRef: any) => (entity: any) => any;
472
- 'pkGetterConverted-password_reset_13000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
473
- 'pkSerializer-password_reset_13000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
474
- 'hydrator-oauth_code_9000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_274: any, oauth_client_275: any, user_276: any, user_277: any, convertToJSValue_scope: any, convertToDatabaseValue_scope: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
475
- 'hydrator-oauth_code_9000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_290: any, oauth_client_291: any, user_292: any, user_293: any, convertToJSValue_scope: any, convertToDatabaseValue_scope: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
476
- 'comparator-oauth_code_9000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
527
+ 'hydrator-password_reset_14000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
528
+ 'hydrator-password_reset_14000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
529
+ 'pkGetter-password_reset_14000': (isEntityOrRef: any) => (entity: any) => any;
530
+ 'pkGetterConverted-password_reset_14000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
531
+ 'pkSerializer-password_reset_14000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
532
+ 'hydrator-oauth_code_10000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_306: any, oauth_client_307: any, user_308: any, user_309: any, convertToJSValue_scope: any, convertToDatabaseValue_scope: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
533
+ 'hydrator-oauth_code_10000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, oauth_client_322: any, oauth_client_323: any, user_324: any, user_325: any, convertToJSValue_scope: any, convertToDatabaseValue_scope: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
534
+ 'comparator-oauth_code_10000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
477
535
  id: any;
478
536
  created_at: any;
479
537
  updated_at: any;
@@ -489,7 +547,7 @@ declare const _default: {
489
547
  consumedAt: any;
490
548
  authTime: any;
491
549
  };
492
- 'snapshotGenerator-oauth_code_9000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any, convertToDatabaseValue_scope: any) => (entity: any) => {
550
+ 'snapshotGenerator-oauth_code_10000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any, convertToDatabaseValue_scope: any) => (entity: any) => {
493
551
  id: any;
494
552
  created_at: any;
495
553
  updated_at: any;
@@ -505,7 +563,7 @@ declare const _default: {
505
563
  consumedAt: any;
506
564
  authTime: any;
507
565
  };
508
- 'resultMapper-oauth_code_9000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
566
+ 'resultMapper-oauth_code_10000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
509
567
  id: any;
510
568
  created_at: any;
511
569
  updated_at: any;
@@ -521,14 +579,14 @@ declare const _default: {
521
579
  consumedAt: any;
522
580
  authTime: any;
523
581
  };
524
- 'hydrator-oauth_code_9000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
525
- 'hydrator-oauth_code_9000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
526
- 'pkGetter-oauth_code_9000': (isEntityOrRef: any) => (entity: any) => any;
527
- 'pkGetterConverted-oauth_code_9000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
528
- 'pkSerializer-oauth_code_9000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
529
- 'hydrator-oauth_client_12000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, convertToJSValue_grantTypes: any, convertToDatabaseValue_grantTypes: any, convertToJSValue_responseTypes: any, convertToDatabaseValue_responseTypes: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any, convertToJSValue_redirectUris: any, convertToDatabaseValue_redirectUris: any, oauth_code_317: any, user_consent_318: any, revoked_tokens_319: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
530
- 'hydrator-oauth_client_12000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, convertToJSValue_grantTypes: any, convertToDatabaseValue_grantTypes: any, convertToJSValue_responseTypes: any, convertToDatabaseValue_responseTypes: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any, convertToJSValue_redirectUris: any, convertToDatabaseValue_redirectUris: any, oauth_code_333: any, user_consent_334: any, revoked_tokens_335: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
531
- 'comparator-oauth_client_12000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
582
+ 'hydrator-oauth_code_10000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
583
+ 'hydrator-oauth_code_10000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
584
+ 'pkGetter-oauth_code_10000': (isEntityOrRef: any) => (entity: any) => any;
585
+ 'pkGetterConverted-oauth_code_10000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
586
+ 'pkSerializer-oauth_code_10000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
587
+ 'hydrator-oauth_client_13000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_grantTypes: any, convertToDatabaseValue_grantTypes: any, convertToJSValue_responseTypes: any, convertToDatabaseValue_responseTypes: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any, convertToJSValue_redirectUris: any, convertToDatabaseValue_redirectUris: any, oauth_code_349: any, user_consent_350: any, revoked_tokens_351: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
588
+ 'hydrator-oauth_client_13000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_grantTypes: any, convertToDatabaseValue_grantTypes: any, convertToJSValue_responseTypes: any, convertToDatabaseValue_responseTypes: any, convertToJSValue_scopes: any, convertToDatabaseValue_scopes: any, convertToJSValue_redirectUris: any, convertToDatabaseValue_redirectUris: any, oauth_code_365: any, user_consent_366: any, revoked_tokens_367: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
589
+ 'comparator-oauth_client_13000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
532
590
  id: any;
533
591
  created_at: any;
534
592
  updated_at: any;
@@ -543,7 +601,7 @@ declare const _default: {
543
601
  managed_by: any;
544
602
  logoUri: any;
545
603
  };
546
- 'snapshotGenerator-oauth_client_12000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, convertToDatabaseValue_grantTypes: any, convertToDatabaseValue_responseTypes: any, convertToDatabaseValue_scopes: any, convertToDatabaseValue_redirectUris: any) => (entity: any) => {
604
+ 'snapshotGenerator-oauth_client_13000': (clone: any, cloneEmbeddable: any, processDateProperty: any, convertToDatabaseValue_grantTypes: any, convertToDatabaseValue_responseTypes: any, convertToDatabaseValue_scopes: any, convertToDatabaseValue_redirectUris: any) => (entity: any) => {
547
605
  id: any;
548
606
  created_at: any;
549
607
  updated_at: any;
@@ -558,7 +616,7 @@ declare const _default: {
558
616
  managed_by: any;
559
617
  logoUri: any;
560
618
  };
561
- 'resultMapper-oauth_client_12000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
619
+ 'resultMapper-oauth_client_13000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
562
620
  id: any;
563
621
  created_at: any;
564
622
  updated_at: any;
@@ -573,14 +631,14 @@ declare const _default: {
573
631
  managed_by: any;
574
632
  logoUri: any;
575
633
  };
576
- 'hydrator-oauth_client_12000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
577
- 'hydrator-oauth_client_12000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
578
- 'pkGetter-oauth_client_12000': (isEntityOrRef: any) => (entity: any) => any;
579
- 'pkGetterConverted-oauth_client_12000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
580
- 'pkSerializer-oauth_client_12000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
581
- 'hydrator-jwt_key_8000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
582
- 'hydrator-jwt_key_8000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
583
- 'comparator-jwt_key_8000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
634
+ 'hydrator-oauth_client_13000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
635
+ 'hydrator-oauth_client_13000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
636
+ 'pkGetter-oauth_client_13000': (isEntityOrRef: any) => (entity: any) => any;
637
+ 'pkGetterConverted-oauth_client_13000': (isEntityOrRef: any) => (entity: any) => any;
638
+ 'pkSerializer-oauth_client_13000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
639
+ 'hydrator-jwt_key_9000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
640
+ 'hydrator-jwt_key_9000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
641
+ 'comparator-jwt_key_9000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
584
642
  kid: any;
585
643
  created_at: any;
586
644
  updated_at: any;
@@ -593,7 +651,7 @@ declare const _default: {
593
651
  retired_at: any;
594
652
  expires_at: any;
595
653
  };
596
- 'snapshotGenerator-jwt_key_8000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
654
+ 'snapshotGenerator-jwt_key_9000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
597
655
  kid: any;
598
656
  created_at: any;
599
657
  updated_at: any;
@@ -606,7 +664,7 @@ declare const _default: {
606
664
  retired_at: any;
607
665
  expires_at: any;
608
666
  };
609
- 'resultMapper-jwt_key_8000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
667
+ 'resultMapper-jwt_key_9000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
610
668
  kid: any;
611
669
  created_at: any;
612
670
  updated_at: any;
@@ -619,14 +677,14 @@ declare const _default: {
619
677
  retired_at: any;
620
678
  expires_at: any;
621
679
  };
622
- 'hydrator-jwt_key_8000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
623
- 'hydrator-jwt_key_8000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
624
- 'pkGetter-jwt_key_8000': (isEntityOrRef: any) => (entity: any) => any;
625
- 'pkGetterConverted-jwt_key_8000': (isEntityOrRef: any) => (entity: any) => any;
626
- 'pkSerializer-jwt_key_8000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
627
- 'hydrator-email_verification_7000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_365: any, user_366: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
628
- 'hydrator-email_verification_7000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_374: any, user_375: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
629
- 'comparator-email_verification_7000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
680
+ 'hydrator-jwt_key_9000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
681
+ 'hydrator-jwt_key_9000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
682
+ 'pkGetter-jwt_key_9000': (isEntityOrRef: any) => (entity: any) => any;
683
+ 'pkGetterConverted-jwt_key_9000': (isEntityOrRef: any) => (entity: any) => any;
684
+ 'pkSerializer-jwt_key_9000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
685
+ 'hydrator-email_verification_8000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_397: any, user_398: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
686
+ 'hydrator-email_verification_8000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any, user_406: any, user_407: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
687
+ 'comparator-email_verification_8000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
630
688
  id: any;
631
689
  created_at: any;
632
690
  updated_at: any;
@@ -636,7 +694,7 @@ declare const _default: {
636
694
  verified: any;
637
695
  verifiedAt: any;
638
696
  };
639
- 'snapshotGenerator-email_verification_7000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
697
+ 'snapshotGenerator-email_verification_8000': (clone: any, cloneEmbeddable: any, convertToDatabaseValue_id: any, processDateProperty: any, toArray: any, EntityIdentifier: any) => (entity: any) => {
640
698
  id: any;
641
699
  created_at: any;
642
700
  updated_at: any;
@@ -646,7 +704,7 @@ declare const _default: {
646
704
  verified: any;
647
705
  verifiedAt: any;
648
706
  };
649
- 'resultMapper-email_verification_7000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
707
+ 'resultMapper-email_verification_8000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
650
708
  id: any;
651
709
  created_at: any;
652
710
  updated_at: any;
@@ -656,36 +714,88 @@ declare const _default: {
656
714
  verified: any;
657
715
  verifiedAt: any;
658
716
  };
659
- 'hydrator-email_verification_7000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
660
- 'hydrator-email_verification_7000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
661
- 'pkGetter-email_verification_7000': (isEntityOrRef: any) => (entity: any) => any;
662
- 'pkGetterConverted-email_verification_7000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
663
- 'pkSerializer-email_verification_7000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
664
- 'hydrator-bootstrap_state_1000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
665
- 'hydrator-bootstrap_state_1000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
666
- 'comparator-bootstrap_state_1000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
717
+ 'hydrator-email_verification_8000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
718
+ 'hydrator-email_verification_8000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any, convertToJSValue_id: any, convertToDatabaseValue_id: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
719
+ 'pkGetter-email_verification_8000': (isEntityOrRef: any) => (entity: any) => any;
720
+ 'pkGetterConverted-email_verification_8000': (isEntityOrRef: any, convertToDatabaseValue_id: any) => (entity: any) => any;
721
+ 'pkSerializer-email_verification_8000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any, convertToDatabaseValue_id: any) => (entity: any) => any;
722
+ 'hydrator-bootstrap_state_2000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
723
+ 'hydrator-bootstrap_state_2000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
724
+ 'comparator-bootstrap_state_2000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
667
725
  id: any;
668
726
  created_at: any;
669
727
  updated_at: any;
670
728
  value: any;
671
729
  };
672
- 'snapshotGenerator-bootstrap_state_1000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
730
+ 'snapshotGenerator-bootstrap_state_2000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
673
731
  id: any;
674
732
  created_at: any;
675
733
  updated_at: any;
676
734
  value: any;
677
735
  };
678
- 'resultMapper-bootstrap_state_1000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
736
+ 'resultMapper-bootstrap_state_2000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
679
737
  id: any;
680
738
  created_at: any;
681
739
  updated_at: any;
682
740
  value: any;
683
741
  };
684
- 'hydrator-bootstrap_state_1000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
685
- 'hydrator-bootstrap_state_1000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
686
- 'pkGetter-bootstrap_state_1000': (isEntityOrRef: any) => (entity: any) => any;
687
- 'pkGetterConverted-bootstrap_state_1000': (isEntityOrRef: any) => (entity: any) => any;
688
- 'pkSerializer-bootstrap_state_1000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
742
+ 'hydrator-bootstrap_state_2000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
743
+ 'hydrator-bootstrap_state_2000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
744
+ 'pkGetter-bootstrap_state_2000': (isEntityOrRef: any) => (entity: any) => any;
745
+ 'pkGetterConverted-bootstrap_state_2000': (isEntityOrRef: any) => (entity: any) => any;
746
+ 'pkSerializer-bootstrap_state_2000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
747
+ 'hydrator-background_jobs_1000-full-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
748
+ 'hydrator-background_jobs_1000-full-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
749
+ 'comparator-background_jobs_1000': (compareArrays: any, compareBooleans: any, compareBuffers: any, compareObjects: any, equals: any) => (last: any, current: any, options: any) => {
750
+ id: any;
751
+ created_at: any;
752
+ updated_at: any;
753
+ jobId: any;
754
+ payload: any;
755
+ status: any;
756
+ availableAt: any;
757
+ lockedBy: any;
758
+ lockedUntil: any;
759
+ attemptCount: any;
760
+ maxAttempts: any;
761
+ lastError: any;
762
+ completedAt: any;
763
+ };
764
+ 'snapshotGenerator-background_jobs_1000': (clone: any, cloneEmbeddable: any, processDateProperty: any) => (entity: any) => {
765
+ id: any;
766
+ created_at: any;
767
+ updated_at: any;
768
+ jobId: any;
769
+ payload: any;
770
+ status: any;
771
+ availableAt: any;
772
+ lockedBy: any;
773
+ lockedUntil: any;
774
+ attemptCount: any;
775
+ maxAttempts: any;
776
+ lastError: any;
777
+ completedAt: any;
778
+ };
779
+ 'resultMapper-background_jobs_1000': (PolymorphicRef: any, parseDate: any) => (result: any) => {
780
+ id: any;
781
+ created_at: any;
782
+ updated_at: any;
783
+ jobId: any;
784
+ payload: any;
785
+ status: any;
786
+ availableAt: any;
787
+ lockedBy: any;
788
+ lockedUntil: any;
789
+ attemptCount: any;
790
+ maxAttempts: any;
791
+ lastError: any;
792
+ completedAt: any;
793
+ };
794
+ 'hydrator-background_jobs_1000-reference-false': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
795
+ 'hydrator-background_jobs_1000-reference-true': (isPrimaryKey: any, isEntity: any, isScalarReference: any, Collection: any, Reference: any, PolymorphicRef: any, ValidationError: any) => (entity: any, data: any, factory: any, newEntity: any, convertCustomTypes: any, schema: any, parentSchema: any, normalizeAccessors: any) => void;
796
+ 'pkGetter-background_jobs_1000': (isEntityOrRef: any) => (entity: any) => any;
797
+ 'pkGetterConverted-background_jobs_1000': (isEntityOrRef: any) => (entity: any) => any;
798
+ 'pkSerializer-background_jobs_1000': (isEntityOrRef: any, getCompositeKeyValue: any, getPrimaryKeyHash: any) => (entity: any) => string;
689
799
  };
690
800
  export default _default;
691
801
  //# sourceMappingURL=compiled-functions.d.ts.map