@managesome/knotr-toolkit 0.1.1 → 0.8.5

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 (300) hide show
  1. package/dist/backend/config.d.ts +43 -0
  2. package/dist/backend/config.d.ts.map +1 -0
  3. package/dist/backend/config.js +82 -0
  4. package/dist/backend/config.js.map +1 -0
  5. package/dist/backend/database.d.ts +28 -0
  6. package/dist/backend/database.d.ts.map +1 -0
  7. package/dist/backend/database.js +112 -0
  8. package/dist/backend/database.js.map +1 -0
  9. package/dist/backend/firebase.d.ts +68 -0
  10. package/dist/backend/firebase.d.ts.map +1 -0
  11. package/dist/backend/firebase.js +233 -0
  12. package/dist/backend/firebase.js.map +1 -0
  13. package/dist/backend/index.d.ts +8 -0
  14. package/dist/backend/index.d.ts.map +1 -0
  15. package/dist/backend/index.js +19 -0
  16. package/dist/backend/index.js.map +1 -0
  17. package/dist/backend/logger.d.ts +23 -0
  18. package/dist/backend/logger.d.ts.map +1 -0
  19. package/dist/backend/logger.js +107 -0
  20. package/dist/backend/logger.js.map +1 -0
  21. package/dist/backend/redis.d.ts +59 -0
  22. package/dist/backend/redis.d.ts.map +1 -0
  23. package/dist/backend/redis.js +169 -0
  24. package/dist/backend/redis.js.map +1 -0
  25. package/dist/backend/socket.d.ts +81 -0
  26. package/dist/backend/socket.d.ts.map +1 -0
  27. package/dist/backend/socket.js +132 -0
  28. package/dist/backend/socket.js.map +1 -0
  29. package/dist/backend/worker-queue.d.ts +40 -0
  30. package/dist/backend/worker-queue.d.ts.map +1 -0
  31. package/dist/backend/worker-queue.js +140 -0
  32. package/dist/backend/worker-queue.js.map +1 -0
  33. package/dist/client/api-client.d.ts +101 -0
  34. package/dist/client/api-client.d.ts.map +1 -0
  35. package/dist/client/api-client.js +261 -0
  36. package/dist/client/api-client.js.map +1 -0
  37. package/dist/client/api-error.d.ts +100 -0
  38. package/dist/client/api-error.d.ts.map +1 -0
  39. package/dist/client/api-error.js +111 -0
  40. package/dist/client/api-error.js.map +1 -0
  41. package/dist/client/endpoints.d.ts +510 -0
  42. package/dist/client/endpoints.d.ts.map +1 -0
  43. package/dist/client/endpoints.js +306 -0
  44. package/dist/client/endpoints.js.map +1 -0
  45. package/dist/client/index.d.ts +4 -0
  46. package/dist/client/index.d.ts.map +1 -0
  47. package/dist/client/index.js +7 -0
  48. package/dist/client/index.js.map +1 -0
  49. package/dist/constants/index.d.ts +2 -1
  50. package/dist/constants/index.d.ts.map +1 -1
  51. package/dist/constants/index.js +2 -1
  52. package/dist/constants/index.js.map +1 -1
  53. package/dist/constants/socket.d.ts +165 -0
  54. package/dist/constants/socket.d.ts.map +1 -0
  55. package/dist/constants/socket.js +204 -0
  56. package/dist/constants/socket.js.map +1 -0
  57. package/dist/helpers/ApiError.d.ts +74 -0
  58. package/dist/helpers/ApiError.d.ts.map +1 -0
  59. package/dist/helpers/ApiError.js +105 -0
  60. package/dist/helpers/ApiError.js.map +1 -0
  61. package/dist/helpers/asyncHandler.d.ts +42 -0
  62. package/dist/helpers/asyncHandler.d.ts.map +1 -0
  63. package/dist/helpers/asyncHandler.js +47 -0
  64. package/dist/helpers/asyncHandler.js.map +1 -0
  65. package/dist/helpers/id-generator.d.ts +98 -0
  66. package/dist/helpers/id-generator.d.ts.map +1 -0
  67. package/dist/helpers/id-generator.js +128 -0
  68. package/dist/helpers/id-generator.js.map +1 -0
  69. package/dist/helpers/index.d.ts +5 -0
  70. package/dist/helpers/index.d.ts.map +1 -0
  71. package/dist/helpers/index.js +8 -0
  72. package/dist/helpers/index.js.map +1 -0
  73. package/dist/helpers/response-timing.d.ts +91 -0
  74. package/dist/helpers/response-timing.d.ts.map +1 -0
  75. package/dist/helpers/response-timing.js +176 -0
  76. package/dist/helpers/response-timing.js.map +1 -0
  77. package/dist/index.d.ts +7 -3
  78. package/dist/index.d.ts.map +1 -1
  79. package/dist/index.js +21 -3
  80. package/dist/index.js.map +1 -1
  81. package/dist/schemas/account.schema.d.ts +4500 -0
  82. package/dist/schemas/account.schema.d.ts.map +1 -0
  83. package/dist/schemas/account.schema.js +123 -0
  84. package/dist/schemas/account.schema.js.map +1 -0
  85. package/dist/schemas/chat.schema.d.ts +4796 -0
  86. package/dist/schemas/chat.schema.d.ts.map +1 -0
  87. package/dist/schemas/chat.schema.js +107 -0
  88. package/dist/schemas/chat.schema.js.map +1 -0
  89. package/dist/schemas/collaboration-request.schema.d.ts +3960 -0
  90. package/dist/schemas/collaboration-request.schema.d.ts.map +1 -0
  91. package/dist/schemas/collaboration-request.schema.js +92 -0
  92. package/dist/schemas/collaboration-request.schema.js.map +1 -0
  93. package/dist/schemas/company-review.schema.d.ts +3465 -0
  94. package/dist/schemas/company-review.schema.d.ts.map +1 -0
  95. package/dist/schemas/company-review.schema.js +73 -0
  96. package/dist/schemas/company-review.schema.js.map +1 -0
  97. package/dist/schemas/company.schema.d.ts +6152 -0
  98. package/dist/schemas/company.schema.d.ts.map +1 -0
  99. package/dist/schemas/company.schema.js +192 -0
  100. package/dist/schemas/company.schema.js.map +1 -0
  101. package/dist/schemas/contract.schema.d.ts +5286 -0
  102. package/dist/schemas/contract.schema.d.ts.map +1 -0
  103. package/dist/schemas/contract.schema.js +115 -0
  104. package/dist/schemas/contract.schema.js.map +1 -0
  105. package/dist/schemas/dispute-evidence.schema.d.ts +3788 -0
  106. package/dist/schemas/dispute-evidence.schema.d.ts.map +1 -0
  107. package/dist/schemas/dispute-evidence.schema.js +71 -0
  108. package/dist/schemas/dispute-evidence.schema.js.map +1 -0
  109. package/dist/schemas/dispute.schema.d.ts +4970 -0
  110. package/dist/schemas/dispute.schema.d.ts.map +1 -0
  111. package/dist/schemas/dispute.schema.js +152 -0
  112. package/dist/schemas/dispute.schema.js.map +1 -0
  113. package/dist/schemas/donation.schema.d.ts +3594 -0
  114. package/dist/schemas/donation.schema.d.ts.map +1 -0
  115. package/dist/schemas/donation.schema.js +95 -0
  116. package/dist/schemas/donation.schema.js.map +1 -0
  117. package/dist/schemas/escrow.schema.d.ts +4322 -0
  118. package/dist/schemas/escrow.schema.d.ts.map +1 -0
  119. package/dist/schemas/escrow.schema.js +93 -0
  120. package/dist/schemas/escrow.schema.js.map +1 -0
  121. package/dist/schemas/flag.schema.d.ts +4375 -0
  122. package/dist/schemas/flag.schema.d.ts.map +1 -0
  123. package/dist/schemas/flag.schema.js +133 -0
  124. package/dist/schemas/flag.schema.js.map +1 -0
  125. package/dist/schemas/index.d.ts +33 -0
  126. package/dist/schemas/index.d.ts.map +1 -0
  127. package/dist/schemas/index.js +39 -0
  128. package/dist/schemas/index.js.map +1 -0
  129. package/dist/schemas/interest.schema.d.ts +3804 -0
  130. package/dist/schemas/interest.schema.d.ts.map +1 -0
  131. package/dist/schemas/interest.schema.js +107 -0
  132. package/dist/schemas/interest.schema.js.map +1 -0
  133. package/dist/schemas/match.schema.d.ts +4013 -0
  134. package/dist/schemas/match.schema.d.ts.map +1 -0
  135. package/dist/schemas/match.schema.js +118 -0
  136. package/dist/schemas/match.schema.js.map +1 -0
  137. package/dist/schemas/message.schema.d.ts +4213 -0
  138. package/dist/schemas/message.schema.d.ts.map +1 -0
  139. package/dist/schemas/message.schema.js +134 -0
  140. package/dist/schemas/message.schema.js.map +1 -0
  141. package/dist/schemas/milestone.schema.d.ts +4310 -0
  142. package/dist/schemas/milestone.schema.d.ts.map +1 -0
  143. package/dist/schemas/milestone.schema.js +99 -0
  144. package/dist/schemas/milestone.schema.js.map +1 -0
  145. package/dist/schemas/notification.schema.d.ts +4641 -0
  146. package/dist/schemas/notification.schema.d.ts.map +1 -0
  147. package/dist/schemas/notification.schema.js +139 -0
  148. package/dist/schemas/notification.schema.js.map +1 -0
  149. package/dist/schemas/profile.schema.d.ts +9589 -0
  150. package/dist/schemas/profile.schema.d.ts.map +1 -0
  151. package/dist/schemas/profile.schema.js +360 -0
  152. package/dist/schemas/profile.schema.js.map +1 -0
  153. package/dist/schemas/profit-share-agreement.schema.d.ts +3789 -0
  154. package/dist/schemas/profit-share-agreement.schema.d.ts.map +1 -0
  155. package/dist/schemas/profit-share-agreement.schema.js +76 -0
  156. package/dist/schemas/profit-share-agreement.schema.js.map +1 -0
  157. package/dist/schemas/profit-share.schema.d.ts +4051 -0
  158. package/dist/schemas/profit-share.schema.d.ts.map +1 -0
  159. package/dist/schemas/profit-share.schema.js +96 -0
  160. package/dist/schemas/profit-share.schema.js.map +1 -0
  161. package/dist/schemas/promo-code.schema.d.ts +3924 -0
  162. package/dist/schemas/promo-code.schema.d.ts.map +1 -0
  163. package/dist/schemas/promo-code.schema.js +112 -0
  164. package/dist/schemas/promo-code.schema.js.map +1 -0
  165. package/dist/schemas/proposal.schema.d.ts +5182 -0
  166. package/dist/schemas/proposal.schema.d.ts.map +1 -0
  167. package/dist/schemas/proposal.schema.js +114 -0
  168. package/dist/schemas/proposal.schema.js.map +1 -0
  169. package/dist/schemas/purchase.schema.d.ts +3724 -0
  170. package/dist/schemas/purchase.schema.d.ts.map +1 -0
  171. package/dist/schemas/purchase.schema.js +89 -0
  172. package/dist/schemas/purchase.schema.js.map +1 -0
  173. package/dist/schemas/requirement-post.schema.d.ts +6315 -0
  174. package/dist/schemas/requirement-post.schema.d.ts.map +1 -0
  175. package/dist/schemas/requirement-post.schema.js +153 -0
  176. package/dist/schemas/requirement-post.schema.js.map +1 -0
  177. package/dist/schemas/review.schema.d.ts +4512 -0
  178. package/dist/schemas/review.schema.d.ts.map +1 -0
  179. package/dist/schemas/review.schema.js +121 -0
  180. package/dist/schemas/review.schema.js.map +1 -0
  181. package/dist/schemas/service-listing.schema.d.ts +5152 -0
  182. package/dist/schemas/service-listing.schema.d.ts.map +1 -0
  183. package/dist/schemas/service-listing.schema.js +137 -0
  184. package/dist/schemas/service-listing.schema.js.map +1 -0
  185. package/dist/schemas/subscription.schema.d.ts +3985 -0
  186. package/dist/schemas/subscription.schema.d.ts.map +1 -0
  187. package/dist/schemas/subscription.schema.js +94 -0
  188. package/dist/schemas/subscription.schema.js.map +1 -0
  189. package/dist/schemas/tmc-application.schema.d.ts +4357 -0
  190. package/dist/schemas/tmc-application.schema.d.ts.map +1 -0
  191. package/dist/schemas/tmc-application.schema.js +96 -0
  192. package/dist/schemas/tmc-application.schema.js.map +1 -0
  193. package/dist/schemas/tmc-membership.schema.d.ts +3985 -0
  194. package/dist/schemas/tmc-membership.schema.d.ts.map +1 -0
  195. package/dist/schemas/tmc-membership.schema.js +84 -0
  196. package/dist/schemas/tmc-membership.schema.js.map +1 -0
  197. package/dist/schemas/trust-badge.schema.d.ts +3919 -0
  198. package/dist/schemas/trust-badge.schema.d.ts.map +1 -0
  199. package/dist/schemas/trust-badge.schema.js +83 -0
  200. package/dist/schemas/trust-badge.schema.js.map +1 -0
  201. package/dist/schemas/verification.schema.d.ts +4606 -0
  202. package/dist/schemas/verification.schema.d.ts.map +1 -0
  203. package/dist/schemas/verification.schema.js +114 -0
  204. package/dist/schemas/verification.schema.js.map +1 -0
  205. package/dist/schemas/webhook-event.schema.d.ts +3534 -0
  206. package/dist/schemas/webhook-event.schema.d.ts.map +1 -0
  207. package/dist/schemas/webhook-event.schema.js +83 -0
  208. package/dist/schemas/webhook-event.schema.js.map +1 -0
  209. package/dist/types/account.d.ts +36 -7
  210. package/dist/types/account.d.ts.map +1 -1
  211. package/dist/types/account.js +3 -1
  212. package/dist/types/account.js.map +1 -1
  213. package/dist/types/admin.d.ts +20 -10
  214. package/dist/types/admin.d.ts.map +1 -1
  215. package/dist/types/admin.js +3 -1
  216. package/dist/types/admin.js.map +1 -1
  217. package/dist/types/api.d.ts +184 -109
  218. package/dist/types/api.d.ts.map +1 -1
  219. package/dist/types/api.js +2 -1
  220. package/dist/types/api.js.map +1 -1
  221. package/dist/types/chat.d.ts +38 -20
  222. package/dist/types/chat.d.ts.map +1 -1
  223. package/dist/types/chat.js +3 -1
  224. package/dist/types/chat.js.map +1 -1
  225. package/dist/types/common.d.ts +39 -12
  226. package/dist/types/common.d.ts.map +1 -1
  227. package/dist/types/common.js +4 -1
  228. package/dist/types/common.js.map +1 -1
  229. package/dist/types/company.d.ts +61 -44
  230. package/dist/types/company.d.ts.map +1 -1
  231. package/dist/types/company.js +3 -1
  232. package/dist/types/company.js.map +1 -1
  233. package/dist/types/flag.d.ts +19 -8
  234. package/dist/types/flag.d.ts.map +1 -1
  235. package/dist/types/flag.js +3 -1
  236. package/dist/types/flag.js.map +1 -1
  237. package/dist/types/forms.d.ts +334 -0
  238. package/dist/types/forms.d.ts.map +1 -0
  239. package/dist/types/forms.js +5 -0
  240. package/dist/types/forms.js.map +1 -0
  241. package/dist/types/index.d.ts +18 -13
  242. package/dist/types/index.d.ts.map +1 -1
  243. package/dist/types/index.js +18 -13
  244. package/dist/types/index.js.map +1 -1
  245. package/dist/types/marketplace.d.ts +174 -104
  246. package/dist/types/marketplace.d.ts.map +1 -1
  247. package/dist/types/marketplace.js +2 -0
  248. package/dist/types/marketplace.js.map +1 -1
  249. package/dist/types/match.d.ts +36 -19
  250. package/dist/types/match.d.ts.map +1 -1
  251. package/dist/types/match.js +3 -1
  252. package/dist/types/match.js.map +1 -1
  253. package/dist/types/navigation.d.ts +305 -0
  254. package/dist/types/navigation.d.ts.map +1 -0
  255. package/dist/types/navigation.js +18 -0
  256. package/dist/types/navigation.js.map +1 -0
  257. package/dist/types/notification.d.ts +92 -0
  258. package/dist/types/notification.d.ts.map +1 -0
  259. package/dist/types/notification.js +5 -0
  260. package/dist/types/notification.js.map +1 -0
  261. package/dist/types/payment.d.ts +70 -38
  262. package/dist/types/payment.d.ts.map +1 -1
  263. package/dist/types/payment.js +3 -1
  264. package/dist/types/payment.js.map +1 -1
  265. package/dist/types/policy.d.ts +174 -81
  266. package/dist/types/policy.d.ts.map +1 -1
  267. package/dist/types/policy.js.map +1 -1
  268. package/dist/types/profile.d.ts +48 -37
  269. package/dist/types/profile.d.ts.map +1 -1
  270. package/dist/types/profile.js +3 -1
  271. package/dist/types/profile.js.map +1 -1
  272. package/dist/types/socket.d.ts +431 -0
  273. package/dist/types/socket.d.ts.map +1 -0
  274. package/dist/types/socket.js +5 -0
  275. package/dist/types/socket.js.map +1 -0
  276. package/dist/types/verification.d.ts +18 -9
  277. package/dist/types/verification.d.ts.map +1 -1
  278. package/dist/types/verification.js +3 -1
  279. package/dist/types/verification.js.map +1 -1
  280. package/dist/types/worker.d.ts +452 -0
  281. package/dist/types/worker.d.ts.map +1 -0
  282. package/dist/types/worker.js +5 -0
  283. package/dist/types/worker.js.map +1 -0
  284. package/dist/validation/index.d.ts +5 -0
  285. package/dist/validation/index.d.ts.map +1 -0
  286. package/dist/validation/index.js +9 -0
  287. package/dist/validation/index.js.map +1 -0
  288. package/dist/validation/messages.d.ts +124 -0
  289. package/dist/validation/messages.d.ts.map +1 -0
  290. package/dist/validation/messages.js +160 -0
  291. package/dist/validation/messages.js.map +1 -0
  292. package/dist/validation/schemas.d.ts +1127 -0
  293. package/dist/validation/schemas.d.ts.map +1 -0
  294. package/dist/validation/schemas.js +376 -0
  295. package/dist/validation/schemas.js.map +1 -0
  296. package/dist/validation/validators.d.ts +229 -0
  297. package/dist/validation/validators.d.ts.map +1 -0
  298. package/dist/validation/validators.js +307 -0
  299. package/dist/validation/validators.js.map +1 -0
  300. package/package.json +37 -3
