@managesome/knotr-toolkit 0.1.1 → 0.8.1

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