@@ -0,0 +1,4606 @@
1
+ import { HydratedDocument, Model, Schema } from 'mongoose';
2
+ import { IdDocumentType, IVerification, VerificationStatus } from '../types/verification.js';
3
+ export type VerificationDocument = HydratedDocument<Omit<IVerification, 'id'> & {
4
+ _id: string;
5
+ }>;
6
+ export interface VerificationModel extends Model<VerificationDocument> {
7
+ findByProfileId(profileId: string): Promise<VerificationDocument | null>;
8
+ findByAccountId(accountId: string): Promise<VerificationDocument[]>;
9
+ findPending(): Promise<VerificationDocument[]>;
10
+ findExpiring(days: number): Promise<VerificationDocument[]>;
11
+ }
12
+ export declare function createVerificationSchema(): Schema<VerificationDocument, VerificationModel>;
13
+ export declare const VerificationSchema: Schema<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
14
+ _id: string;
15
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
16
+ _id: string;
17
+ } & Required<{
18
+ _id: string;
19
+ }> & {
20
+ __v: number;
21
+ } & {
22
+ id: string;
23
+ }, VerificationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
24
+ _id: string;
25
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
26
+ _id: string;
27
+ } & Required<{
28
+ _id: string;
29
+ }> & {
30
+ __v: number;
31
+ } & {
32
+ id: string;
33
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
34
+ _id: string;
35
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
36
+ _id: string;
37
+ } & Required<{
38
+ _id: string;
39
+ }> & {
40
+ __v: number;
41
+ } & {
42
+ id: string;
43
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
44
+ _id: string;
45
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
46
+ _id: string;
47
+ } & Required<{
48
+ _id: string;
49
+ }> & {
50
+ __v: number;
51
+ } & {
52
+ id: string;
53
+ }, {
54
+ _id?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
55
+ _id: string;
56
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
57
+ _id: string;
58
+ } & Required<{
59
+ _id: string;
60
+ }> & {
61
+ __v: number;
62
+ } & {
63
+ id: string;
64
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
65
+ _id: string;
66
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
67
+ _id: string;
68
+ } & Required<{
69
+ _id: string;
70
+ }> & {
71
+ __v: number;
72
+ } & {
73
+ id: string;
74
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
75
+ _id: string;
76
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
77
+ _id: string;
78
+ } & Required<{
79
+ _id: string;
80
+ }> & {
81
+ __v: number;
82
+ } & {
83
+ id: string;
84
+ }> | undefined;
85
+ $assertPopulated?: import("mongoose").SchemaDefinitionProperty<(<Paths = {}>(path: string | string[], values?: Partial<Paths> | undefined) => Omit<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
86
+ _id: string;
87
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
88
+ _id: string;
89
+ } & Required<{
90
+ _id: string;
91
+ }> & {
92
+ __v: number;
93
+ } & {
94
+ id: string;
95
+ }, keyof Paths> & Paths), import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
96
+ _id: string;
97
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
98
+ _id: string;
99
+ } & Required<{
100
+ _id: string;
101
+ }> & {
102
+ __v: number;
103
+ } & {
104
+ id: string;
105
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
106
+ _id: string;
107
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
108
+ _id: string;
109
+ } & Required<{
110
+ _id: string;
111
+ }> & {
112
+ __v: number;
113
+ } & {
114
+ id: string;
115
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
116
+ _id: string;
117
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
118
+ _id: string;
119
+ } & Required<{
120
+ _id: string;
121
+ }> & {
122
+ __v: number;
123
+ } & {
124
+ id: string;
125
+ }> | undefined;
126
+ $clearModifiedPaths?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
127
+ _id: string;
128
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
129
+ _id: string;
130
+ } & Required<{
131
+ _id: string;
132
+ }> & {
133
+ __v: number;
134
+ } & {
135
+ id: string;
136
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
137
+ _id: string;
138
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
139
+ _id: string;
140
+ } & Required<{
141
+ _id: string;
142
+ }> & {
143
+ __v: number;
144
+ } & {
145
+ id: string;
146
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
147
+ _id: string;
148
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
149
+ _id: string;
150
+ } & Required<{
151
+ _id: string;
152
+ }> & {
153
+ __v: number;
154
+ } & {
155
+ id: string;
156
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
157
+ _id: string;
158
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
159
+ _id: string;
160
+ } & Required<{
161
+ _id: string;
162
+ }> & {
163
+ __v: number;
164
+ } & {
165
+ id: string;
166
+ }> | undefined;
167
+ $clone?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
168
+ _id: string;
169
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
170
+ _id: string;
171
+ } & Required<{
172
+ _id: string;
173
+ }> & {
174
+ __v: number;
175
+ } & {
176
+ id: string;
177
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
178
+ _id: string;
179
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
180
+ _id: string;
181
+ } & Required<{
182
+ _id: string;
183
+ }> & {
184
+ __v: number;
185
+ } & {
186
+ id: string;
187
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
188
+ _id: string;
189
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
190
+ _id: string;
191
+ } & Required<{
192
+ _id: string;
193
+ }> & {
194
+ __v: number;
195
+ } & {
196
+ id: string;
197
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
198
+ _id: string;
199
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
200
+ _id: string;
201
+ } & Required<{
202
+ _id: string;
203
+ }> & {
204
+ __v: number;
205
+ } & {
206
+ id: string;
207
+ }> | undefined;
208
+ $createModifiedPathsSnapshot?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").ModifiedPathsSnapshot, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
209
+ _id: string;
210
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
211
+ _id: string;
212
+ } & Required<{
213
+ _id: string;
214
+ }> & {
215
+ __v: number;
216
+ } & {
217
+ id: string;
218
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
219
+ _id: string;
220
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
221
+ _id: string;
222
+ } & Required<{
223
+ _id: string;
224
+ }> & {
225
+ __v: number;
226
+ } & {
227
+ id: string;
228
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
229
+ _id: string;
230
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
231
+ _id: string;
232
+ } & Required<{
233
+ _id: string;
234
+ }> & {
235
+ __v: number;
236
+ } & {
237
+ id: string;
238
+ }> | undefined;
239
+ $getAllSubdocs?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").Document[], import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
240
+ _id: string;
241
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
242
+ _id: string;
243
+ } & Required<{
244
+ _id: string;
245
+ }> & {
246
+ __v: number;
247
+ } & {
248
+ id: string;
249
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
250
+ _id: string;
251
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
252
+ _id: string;
253
+ } & Required<{
254
+ _id: string;
255
+ }> & {
256
+ __v: number;
257
+ } & {
258
+ id: string;
259
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
260
+ _id: string;
261
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
262
+ _id: string;
263
+ } & Required<{
264
+ _id: string;
265
+ }> & {
266
+ __v: number;
267
+ } & {
268
+ id: string;
269
+ }> | undefined;
270
+ $ignore?: import("mongoose").SchemaDefinitionProperty<(path: string) => void, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
271
+ _id: string;
272
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
273
+ _id: string;
274
+ } & Required<{
275
+ _id: string;
276
+ }> & {
277
+ __v: number;
278
+ } & {
279
+ id: string;
280
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
281
+ _id: string;
282
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
283
+ _id: string;
284
+ } & Required<{
285
+ _id: string;
286
+ }> & {
287
+ __v: number;
288
+ } & {
289
+ id: string;
290
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
291
+ _id: string;
292
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
293
+ _id: string;
294
+ } & Required<{
295
+ _id: string;
296
+ }> & {
297
+ __v: number;
298
+ } & {
299
+ id: string;
300
+ }> | undefined;
301
+ $isDefault?: import("mongoose").SchemaDefinitionProperty<(path?: string) => boolean, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
302
+ _id: string;
303
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
304
+ _id: string;
305
+ } & Required<{
306
+ _id: string;
307
+ }> & {
308
+ __v: number;
309
+ } & {
310
+ id: string;
311
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
312
+ _id: string;
313
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
314
+ _id: string;
315
+ } & Required<{
316
+ _id: string;
317
+ }> & {
318
+ __v: number;
319
+ } & {
320
+ id: string;
321
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
322
+ _id: string;
323
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
324
+ _id: string;
325
+ } & Required<{
326
+ _id: string;
327
+ }> & {
328
+ __v: number;
329
+ } & {
330
+ id: string;
331
+ }> | undefined;
332
+ $isDeleted?: import("mongoose").SchemaDefinitionProperty<(val?: boolean) => boolean, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
333
+ _id: string;
334
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
335
+ _id: string;
336
+ } & Required<{
337
+ _id: string;
338
+ }> & {
339
+ __v: number;
340
+ } & {
341
+ id: string;
342
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
343
+ _id: string;
344
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
345
+ _id: string;
346
+ } & Required<{
347
+ _id: string;
348
+ }> & {
349
+ __v: number;
350
+ } & {
351
+ id: string;
352
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
353
+ _id: string;
354
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
355
+ _id: string;
356
+ } & Required<{
357
+ _id: string;
358
+ }> & {
359
+ __v: number;
360
+ } & {
361
+ id: string;
362
+ }> | undefined;
363
+ $getPopulatedDocs?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").Document[], import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
364
+ _id: string;
365
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
366
+ _id: string;
367
+ } & Required<{
368
+ _id: string;
369
+ }> & {
370
+ __v: number;
371
+ } & {
372
+ id: string;
373
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
374
+ _id: string;
375
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
376
+ _id: string;
377
+ } & Required<{
378
+ _id: string;
379
+ }> & {
380
+ __v: number;
381
+ } & {
382
+ id: string;
383
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
384
+ _id: string;
385
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
386
+ _id: string;
387
+ } & Required<{
388
+ _id: string;
389
+ }> & {
390
+ __v: number;
391
+ } & {
392
+ id: string;
393
+ }> | undefined;
394
+ $inc?: import("mongoose").SchemaDefinitionProperty<(path: string | string[], val?: number) => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
395
+ _id: string;
396
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
397
+ _id: string;
398
+ } & Required<{
399
+ _id: string;
400
+ }> & {
401
+ __v: number;
402
+ } & {
403
+ id: string;
404
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
405
+ _id: string;
406
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
407
+ _id: string;
408
+ } & Required<{
409
+ _id: string;
410
+ }> & {
411
+ __v: number;
412
+ } & {
413
+ id: string;
414
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
415
+ _id: string;
416
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
417
+ _id: string;
418
+ } & Required<{
419
+ _id: string;
420
+ }> & {
421
+ __v: number;
422
+ } & {
423
+ id: string;
424
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
425
+ _id: string;
426
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
427
+ _id: string;
428
+ } & Required<{
429
+ _id: string;
430
+ }> & {
431
+ __v: number;
432
+ } & {
433
+ id: string;
434
+ }> | undefined;
435
+ $isEmpty?: import("mongoose").SchemaDefinitionProperty<(path: string) => boolean, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
436
+ _id: string;
437
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
438
+ _id: string;
439
+ } & Required<{
440
+ _id: string;
441
+ }> & {
442
+ __v: number;
443
+ } & {
444
+ id: string;
445
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
446
+ _id: string;
447
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
448
+ _id: string;
449
+ } & Required<{
450
+ _id: string;
451
+ }> & {
452
+ __v: number;
453
+ } & {
454
+ id: string;
455
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
456
+ _id: string;
457
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
458
+ _id: string;
459
+ } & Required<{
460
+ _id: string;
461
+ }> & {
462
+ __v: number;
463
+ } & {
464
+ id: string;
465
+ }> | undefined;
466
+ $isValid?: import("mongoose").SchemaDefinitionProperty<(path: string) => boolean, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
467
+ _id: string;
468
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
469
+ _id: string;
470
+ } & Required<{
471
+ _id: string;
472
+ }> & {
473
+ __v: number;
474
+ } & {
475
+ id: string;
476
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
477
+ _id: string;
478
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
479
+ _id: string;
480
+ } & Required<{
481
+ _id: string;
482
+ }> & {
483
+ __v: number;
484
+ } & {
485
+ id: string;
486
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
487
+ _id: string;
488
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
489
+ _id: string;
490
+ } & Required<{
491
+ _id: string;
492
+ }> & {
493
+ __v: number;
494
+ } & {
495
+ id: string;
496
+ }> | undefined;
497
+ $locals?: import("mongoose").SchemaDefinitionProperty<Record<string, unknown>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
498
+ _id: string;
499
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
500
+ _id: string;
501
+ } & Required<{
502
+ _id: string;
503
+ }> & {
504
+ __v: number;
505
+ } & {
506
+ id: string;
507
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
508
+ _id: string;
509
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
510
+ _id: string;
511
+ } & Required<{
512
+ _id: string;
513
+ }> & {
514
+ __v: number;
515
+ } & {
516
+ id: string;
517
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
518
+ _id: string;
519
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
520
+ _id: string;
521
+ } & Required<{
522
+ _id: string;
523
+ }> & {
524
+ __v: number;
525
+ } & {
526
+ id: string;
527
+ }> | undefined;
528
+ $markValid?: import("mongoose").SchemaDefinitionProperty<(path: string) => void, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
529
+ _id: string;
530
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
531
+ _id: string;
532
+ } & Required<{
533
+ _id: string;
534
+ }> & {
535
+ __v: number;
536
+ } & {
537
+ id: string;
538
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
539
+ _id: string;
540
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
541
+ _id: string;
542
+ } & Required<{
543
+ _id: string;
544
+ }> & {
545
+ __v: number;
546
+ } & {
547
+ id: string;
548
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
549
+ _id: string;
550
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
551
+ _id: string;
552
+ } & Required<{
553
+ _id: string;
554
+ }> & {
555
+ __v: number;
556
+ } & {
557
+ id: string;
558
+ }> | undefined;
559
+ $model?: import("mongoose").SchemaDefinitionProperty<{
560
+ <ModelType = Model<unknown, {}, {}, {}, import("mongoose").Document<unknown, {}, unknown, {}, import("mongoose").DefaultSchemaOptions> & {
561
+ _id: import("mongoose").Types.ObjectId;
562
+ } & {
563
+ __v: number;
564
+ } & {
565
+ id: string;
566
+ }, any, unknown>>(name: string): ModelType;
567
+ <ModelType = Model<Omit<IVerification, "id"> & {
568
+ _id: string;
569
+ }, {}, {}, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
570
+ _id: string;
571
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
572
+ _id: string;
573
+ } & Required<{
574
+ _id: string;
575
+ }> & {
576
+ __v: number;
577
+ } & {
578
+ id: string;
579
+ }, any, Omit<IVerification, "id"> & {
580
+ _id: string;
581
+ }>>(): ModelType;
582
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
583
+ _id: string;
584
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
585
+ _id: string;
586
+ } & Required<{
587
+ _id: string;
588
+ }> & {
589
+ __v: number;
590
+ } & {
591
+ id: string;
592
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
593
+ _id: string;
594
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
595
+ _id: string;
596
+ } & Required<{
597
+ _id: string;
598
+ }> & {
599
+ __v: number;
600
+ } & {
601
+ id: string;
602
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
603
+ _id: string;
604
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
605
+ _id: string;
606
+ } & Required<{
607
+ _id: string;
608
+ }> & {
609
+ __v: number;
610
+ } & {
611
+ id: string;
612
+ }> | undefined;
613
+ $op?: import("mongoose").SchemaDefinitionProperty<"save" | "validate" | "remove" | null, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
614
+ _id: string;
615
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
616
+ _id: string;
617
+ } & Required<{
618
+ _id: string;
619
+ }> & {
620
+ __v: number;
621
+ } & {
622
+ id: string;
623
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
624
+ _id: string;
625
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
626
+ _id: string;
627
+ } & Required<{
628
+ _id: string;
629
+ }> & {
630
+ __v: number;
631
+ } & {
632
+ id: string;
633
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
634
+ _id: string;
635
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
636
+ _id: string;
637
+ } & Required<{
638
+ _id: string;
639
+ }> & {
640
+ __v: number;
641
+ } & {
642
+ id: string;
643
+ }> | undefined;
644
+ $restoreModifiedPathsSnapshot?: import("mongoose").SchemaDefinitionProperty<(snapshot: import("mongoose").ModifiedPathsSnapshot) => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
645
+ _id: string;
646
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
647
+ _id: string;
648
+ } & Required<{
649
+ _id: string;
650
+ }> & {
651
+ __v: number;
652
+ } & {
653
+ id: string;
654
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
655
+ _id: string;
656
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
657
+ _id: string;
658
+ } & Required<{
659
+ _id: string;
660
+ }> & {
661
+ __v: number;
662
+ } & {
663
+ id: string;
664
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
665
+ _id: string;
666
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
667
+ _id: string;
668
+ } & Required<{
669
+ _id: string;
670
+ }> & {
671
+ __v: number;
672
+ } & {
673
+ id: string;
674
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
675
+ _id: string;
676
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
677
+ _id: string;
678
+ } & Required<{
679
+ _id: string;
680
+ }> & {
681
+ __v: number;
682
+ } & {
683
+ id: string;
684
+ }> | undefined;
685
+ $session?: import("mongoose").SchemaDefinitionProperty<(session?: import("mongoose").ClientSession | null) => import("mongoose").ClientSession | null, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
686
+ _id: string;
687
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
688
+ _id: string;
689
+ } & Required<{
690
+ _id: string;
691
+ }> & {
692
+ __v: number;
693
+ } & {
694
+ id: string;
695
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
696
+ _id: string;
697
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
698
+ _id: string;
699
+ } & Required<{
700
+ _id: string;
701
+ }> & {
702
+ __v: number;
703
+ } & {
704
+ id: string;
705
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
706
+ _id: string;
707
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
708
+ _id: string;
709
+ } & Required<{
710
+ _id: string;
711
+ }> & {
712
+ __v: number;
713
+ } & {
714
+ id: string;
715
+ }> | undefined;
716
+ $set?: import("mongoose").SchemaDefinitionProperty<{
717
+ (path: string | Record<string, any>, val: any, type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
718
+ _id: string;
719
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
720
+ _id: string;
721
+ } & Required<{
722
+ _id: string;
723
+ }> & {
724
+ __v: number;
725
+ } & {
726
+ id: string;
727
+ };
728
+ (path: string | Record<string, any>, val: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
729
+ _id: string;
730
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
731
+ _id: string;
732
+ } & Required<{
733
+ _id: string;
734
+ }> & {
735
+ __v: number;
736
+ } & {
737
+ id: string;
738
+ };
739
+ (value: string | Record<string, any>): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
740
+ _id: string;
741
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
742
+ _id: string;
743
+ } & Required<{
744
+ _id: string;
745
+ }> & {
746
+ __v: number;
747
+ } & {
748
+ id: string;
749
+ };
750
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
751
+ _id: string;
752
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
753
+ _id: string;
754
+ } & Required<{
755
+ _id: string;
756
+ }> & {
757
+ __v: number;
758
+ } & {
759
+ id: string;
760
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
761
+ _id: string;
762
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
763
+ _id: string;
764
+ } & Required<{
765
+ _id: string;
766
+ }> & {
767
+ __v: number;
768
+ } & {
769
+ id: string;
770
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
771
+ _id: string;
772
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
773
+ _id: string;
774
+ } & Required<{
775
+ _id: string;
776
+ }> & {
777
+ __v: number;
778
+ } & {
779
+ id: string;
780
+ }> | undefined;
781
+ $where?: import("mongoose").SchemaDefinitionProperty<Record<string, unknown>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
782
+ _id: string;
783
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
784
+ _id: string;
785
+ } & Required<{
786
+ _id: string;
787
+ }> & {
788
+ __v: number;
789
+ } & {
790
+ id: string;
791
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
792
+ _id: string;
793
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
794
+ _id: string;
795
+ } & Required<{
796
+ _id: string;
797
+ }> & {
798
+ __v: number;
799
+ } & {
800
+ id: string;
801
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
802
+ _id: string;
803
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
804
+ _id: string;
805
+ } & Required<{
806
+ _id: string;
807
+ }> & {
808
+ __v: number;
809
+ } & {
810
+ id: string;
811
+ }> | undefined;
812
+ baseModelName?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
813
+ _id: string;
814
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
815
+ _id: string;
816
+ } & Required<{
817
+ _id: string;
818
+ }> & {
819
+ __v: number;
820
+ } & {
821
+ id: string;
822
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
823
+ _id: string;
824
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
825
+ _id: string;
826
+ } & Required<{
827
+ _id: string;
828
+ }> & {
829
+ __v: number;
830
+ } & {
831
+ id: string;
832
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
833
+ _id: string;
834
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
835
+ _id: string;
836
+ } & Required<{
837
+ _id: string;
838
+ }> & {
839
+ __v: number;
840
+ } & {
841
+ id: string;
842
+ }> | undefined;
843
+ collection?: import("mongoose").SchemaDefinitionProperty<import("mongoose").Collection<import("bson").Document>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
844
+ _id: string;
845
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
846
+ _id: string;
847
+ } & Required<{
848
+ _id: string;
849
+ }> & {
850
+ __v: number;
851
+ } & {
852
+ id: string;
853
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
854
+ _id: string;
855
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
856
+ _id: string;
857
+ } & Required<{
858
+ _id: string;
859
+ }> & {
860
+ __v: number;
861
+ } & {
862
+ id: string;
863
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
864
+ _id: string;
865
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
866
+ _id: string;
867
+ } & Required<{
868
+ _id: string;
869
+ }> & {
870
+ __v: number;
871
+ } & {
872
+ id: string;
873
+ }> | undefined;
874
+ db?: import("mongoose").SchemaDefinitionProperty<import("mongoose").Connection, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
875
+ _id: string;
876
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
877
+ _id: string;
878
+ } & Required<{
879
+ _id: string;
880
+ }> & {
881
+ __v: number;
882
+ } & {
883
+ id: string;
884
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
885
+ _id: string;
886
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
887
+ _id: string;
888
+ } & Required<{
889
+ _id: string;
890
+ }> & {
891
+ __v: number;
892
+ } & {
893
+ id: string;
894
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
895
+ _id: string;
896
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
897
+ _id: string;
898
+ } & Required<{
899
+ _id: string;
900
+ }> & {
901
+ __v: number;
902
+ } & {
903
+ id: string;
904
+ }> | undefined;
905
+ deleteOne?: import("mongoose").SchemaDefinitionProperty<(options?: import("mongoose").QueryOptions) => import("mongoose").Query<import("mongodb").DeleteResult, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
906
+ _id: string;
907
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
908
+ _id: string;
909
+ } & Required<{
910
+ _id: string;
911
+ }> & {
912
+ __v: number;
913
+ } & {
914
+ id: string;
915
+ }, {}, Omit<IVerification, "id"> & {
916
+ _id: string;
917
+ }, "deleteOne", Record<string, never>>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
918
+ _id: string;
919
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
920
+ _id: string;
921
+ } & Required<{
922
+ _id: string;
923
+ }> & {
924
+ __v: number;
925
+ } & {
926
+ id: string;
927
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
928
+ _id: string;
929
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
930
+ _id: string;
931
+ } & Required<{
932
+ _id: string;
933
+ }> & {
934
+ __v: number;
935
+ } & {
936
+ id: string;
937
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
938
+ _id: string;
939
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
940
+ _id: string;
941
+ } & Required<{
942
+ _id: string;
943
+ }> & {
944
+ __v: number;
945
+ } & {
946
+ id: string;
947
+ }> | undefined;
948
+ depopulate?: import("mongoose").SchemaDefinitionProperty<(<Paths = {}>(path?: string | string[]) => import("mongoose").MergeType<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
949
+ _id: string;
950
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
951
+ _id: string;
952
+ } & Required<{
953
+ _id: string;
954
+ }> & {
955
+ __v: number;
956
+ } & {
957
+ id: string;
958
+ }, Paths>), import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
959
+ _id: string;
960
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
961
+ _id: string;
962
+ } & Required<{
963
+ _id: string;
964
+ }> & {
965
+ __v: number;
966
+ } & {
967
+ id: string;
968
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
969
+ _id: string;
970
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
971
+ _id: string;
972
+ } & Required<{
973
+ _id: string;
974
+ }> & {
975
+ __v: number;
976
+ } & {
977
+ id: string;
978
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
979
+ _id: string;
980
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
981
+ _id: string;
982
+ } & Required<{
983
+ _id: string;
984
+ }> & {
985
+ __v: number;
986
+ } & {
987
+ id: string;
988
+ }> | undefined;
989
+ directModifiedPaths?: import("mongoose").SchemaDefinitionProperty<() => Array<string>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
990
+ _id: string;
991
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
992
+ _id: string;
993
+ } & Required<{
994
+ _id: string;
995
+ }> & {
996
+ __v: number;
997
+ } & {
998
+ id: string;
999
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1000
+ _id: string;
1001
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1002
+ _id: string;
1003
+ } & Required<{
1004
+ _id: string;
1005
+ }> & {
1006
+ __v: number;
1007
+ } & {
1008
+ id: string;
1009
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1010
+ _id: string;
1011
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1012
+ _id: string;
1013
+ } & Required<{
1014
+ _id: string;
1015
+ }> & {
1016
+ __v: number;
1017
+ } & {
1018
+ id: string;
1019
+ }> | undefined;
1020
+ equals?: import("mongoose").SchemaDefinitionProperty<(doc: import("mongoose").Document<unknown, any, any, Record<string, any>, {}>) => boolean, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1021
+ _id: string;
1022
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1023
+ _id: string;
1024
+ } & Required<{
1025
+ _id: string;
1026
+ }> & {
1027
+ __v: number;
1028
+ } & {
1029
+ id: string;
1030
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1031
+ _id: string;
1032
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1033
+ _id: string;
1034
+ } & Required<{
1035
+ _id: string;
1036
+ }> & {
1037
+ __v: number;
1038
+ } & {
1039
+ id: string;
1040
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1041
+ _id: string;
1042
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1043
+ _id: string;
1044
+ } & Required<{
1045
+ _id: string;
1046
+ }> & {
1047
+ __v: number;
1048
+ } & {
1049
+ id: string;
1050
+ }> | undefined;
1051
+ errors?: import("mongoose").SchemaDefinitionProperty<import("mongoose").Error.ValidationError | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1052
+ _id: string;
1053
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1054
+ _id: string;
1055
+ } & Required<{
1056
+ _id: string;
1057
+ }> & {
1058
+ __v: number;
1059
+ } & {
1060
+ id: string;
1061
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1062
+ _id: string;
1063
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1064
+ _id: string;
1065
+ } & Required<{
1066
+ _id: string;
1067
+ }> & {
1068
+ __v: number;
1069
+ } & {
1070
+ id: string;
1071
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1072
+ _id: string;
1073
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1074
+ _id: string;
1075
+ } & Required<{
1076
+ _id: string;
1077
+ }> & {
1078
+ __v: number;
1079
+ } & {
1080
+ id: string;
1081
+ }> | undefined;
1082
+ get?: import("mongoose").SchemaDefinitionProperty<{
1083
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T, type?: any, options?: any): (Omit<IVerification, "id"> & {
1084
+ _id: string;
1085
+ })[T];
1086
+ (path: string, type?: any, options?: any): any;
1087
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1088
+ _id: string;
1089
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1090
+ _id: string;
1091
+ } & Required<{
1092
+ _id: string;
1093
+ }> & {
1094
+ __v: number;
1095
+ } & {
1096
+ id: string;
1097
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1098
+ _id: string;
1099
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1100
+ _id: string;
1101
+ } & Required<{
1102
+ _id: string;
1103
+ }> & {
1104
+ __v: number;
1105
+ } & {
1106
+ id: string;
1107
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1108
+ _id: string;
1109
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1110
+ _id: string;
1111
+ } & Required<{
1112
+ _id: string;
1113
+ }> & {
1114
+ __v: number;
1115
+ } & {
1116
+ id: string;
1117
+ }> | undefined;
1118
+ getChanges?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").UpdateQuery<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1119
+ _id: string;
1120
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1121
+ _id: string;
1122
+ } & Required<{
1123
+ _id: string;
1124
+ }> & {
1125
+ __v: number;
1126
+ } & {
1127
+ id: string;
1128
+ }>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1129
+ _id: string;
1130
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1131
+ _id: string;
1132
+ } & Required<{
1133
+ _id: string;
1134
+ }> & {
1135
+ __v: number;
1136
+ } & {
1137
+ id: string;
1138
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1139
+ _id: string;
1140
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1141
+ _id: string;
1142
+ } & Required<{
1143
+ _id: string;
1144
+ }> & {
1145
+ __v: number;
1146
+ } & {
1147
+ id: string;
1148
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1149
+ _id: string;
1150
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1151
+ _id: string;
1152
+ } & Required<{
1153
+ _id: string;
1154
+ }> & {
1155
+ __v: number;
1156
+ } & {
1157
+ id: string;
1158
+ }> | undefined;
1159
+ increment?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1160
+ _id: string;
1161
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1162
+ _id: string;
1163
+ } & Required<{
1164
+ _id: string;
1165
+ }> & {
1166
+ __v: number;
1167
+ } & {
1168
+ id: string;
1169
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1170
+ _id: string;
1171
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1172
+ _id: string;
1173
+ } & Required<{
1174
+ _id: string;
1175
+ }> & {
1176
+ __v: number;
1177
+ } & {
1178
+ id: string;
1179
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1180
+ _id: string;
1181
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1182
+ _id: string;
1183
+ } & Required<{
1184
+ _id: string;
1185
+ }> & {
1186
+ __v: number;
1187
+ } & {
1188
+ id: string;
1189
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1190
+ _id: string;
1191
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1192
+ _id: string;
1193
+ } & Required<{
1194
+ _id: string;
1195
+ }> & {
1196
+ __v: number;
1197
+ } & {
1198
+ id: string;
1199
+ }> | undefined;
1200
+ init?: import("mongoose").SchemaDefinitionProperty<(obj: import("mongoose").AnyObject, opts?: import("mongoose").AnyObject) => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1201
+ _id: string;
1202
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1203
+ _id: string;
1204
+ } & Required<{
1205
+ _id: string;
1206
+ }> & {
1207
+ __v: number;
1208
+ } & {
1209
+ id: string;
1210
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1211
+ _id: string;
1212
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1213
+ _id: string;
1214
+ } & Required<{
1215
+ _id: string;
1216
+ }> & {
1217
+ __v: number;
1218
+ } & {
1219
+ id: string;
1220
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1221
+ _id: string;
1222
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1223
+ _id: string;
1224
+ } & Required<{
1225
+ _id: string;
1226
+ }> & {
1227
+ __v: number;
1228
+ } & {
1229
+ id: string;
1230
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1231
+ _id: string;
1232
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1233
+ _id: string;
1234
+ } & Required<{
1235
+ _id: string;
1236
+ }> & {
1237
+ __v: number;
1238
+ } & {
1239
+ id: string;
1240
+ }> | undefined;
1241
+ invalidate?: import("mongoose").SchemaDefinitionProperty<{
1242
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1243
+ (path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1244
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1245
+ _id: string;
1246
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1247
+ _id: string;
1248
+ } & Required<{
1249
+ _id: string;
1250
+ }> & {
1251
+ __v: number;
1252
+ } & {
1253
+ id: string;
1254
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1255
+ _id: string;
1256
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1257
+ _id: string;
1258
+ } & Required<{
1259
+ _id: string;
1260
+ }> & {
1261
+ __v: number;
1262
+ } & {
1263
+ id: string;
1264
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1265
+ _id: string;
1266
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1267
+ _id: string;
1268
+ } & Required<{
1269
+ _id: string;
1270
+ }> & {
1271
+ __v: number;
1272
+ } & {
1273
+ id: string;
1274
+ }> | undefined;
1275
+ isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
1276
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T | T[]): boolean;
1277
+ (path: string | Array<string>): boolean;
1278
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1279
+ _id: string;
1280
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1281
+ _id: string;
1282
+ } & Required<{
1283
+ _id: string;
1284
+ }> & {
1285
+ __v: number;
1286
+ } & {
1287
+ id: string;
1288
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1289
+ _id: string;
1290
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1291
+ _id: string;
1292
+ } & Required<{
1293
+ _id: string;
1294
+ }> & {
1295
+ __v: number;
1296
+ } & {
1297
+ id: string;
1298
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1299
+ _id: string;
1300
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1301
+ _id: string;
1302
+ } & Required<{
1303
+ _id: string;
1304
+ }> & {
1305
+ __v: number;
1306
+ } & {
1307
+ id: string;
1308
+ }> | undefined;
1309
+ isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
1310
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T): boolean;
1311
+ (path: string): boolean;
1312
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1313
+ _id: string;
1314
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1315
+ _id: string;
1316
+ } & Required<{
1317
+ _id: string;
1318
+ }> & {
1319
+ __v: number;
1320
+ } & {
1321
+ id: string;
1322
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1323
+ _id: string;
1324
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1325
+ _id: string;
1326
+ } & Required<{
1327
+ _id: string;
1328
+ }> & {
1329
+ __v: number;
1330
+ } & {
1331
+ id: string;
1332
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1333
+ _id: string;
1334
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1335
+ _id: string;
1336
+ } & Required<{
1337
+ _id: string;
1338
+ }> & {
1339
+ __v: number;
1340
+ } & {
1341
+ id: string;
1342
+ }> | undefined;
1343
+ isInit?: import("mongoose").SchemaDefinitionProperty<{
1344
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T): boolean;
1345
+ (path: string): boolean;
1346
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1347
+ _id: string;
1348
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1349
+ _id: string;
1350
+ } & Required<{
1351
+ _id: string;
1352
+ }> & {
1353
+ __v: number;
1354
+ } & {
1355
+ id: string;
1356
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1357
+ _id: string;
1358
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1359
+ _id: string;
1360
+ } & Required<{
1361
+ _id: string;
1362
+ }> & {
1363
+ __v: number;
1364
+ } & {
1365
+ id: string;
1366
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1367
+ _id: string;
1368
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1369
+ _id: string;
1370
+ } & Required<{
1371
+ _id: string;
1372
+ }> & {
1373
+ __v: number;
1374
+ } & {
1375
+ id: string;
1376
+ }> | undefined;
1377
+ isModified?: import("mongoose").SchemaDefinitionProperty<{
1378
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path?: T | T[] | undefined, options?: {
1379
+ ignoreAtomics?: boolean;
1380
+ } | null): boolean;
1381
+ (path?: string | Array<string>, options?: {
1382
+ ignoreAtomics?: boolean;
1383
+ } | null): boolean;
1384
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1385
+ _id: string;
1386
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1387
+ _id: string;
1388
+ } & Required<{
1389
+ _id: string;
1390
+ }> & {
1391
+ __v: number;
1392
+ } & {
1393
+ id: string;
1394
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1395
+ _id: string;
1396
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1397
+ _id: string;
1398
+ } & Required<{
1399
+ _id: string;
1400
+ }> & {
1401
+ __v: number;
1402
+ } & {
1403
+ id: string;
1404
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1405
+ _id: string;
1406
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1407
+ _id: string;
1408
+ } & Required<{
1409
+ _id: string;
1410
+ }> & {
1411
+ __v: number;
1412
+ } & {
1413
+ id: string;
1414
+ }> | undefined;
1415
+ isNew?: import("mongoose").SchemaDefinitionProperty<boolean, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1416
+ _id: string;
1417
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1418
+ _id: string;
1419
+ } & Required<{
1420
+ _id: string;
1421
+ }> & {
1422
+ __v: number;
1423
+ } & {
1424
+ id: string;
1425
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1426
+ _id: string;
1427
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1428
+ _id: string;
1429
+ } & Required<{
1430
+ _id: string;
1431
+ }> & {
1432
+ __v: number;
1433
+ } & {
1434
+ id: string;
1435
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1436
+ _id: string;
1437
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1438
+ _id: string;
1439
+ } & Required<{
1440
+ _id: string;
1441
+ }> & {
1442
+ __v: number;
1443
+ } & {
1444
+ id: string;
1445
+ }> | undefined;
1446
+ isSelected?: import("mongoose").SchemaDefinitionProperty<{
1447
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T): boolean;
1448
+ (path: string): boolean;
1449
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1450
+ _id: string;
1451
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1452
+ _id: string;
1453
+ } & Required<{
1454
+ _id: string;
1455
+ }> & {
1456
+ __v: number;
1457
+ } & {
1458
+ id: string;
1459
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1460
+ _id: string;
1461
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1462
+ _id: string;
1463
+ } & Required<{
1464
+ _id: string;
1465
+ }> & {
1466
+ __v: number;
1467
+ } & {
1468
+ id: string;
1469
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1470
+ _id: string;
1471
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1472
+ _id: string;
1473
+ } & Required<{
1474
+ _id: string;
1475
+ }> & {
1476
+ __v: number;
1477
+ } & {
1478
+ id: string;
1479
+ }> | undefined;
1480
+ markModified?: import("mongoose").SchemaDefinitionProperty<{
1481
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T, scope?: any): void;
1482
+ (path: string, scope?: any): void;
1483
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1484
+ _id: string;
1485
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1486
+ _id: string;
1487
+ } & Required<{
1488
+ _id: string;
1489
+ }> & {
1490
+ __v: number;
1491
+ } & {
1492
+ id: string;
1493
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1494
+ _id: string;
1495
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1496
+ _id: string;
1497
+ } & Required<{
1498
+ _id: string;
1499
+ }> & {
1500
+ __v: number;
1501
+ } & {
1502
+ id: string;
1503
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1504
+ _id: string;
1505
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1506
+ _id: string;
1507
+ } & Required<{
1508
+ _id: string;
1509
+ }> & {
1510
+ __v: number;
1511
+ } & {
1512
+ id: string;
1513
+ }> | undefined;
1514
+ model?: import("mongoose").SchemaDefinitionProperty<{
1515
+ <ModelType = Model<unknown, {}, {}, {}, import("mongoose").Document<unknown, {}, unknown, {}, import("mongoose").DefaultSchemaOptions> & {
1516
+ _id: import("mongoose").Types.ObjectId;
1517
+ } & {
1518
+ __v: number;
1519
+ } & {
1520
+ id: string;
1521
+ }, any, unknown>>(name: string): ModelType;
1522
+ <ModelType = Model<Omit<IVerification, "id"> & {
1523
+ _id: string;
1524
+ }, {}, {}, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1525
+ _id: string;
1526
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1527
+ _id: string;
1528
+ } & Required<{
1529
+ _id: string;
1530
+ }> & {
1531
+ __v: number;
1532
+ } & {
1533
+ id: string;
1534
+ }, any, Omit<IVerification, "id"> & {
1535
+ _id: string;
1536
+ }>>(): ModelType;
1537
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1538
+ _id: string;
1539
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1540
+ _id: string;
1541
+ } & Required<{
1542
+ _id: string;
1543
+ }> & {
1544
+ __v: number;
1545
+ } & {
1546
+ id: string;
1547
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1548
+ _id: string;
1549
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1550
+ _id: string;
1551
+ } & Required<{
1552
+ _id: string;
1553
+ }> & {
1554
+ __v: number;
1555
+ } & {
1556
+ id: string;
1557
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1558
+ _id: string;
1559
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1560
+ _id: string;
1561
+ } & Required<{
1562
+ _id: string;
1563
+ }> & {
1564
+ __v: number;
1565
+ } & {
1566
+ id: string;
1567
+ }> | undefined;
1568
+ modifiedPaths?: import("mongoose").SchemaDefinitionProperty<(options?: {
1569
+ includeChildren?: boolean;
1570
+ }) => Array<string>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1571
+ _id: string;
1572
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1573
+ _id: string;
1574
+ } & Required<{
1575
+ _id: string;
1576
+ }> & {
1577
+ __v: number;
1578
+ } & {
1579
+ id: string;
1580
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1581
+ _id: string;
1582
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1583
+ _id: string;
1584
+ } & Required<{
1585
+ _id: string;
1586
+ }> & {
1587
+ __v: number;
1588
+ } & {
1589
+ id: string;
1590
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1591
+ _id: string;
1592
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1593
+ _id: string;
1594
+ } & Required<{
1595
+ _id: string;
1596
+ }> & {
1597
+ __v: number;
1598
+ } & {
1599
+ id: string;
1600
+ }> | undefined;
1601
+ overwrite?: import("mongoose").SchemaDefinitionProperty<(obj: import("mongoose").AnyObject) => import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1602
+ _id: string;
1603
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1604
+ _id: string;
1605
+ } & Required<{
1606
+ _id: string;
1607
+ }> & {
1608
+ __v: number;
1609
+ } & {
1610
+ id: string;
1611
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1612
+ _id: string;
1613
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1614
+ _id: string;
1615
+ } & Required<{
1616
+ _id: string;
1617
+ }> & {
1618
+ __v: number;
1619
+ } & {
1620
+ id: string;
1621
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1622
+ _id: string;
1623
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1624
+ _id: string;
1625
+ } & Required<{
1626
+ _id: string;
1627
+ }> & {
1628
+ __v: number;
1629
+ } & {
1630
+ id: string;
1631
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1632
+ _id: string;
1633
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1634
+ _id: string;
1635
+ } & Required<{
1636
+ _id: string;
1637
+ }> & {
1638
+ __v: number;
1639
+ } & {
1640
+ id: string;
1641
+ }> | undefined;
1642
+ $parent?: import("mongoose").SchemaDefinitionProperty<() => import("mongoose").Document | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1643
+ _id: string;
1644
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1645
+ _id: string;
1646
+ } & Required<{
1647
+ _id: string;
1648
+ }> & {
1649
+ __v: number;
1650
+ } & {
1651
+ id: string;
1652
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1653
+ _id: string;
1654
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1655
+ _id: string;
1656
+ } & Required<{
1657
+ _id: string;
1658
+ }> & {
1659
+ __v: number;
1660
+ } & {
1661
+ id: string;
1662
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1663
+ _id: string;
1664
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1665
+ _id: string;
1666
+ } & Required<{
1667
+ _id: string;
1668
+ }> & {
1669
+ __v: number;
1670
+ } & {
1671
+ id: string;
1672
+ }> | undefined;
1673
+ populate?: import("mongoose").SchemaDefinitionProperty<{
1674
+ <Paths = {}>(path: string | import("mongoose").PopulateOptions | (string | import("mongoose").PopulateOptions)[]): Promise<import("mongoose").MergeType<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1675
+ _id: string;
1676
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1677
+ _id: string;
1678
+ } & Required<{
1679
+ _id: string;
1680
+ }> & {
1681
+ __v: number;
1682
+ } & {
1683
+ id: string;
1684
+ }, Paths>>;
1685
+ <Paths = {}>(path: string, select?: string | import("mongoose").AnyObject, model?: Model<any>, match?: import("mongoose").AnyObject, options?: import("mongoose").PopulateOptions): Promise<import("mongoose").MergeType<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1686
+ _id: string;
1687
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1688
+ _id: string;
1689
+ } & Required<{
1690
+ _id: string;
1691
+ }> & {
1692
+ __v: number;
1693
+ } & {
1694
+ id: string;
1695
+ }, Paths>>;
1696
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1697
+ _id: string;
1698
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1699
+ _id: string;
1700
+ } & Required<{
1701
+ _id: string;
1702
+ }> & {
1703
+ __v: number;
1704
+ } & {
1705
+ id: string;
1706
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1707
+ _id: string;
1708
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1709
+ _id: string;
1710
+ } & Required<{
1711
+ _id: string;
1712
+ }> & {
1713
+ __v: number;
1714
+ } & {
1715
+ id: string;
1716
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1717
+ _id: string;
1718
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1719
+ _id: string;
1720
+ } & Required<{
1721
+ _id: string;
1722
+ }> & {
1723
+ __v: number;
1724
+ } & {
1725
+ id: string;
1726
+ }> | undefined;
1727
+ populated?: import("mongoose").SchemaDefinitionProperty<(path: string) => any, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1728
+ _id: string;
1729
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1730
+ _id: string;
1731
+ } & Required<{
1732
+ _id: string;
1733
+ }> & {
1734
+ __v: number;
1735
+ } & {
1736
+ id: string;
1737
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1738
+ _id: string;
1739
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1740
+ _id: string;
1741
+ } & Required<{
1742
+ _id: string;
1743
+ }> & {
1744
+ __v: number;
1745
+ } & {
1746
+ id: string;
1747
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1748
+ _id: string;
1749
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1750
+ _id: string;
1751
+ } & Required<{
1752
+ _id: string;
1753
+ }> & {
1754
+ __v: number;
1755
+ } & {
1756
+ id: string;
1757
+ }> | undefined;
1758
+ replaceOne?: import("mongoose").SchemaDefinitionProperty<(replacement?: import("mongoose").AnyObject, options?: import("mongoose").QueryOptions | null) => import("mongoose").Query<any, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1759
+ _id: string;
1760
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1761
+ _id: string;
1762
+ } & Required<{
1763
+ _id: string;
1764
+ }> & {
1765
+ __v: number;
1766
+ } & {
1767
+ id: string;
1768
+ }, {}, unknown, "find", Record<string, never>>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1769
+ _id: string;
1770
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1771
+ _id: string;
1772
+ } & Required<{
1773
+ _id: string;
1774
+ }> & {
1775
+ __v: number;
1776
+ } & {
1777
+ id: string;
1778
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1779
+ _id: string;
1780
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1781
+ _id: string;
1782
+ } & Required<{
1783
+ _id: string;
1784
+ }> & {
1785
+ __v: number;
1786
+ } & {
1787
+ id: string;
1788
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1789
+ _id: string;
1790
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1791
+ _id: string;
1792
+ } & Required<{
1793
+ _id: string;
1794
+ }> & {
1795
+ __v: number;
1796
+ } & {
1797
+ id: string;
1798
+ }> | undefined;
1799
+ save?: import("mongoose").SchemaDefinitionProperty<(options?: import("mongoose").SaveOptions) => Promise<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1800
+ _id: string;
1801
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1802
+ _id: string;
1803
+ } & Required<{
1804
+ _id: string;
1805
+ }> & {
1806
+ __v: number;
1807
+ } & {
1808
+ id: string;
1809
+ }>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1810
+ _id: string;
1811
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1812
+ _id: string;
1813
+ } & Required<{
1814
+ _id: string;
1815
+ }> & {
1816
+ __v: number;
1817
+ } & {
1818
+ id: string;
1819
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1820
+ _id: string;
1821
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1822
+ _id: string;
1823
+ } & Required<{
1824
+ _id: string;
1825
+ }> & {
1826
+ __v: number;
1827
+ } & {
1828
+ id: string;
1829
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1830
+ _id: string;
1831
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1832
+ _id: string;
1833
+ } & Required<{
1834
+ _id: string;
1835
+ }> & {
1836
+ __v: number;
1837
+ } & {
1838
+ id: string;
1839
+ }> | undefined;
1840
+ schema?: import("mongoose").SchemaDefinitionProperty<Schema<any, Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
1841
+ [x: number]: unknown;
1842
+ [x: symbol]: unknown;
1843
+ [x: string]: unknown;
1844
+ }, import("mongoose").Document<unknown, {}, {
1845
+ [x: number]: unknown;
1846
+ [x: symbol]: unknown;
1847
+ [x: string]: unknown;
1848
+ }, {
1849
+ id: string;
1850
+ }, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<{
1851
+ [x: number]: unknown;
1852
+ [x: symbol]: unknown;
1853
+ [x: string]: unknown;
1854
+ } & Required<{
1855
+ _id: unknown;
1856
+ }> & {
1857
+ __v: number;
1858
+ }, "id"> & {
1859
+ id: string;
1860
+ }, {
1861
+ [path: string]: import("mongoose").SchemaDefinitionProperty<undefined, any, any>;
1862
+ } | {
1863
+ [x: string]: import("mongoose").SchemaDefinitionProperty<any, any, import("mongoose").Document<unknown, {}, {
1864
+ [x: number]: unknown;
1865
+ [x: symbol]: unknown;
1866
+ [x: string]: unknown;
1867
+ }, {
1868
+ id: string;
1869
+ }, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<{
1870
+ [x: number]: unknown;
1871
+ [x: symbol]: unknown;
1872
+ [x: string]: unknown;
1873
+ } & Required<{
1874
+ _id: unknown;
1875
+ }> & {
1876
+ __v: number;
1877
+ }, "id"> & {
1878
+ id: string;
1879
+ }> | undefined;
1880
+ }, {
1881
+ [x: number]: {};
1882
+ [x: symbol]: {};
1883
+ [x: string]: {};
1884
+ } & Required<{
1885
+ _id: unknown;
1886
+ }> & {
1887
+ __v: number;
1888
+ }>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1889
+ _id: string;
1890
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1891
+ _id: string;
1892
+ } & Required<{
1893
+ _id: string;
1894
+ }> & {
1895
+ __v: number;
1896
+ } & {
1897
+ id: string;
1898
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1899
+ _id: string;
1900
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1901
+ _id: string;
1902
+ } & Required<{
1903
+ _id: string;
1904
+ }> & {
1905
+ __v: number;
1906
+ } & {
1907
+ id: string;
1908
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1909
+ _id: string;
1910
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1911
+ _id: string;
1912
+ } & Required<{
1913
+ _id: string;
1914
+ }> & {
1915
+ __v: number;
1916
+ } & {
1917
+ id: string;
1918
+ }> | undefined;
1919
+ set?: import("mongoose").SchemaDefinitionProperty<{
1920
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T, val: (Omit<IVerification, "id"> & {
1921
+ _id: string;
1922
+ })[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1923
+ _id: string;
1924
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1925
+ _id: string;
1926
+ } & Required<{
1927
+ _id: string;
1928
+ }> & {
1929
+ __v: number;
1930
+ } & {
1931
+ id: string;
1932
+ };
1933
+ (path: string | Record<string, any>, val: any, type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1934
+ _id: string;
1935
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1936
+ _id: string;
1937
+ } & Required<{
1938
+ _id: string;
1939
+ }> & {
1940
+ __v: number;
1941
+ } & {
1942
+ id: string;
1943
+ };
1944
+ (path: string | Record<string, any>, val: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1945
+ _id: string;
1946
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1947
+ _id: string;
1948
+ } & Required<{
1949
+ _id: string;
1950
+ }> & {
1951
+ __v: number;
1952
+ } & {
1953
+ id: string;
1954
+ };
1955
+ (value: string | Record<string, any>): import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1956
+ _id: string;
1957
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1958
+ _id: string;
1959
+ } & Required<{
1960
+ _id: string;
1961
+ }> & {
1962
+ __v: number;
1963
+ } & {
1964
+ id: string;
1965
+ };
1966
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1967
+ _id: string;
1968
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1969
+ _id: string;
1970
+ } & Required<{
1971
+ _id: string;
1972
+ }> & {
1973
+ __v: number;
1974
+ } & {
1975
+ id: string;
1976
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1977
+ _id: string;
1978
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1979
+ _id: string;
1980
+ } & Required<{
1981
+ _id: string;
1982
+ }> & {
1983
+ __v: number;
1984
+ } & {
1985
+ id: string;
1986
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
1987
+ _id: string;
1988
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
1989
+ _id: string;
1990
+ } & Required<{
1991
+ _id: string;
1992
+ }> & {
1993
+ __v: number;
1994
+ } & {
1995
+ id: string;
1996
+ }> | undefined;
1997
+ toJSON?: import("mongoose").SchemaDefinitionProperty<{
1998
+ (options: import("mongoose").ToObjectOptions & {
1999
+ flattenMaps: false;
2000
+ flattenObjectIds: true;
2001
+ virtuals: true;
2002
+ versionKey: false;
2003
+ }): {
2004
+ status: VerificationStatus;
2005
+ documentType: IdDocumentType;
2006
+ documentNumber: string;
2007
+ createdAt: Date;
2008
+ updatedAt: Date;
2009
+ _id: string;
2010
+ reviewedAt?: Date | undefined;
2011
+ reviewedBy?: string | undefined;
2012
+ reviewNotes?: string | undefined;
2013
+ profileId: string;
2014
+ accountId: string;
2015
+ rejectionReason?: string | undefined;
2016
+ documentCountry: string;
2017
+ frontImageUrl: string;
2018
+ backImageUrl?: string | undefined;
2019
+ selfieUrl: string;
2020
+ extractedName?: string | undefined;
2021
+ extractedDob?: Date | undefined;
2022
+ extractedAddress?: string | undefined;
2023
+ nameMatchScore?: number | undefined;
2024
+ dobMatch?: boolean | undefined;
2025
+ faceMatchScore?: number | undefined;
2026
+ documentExpiryDate?: Date | undefined;
2027
+ verificationExpiresAt?: Date | undefined;
2028
+ ipAddress: string;
2029
+ userAgent: string;
2030
+ submissionLocation?: {
2031
+ lat: number;
2032
+ lng: number;
2033
+ } | undefined;
2034
+ };
2035
+ (options: import("mongoose").ToObjectOptions & {
2036
+ flattenMaps: false;
2037
+ flattenObjectIds: true;
2038
+ virtuals: true;
2039
+ }): {
2040
+ status: VerificationStatus;
2041
+ documentType: IdDocumentType;
2042
+ documentNumber: string;
2043
+ createdAt: Date;
2044
+ updatedAt: Date;
2045
+ reviewedAt?: Date | undefined;
2046
+ reviewedBy?: string | undefined;
2047
+ reviewNotes?: string | undefined;
2048
+ profileId: string;
2049
+ accountId: string;
2050
+ rejectionReason?: string | undefined;
2051
+ documentCountry: string;
2052
+ frontImageUrl: string;
2053
+ backImageUrl?: string | undefined;
2054
+ selfieUrl: string;
2055
+ extractedName?: string | undefined;
2056
+ extractedDob?: Date | undefined;
2057
+ extractedAddress?: string | undefined;
2058
+ nameMatchScore?: number | undefined;
2059
+ dobMatch?: boolean | undefined;
2060
+ faceMatchScore?: number | undefined;
2061
+ documentExpiryDate?: Date | undefined;
2062
+ verificationExpiresAt?: Date | undefined;
2063
+ ipAddress: string;
2064
+ userAgent: string;
2065
+ submissionLocation?: {
2066
+ lat: number;
2067
+ lng: number;
2068
+ } | undefined;
2069
+ _id: string;
2070
+ };
2071
+ (options: import("mongoose").ToObjectOptions & {
2072
+ flattenMaps: false;
2073
+ flattenObjectIds: false;
2074
+ virtuals: true;
2075
+ versionKey: false;
2076
+ }): Omit<Omit<IVerification, "id"> & {
2077
+ _id: string;
2078
+ } & Required<{
2079
+ _id: string;
2080
+ }>, "__v">;
2081
+ (options: import("mongoose").ToObjectOptions & {
2082
+ flattenMaps: false;
2083
+ flattenObjectIds: false;
2084
+ virtuals: true;
2085
+ }): Omit<IVerification, "id"> & {
2086
+ _id: string;
2087
+ } & Required<{
2088
+ _id: string;
2089
+ }>;
2090
+ (options: import("mongoose").ToObjectOptions & {
2091
+ flattenMaps: false;
2092
+ flattenObjectIds: true;
2093
+ virtuals: false;
2094
+ versionKey: false;
2095
+ }): {
2096
+ status: VerificationStatus;
2097
+ documentType: IdDocumentType;
2098
+ documentNumber: string;
2099
+ createdAt: Date;
2100
+ updatedAt: Date;
2101
+ _id: string;
2102
+ reviewedAt?: Date | undefined;
2103
+ reviewedBy?: string | undefined;
2104
+ reviewNotes?: string | undefined;
2105
+ profileId: string;
2106
+ accountId: string;
2107
+ rejectionReason?: string | undefined;
2108
+ documentCountry: string;
2109
+ frontImageUrl: string;
2110
+ backImageUrl?: string | undefined;
2111
+ selfieUrl: string;
2112
+ extractedName?: string | undefined;
2113
+ extractedDob?: Date | undefined;
2114
+ extractedAddress?: string | undefined;
2115
+ nameMatchScore?: number | undefined;
2116
+ dobMatch?: boolean | undefined;
2117
+ faceMatchScore?: number | undefined;
2118
+ documentExpiryDate?: Date | undefined;
2119
+ verificationExpiresAt?: Date | undefined;
2120
+ ipAddress: string;
2121
+ userAgent: string;
2122
+ submissionLocation?: {
2123
+ lat: number;
2124
+ lng: number;
2125
+ } | undefined;
2126
+ };
2127
+ (options: import("mongoose").ToObjectOptions & {
2128
+ flattenMaps: false;
2129
+ flattenObjectIds: true;
2130
+ virtuals: false;
2131
+ }): {
2132
+ status: VerificationStatus;
2133
+ documentType: IdDocumentType;
2134
+ documentNumber: string;
2135
+ createdAt: Date;
2136
+ updatedAt: Date;
2137
+ reviewedAt?: Date | undefined;
2138
+ reviewedBy?: string | undefined;
2139
+ reviewNotes?: string | undefined;
2140
+ profileId: string;
2141
+ accountId: string;
2142
+ rejectionReason?: string | undefined;
2143
+ documentCountry: string;
2144
+ frontImageUrl: string;
2145
+ backImageUrl?: string | undefined;
2146
+ selfieUrl: string;
2147
+ extractedName?: string | undefined;
2148
+ extractedDob?: Date | undefined;
2149
+ extractedAddress?: string | undefined;
2150
+ nameMatchScore?: number | undefined;
2151
+ dobMatch?: boolean | undefined;
2152
+ faceMatchScore?: number | undefined;
2153
+ documentExpiryDate?: Date | undefined;
2154
+ verificationExpiresAt?: Date | undefined;
2155
+ ipAddress: string;
2156
+ userAgent: string;
2157
+ submissionLocation?: {
2158
+ lat: number;
2159
+ lng: number;
2160
+ } | undefined;
2161
+ _id: string;
2162
+ };
2163
+ (options: import("mongoose").ToObjectOptions & {
2164
+ flattenMaps: false;
2165
+ flattenObjectIds: false;
2166
+ virtuals: false;
2167
+ versionKey: false;
2168
+ }): Omit<Omit<IVerification, "id"> & {
2169
+ _id: string;
2170
+ } & Required<{
2171
+ _id: string;
2172
+ }>, "__v">;
2173
+ (options: import("mongoose").ToObjectOptions & {
2174
+ flattenMaps: false;
2175
+ flattenObjectIds: false;
2176
+ virtuals: false;
2177
+ }): Omit<IVerification, "id"> & {
2178
+ _id: string;
2179
+ } & Required<{
2180
+ _id: string;
2181
+ }>;
2182
+ (options: import("mongoose").ToObjectOptions & {
2183
+ flattenMaps: true;
2184
+ flattenObjectIds: true;
2185
+ virtuals: true;
2186
+ versionKey: false;
2187
+ }): {
2188
+ status: VerificationStatus;
2189
+ documentType: IdDocumentType;
2190
+ documentNumber: string;
2191
+ createdAt: Date;
2192
+ updatedAt: Date;
2193
+ _id: string;
2194
+ reviewedAt?: Date | undefined;
2195
+ reviewedBy?: string | undefined;
2196
+ reviewNotes?: string | undefined;
2197
+ profileId: string;
2198
+ accountId: string;
2199
+ rejectionReason?: string | undefined;
2200
+ documentCountry: string;
2201
+ frontImageUrl: string;
2202
+ backImageUrl?: string | undefined;
2203
+ selfieUrl: string;
2204
+ extractedName?: string | undefined;
2205
+ extractedDob?: Date | undefined;
2206
+ extractedAddress?: string | undefined;
2207
+ nameMatchScore?: number | undefined;
2208
+ dobMatch?: boolean | undefined;
2209
+ faceMatchScore?: number | undefined;
2210
+ documentExpiryDate?: Date | undefined;
2211
+ verificationExpiresAt?: Date | undefined;
2212
+ ipAddress: string;
2213
+ userAgent: string;
2214
+ submissionLocation?: {
2215
+ lat: number;
2216
+ lng: number;
2217
+ } | undefined;
2218
+ };
2219
+ (options: import("mongoose").ToObjectOptions & {
2220
+ flattenMaps: true;
2221
+ flattenObjectIds: true;
2222
+ virtuals: true;
2223
+ }): {
2224
+ status: VerificationStatus;
2225
+ documentType: IdDocumentType;
2226
+ documentNumber: string;
2227
+ createdAt: Date;
2228
+ updatedAt: Date;
2229
+ reviewedAt?: Date | undefined;
2230
+ reviewedBy?: string | undefined;
2231
+ reviewNotes?: string | undefined;
2232
+ profileId: string;
2233
+ accountId: string;
2234
+ rejectionReason?: string | undefined;
2235
+ documentCountry: string;
2236
+ frontImageUrl: string;
2237
+ backImageUrl?: string | undefined;
2238
+ selfieUrl: string;
2239
+ extractedName?: string | undefined;
2240
+ extractedDob?: Date | undefined;
2241
+ extractedAddress?: string | undefined;
2242
+ nameMatchScore?: number | undefined;
2243
+ dobMatch?: boolean | undefined;
2244
+ faceMatchScore?: number | undefined;
2245
+ documentExpiryDate?: Date | undefined;
2246
+ verificationExpiresAt?: Date | undefined;
2247
+ ipAddress: string;
2248
+ userAgent: string;
2249
+ submissionLocation?: {
2250
+ lat: number;
2251
+ lng: number;
2252
+ } | undefined;
2253
+ _id: string;
2254
+ };
2255
+ (options: import("mongoose").ToObjectOptions & {
2256
+ flattenMaps: true;
2257
+ flattenObjectIds: false;
2258
+ virtuals: true;
2259
+ versionKey: false;
2260
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2261
+ _id: string;
2262
+ } & Required<{
2263
+ _id: string;
2264
+ }>>, "__v">;
2265
+ (options: import("mongoose").ToObjectOptions & {
2266
+ flattenMaps: true;
2267
+ flattenObjectIds: false;
2268
+ virtuals: true;
2269
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2270
+ _id: string;
2271
+ } & Required<{
2272
+ _id: string;
2273
+ }>>;
2274
+ (options: import("mongoose").ToObjectOptions & {
2275
+ flattenMaps: true;
2276
+ flattenObjectIds: true;
2277
+ virtuals: false;
2278
+ versionKey: false;
2279
+ }): {
2280
+ status: VerificationStatus;
2281
+ documentType: IdDocumentType;
2282
+ documentNumber: string;
2283
+ createdAt: Date;
2284
+ updatedAt: Date;
2285
+ _id: string;
2286
+ reviewedAt?: Date | undefined;
2287
+ reviewedBy?: string | undefined;
2288
+ reviewNotes?: string | undefined;
2289
+ profileId: string;
2290
+ accountId: string;
2291
+ rejectionReason?: string | undefined;
2292
+ documentCountry: string;
2293
+ frontImageUrl: string;
2294
+ backImageUrl?: string | undefined;
2295
+ selfieUrl: string;
2296
+ extractedName?: string | undefined;
2297
+ extractedDob?: Date | undefined;
2298
+ extractedAddress?: string | undefined;
2299
+ nameMatchScore?: number | undefined;
2300
+ dobMatch?: boolean | undefined;
2301
+ faceMatchScore?: number | undefined;
2302
+ documentExpiryDate?: Date | undefined;
2303
+ verificationExpiresAt?: Date | undefined;
2304
+ ipAddress: string;
2305
+ userAgent: string;
2306
+ submissionLocation?: {
2307
+ lat: number;
2308
+ lng: number;
2309
+ } | undefined;
2310
+ };
2311
+ (options: import("mongoose").ToObjectOptions & {
2312
+ flattenMaps: true;
2313
+ flattenObjectIds: true;
2314
+ virtuals: false;
2315
+ }): {
2316
+ status: VerificationStatus;
2317
+ documentType: IdDocumentType;
2318
+ documentNumber: string;
2319
+ createdAt: Date;
2320
+ updatedAt: Date;
2321
+ reviewedAt?: Date | undefined;
2322
+ reviewedBy?: string | undefined;
2323
+ reviewNotes?: string | undefined;
2324
+ profileId: string;
2325
+ accountId: string;
2326
+ rejectionReason?: string | undefined;
2327
+ documentCountry: string;
2328
+ frontImageUrl: string;
2329
+ backImageUrl?: string | undefined;
2330
+ selfieUrl: string;
2331
+ extractedName?: string | undefined;
2332
+ extractedDob?: Date | undefined;
2333
+ extractedAddress?: string | undefined;
2334
+ nameMatchScore?: number | undefined;
2335
+ dobMatch?: boolean | undefined;
2336
+ faceMatchScore?: number | undefined;
2337
+ documentExpiryDate?: Date | undefined;
2338
+ verificationExpiresAt?: Date | undefined;
2339
+ ipAddress: string;
2340
+ userAgent: string;
2341
+ submissionLocation?: {
2342
+ lat: number;
2343
+ lng: number;
2344
+ } | undefined;
2345
+ _id: string;
2346
+ };
2347
+ (options: import("mongoose").ToObjectOptions & {
2348
+ flattenMaps: true;
2349
+ flattenObjectIds: false;
2350
+ virtuals: false;
2351
+ versionKey: false;
2352
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2353
+ _id: string;
2354
+ } & Required<{
2355
+ _id: string;
2356
+ }>>, "__v">;
2357
+ (options: import("mongoose").ToObjectOptions & {
2358
+ flattenMaps: true;
2359
+ flattenObjectIds: false;
2360
+ virtuals: false;
2361
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2362
+ _id: string;
2363
+ } & Required<{
2364
+ _id: string;
2365
+ }>>;
2366
+ (options: import("mongoose").ToObjectOptions & {
2367
+ flattenMaps: true;
2368
+ flattenObjectIds: true;
2369
+ virtuals: true;
2370
+ }): {
2371
+ status: VerificationStatus;
2372
+ documentType: IdDocumentType;
2373
+ documentNumber: string;
2374
+ createdAt: Date;
2375
+ updatedAt: Date;
2376
+ reviewedAt?: Date | undefined;
2377
+ reviewedBy?: string | undefined;
2378
+ reviewNotes?: string | undefined;
2379
+ profileId: string;
2380
+ accountId: string;
2381
+ rejectionReason?: string | undefined;
2382
+ documentCountry: string;
2383
+ frontImageUrl: string;
2384
+ backImageUrl?: string | undefined;
2385
+ selfieUrl: string;
2386
+ extractedName?: string | undefined;
2387
+ extractedDob?: Date | undefined;
2388
+ extractedAddress?: string | undefined;
2389
+ nameMatchScore?: number | undefined;
2390
+ dobMatch?: boolean | undefined;
2391
+ faceMatchScore?: number | undefined;
2392
+ documentExpiryDate?: Date | undefined;
2393
+ verificationExpiresAt?: Date | undefined;
2394
+ ipAddress: string;
2395
+ userAgent: string;
2396
+ submissionLocation?: {
2397
+ lat: number;
2398
+ lng: number;
2399
+ } | undefined;
2400
+ _id: string;
2401
+ };
2402
+ (options: import("mongoose").ToObjectOptions & {
2403
+ flattenMaps: true;
2404
+ flattenObjectIds: true;
2405
+ }): {
2406
+ status: VerificationStatus;
2407
+ documentType: IdDocumentType;
2408
+ documentNumber: string;
2409
+ createdAt: Date;
2410
+ updatedAt: Date;
2411
+ reviewedAt?: Date | undefined;
2412
+ reviewedBy?: string | undefined;
2413
+ reviewNotes?: string | undefined;
2414
+ profileId: string;
2415
+ accountId: string;
2416
+ rejectionReason?: string | undefined;
2417
+ documentCountry: string;
2418
+ frontImageUrl: string;
2419
+ backImageUrl?: string | undefined;
2420
+ selfieUrl: string;
2421
+ extractedName?: string | undefined;
2422
+ extractedDob?: Date | undefined;
2423
+ extractedAddress?: string | undefined;
2424
+ nameMatchScore?: number | undefined;
2425
+ dobMatch?: boolean | undefined;
2426
+ faceMatchScore?: number | undefined;
2427
+ documentExpiryDate?: Date | undefined;
2428
+ verificationExpiresAt?: Date | undefined;
2429
+ ipAddress: string;
2430
+ userAgent: string;
2431
+ submissionLocation?: {
2432
+ lat: number;
2433
+ lng: number;
2434
+ } | undefined;
2435
+ _id: string;
2436
+ };
2437
+ (options: import("mongoose").ToObjectOptions & {
2438
+ flattenObjectIds: true;
2439
+ virtuals: true;
2440
+ }): {
2441
+ status: VerificationStatus;
2442
+ documentType: IdDocumentType;
2443
+ documentNumber: string;
2444
+ createdAt: Date;
2445
+ updatedAt: Date;
2446
+ reviewedAt?: Date | undefined;
2447
+ reviewedBy?: string | undefined;
2448
+ reviewNotes?: string | undefined;
2449
+ profileId: string;
2450
+ accountId: string;
2451
+ rejectionReason?: string | undefined;
2452
+ documentCountry: string;
2453
+ frontImageUrl: string;
2454
+ backImageUrl?: string | undefined;
2455
+ selfieUrl: string;
2456
+ extractedName?: string | undefined;
2457
+ extractedDob?: Date | undefined;
2458
+ extractedAddress?: string | undefined;
2459
+ nameMatchScore?: number | undefined;
2460
+ dobMatch?: boolean | undefined;
2461
+ faceMatchScore?: number | undefined;
2462
+ documentExpiryDate?: Date | undefined;
2463
+ verificationExpiresAt?: Date | undefined;
2464
+ ipAddress: string;
2465
+ userAgent: string;
2466
+ submissionLocation?: {
2467
+ lat: number;
2468
+ lng: number;
2469
+ } | undefined;
2470
+ _id: string;
2471
+ };
2472
+ (options: import("mongoose").ToObjectOptions & {
2473
+ flattenObjectIds: true;
2474
+ }): {
2475
+ status: VerificationStatus;
2476
+ documentType: IdDocumentType;
2477
+ documentNumber: string;
2478
+ createdAt: Date;
2479
+ updatedAt: Date;
2480
+ reviewedAt?: Date | undefined;
2481
+ reviewedBy?: string | undefined;
2482
+ reviewNotes?: string | undefined;
2483
+ profileId: string;
2484
+ accountId: string;
2485
+ rejectionReason?: string | undefined;
2486
+ documentCountry: string;
2487
+ frontImageUrl: string;
2488
+ backImageUrl?: string | undefined;
2489
+ selfieUrl: string;
2490
+ extractedName?: string | undefined;
2491
+ extractedDob?: Date | undefined;
2492
+ extractedAddress?: string | undefined;
2493
+ nameMatchScore?: number | undefined;
2494
+ dobMatch?: boolean | undefined;
2495
+ faceMatchScore?: number | undefined;
2496
+ documentExpiryDate?: Date | undefined;
2497
+ verificationExpiresAt?: Date | undefined;
2498
+ ipAddress: string;
2499
+ userAgent: string;
2500
+ submissionLocation?: {
2501
+ lat: number;
2502
+ lng: number;
2503
+ } | undefined;
2504
+ _id: string;
2505
+ };
2506
+ (options: import("mongoose").ToObjectOptions & {
2507
+ flattenMaps: true;
2508
+ virtuals: true;
2509
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2510
+ _id: string;
2511
+ } & Required<{
2512
+ _id: string;
2513
+ }>>;
2514
+ (options: import("mongoose").ToObjectOptions & {
2515
+ flattenMaps: true;
2516
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2517
+ _id: string;
2518
+ } & Required<{
2519
+ _id: string;
2520
+ }>>;
2521
+ (options: import("mongoose").ToObjectOptions & {
2522
+ versionKey: false;
2523
+ flattenMaps: true;
2524
+ flattenObjectIds: true;
2525
+ virtuals: true;
2526
+ }): {
2527
+ status: VerificationStatus;
2528
+ documentType: IdDocumentType;
2529
+ documentNumber: string;
2530
+ createdAt: Date;
2531
+ updatedAt: Date;
2532
+ _id: string;
2533
+ reviewedAt?: Date | undefined;
2534
+ reviewedBy?: string | undefined;
2535
+ reviewNotes?: string | undefined;
2536
+ profileId: string;
2537
+ accountId: string;
2538
+ rejectionReason?: string | undefined;
2539
+ documentCountry: string;
2540
+ frontImageUrl: string;
2541
+ backImageUrl?: string | undefined;
2542
+ selfieUrl: string;
2543
+ extractedName?: string | undefined;
2544
+ extractedDob?: Date | undefined;
2545
+ extractedAddress?: string | undefined;
2546
+ nameMatchScore?: number | undefined;
2547
+ dobMatch?: boolean | undefined;
2548
+ faceMatchScore?: number | undefined;
2549
+ documentExpiryDate?: Date | undefined;
2550
+ verificationExpiresAt?: Date | undefined;
2551
+ ipAddress: string;
2552
+ userAgent: string;
2553
+ submissionLocation?: {
2554
+ lat: number;
2555
+ lng: number;
2556
+ } | undefined;
2557
+ };
2558
+ (options: import("mongoose").ToObjectOptions & {
2559
+ versionKey: false;
2560
+ flattenMaps: false;
2561
+ flattenObjectIds: true;
2562
+ virtuals: true;
2563
+ }): {
2564
+ status: VerificationStatus;
2565
+ documentType: IdDocumentType;
2566
+ documentNumber: string;
2567
+ createdAt: Date;
2568
+ updatedAt: Date;
2569
+ _id: string;
2570
+ reviewedAt?: Date | undefined;
2571
+ reviewedBy?: string | undefined;
2572
+ reviewNotes?: string | undefined;
2573
+ profileId: string;
2574
+ accountId: string;
2575
+ rejectionReason?: string | undefined;
2576
+ documentCountry: string;
2577
+ frontImageUrl: string;
2578
+ backImageUrl?: string | undefined;
2579
+ selfieUrl: string;
2580
+ extractedName?: string | undefined;
2581
+ extractedDob?: Date | undefined;
2582
+ extractedAddress?: string | undefined;
2583
+ nameMatchScore?: number | undefined;
2584
+ dobMatch?: boolean | undefined;
2585
+ faceMatchScore?: number | undefined;
2586
+ documentExpiryDate?: Date | undefined;
2587
+ verificationExpiresAt?: Date | undefined;
2588
+ ipAddress: string;
2589
+ userAgent: string;
2590
+ submissionLocation?: {
2591
+ lat: number;
2592
+ lng: number;
2593
+ } | undefined;
2594
+ };
2595
+ (options: import("mongoose").ToObjectOptions & {
2596
+ versionKey: false;
2597
+ flattenMaps: true;
2598
+ virtuals: true;
2599
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2600
+ _id: string;
2601
+ } & Required<{
2602
+ _id: string;
2603
+ }>>, "__v">;
2604
+ (options: import("mongoose").ToObjectOptions & {
2605
+ versionKey: false;
2606
+ flattenObjectIds: true;
2607
+ virtuals: true;
2608
+ }): {
2609
+ status: VerificationStatus;
2610
+ documentType: IdDocumentType;
2611
+ documentNumber: string;
2612
+ createdAt: Date;
2613
+ updatedAt: Date;
2614
+ _id: string;
2615
+ reviewedAt?: Date | undefined;
2616
+ reviewedBy?: string | undefined;
2617
+ reviewNotes?: string | undefined;
2618
+ profileId: string;
2619
+ accountId: string;
2620
+ rejectionReason?: string | undefined;
2621
+ documentCountry: string;
2622
+ frontImageUrl: string;
2623
+ backImageUrl?: string | undefined;
2624
+ selfieUrl: string;
2625
+ extractedName?: string | undefined;
2626
+ extractedDob?: Date | undefined;
2627
+ extractedAddress?: string | undefined;
2628
+ nameMatchScore?: number | undefined;
2629
+ dobMatch?: boolean | undefined;
2630
+ faceMatchScore?: number | undefined;
2631
+ documentExpiryDate?: Date | undefined;
2632
+ verificationExpiresAt?: Date | undefined;
2633
+ ipAddress: string;
2634
+ userAgent: string;
2635
+ submissionLocation?: {
2636
+ lat: number;
2637
+ lng: number;
2638
+ } | undefined;
2639
+ };
2640
+ (options: import("mongoose").ToObjectOptions & {
2641
+ versionKey: false;
2642
+ virtuals: true;
2643
+ }): Omit<Omit<IVerification, "id"> & {
2644
+ _id: string;
2645
+ } & Required<{
2646
+ _id: string;
2647
+ }>, "__v">;
2648
+ (options: import("mongoose").ToObjectOptions & {
2649
+ versionKey: false;
2650
+ flattenMaps: true;
2651
+ flattenObjectIds: true;
2652
+ }): {
2653
+ status: VerificationStatus;
2654
+ documentType: IdDocumentType;
2655
+ documentNumber: string;
2656
+ createdAt: Date;
2657
+ updatedAt: Date;
2658
+ _id: string;
2659
+ reviewedAt?: Date | undefined;
2660
+ reviewedBy?: string | undefined;
2661
+ reviewNotes?: string | undefined;
2662
+ profileId: string;
2663
+ accountId: string;
2664
+ rejectionReason?: string | undefined;
2665
+ documentCountry: string;
2666
+ frontImageUrl: string;
2667
+ backImageUrl?: string | undefined;
2668
+ selfieUrl: string;
2669
+ extractedName?: string | undefined;
2670
+ extractedDob?: Date | undefined;
2671
+ extractedAddress?: string | undefined;
2672
+ nameMatchScore?: number | undefined;
2673
+ dobMatch?: boolean | undefined;
2674
+ faceMatchScore?: number | undefined;
2675
+ documentExpiryDate?: Date | undefined;
2676
+ verificationExpiresAt?: Date | undefined;
2677
+ ipAddress: string;
2678
+ userAgent: string;
2679
+ submissionLocation?: {
2680
+ lat: number;
2681
+ lng: number;
2682
+ } | undefined;
2683
+ };
2684
+ (options: import("mongoose").ToObjectOptions & {
2685
+ versionKey: false;
2686
+ flattenObjectIds: true;
2687
+ }): {
2688
+ status: VerificationStatus;
2689
+ documentType: IdDocumentType;
2690
+ documentNumber: string;
2691
+ createdAt: Date;
2692
+ updatedAt: Date;
2693
+ _id: string;
2694
+ reviewedAt?: Date | undefined;
2695
+ reviewedBy?: string | undefined;
2696
+ reviewNotes?: string | undefined;
2697
+ profileId: string;
2698
+ accountId: string;
2699
+ rejectionReason?: string | undefined;
2700
+ documentCountry: string;
2701
+ frontImageUrl: string;
2702
+ backImageUrl?: string | undefined;
2703
+ selfieUrl: string;
2704
+ extractedName?: string | undefined;
2705
+ extractedDob?: Date | undefined;
2706
+ extractedAddress?: string | undefined;
2707
+ nameMatchScore?: number | undefined;
2708
+ dobMatch?: boolean | undefined;
2709
+ faceMatchScore?: number | undefined;
2710
+ documentExpiryDate?: Date | undefined;
2711
+ verificationExpiresAt?: Date | undefined;
2712
+ ipAddress: string;
2713
+ userAgent: string;
2714
+ submissionLocation?: {
2715
+ lat: number;
2716
+ lng: number;
2717
+ } | undefined;
2718
+ };
2719
+ (options: import("mongoose").ToObjectOptions & {
2720
+ versionKey: false;
2721
+ flattenMaps: true;
2722
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
2723
+ _id: string;
2724
+ } & Required<{
2725
+ _id: string;
2726
+ }>>, "__v">;
2727
+ (options: import("mongoose").ToObjectOptions & {
2728
+ versionKey: false;
2729
+ }): Omit<Omit<IVerification, "id"> & {
2730
+ _id: string;
2731
+ } & Required<{
2732
+ _id: string;
2733
+ }>, "__v">;
2734
+ (options: import("mongoose").ToObjectOptions & {
2735
+ virtuals: true;
2736
+ }): Omit<IVerification, "id"> & {
2737
+ _id: string;
2738
+ } & Required<{
2739
+ _id: string;
2740
+ }>;
2741
+ (options?: import("mongoose").ToObjectOptions): Omit<IVerification, "id"> & {
2742
+ _id: string;
2743
+ } & Required<{
2744
+ _id: string;
2745
+ }> & {
2746
+ __v: number;
2747
+ };
2748
+ <T>(options?: import("mongoose").ToObjectOptions): import("mongoose").Require_id<T> & {
2749
+ __v: number;
2750
+ };
2751
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
2752
+ _id: string;
2753
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
2754
+ _id: string;
2755
+ } & Required<{
2756
+ _id: string;
2757
+ }> & {
2758
+ __v: number;
2759
+ } & {
2760
+ id: string;
2761
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
2762
+ _id: string;
2763
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
2764
+ _id: string;
2765
+ } & Required<{
2766
+ _id: string;
2767
+ }> & {
2768
+ __v: number;
2769
+ } & {
2770
+ id: string;
2771
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
2772
+ _id: string;
2773
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
2774
+ _id: string;
2775
+ } & Required<{
2776
+ _id: string;
2777
+ }> & {
2778
+ __v: number;
2779
+ } & {
2780
+ id: string;
2781
+ }> | undefined;
2782
+ toObject?: import("mongoose").SchemaDefinitionProperty<{
2783
+ (options: import("mongoose").ToObjectOptions & {
2784
+ flattenMaps: false;
2785
+ flattenObjectIds: true;
2786
+ virtuals: true;
2787
+ versionKey: false;
2788
+ }): {
2789
+ status: VerificationStatus;
2790
+ documentType: IdDocumentType;
2791
+ documentNumber: string;
2792
+ createdAt: Date;
2793
+ updatedAt: Date;
2794
+ _id: string;
2795
+ reviewedAt?: Date | undefined;
2796
+ reviewedBy?: string | undefined;
2797
+ reviewNotes?: string | undefined;
2798
+ profileId: string;
2799
+ accountId: string;
2800
+ rejectionReason?: string | undefined;
2801
+ documentCountry: string;
2802
+ frontImageUrl: string;
2803
+ backImageUrl?: string | undefined;
2804
+ selfieUrl: string;
2805
+ extractedName?: string | undefined;
2806
+ extractedDob?: Date | undefined;
2807
+ extractedAddress?: string | undefined;
2808
+ nameMatchScore?: number | undefined;
2809
+ dobMatch?: boolean | undefined;
2810
+ faceMatchScore?: number | undefined;
2811
+ documentExpiryDate?: Date | undefined;
2812
+ verificationExpiresAt?: Date | undefined;
2813
+ ipAddress: string;
2814
+ userAgent: string;
2815
+ submissionLocation?: {
2816
+ lat: number;
2817
+ lng: number;
2818
+ } | undefined;
2819
+ };
2820
+ (options: import("mongoose").ToObjectOptions & {
2821
+ flattenMaps: false;
2822
+ flattenObjectIds: true;
2823
+ virtuals: true;
2824
+ }): {
2825
+ status: VerificationStatus;
2826
+ documentType: IdDocumentType;
2827
+ documentNumber: string;
2828
+ createdAt: Date;
2829
+ updatedAt: Date;
2830
+ reviewedAt?: Date | undefined;
2831
+ reviewedBy?: string | undefined;
2832
+ reviewNotes?: string | undefined;
2833
+ profileId: string;
2834
+ accountId: string;
2835
+ rejectionReason?: string | undefined;
2836
+ documentCountry: string;
2837
+ frontImageUrl: string;
2838
+ backImageUrl?: string | undefined;
2839
+ selfieUrl: string;
2840
+ extractedName?: string | undefined;
2841
+ extractedDob?: Date | undefined;
2842
+ extractedAddress?: string | undefined;
2843
+ nameMatchScore?: number | undefined;
2844
+ dobMatch?: boolean | undefined;
2845
+ faceMatchScore?: number | undefined;
2846
+ documentExpiryDate?: Date | undefined;
2847
+ verificationExpiresAt?: Date | undefined;
2848
+ ipAddress: string;
2849
+ userAgent: string;
2850
+ submissionLocation?: {
2851
+ lat: number;
2852
+ lng: number;
2853
+ } | undefined;
2854
+ _id: string;
2855
+ };
2856
+ (options: import("mongoose").ToObjectOptions & {
2857
+ flattenMaps: false;
2858
+ flattenObjectIds: false;
2859
+ virtuals: true;
2860
+ versionKey: false;
2861
+ }): Omit<Omit<IVerification, "id"> & {
2862
+ _id: string;
2863
+ } & Required<{
2864
+ _id: string;
2865
+ }>, "__v">;
2866
+ (options: import("mongoose").ToObjectOptions & {
2867
+ flattenMaps: false;
2868
+ flattenObjectIds: false;
2869
+ virtuals: true;
2870
+ }): Omit<IVerification, "id"> & {
2871
+ _id: string;
2872
+ } & Required<{
2873
+ _id: string;
2874
+ }>;
2875
+ (options: import("mongoose").ToObjectOptions & {
2876
+ flattenMaps: false;
2877
+ flattenObjectIds: true;
2878
+ virtuals: false;
2879
+ versionKey: false;
2880
+ }): {
2881
+ status: VerificationStatus;
2882
+ documentType: IdDocumentType;
2883
+ documentNumber: string;
2884
+ createdAt: Date;
2885
+ updatedAt: Date;
2886
+ _id: string;
2887
+ reviewedAt?: Date | undefined;
2888
+ reviewedBy?: string | undefined;
2889
+ reviewNotes?: string | undefined;
2890
+ profileId: string;
2891
+ accountId: string;
2892
+ rejectionReason?: string | undefined;
2893
+ documentCountry: string;
2894
+ frontImageUrl: string;
2895
+ backImageUrl?: string | undefined;
2896
+ selfieUrl: string;
2897
+ extractedName?: string | undefined;
2898
+ extractedDob?: Date | undefined;
2899
+ extractedAddress?: string | undefined;
2900
+ nameMatchScore?: number | undefined;
2901
+ dobMatch?: boolean | undefined;
2902
+ faceMatchScore?: number | undefined;
2903
+ documentExpiryDate?: Date | undefined;
2904
+ verificationExpiresAt?: Date | undefined;
2905
+ ipAddress: string;
2906
+ userAgent: string;
2907
+ submissionLocation?: {
2908
+ lat: number;
2909
+ lng: number;
2910
+ } | undefined;
2911
+ };
2912
+ (options: import("mongoose").ToObjectOptions & {
2913
+ flattenMaps: false;
2914
+ flattenObjectIds: true;
2915
+ virtuals: false;
2916
+ }): {
2917
+ status: VerificationStatus;
2918
+ documentType: IdDocumentType;
2919
+ documentNumber: string;
2920
+ createdAt: Date;
2921
+ updatedAt: Date;
2922
+ reviewedAt?: Date | undefined;
2923
+ reviewedBy?: string | undefined;
2924
+ reviewNotes?: string | undefined;
2925
+ profileId: string;
2926
+ accountId: string;
2927
+ rejectionReason?: string | undefined;
2928
+ documentCountry: string;
2929
+ frontImageUrl: string;
2930
+ backImageUrl?: string | undefined;
2931
+ selfieUrl: string;
2932
+ extractedName?: string | undefined;
2933
+ extractedDob?: Date | undefined;
2934
+ extractedAddress?: string | undefined;
2935
+ nameMatchScore?: number | undefined;
2936
+ dobMatch?: boolean | undefined;
2937
+ faceMatchScore?: number | undefined;
2938
+ documentExpiryDate?: Date | undefined;
2939
+ verificationExpiresAt?: Date | undefined;
2940
+ ipAddress: string;
2941
+ userAgent: string;
2942
+ submissionLocation?: {
2943
+ lat: number;
2944
+ lng: number;
2945
+ } | undefined;
2946
+ _id: string;
2947
+ };
2948
+ (options: import("mongoose").ToObjectOptions & {
2949
+ flattenMaps: false;
2950
+ flattenObjectIds: false;
2951
+ virtuals: false;
2952
+ versionKey: false;
2953
+ }): Omit<Omit<IVerification, "id"> & {
2954
+ _id: string;
2955
+ } & Required<{
2956
+ _id: string;
2957
+ }>, "__v">;
2958
+ (options: import("mongoose").ToObjectOptions & {
2959
+ flattenMaps: false;
2960
+ flattenObjectIds: false;
2961
+ virtuals: false;
2962
+ }): Omit<IVerification, "id"> & {
2963
+ _id: string;
2964
+ } & Required<{
2965
+ _id: string;
2966
+ }>;
2967
+ (options: import("mongoose").ToObjectOptions & {
2968
+ flattenMaps: true;
2969
+ flattenObjectIds: true;
2970
+ virtuals: true;
2971
+ versionKey: false;
2972
+ }): {
2973
+ status: VerificationStatus;
2974
+ documentType: IdDocumentType;
2975
+ documentNumber: string;
2976
+ createdAt: Date;
2977
+ updatedAt: Date;
2978
+ _id: string;
2979
+ reviewedAt?: Date | undefined;
2980
+ reviewedBy?: string | undefined;
2981
+ reviewNotes?: string | undefined;
2982
+ profileId: string;
2983
+ accountId: string;
2984
+ rejectionReason?: string | undefined;
2985
+ documentCountry: string;
2986
+ frontImageUrl: string;
2987
+ backImageUrl?: string | undefined;
2988
+ selfieUrl: string;
2989
+ extractedName?: string | undefined;
2990
+ extractedDob?: Date | undefined;
2991
+ extractedAddress?: string | undefined;
2992
+ nameMatchScore?: number | undefined;
2993
+ dobMatch?: boolean | undefined;
2994
+ faceMatchScore?: number | undefined;
2995
+ documentExpiryDate?: Date | undefined;
2996
+ verificationExpiresAt?: Date | undefined;
2997
+ ipAddress: string;
2998
+ userAgent: string;
2999
+ submissionLocation?: {
3000
+ lat: number;
3001
+ lng: number;
3002
+ } | undefined;
3003
+ };
3004
+ (options: import("mongoose").ToObjectOptions & {
3005
+ flattenMaps: true;
3006
+ flattenObjectIds: true;
3007
+ virtuals: true;
3008
+ }): {
3009
+ status: VerificationStatus;
3010
+ documentType: IdDocumentType;
3011
+ documentNumber: string;
3012
+ createdAt: Date;
3013
+ updatedAt: Date;
3014
+ reviewedAt?: Date | undefined;
3015
+ reviewedBy?: string | undefined;
3016
+ reviewNotes?: string | undefined;
3017
+ profileId: string;
3018
+ accountId: string;
3019
+ rejectionReason?: string | undefined;
3020
+ documentCountry: string;
3021
+ frontImageUrl: string;
3022
+ backImageUrl?: string | undefined;
3023
+ selfieUrl: string;
3024
+ extractedName?: string | undefined;
3025
+ extractedDob?: Date | undefined;
3026
+ extractedAddress?: string | undefined;
3027
+ nameMatchScore?: number | undefined;
3028
+ dobMatch?: boolean | undefined;
3029
+ faceMatchScore?: number | undefined;
3030
+ documentExpiryDate?: Date | undefined;
3031
+ verificationExpiresAt?: Date | undefined;
3032
+ ipAddress: string;
3033
+ userAgent: string;
3034
+ submissionLocation?: {
3035
+ lat: number;
3036
+ lng: number;
3037
+ } | undefined;
3038
+ _id: string;
3039
+ };
3040
+ (options: import("mongoose").ToObjectOptions & {
3041
+ flattenMaps: true;
3042
+ flattenObjectIds: false;
3043
+ virtuals: true;
3044
+ versionKey: false;
3045
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3046
+ _id: string;
3047
+ } & Required<{
3048
+ _id: string;
3049
+ }>>, "__v">;
3050
+ (options: import("mongoose").ToObjectOptions & {
3051
+ flattenMaps: true;
3052
+ flattenObjectIds: false;
3053
+ virtuals: true;
3054
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3055
+ _id: string;
3056
+ } & Required<{
3057
+ _id: string;
3058
+ }>>;
3059
+ (options: import("mongoose").ToObjectOptions & {
3060
+ flattenMaps: true;
3061
+ flattenObjectIds: true;
3062
+ virtuals: false;
3063
+ versionKey: false;
3064
+ }): {
3065
+ status: VerificationStatus;
3066
+ documentType: IdDocumentType;
3067
+ documentNumber: string;
3068
+ createdAt: Date;
3069
+ updatedAt: Date;
3070
+ _id: string;
3071
+ reviewedAt?: Date | undefined;
3072
+ reviewedBy?: string | undefined;
3073
+ reviewNotes?: string | undefined;
3074
+ profileId: string;
3075
+ accountId: string;
3076
+ rejectionReason?: string | undefined;
3077
+ documentCountry: string;
3078
+ frontImageUrl: string;
3079
+ backImageUrl?: string | undefined;
3080
+ selfieUrl: string;
3081
+ extractedName?: string | undefined;
3082
+ extractedDob?: Date | undefined;
3083
+ extractedAddress?: string | undefined;
3084
+ nameMatchScore?: number | undefined;
3085
+ dobMatch?: boolean | undefined;
3086
+ faceMatchScore?: number | undefined;
3087
+ documentExpiryDate?: Date | undefined;
3088
+ verificationExpiresAt?: Date | undefined;
3089
+ ipAddress: string;
3090
+ userAgent: string;
3091
+ submissionLocation?: {
3092
+ lat: number;
3093
+ lng: number;
3094
+ } | undefined;
3095
+ };
3096
+ (options: import("mongoose").ToObjectOptions & {
3097
+ flattenMaps: true;
3098
+ flattenObjectIds: true;
3099
+ virtuals: false;
3100
+ }): {
3101
+ status: VerificationStatus;
3102
+ documentType: IdDocumentType;
3103
+ documentNumber: string;
3104
+ createdAt: Date;
3105
+ updatedAt: Date;
3106
+ reviewedAt?: Date | undefined;
3107
+ reviewedBy?: string | undefined;
3108
+ reviewNotes?: string | undefined;
3109
+ profileId: string;
3110
+ accountId: string;
3111
+ rejectionReason?: string | undefined;
3112
+ documentCountry: string;
3113
+ frontImageUrl: string;
3114
+ backImageUrl?: string | undefined;
3115
+ selfieUrl: string;
3116
+ extractedName?: string | undefined;
3117
+ extractedDob?: Date | undefined;
3118
+ extractedAddress?: string | undefined;
3119
+ nameMatchScore?: number | undefined;
3120
+ dobMatch?: boolean | undefined;
3121
+ faceMatchScore?: number | undefined;
3122
+ documentExpiryDate?: Date | undefined;
3123
+ verificationExpiresAt?: Date | undefined;
3124
+ ipAddress: string;
3125
+ userAgent: string;
3126
+ submissionLocation?: {
3127
+ lat: number;
3128
+ lng: number;
3129
+ } | undefined;
3130
+ _id: string;
3131
+ };
3132
+ (options: import("mongoose").ToObjectOptions & {
3133
+ flattenMaps: true;
3134
+ flattenObjectIds: false;
3135
+ virtuals: false;
3136
+ versionKey: false;
3137
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3138
+ _id: string;
3139
+ } & Required<{
3140
+ _id: string;
3141
+ }>>, "__v">;
3142
+ (options: import("mongoose").ToObjectOptions & {
3143
+ flattenMaps: true;
3144
+ flattenObjectIds: false;
3145
+ virtuals: false;
3146
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3147
+ _id: string;
3148
+ } & Required<{
3149
+ _id: string;
3150
+ }>>;
3151
+ (options: import("mongoose").ToObjectOptions & {
3152
+ flattenMaps: true;
3153
+ flattenObjectIds: true;
3154
+ virtuals: true;
3155
+ }): {
3156
+ status: VerificationStatus;
3157
+ documentType: IdDocumentType;
3158
+ documentNumber: string;
3159
+ createdAt: Date;
3160
+ updatedAt: Date;
3161
+ reviewedAt?: Date | undefined;
3162
+ reviewedBy?: string | undefined;
3163
+ reviewNotes?: string | undefined;
3164
+ profileId: string;
3165
+ accountId: string;
3166
+ rejectionReason?: string | undefined;
3167
+ documentCountry: string;
3168
+ frontImageUrl: string;
3169
+ backImageUrl?: string | undefined;
3170
+ selfieUrl: string;
3171
+ extractedName?: string | undefined;
3172
+ extractedDob?: Date | undefined;
3173
+ extractedAddress?: string | undefined;
3174
+ nameMatchScore?: number | undefined;
3175
+ dobMatch?: boolean | undefined;
3176
+ faceMatchScore?: number | undefined;
3177
+ documentExpiryDate?: Date | undefined;
3178
+ verificationExpiresAt?: Date | undefined;
3179
+ ipAddress: string;
3180
+ userAgent: string;
3181
+ submissionLocation?: {
3182
+ lat: number;
3183
+ lng: number;
3184
+ } | undefined;
3185
+ _id: string;
3186
+ };
3187
+ (options: import("mongoose").ToObjectOptions & {
3188
+ flattenMaps: true;
3189
+ flattenObjectIds: true;
3190
+ }): {
3191
+ status: VerificationStatus;
3192
+ documentType: IdDocumentType;
3193
+ documentNumber: string;
3194
+ createdAt: Date;
3195
+ updatedAt: Date;
3196
+ reviewedAt?: Date | undefined;
3197
+ reviewedBy?: string | undefined;
3198
+ reviewNotes?: string | undefined;
3199
+ profileId: string;
3200
+ accountId: string;
3201
+ rejectionReason?: string | undefined;
3202
+ documentCountry: string;
3203
+ frontImageUrl: string;
3204
+ backImageUrl?: string | undefined;
3205
+ selfieUrl: string;
3206
+ extractedName?: string | undefined;
3207
+ extractedDob?: Date | undefined;
3208
+ extractedAddress?: string | undefined;
3209
+ nameMatchScore?: number | undefined;
3210
+ dobMatch?: boolean | undefined;
3211
+ faceMatchScore?: number | undefined;
3212
+ documentExpiryDate?: Date | undefined;
3213
+ verificationExpiresAt?: Date | undefined;
3214
+ ipAddress: string;
3215
+ userAgent: string;
3216
+ submissionLocation?: {
3217
+ lat: number;
3218
+ lng: number;
3219
+ } | undefined;
3220
+ _id: string;
3221
+ };
3222
+ (options: import("mongoose").ToObjectOptions & {
3223
+ flattenObjectIds: true;
3224
+ virtuals: true;
3225
+ }): {
3226
+ status: VerificationStatus;
3227
+ documentType: IdDocumentType;
3228
+ documentNumber: string;
3229
+ createdAt: Date;
3230
+ updatedAt: Date;
3231
+ reviewedAt?: Date | undefined;
3232
+ reviewedBy?: string | undefined;
3233
+ reviewNotes?: string | undefined;
3234
+ profileId: string;
3235
+ accountId: string;
3236
+ rejectionReason?: string | undefined;
3237
+ documentCountry: string;
3238
+ frontImageUrl: string;
3239
+ backImageUrl?: string | undefined;
3240
+ selfieUrl: string;
3241
+ extractedName?: string | undefined;
3242
+ extractedDob?: Date | undefined;
3243
+ extractedAddress?: string | undefined;
3244
+ nameMatchScore?: number | undefined;
3245
+ dobMatch?: boolean | undefined;
3246
+ faceMatchScore?: number | undefined;
3247
+ documentExpiryDate?: Date | undefined;
3248
+ verificationExpiresAt?: Date | undefined;
3249
+ ipAddress: string;
3250
+ userAgent: string;
3251
+ submissionLocation?: {
3252
+ lat: number;
3253
+ lng: number;
3254
+ } | undefined;
3255
+ _id: string;
3256
+ };
3257
+ (options: import("mongoose").ToObjectOptions & {
3258
+ flattenObjectIds: true;
3259
+ }): {
3260
+ status: VerificationStatus;
3261
+ documentType: IdDocumentType;
3262
+ documentNumber: string;
3263
+ createdAt: Date;
3264
+ updatedAt: Date;
3265
+ reviewedAt?: Date | undefined;
3266
+ reviewedBy?: string | undefined;
3267
+ reviewNotes?: string | undefined;
3268
+ profileId: string;
3269
+ accountId: string;
3270
+ rejectionReason?: string | undefined;
3271
+ documentCountry: string;
3272
+ frontImageUrl: string;
3273
+ backImageUrl?: string | undefined;
3274
+ selfieUrl: string;
3275
+ extractedName?: string | undefined;
3276
+ extractedDob?: Date | undefined;
3277
+ extractedAddress?: string | undefined;
3278
+ nameMatchScore?: number | undefined;
3279
+ dobMatch?: boolean | undefined;
3280
+ faceMatchScore?: number | undefined;
3281
+ documentExpiryDate?: Date | undefined;
3282
+ verificationExpiresAt?: Date | undefined;
3283
+ ipAddress: string;
3284
+ userAgent: string;
3285
+ submissionLocation?: {
3286
+ lat: number;
3287
+ lng: number;
3288
+ } | undefined;
3289
+ _id: string;
3290
+ };
3291
+ (options: import("mongoose").ToObjectOptions & {
3292
+ flattenMaps: true;
3293
+ virtuals: true;
3294
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3295
+ _id: string;
3296
+ } & Required<{
3297
+ _id: string;
3298
+ }>>;
3299
+ (options: import("mongoose").ToObjectOptions & {
3300
+ flattenMaps: true;
3301
+ }): import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3302
+ _id: string;
3303
+ } & Required<{
3304
+ _id: string;
3305
+ }>>;
3306
+ (options: import("mongoose").ToObjectOptions & {
3307
+ versionKey: false;
3308
+ flattenMaps: true;
3309
+ flattenObjectIds: true;
3310
+ virtuals: true;
3311
+ }): {
3312
+ status: VerificationStatus;
3313
+ documentType: IdDocumentType;
3314
+ documentNumber: string;
3315
+ createdAt: Date;
3316
+ updatedAt: Date;
3317
+ _id: string;
3318
+ reviewedAt?: Date | undefined;
3319
+ reviewedBy?: string | undefined;
3320
+ reviewNotes?: string | undefined;
3321
+ profileId: string;
3322
+ accountId: string;
3323
+ rejectionReason?: string | undefined;
3324
+ documentCountry: string;
3325
+ frontImageUrl: string;
3326
+ backImageUrl?: string | undefined;
3327
+ selfieUrl: string;
3328
+ extractedName?: string | undefined;
3329
+ extractedDob?: Date | undefined;
3330
+ extractedAddress?: string | undefined;
3331
+ nameMatchScore?: number | undefined;
3332
+ dobMatch?: boolean | undefined;
3333
+ faceMatchScore?: number | undefined;
3334
+ documentExpiryDate?: Date | undefined;
3335
+ verificationExpiresAt?: Date | undefined;
3336
+ ipAddress: string;
3337
+ userAgent: string;
3338
+ submissionLocation?: {
3339
+ lat: number;
3340
+ lng: number;
3341
+ } | undefined;
3342
+ };
3343
+ (options: import("mongoose").ToObjectOptions & {
3344
+ versionKey: false;
3345
+ flattenMaps: false;
3346
+ flattenObjectIds: true;
3347
+ virtuals: true;
3348
+ }): {
3349
+ status: VerificationStatus;
3350
+ documentType: IdDocumentType;
3351
+ documentNumber: string;
3352
+ createdAt: Date;
3353
+ updatedAt: Date;
3354
+ _id: string;
3355
+ reviewedAt?: Date | undefined;
3356
+ reviewedBy?: string | undefined;
3357
+ reviewNotes?: string | undefined;
3358
+ profileId: string;
3359
+ accountId: string;
3360
+ rejectionReason?: string | undefined;
3361
+ documentCountry: string;
3362
+ frontImageUrl: string;
3363
+ backImageUrl?: string | undefined;
3364
+ selfieUrl: string;
3365
+ extractedName?: string | undefined;
3366
+ extractedDob?: Date | undefined;
3367
+ extractedAddress?: string | undefined;
3368
+ nameMatchScore?: number | undefined;
3369
+ dobMatch?: boolean | undefined;
3370
+ faceMatchScore?: number | undefined;
3371
+ documentExpiryDate?: Date | undefined;
3372
+ verificationExpiresAt?: Date | undefined;
3373
+ ipAddress: string;
3374
+ userAgent: string;
3375
+ submissionLocation?: {
3376
+ lat: number;
3377
+ lng: number;
3378
+ } | undefined;
3379
+ };
3380
+ (options: import("mongoose").ToObjectOptions & {
3381
+ versionKey: false;
3382
+ flattenMaps: true;
3383
+ virtuals: true;
3384
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3385
+ _id: string;
3386
+ } & Required<{
3387
+ _id: string;
3388
+ }>>, "__v">;
3389
+ (options: import("mongoose").ToObjectOptions & {
3390
+ versionKey: false;
3391
+ flattenObjectIds: true;
3392
+ virtuals: true;
3393
+ }): {
3394
+ status: VerificationStatus;
3395
+ documentType: IdDocumentType;
3396
+ documentNumber: string;
3397
+ createdAt: Date;
3398
+ updatedAt: Date;
3399
+ _id: string;
3400
+ reviewedAt?: Date | undefined;
3401
+ reviewedBy?: string | undefined;
3402
+ reviewNotes?: string | undefined;
3403
+ profileId: string;
3404
+ accountId: string;
3405
+ rejectionReason?: string | undefined;
3406
+ documentCountry: string;
3407
+ frontImageUrl: string;
3408
+ backImageUrl?: string | undefined;
3409
+ selfieUrl: string;
3410
+ extractedName?: string | undefined;
3411
+ extractedDob?: Date | undefined;
3412
+ extractedAddress?: string | undefined;
3413
+ nameMatchScore?: number | undefined;
3414
+ dobMatch?: boolean | undefined;
3415
+ faceMatchScore?: number | undefined;
3416
+ documentExpiryDate?: Date | undefined;
3417
+ verificationExpiresAt?: Date | undefined;
3418
+ ipAddress: string;
3419
+ userAgent: string;
3420
+ submissionLocation?: {
3421
+ lat: number;
3422
+ lng: number;
3423
+ } | undefined;
3424
+ };
3425
+ (options: import("mongoose").ToObjectOptions & {
3426
+ versionKey: false;
3427
+ virtuals: true;
3428
+ }): Omit<Omit<IVerification, "id"> & {
3429
+ _id: string;
3430
+ } & Required<{
3431
+ _id: string;
3432
+ }>, "__v">;
3433
+ (options: import("mongoose").ToObjectOptions & {
3434
+ versionKey: false;
3435
+ flattenMaps: true;
3436
+ flattenObjectIds: true;
3437
+ }): {
3438
+ status: VerificationStatus;
3439
+ documentType: IdDocumentType;
3440
+ documentNumber: string;
3441
+ createdAt: Date;
3442
+ updatedAt: Date;
3443
+ _id: string;
3444
+ reviewedAt?: Date | undefined;
3445
+ reviewedBy?: string | undefined;
3446
+ reviewNotes?: string | undefined;
3447
+ profileId: string;
3448
+ accountId: string;
3449
+ rejectionReason?: string | undefined;
3450
+ documentCountry: string;
3451
+ frontImageUrl: string;
3452
+ backImageUrl?: string | undefined;
3453
+ selfieUrl: string;
3454
+ extractedName?: string | undefined;
3455
+ extractedDob?: Date | undefined;
3456
+ extractedAddress?: string | undefined;
3457
+ nameMatchScore?: number | undefined;
3458
+ dobMatch?: boolean | undefined;
3459
+ faceMatchScore?: number | undefined;
3460
+ documentExpiryDate?: Date | undefined;
3461
+ verificationExpiresAt?: Date | undefined;
3462
+ ipAddress: string;
3463
+ userAgent: string;
3464
+ submissionLocation?: {
3465
+ lat: number;
3466
+ lng: number;
3467
+ } | undefined;
3468
+ };
3469
+ (options: import("mongoose").ToObjectOptions & {
3470
+ versionKey: false;
3471
+ flattenObjectIds: true;
3472
+ }): {
3473
+ status: VerificationStatus;
3474
+ documentType: IdDocumentType;
3475
+ documentNumber: string;
3476
+ createdAt: Date;
3477
+ updatedAt: Date;
3478
+ _id: string;
3479
+ reviewedAt?: Date | undefined;
3480
+ reviewedBy?: string | undefined;
3481
+ reviewNotes?: string | undefined;
3482
+ profileId: string;
3483
+ accountId: string;
3484
+ rejectionReason?: string | undefined;
3485
+ documentCountry: string;
3486
+ frontImageUrl: string;
3487
+ backImageUrl?: string | undefined;
3488
+ selfieUrl: string;
3489
+ extractedName?: string | undefined;
3490
+ extractedDob?: Date | undefined;
3491
+ extractedAddress?: string | undefined;
3492
+ nameMatchScore?: number | undefined;
3493
+ dobMatch?: boolean | undefined;
3494
+ faceMatchScore?: number | undefined;
3495
+ documentExpiryDate?: Date | undefined;
3496
+ verificationExpiresAt?: Date | undefined;
3497
+ ipAddress: string;
3498
+ userAgent: string;
3499
+ submissionLocation?: {
3500
+ lat: number;
3501
+ lng: number;
3502
+ } | undefined;
3503
+ };
3504
+ (options: import("mongoose").ToObjectOptions & {
3505
+ versionKey: false;
3506
+ flattenMaps: true;
3507
+ }): Omit<import("mongoose").FlattenMaps<Omit<IVerification, "id"> & {
3508
+ _id: string;
3509
+ } & Required<{
3510
+ _id: string;
3511
+ }>>, "__v">;
3512
+ (options: import("mongoose").ToObjectOptions & {
3513
+ versionKey: false;
3514
+ }): Omit<Omit<IVerification, "id"> & {
3515
+ _id: string;
3516
+ } & Required<{
3517
+ _id: string;
3518
+ }>, "__v">;
3519
+ (options: import("mongoose").ToObjectOptions & {
3520
+ virtuals: true;
3521
+ }): Omit<IVerification, "id"> & {
3522
+ _id: string;
3523
+ } & Required<{
3524
+ _id: string;
3525
+ }>;
3526
+ (options?: import("mongoose").ToObjectOptions): Omit<IVerification, "id"> & {
3527
+ _id: string;
3528
+ } & Required<{
3529
+ _id: string;
3530
+ }> & {
3531
+ __v: number;
3532
+ };
3533
+ <T>(options?: import("mongoose").ToObjectOptions): import("mongoose").Require_id<T> & {
3534
+ __v: number;
3535
+ };
3536
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3537
+ _id: string;
3538
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3539
+ _id: string;
3540
+ } & Required<{
3541
+ _id: string;
3542
+ }> & {
3543
+ __v: number;
3544
+ } & {
3545
+ id: string;
3546
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3547
+ _id: string;
3548
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3549
+ _id: string;
3550
+ } & Required<{
3551
+ _id: string;
3552
+ }> & {
3553
+ __v: number;
3554
+ } & {
3555
+ id: string;
3556
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3557
+ _id: string;
3558
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3559
+ _id: string;
3560
+ } & Required<{
3561
+ _id: string;
3562
+ }> & {
3563
+ __v: number;
3564
+ } & {
3565
+ id: string;
3566
+ }> | undefined;
3567
+ unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
3568
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(path: T): void;
3569
+ (path: string): void;
3570
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3571
+ _id: string;
3572
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3573
+ _id: string;
3574
+ } & Required<{
3575
+ _id: string;
3576
+ }> & {
3577
+ __v: number;
3578
+ } & {
3579
+ id: string;
3580
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3581
+ _id: string;
3582
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3583
+ _id: string;
3584
+ } & Required<{
3585
+ _id: string;
3586
+ }> & {
3587
+ __v: number;
3588
+ } & {
3589
+ id: string;
3590
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3591
+ _id: string;
3592
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3593
+ _id: string;
3594
+ } & Required<{
3595
+ _id: string;
3596
+ }> & {
3597
+ __v: number;
3598
+ } & {
3599
+ id: string;
3600
+ }> | undefined;
3601
+ updateOne?: import("mongoose").SchemaDefinitionProperty<(update?: import("mongoose").UpdateWithAggregationPipeline | import("mongoose").UpdateQuery<import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3602
+ _id: string;
3603
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3604
+ _id: string;
3605
+ } & Required<{
3606
+ _id: string;
3607
+ }> & {
3608
+ __v: number;
3609
+ } & {
3610
+ id: string;
3611
+ }> | undefined, options?: import("mongoose").QueryOptions | null) => import("mongoose").Query<any, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3612
+ _id: string;
3613
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3614
+ _id: string;
3615
+ } & Required<{
3616
+ _id: string;
3617
+ }> & {
3618
+ __v: number;
3619
+ } & {
3620
+ id: string;
3621
+ }, {}, unknown, "find", Record<string, never>>, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3622
+ _id: string;
3623
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3624
+ _id: string;
3625
+ } & Required<{
3626
+ _id: string;
3627
+ }> & {
3628
+ __v: number;
3629
+ } & {
3630
+ id: string;
3631
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3632
+ _id: string;
3633
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3634
+ _id: string;
3635
+ } & Required<{
3636
+ _id: string;
3637
+ }> & {
3638
+ __v: number;
3639
+ } & {
3640
+ id: string;
3641
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3642
+ _id: string;
3643
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3644
+ _id: string;
3645
+ } & Required<{
3646
+ _id: string;
3647
+ }> & {
3648
+ __v: number;
3649
+ } & {
3650
+ id: string;
3651
+ }> | undefined;
3652
+ validate?: import("mongoose").SchemaDefinitionProperty<{
3653
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
3654
+ (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
3655
+ (options: {
3656
+ pathsToSkip?: import("mongoose").pathsToSkip;
3657
+ }): Promise<void>;
3658
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3659
+ _id: string;
3660
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3661
+ _id: string;
3662
+ } & Required<{
3663
+ _id: string;
3664
+ }> & {
3665
+ __v: number;
3666
+ } & {
3667
+ id: string;
3668
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3669
+ _id: string;
3670
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3671
+ _id: string;
3672
+ } & Required<{
3673
+ _id: string;
3674
+ }> & {
3675
+ __v: number;
3676
+ } & {
3677
+ id: string;
3678
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3679
+ _id: string;
3680
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3681
+ _id: string;
3682
+ } & Required<{
3683
+ _id: string;
3684
+ }> & {
3685
+ __v: number;
3686
+ } & {
3687
+ id: string;
3688
+ }> | undefined;
3689
+ validateSync?: import("mongoose").SchemaDefinitionProperty<{
3690
+ (options: {
3691
+ pathsToSkip?: import("mongoose").pathsToSkip;
3692
+ [k: string]: any;
3693
+ }): import("mongoose").Error.ValidationError | null;
3694
+ <T extends "status" | "documentType" | "documentNumber" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "profileId" | "accountId" | "rejectionReason" | "documentCountry" | "frontImageUrl" | "backImageUrl" | "selfieUrl" | "extractedName" | "extractedDob" | "extractedAddress" | "nameMatchScore" | "dobMatch" | "faceMatchScore" | "documentExpiryDate" | "verificationExpiresAt" | "ipAddress" | "userAgent" | "submissionLocation">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
3695
+ (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
3696
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3697
+ _id: string;
3698
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3699
+ _id: string;
3700
+ } & Required<{
3701
+ _id: string;
3702
+ }> & {
3703
+ __v: number;
3704
+ } & {
3705
+ id: string;
3706
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3707
+ _id: string;
3708
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3709
+ _id: string;
3710
+ } & Required<{
3711
+ _id: string;
3712
+ }> & {
3713
+ __v: number;
3714
+ } & {
3715
+ id: string;
3716
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3717
+ _id: string;
3718
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3719
+ _id: string;
3720
+ } & Required<{
3721
+ _id: string;
3722
+ }> & {
3723
+ __v: number;
3724
+ } & {
3725
+ id: string;
3726
+ }> | undefined;
3727
+ status?: import("mongoose").SchemaDefinitionProperty<VerificationStatus, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3728
+ _id: string;
3729
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3730
+ _id: string;
3731
+ } & Required<{
3732
+ _id: string;
3733
+ }> & {
3734
+ __v: number;
3735
+ } & {
3736
+ id: string;
3737
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3738
+ _id: string;
3739
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3740
+ _id: string;
3741
+ } & Required<{
3742
+ _id: string;
3743
+ }> & {
3744
+ __v: number;
3745
+ } & {
3746
+ id: string;
3747
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3748
+ _id: string;
3749
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3750
+ _id: string;
3751
+ } & Required<{
3752
+ _id: string;
3753
+ }> & {
3754
+ __v: number;
3755
+ } & {
3756
+ id: string;
3757
+ }> | undefined;
3758
+ documentType?: import("mongoose").SchemaDefinitionProperty<IdDocumentType, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3759
+ _id: string;
3760
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3761
+ _id: string;
3762
+ } & Required<{
3763
+ _id: string;
3764
+ }> & {
3765
+ __v: number;
3766
+ } & {
3767
+ id: string;
3768
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3769
+ _id: string;
3770
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3771
+ _id: string;
3772
+ } & Required<{
3773
+ _id: string;
3774
+ }> & {
3775
+ __v: number;
3776
+ } & {
3777
+ id: string;
3778
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3779
+ _id: string;
3780
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3781
+ _id: string;
3782
+ } & Required<{
3783
+ _id: string;
3784
+ }> & {
3785
+ __v: number;
3786
+ } & {
3787
+ id: string;
3788
+ }> | undefined;
3789
+ documentNumber?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3790
+ _id: string;
3791
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3792
+ _id: string;
3793
+ } & Required<{
3794
+ _id: string;
3795
+ }> & {
3796
+ __v: number;
3797
+ } & {
3798
+ id: string;
3799
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3800
+ _id: string;
3801
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3802
+ _id: string;
3803
+ } & Required<{
3804
+ _id: string;
3805
+ }> & {
3806
+ __v: number;
3807
+ } & {
3808
+ id: string;
3809
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3810
+ _id: string;
3811
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3812
+ _id: string;
3813
+ } & Required<{
3814
+ _id: string;
3815
+ }> & {
3816
+ __v: number;
3817
+ } & {
3818
+ id: string;
3819
+ }> | undefined;
3820
+ createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3821
+ _id: string;
3822
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3823
+ _id: string;
3824
+ } & Required<{
3825
+ _id: string;
3826
+ }> & {
3827
+ __v: number;
3828
+ } & {
3829
+ id: string;
3830
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3831
+ _id: string;
3832
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3833
+ _id: string;
3834
+ } & Required<{
3835
+ _id: string;
3836
+ }> & {
3837
+ __v: number;
3838
+ } & {
3839
+ id: string;
3840
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3841
+ _id: string;
3842
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3843
+ _id: string;
3844
+ } & Required<{
3845
+ _id: string;
3846
+ }> & {
3847
+ __v: number;
3848
+ } & {
3849
+ id: string;
3850
+ }> | undefined;
3851
+ updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3852
+ _id: string;
3853
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3854
+ _id: string;
3855
+ } & Required<{
3856
+ _id: string;
3857
+ }> & {
3858
+ __v: number;
3859
+ } & {
3860
+ id: string;
3861
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3862
+ _id: string;
3863
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3864
+ _id: string;
3865
+ } & Required<{
3866
+ _id: string;
3867
+ }> & {
3868
+ __v: number;
3869
+ } & {
3870
+ id: string;
3871
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3872
+ _id: string;
3873
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3874
+ _id: string;
3875
+ } & Required<{
3876
+ _id: string;
3877
+ }> & {
3878
+ __v: number;
3879
+ } & {
3880
+ id: string;
3881
+ }> | undefined;
3882
+ reviewedAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3883
+ _id: string;
3884
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3885
+ _id: string;
3886
+ } & Required<{
3887
+ _id: string;
3888
+ }> & {
3889
+ __v: number;
3890
+ } & {
3891
+ id: string;
3892
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3893
+ _id: string;
3894
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3895
+ _id: string;
3896
+ } & Required<{
3897
+ _id: string;
3898
+ }> & {
3899
+ __v: number;
3900
+ } & {
3901
+ id: string;
3902
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3903
+ _id: string;
3904
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3905
+ _id: string;
3906
+ } & Required<{
3907
+ _id: string;
3908
+ }> & {
3909
+ __v: number;
3910
+ } & {
3911
+ id: string;
3912
+ }> | undefined;
3913
+ reviewedBy?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3914
+ _id: string;
3915
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3916
+ _id: string;
3917
+ } & Required<{
3918
+ _id: string;
3919
+ }> & {
3920
+ __v: number;
3921
+ } & {
3922
+ id: string;
3923
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3924
+ _id: string;
3925
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3926
+ _id: string;
3927
+ } & Required<{
3928
+ _id: string;
3929
+ }> & {
3930
+ __v: number;
3931
+ } & {
3932
+ id: string;
3933
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3934
+ _id: string;
3935
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3936
+ _id: string;
3937
+ } & Required<{
3938
+ _id: string;
3939
+ }> & {
3940
+ __v: number;
3941
+ } & {
3942
+ id: string;
3943
+ }> | undefined;
3944
+ reviewNotes?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3945
+ _id: string;
3946
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3947
+ _id: string;
3948
+ } & Required<{
3949
+ _id: string;
3950
+ }> & {
3951
+ __v: number;
3952
+ } & {
3953
+ id: string;
3954
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3955
+ _id: string;
3956
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3957
+ _id: string;
3958
+ } & Required<{
3959
+ _id: string;
3960
+ }> & {
3961
+ __v: number;
3962
+ } & {
3963
+ id: string;
3964
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3965
+ _id: string;
3966
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3967
+ _id: string;
3968
+ } & Required<{
3969
+ _id: string;
3970
+ }> & {
3971
+ __v: number;
3972
+ } & {
3973
+ id: string;
3974
+ }> | undefined;
3975
+ profileId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3976
+ _id: string;
3977
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3978
+ _id: string;
3979
+ } & Required<{
3980
+ _id: string;
3981
+ }> & {
3982
+ __v: number;
3983
+ } & {
3984
+ id: string;
3985
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3986
+ _id: string;
3987
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3988
+ _id: string;
3989
+ } & Required<{
3990
+ _id: string;
3991
+ }> & {
3992
+ __v: number;
3993
+ } & {
3994
+ id: string;
3995
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
3996
+ _id: string;
3997
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
3998
+ _id: string;
3999
+ } & Required<{
4000
+ _id: string;
4001
+ }> & {
4002
+ __v: number;
4003
+ } & {
4004
+ id: string;
4005
+ }> | undefined;
4006
+ accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4007
+ _id: string;
4008
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4009
+ _id: string;
4010
+ } & Required<{
4011
+ _id: string;
4012
+ }> & {
4013
+ __v: number;
4014
+ } & {
4015
+ id: string;
4016
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4017
+ _id: string;
4018
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4019
+ _id: string;
4020
+ } & Required<{
4021
+ _id: string;
4022
+ }> & {
4023
+ __v: number;
4024
+ } & {
4025
+ id: string;
4026
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4027
+ _id: string;
4028
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4029
+ _id: string;
4030
+ } & Required<{
4031
+ _id: string;
4032
+ }> & {
4033
+ __v: number;
4034
+ } & {
4035
+ id: string;
4036
+ }> | undefined;
4037
+ rejectionReason?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4038
+ _id: string;
4039
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4040
+ _id: string;
4041
+ } & Required<{
4042
+ _id: string;
4043
+ }> & {
4044
+ __v: number;
4045
+ } & {
4046
+ id: string;
4047
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4048
+ _id: string;
4049
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4050
+ _id: string;
4051
+ } & Required<{
4052
+ _id: string;
4053
+ }> & {
4054
+ __v: number;
4055
+ } & {
4056
+ id: string;
4057
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4058
+ _id: string;
4059
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4060
+ _id: string;
4061
+ } & Required<{
4062
+ _id: string;
4063
+ }> & {
4064
+ __v: number;
4065
+ } & {
4066
+ id: string;
4067
+ }> | undefined;
4068
+ documentCountry?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4069
+ _id: string;
4070
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4071
+ _id: string;
4072
+ } & Required<{
4073
+ _id: string;
4074
+ }> & {
4075
+ __v: number;
4076
+ } & {
4077
+ id: string;
4078
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4079
+ _id: string;
4080
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4081
+ _id: string;
4082
+ } & Required<{
4083
+ _id: string;
4084
+ }> & {
4085
+ __v: number;
4086
+ } & {
4087
+ id: string;
4088
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4089
+ _id: string;
4090
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4091
+ _id: string;
4092
+ } & Required<{
4093
+ _id: string;
4094
+ }> & {
4095
+ __v: number;
4096
+ } & {
4097
+ id: string;
4098
+ }> | undefined;
4099
+ frontImageUrl?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4100
+ _id: string;
4101
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4102
+ _id: string;
4103
+ } & Required<{
4104
+ _id: string;
4105
+ }> & {
4106
+ __v: number;
4107
+ } & {
4108
+ id: string;
4109
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4110
+ _id: string;
4111
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4112
+ _id: string;
4113
+ } & Required<{
4114
+ _id: string;
4115
+ }> & {
4116
+ __v: number;
4117
+ } & {
4118
+ id: string;
4119
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4120
+ _id: string;
4121
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4122
+ _id: string;
4123
+ } & Required<{
4124
+ _id: string;
4125
+ }> & {
4126
+ __v: number;
4127
+ } & {
4128
+ id: string;
4129
+ }> | undefined;
4130
+ backImageUrl?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4131
+ _id: string;
4132
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4133
+ _id: string;
4134
+ } & Required<{
4135
+ _id: string;
4136
+ }> & {
4137
+ __v: number;
4138
+ } & {
4139
+ id: string;
4140
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4141
+ _id: string;
4142
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4143
+ _id: string;
4144
+ } & Required<{
4145
+ _id: string;
4146
+ }> & {
4147
+ __v: number;
4148
+ } & {
4149
+ id: string;
4150
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4151
+ _id: string;
4152
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4153
+ _id: string;
4154
+ } & Required<{
4155
+ _id: string;
4156
+ }> & {
4157
+ __v: number;
4158
+ } & {
4159
+ id: string;
4160
+ }> | undefined;
4161
+ selfieUrl?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4162
+ _id: string;
4163
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4164
+ _id: string;
4165
+ } & Required<{
4166
+ _id: string;
4167
+ }> & {
4168
+ __v: number;
4169
+ } & {
4170
+ id: string;
4171
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4172
+ _id: string;
4173
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4174
+ _id: string;
4175
+ } & Required<{
4176
+ _id: string;
4177
+ }> & {
4178
+ __v: number;
4179
+ } & {
4180
+ id: string;
4181
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4182
+ _id: string;
4183
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4184
+ _id: string;
4185
+ } & Required<{
4186
+ _id: string;
4187
+ }> & {
4188
+ __v: number;
4189
+ } & {
4190
+ id: string;
4191
+ }> | undefined;
4192
+ extractedName?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4193
+ _id: string;
4194
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4195
+ _id: string;
4196
+ } & Required<{
4197
+ _id: string;
4198
+ }> & {
4199
+ __v: number;
4200
+ } & {
4201
+ id: string;
4202
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4203
+ _id: string;
4204
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4205
+ _id: string;
4206
+ } & Required<{
4207
+ _id: string;
4208
+ }> & {
4209
+ __v: number;
4210
+ } & {
4211
+ id: string;
4212
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4213
+ _id: string;
4214
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4215
+ _id: string;
4216
+ } & Required<{
4217
+ _id: string;
4218
+ }> & {
4219
+ __v: number;
4220
+ } & {
4221
+ id: string;
4222
+ }> | undefined;
4223
+ extractedDob?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4224
+ _id: string;
4225
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4226
+ _id: string;
4227
+ } & Required<{
4228
+ _id: string;
4229
+ }> & {
4230
+ __v: number;
4231
+ } & {
4232
+ id: string;
4233
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4234
+ _id: string;
4235
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4236
+ _id: string;
4237
+ } & Required<{
4238
+ _id: string;
4239
+ }> & {
4240
+ __v: number;
4241
+ } & {
4242
+ id: string;
4243
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4244
+ _id: string;
4245
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4246
+ _id: string;
4247
+ } & Required<{
4248
+ _id: string;
4249
+ }> & {
4250
+ __v: number;
4251
+ } & {
4252
+ id: string;
4253
+ }> | undefined;
4254
+ extractedAddress?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4255
+ _id: string;
4256
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4257
+ _id: string;
4258
+ } & Required<{
4259
+ _id: string;
4260
+ }> & {
4261
+ __v: number;
4262
+ } & {
4263
+ id: string;
4264
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4265
+ _id: string;
4266
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4267
+ _id: string;
4268
+ } & Required<{
4269
+ _id: string;
4270
+ }> & {
4271
+ __v: number;
4272
+ } & {
4273
+ id: string;
4274
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4275
+ _id: string;
4276
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4277
+ _id: string;
4278
+ } & Required<{
4279
+ _id: string;
4280
+ }> & {
4281
+ __v: number;
4282
+ } & {
4283
+ id: string;
4284
+ }> | undefined;
4285
+ nameMatchScore?: import("mongoose").SchemaDefinitionProperty<number | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4286
+ _id: string;
4287
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4288
+ _id: string;
4289
+ } & Required<{
4290
+ _id: string;
4291
+ }> & {
4292
+ __v: number;
4293
+ } & {
4294
+ id: string;
4295
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4296
+ _id: string;
4297
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4298
+ _id: string;
4299
+ } & Required<{
4300
+ _id: string;
4301
+ }> & {
4302
+ __v: number;
4303
+ } & {
4304
+ id: string;
4305
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4306
+ _id: string;
4307
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4308
+ _id: string;
4309
+ } & Required<{
4310
+ _id: string;
4311
+ }> & {
4312
+ __v: number;
4313
+ } & {
4314
+ id: string;
4315
+ }> | undefined;
4316
+ dobMatch?: import("mongoose").SchemaDefinitionProperty<boolean | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4317
+ _id: string;
4318
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4319
+ _id: string;
4320
+ } & Required<{
4321
+ _id: string;
4322
+ }> & {
4323
+ __v: number;
4324
+ } & {
4325
+ id: string;
4326
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4327
+ _id: string;
4328
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4329
+ _id: string;
4330
+ } & Required<{
4331
+ _id: string;
4332
+ }> & {
4333
+ __v: number;
4334
+ } & {
4335
+ id: string;
4336
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4337
+ _id: string;
4338
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4339
+ _id: string;
4340
+ } & Required<{
4341
+ _id: string;
4342
+ }> & {
4343
+ __v: number;
4344
+ } & {
4345
+ id: string;
4346
+ }> | undefined;
4347
+ faceMatchScore?: import("mongoose").SchemaDefinitionProperty<number | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4348
+ _id: string;
4349
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4350
+ _id: string;
4351
+ } & Required<{
4352
+ _id: string;
4353
+ }> & {
4354
+ __v: number;
4355
+ } & {
4356
+ id: string;
4357
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4358
+ _id: string;
4359
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4360
+ _id: string;
4361
+ } & Required<{
4362
+ _id: string;
4363
+ }> & {
4364
+ __v: number;
4365
+ } & {
4366
+ id: string;
4367
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4368
+ _id: string;
4369
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4370
+ _id: string;
4371
+ } & Required<{
4372
+ _id: string;
4373
+ }> & {
4374
+ __v: number;
4375
+ } & {
4376
+ id: string;
4377
+ }> | undefined;
4378
+ documentExpiryDate?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4379
+ _id: string;
4380
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4381
+ _id: string;
4382
+ } & Required<{
4383
+ _id: string;
4384
+ }> & {
4385
+ __v: number;
4386
+ } & {
4387
+ id: string;
4388
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4389
+ _id: string;
4390
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4391
+ _id: string;
4392
+ } & Required<{
4393
+ _id: string;
4394
+ }> & {
4395
+ __v: number;
4396
+ } & {
4397
+ id: string;
4398
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4399
+ _id: string;
4400
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4401
+ _id: string;
4402
+ } & Required<{
4403
+ _id: string;
4404
+ }> & {
4405
+ __v: number;
4406
+ } & {
4407
+ id: string;
4408
+ }> | undefined;
4409
+ verificationExpiresAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4410
+ _id: string;
4411
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4412
+ _id: string;
4413
+ } & Required<{
4414
+ _id: string;
4415
+ }> & {
4416
+ __v: number;
4417
+ } & {
4418
+ id: string;
4419
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4420
+ _id: string;
4421
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4422
+ _id: string;
4423
+ } & Required<{
4424
+ _id: string;
4425
+ }> & {
4426
+ __v: number;
4427
+ } & {
4428
+ id: string;
4429
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4430
+ _id: string;
4431
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4432
+ _id: string;
4433
+ } & Required<{
4434
+ _id: string;
4435
+ }> & {
4436
+ __v: number;
4437
+ } & {
4438
+ id: string;
4439
+ }> | undefined;
4440
+ ipAddress?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4441
+ _id: string;
4442
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4443
+ _id: string;
4444
+ } & Required<{
4445
+ _id: string;
4446
+ }> & {
4447
+ __v: number;
4448
+ } & {
4449
+ id: string;
4450
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4451
+ _id: string;
4452
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4453
+ _id: string;
4454
+ } & Required<{
4455
+ _id: string;
4456
+ }> & {
4457
+ __v: number;
4458
+ } & {
4459
+ id: string;
4460
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4461
+ _id: string;
4462
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4463
+ _id: string;
4464
+ } & Required<{
4465
+ _id: string;
4466
+ }> & {
4467
+ __v: number;
4468
+ } & {
4469
+ id: string;
4470
+ }> | undefined;
4471
+ userAgent?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4472
+ _id: string;
4473
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4474
+ _id: string;
4475
+ } & Required<{
4476
+ _id: string;
4477
+ }> & {
4478
+ __v: number;
4479
+ } & {
4480
+ id: string;
4481
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4482
+ _id: string;
4483
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4484
+ _id: string;
4485
+ } & Required<{
4486
+ _id: string;
4487
+ }> & {
4488
+ __v: number;
4489
+ } & {
4490
+ id: string;
4491
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4492
+ _id: string;
4493
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4494
+ _id: string;
4495
+ } & Required<{
4496
+ _id: string;
4497
+ }> & {
4498
+ __v: number;
4499
+ } & {
4500
+ id: string;
4501
+ }> | undefined;
4502
+ submissionLocation?: import("mongoose").SchemaDefinitionProperty<import("../index.js").IVerificationSubmissionLocation | undefined, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4503
+ _id: string;
4504
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4505
+ _id: string;
4506
+ } & Required<{
4507
+ _id: string;
4508
+ }> & {
4509
+ __v: number;
4510
+ } & {
4511
+ id: string;
4512
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4513
+ _id: string;
4514
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4515
+ _id: string;
4516
+ } & Required<{
4517
+ _id: string;
4518
+ }> & {
4519
+ __v: number;
4520
+ } & {
4521
+ id: string;
4522
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4523
+ _id: string;
4524
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4525
+ _id: string;
4526
+ } & Required<{
4527
+ _id: string;
4528
+ }> & {
4529
+ __v: number;
4530
+ } & {
4531
+ id: string;
4532
+ }> | undefined;
4533
+ __v?: import("mongoose").SchemaDefinitionProperty<number, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4534
+ _id: string;
4535
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4536
+ _id: string;
4537
+ } & Required<{
4538
+ _id: string;
4539
+ }> & {
4540
+ __v: number;
4541
+ } & {
4542
+ id: string;
4543
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4544
+ _id: string;
4545
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4546
+ _id: string;
4547
+ } & Required<{
4548
+ _id: string;
4549
+ }> & {
4550
+ __v: number;
4551
+ } & {
4552
+ id: string;
4553
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4554
+ _id: string;
4555
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4556
+ _id: string;
4557
+ } & Required<{
4558
+ _id: string;
4559
+ }> & {
4560
+ __v: number;
4561
+ } & {
4562
+ id: string;
4563
+ }> | undefined;
4564
+ id?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4565
+ _id: string;
4566
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4567
+ _id: string;
4568
+ } & Required<{
4569
+ _id: string;
4570
+ }> & {
4571
+ __v: number;
4572
+ } & {
4573
+ id: string;
4574
+ }, import("mongoose").Document<unknown, {}, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4575
+ _id: string;
4576
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4577
+ _id: string;
4578
+ } & Required<{
4579
+ _id: string;
4580
+ }> & {
4581
+ __v: number;
4582
+ } & {
4583
+ id: string;
4584
+ }, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4585
+ _id: string;
4586
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4587
+ _id: string;
4588
+ } & Required<{
4589
+ _id: string;
4590
+ }> & {
4591
+ __v: number;
4592
+ } & {
4593
+ id: string;
4594
+ }> | undefined;
4595
+ }, import("mongoose").Document<unknown, {}, Omit<IVerification, "id"> & {
4596
+ _id: string;
4597
+ }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IVerification, "id"> & {
4598
+ _id: string;
4599
+ } & Required<{
4600
+ _id: string;
4601
+ }> & {
4602
+ __v: number;
4603
+ } & {
4604
+ id: string;
4605
+ }>;
4606
+ //# sourceMappingURL=verification.schema.d.ts.map