@managesome/knotr-toolkit 0.8.16 → 0.8.20
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.
- package/dist/backend/index.d.ts +2 -2
- package/dist/backend/index.d.ts.map +1 -1
- package/dist/backend/index.js +1 -1
- package/dist/backend/index.js.map +1 -1
- package/dist/backend/worker-queue.d.ts +203 -13
- package/dist/backend/worker-queue.d.ts.map +1 -1
- package/dist/backend/worker-queue.js +67 -12
- package/dist/backend/worker-queue.js.map +1 -1
- package/dist/constants/worker.d.ts +17 -0
- package/dist/constants/worker.d.ts.map +1 -1
- package/dist/constants/worker.js +20 -0
- package/dist/constants/worker.js.map +1 -1
- package/dist/schemas/account.schema.d.ts +66 -66
- package/dist/schemas/chat.schema.d.ts +49 -49
- package/dist/schemas/chat.schema.d.ts.map +1 -1
- package/dist/schemas/collaboration-request.schema.d.ts +84 -84
- package/dist/schemas/collaboration-request.schema.d.ts.map +1 -1
- package/dist/schemas/company-review.schema.d.ts +83 -83
- package/dist/schemas/company-review.schema.d.ts.map +1 -1
- package/dist/schemas/company.schema.d.ts +88 -88
- package/dist/schemas/company.schema.d.ts.map +1 -1
- package/dist/schemas/contract.schema.d.ts +120 -120
- package/dist/schemas/contract.schema.d.ts.map +1 -1
- package/dist/schemas/dispute.schema.d.ts +84 -84
- package/dist/schemas/dispute.schema.d.ts.map +1 -1
- package/dist/schemas/donation.schema.d.ts +49 -49
- package/dist/schemas/donation.schema.d.ts.map +1 -1
- package/dist/schemas/escrow.schema.d.ts +84 -84
- package/dist/schemas/escrow.schema.d.ts.map +1 -1
- package/dist/schemas/interest.schema.d.ts +87 -87
- package/dist/schemas/interest.schema.d.ts.map +1 -1
- package/dist/schemas/match.schema.d.ts +87 -87
- package/dist/schemas/match.schema.d.ts.map +1 -1
- package/dist/schemas/message.schema.d.ts +53 -53
- package/dist/schemas/message.schema.d.ts.map +1 -1
- package/dist/schemas/milestone.schema.d.ts +48 -48
- package/dist/schemas/notification.schema.d.ts +155 -155
- package/dist/schemas/notification.schema.d.ts.map +1 -1
- package/dist/schemas/profile.schema.d.ts +87 -87
- package/dist/schemas/profile.schema.d.ts.map +1 -1
- package/dist/schemas/profit-share-agreement.schema.d.ts +48 -48
- package/dist/schemas/profit-share.schema.d.ts +48 -48
- package/dist/schemas/proposal.schema.d.ts +48 -48
- package/dist/schemas/purchase.schema.d.ts +49 -49
- package/dist/schemas/purchase.schema.d.ts.map +1 -1
- package/dist/schemas/requirement-post.schema.d.ts +84 -84
- package/dist/schemas/requirement-post.schema.d.ts.map +1 -1
- package/dist/schemas/service-listing.schema.d.ts +48 -48
- package/dist/schemas/subscription.schema.d.ts +83 -83
- package/dist/schemas/subscription.schema.d.ts.map +1 -1
- package/dist/schemas/tmc-application.schema.d.ts +48 -48
- package/dist/schemas/tmc-membership.schema.d.ts +48 -48
- package/dist/schemas/trust-badge.schema.d.ts +48 -48
- package/dist/schemas/verification.schema.d.ts +87 -87
- package/dist/schemas/verification.schema.d.ts.map +1 -1
- package/dist/schemas/webhook-event.schema.d.ts +48 -48
- package/dist/types/worker.d.ts +9 -2
- package/dist/types/worker.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1187,7 +1187,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1187
1187
|
id: string;
|
|
1188
1188
|
}> | undefined;
|
|
1189
1189
|
get?: import("mongoose").SchemaDefinitionProperty<{
|
|
1190
|
-
<T extends "status" | "
|
|
1190
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T, type?: any, options?: any): (Omit<IMatch, "id"> & {
|
|
1191
1191
|
_id: string;
|
|
1192
1192
|
})[T];
|
|
1193
1193
|
(path: string, type?: any, options?: any): any;
|
|
@@ -1346,7 +1346,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1346
1346
|
id: string;
|
|
1347
1347
|
}> | undefined;
|
|
1348
1348
|
invalidate?: import("mongoose").SchemaDefinitionProperty<{
|
|
1349
|
-
<T extends "status" | "
|
|
1349
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1350
1350
|
(path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
|
|
1351
1351
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
1352
1352
|
_id: string;
|
|
@@ -1380,7 +1380,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1380
1380
|
id: string;
|
|
1381
1381
|
}> | undefined;
|
|
1382
1382
|
isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1383
|
-
<T extends "status" | "
|
|
1383
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T | T[]): boolean;
|
|
1384
1384
|
(path: string | Array<string>): boolean;
|
|
1385
1385
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
1386
1386
|
_id: string;
|
|
@@ -1414,7 +1414,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1414
1414
|
id: string;
|
|
1415
1415
|
}> | undefined;
|
|
1416
1416
|
isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1417
|
-
<T extends "status" | "
|
|
1417
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T): boolean;
|
|
1418
1418
|
(path: string): boolean;
|
|
1419
1419
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
1420
1420
|
_id: string;
|
|
@@ -1448,7 +1448,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1448
1448
|
id: string;
|
|
1449
1449
|
}> | undefined;
|
|
1450
1450
|
isInit?: import("mongoose").SchemaDefinitionProperty<{
|
|
1451
|
-
<T extends "status" | "
|
|
1451
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T): boolean;
|
|
1452
1452
|
(path: string): boolean;
|
|
1453
1453
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
1454
1454
|
_id: string;
|
|
@@ -1482,7 +1482,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1482
1482
|
id: string;
|
|
1483
1483
|
}> | undefined;
|
|
1484
1484
|
isModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1485
|
-
<T extends "status" | "
|
|
1485
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path?: T | T[] | undefined, options?: {
|
|
1486
1486
|
ignoreAtomics?: boolean;
|
|
1487
1487
|
} | null): boolean;
|
|
1488
1488
|
(path?: string | Array<string>, options?: {
|
|
@@ -1551,7 +1551,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1551
1551
|
id: string;
|
|
1552
1552
|
}> | undefined;
|
|
1553
1553
|
isSelected?: import("mongoose").SchemaDefinitionProperty<{
|
|
1554
|
-
<T extends "status" | "
|
|
1554
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T): boolean;
|
|
1555
1555
|
(path: string): boolean;
|
|
1556
1556
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
1557
1557
|
_id: string;
|
|
@@ -1585,7 +1585,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
1585
1585
|
id: string;
|
|
1586
1586
|
}> | undefined;
|
|
1587
1587
|
markModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
1588
|
-
<T extends "status" | "
|
|
1588
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T, scope?: any): void;
|
|
1589
1589
|
(path: string, scope?: any): void;
|
|
1590
1590
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
1591
1591
|
_id: string;
|
|
@@ -2024,7 +2024,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2024
2024
|
id: string;
|
|
2025
2025
|
}> | undefined;
|
|
2026
2026
|
set?: import("mongoose").SchemaDefinitionProperty<{
|
|
2027
|
-
<T extends "status" | "
|
|
2027
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T, val: (Omit<IMatch, "id"> & {
|
|
2028
2028
|
_id: string;
|
|
2029
2029
|
})[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
2030
2030
|
_id: string;
|
|
@@ -2109,15 +2109,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2109
2109
|
versionKey: false;
|
|
2110
2110
|
}): {
|
|
2111
2111
|
status: import("../index.js").MatchStatus;
|
|
2112
|
-
|
|
2112
|
+
interestId: string;
|
|
2113
2113
|
createdAt: Date;
|
|
2114
|
+
tenantId?: string | undefined;
|
|
2114
2115
|
updatedAt: Date;
|
|
2115
2116
|
_id: string;
|
|
2116
2117
|
totalMessages: number;
|
|
2117
2118
|
endedAt?: Date | undefined;
|
|
2118
2119
|
chatId: string;
|
|
2119
2120
|
declineReason?: string | undefined;
|
|
2120
|
-
interestId: string;
|
|
2121
2121
|
profile1Id: string;
|
|
2122
2122
|
profile1AccountId: string;
|
|
2123
2123
|
profile2Id: string;
|
|
@@ -2136,14 +2136,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2136
2136
|
virtuals: true;
|
|
2137
2137
|
}): {
|
|
2138
2138
|
status: import("../index.js").MatchStatus;
|
|
2139
|
-
|
|
2139
|
+
interestId: string;
|
|
2140
2140
|
createdAt: Date;
|
|
2141
|
+
tenantId?: string | undefined;
|
|
2141
2142
|
updatedAt: Date;
|
|
2142
2143
|
totalMessages: number;
|
|
2143
2144
|
endedAt?: Date | undefined;
|
|
2144
2145
|
chatId: string;
|
|
2145
2146
|
declineReason?: string | undefined;
|
|
2146
|
-
interestId: string;
|
|
2147
2147
|
profile1Id: string;
|
|
2148
2148
|
profile1AccountId: string;
|
|
2149
2149
|
profile2Id: string;
|
|
@@ -2183,15 +2183,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2183
2183
|
versionKey: false;
|
|
2184
2184
|
}): {
|
|
2185
2185
|
status: import("../index.js").MatchStatus;
|
|
2186
|
-
|
|
2186
|
+
interestId: string;
|
|
2187
2187
|
createdAt: Date;
|
|
2188
|
+
tenantId?: string | undefined;
|
|
2188
2189
|
updatedAt: Date;
|
|
2189
2190
|
_id: string;
|
|
2190
2191
|
totalMessages: number;
|
|
2191
2192
|
endedAt?: Date | undefined;
|
|
2192
2193
|
chatId: string;
|
|
2193
2194
|
declineReason?: string | undefined;
|
|
2194
|
-
interestId: string;
|
|
2195
2195
|
profile1Id: string;
|
|
2196
2196
|
profile1AccountId: string;
|
|
2197
2197
|
profile2Id: string;
|
|
@@ -2210,14 +2210,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2210
2210
|
virtuals: false;
|
|
2211
2211
|
}): {
|
|
2212
2212
|
status: import("../index.js").MatchStatus;
|
|
2213
|
-
|
|
2213
|
+
interestId: string;
|
|
2214
2214
|
createdAt: Date;
|
|
2215
|
+
tenantId?: string | undefined;
|
|
2215
2216
|
updatedAt: Date;
|
|
2216
2217
|
totalMessages: number;
|
|
2217
2218
|
endedAt?: Date | undefined;
|
|
2218
2219
|
chatId: string;
|
|
2219
2220
|
declineReason?: string | undefined;
|
|
2220
|
-
interestId: string;
|
|
2221
2221
|
profile1Id: string;
|
|
2222
2222
|
profile1AccountId: string;
|
|
2223
2223
|
profile2Id: string;
|
|
@@ -2257,15 +2257,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2257
2257
|
versionKey: false;
|
|
2258
2258
|
}): {
|
|
2259
2259
|
status: import("../index.js").MatchStatus;
|
|
2260
|
-
|
|
2260
|
+
interestId: string;
|
|
2261
2261
|
createdAt: Date;
|
|
2262
|
+
tenantId?: string | undefined;
|
|
2262
2263
|
updatedAt: Date;
|
|
2263
2264
|
_id: string;
|
|
2264
2265
|
totalMessages: number;
|
|
2265
2266
|
endedAt?: Date | undefined;
|
|
2266
2267
|
chatId: string;
|
|
2267
2268
|
declineReason?: string | undefined;
|
|
2268
|
-
interestId: string;
|
|
2269
2269
|
profile1Id: string;
|
|
2270
2270
|
profile1AccountId: string;
|
|
2271
2271
|
profile2Id: string;
|
|
@@ -2284,14 +2284,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2284
2284
|
virtuals: true;
|
|
2285
2285
|
}): {
|
|
2286
2286
|
status: import("../index.js").MatchStatus;
|
|
2287
|
-
|
|
2287
|
+
interestId: string;
|
|
2288
2288
|
createdAt: Date;
|
|
2289
|
+
tenantId?: string | undefined;
|
|
2289
2290
|
updatedAt: Date;
|
|
2290
2291
|
totalMessages: number;
|
|
2291
2292
|
endedAt?: Date | undefined;
|
|
2292
2293
|
chatId: string;
|
|
2293
2294
|
declineReason?: string | undefined;
|
|
2294
|
-
interestId: string;
|
|
2295
2295
|
profile1Id: string;
|
|
2296
2296
|
profile1AccountId: string;
|
|
2297
2297
|
profile2Id: string;
|
|
@@ -2331,15 +2331,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2331
2331
|
versionKey: false;
|
|
2332
2332
|
}): {
|
|
2333
2333
|
status: import("../index.js").MatchStatus;
|
|
2334
|
-
|
|
2334
|
+
interestId: string;
|
|
2335
2335
|
createdAt: Date;
|
|
2336
|
+
tenantId?: string | undefined;
|
|
2336
2337
|
updatedAt: Date;
|
|
2337
2338
|
_id: string;
|
|
2338
2339
|
totalMessages: number;
|
|
2339
2340
|
endedAt?: Date | undefined;
|
|
2340
2341
|
chatId: string;
|
|
2341
2342
|
declineReason?: string | undefined;
|
|
2342
|
-
interestId: string;
|
|
2343
2343
|
profile1Id: string;
|
|
2344
2344
|
profile1AccountId: string;
|
|
2345
2345
|
profile2Id: string;
|
|
@@ -2358,14 +2358,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2358
2358
|
virtuals: false;
|
|
2359
2359
|
}): {
|
|
2360
2360
|
status: import("../index.js").MatchStatus;
|
|
2361
|
-
|
|
2361
|
+
interestId: string;
|
|
2362
2362
|
createdAt: Date;
|
|
2363
|
+
tenantId?: string | undefined;
|
|
2363
2364
|
updatedAt: Date;
|
|
2364
2365
|
totalMessages: number;
|
|
2365
2366
|
endedAt?: Date | undefined;
|
|
2366
2367
|
chatId: string;
|
|
2367
2368
|
declineReason?: string | undefined;
|
|
2368
|
-
interestId: string;
|
|
2369
2369
|
profile1Id: string;
|
|
2370
2370
|
profile1AccountId: string;
|
|
2371
2371
|
profile2Id: string;
|
|
@@ -2404,14 +2404,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2404
2404
|
virtuals: true;
|
|
2405
2405
|
}): {
|
|
2406
2406
|
status: import("../index.js").MatchStatus;
|
|
2407
|
-
|
|
2407
|
+
interestId: string;
|
|
2408
2408
|
createdAt: Date;
|
|
2409
|
+
tenantId?: string | undefined;
|
|
2409
2410
|
updatedAt: Date;
|
|
2410
2411
|
totalMessages: number;
|
|
2411
2412
|
endedAt?: Date | undefined;
|
|
2412
2413
|
chatId: string;
|
|
2413
2414
|
declineReason?: string | undefined;
|
|
2414
|
-
interestId: string;
|
|
2415
2415
|
profile1Id: string;
|
|
2416
2416
|
profile1AccountId: string;
|
|
2417
2417
|
profile2Id: string;
|
|
@@ -2430,14 +2430,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2430
2430
|
flattenObjectIds: true;
|
|
2431
2431
|
}): {
|
|
2432
2432
|
status: import("../index.js").MatchStatus;
|
|
2433
|
-
|
|
2433
|
+
interestId: string;
|
|
2434
2434
|
createdAt: Date;
|
|
2435
|
+
tenantId?: string | undefined;
|
|
2435
2436
|
updatedAt: Date;
|
|
2436
2437
|
totalMessages: number;
|
|
2437
2438
|
endedAt?: Date | undefined;
|
|
2438
2439
|
chatId: string;
|
|
2439
2440
|
declineReason?: string | undefined;
|
|
2440
|
-
interestId: string;
|
|
2441
2441
|
profile1Id: string;
|
|
2442
2442
|
profile1AccountId: string;
|
|
2443
2443
|
profile2Id: string;
|
|
@@ -2456,14 +2456,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2456
2456
|
virtuals: true;
|
|
2457
2457
|
}): {
|
|
2458
2458
|
status: import("../index.js").MatchStatus;
|
|
2459
|
-
|
|
2459
|
+
interestId: string;
|
|
2460
2460
|
createdAt: Date;
|
|
2461
|
+
tenantId?: string | undefined;
|
|
2461
2462
|
updatedAt: Date;
|
|
2462
2463
|
totalMessages: number;
|
|
2463
2464
|
endedAt?: Date | undefined;
|
|
2464
2465
|
chatId: string;
|
|
2465
2466
|
declineReason?: string | undefined;
|
|
2466
|
-
interestId: string;
|
|
2467
2467
|
profile1Id: string;
|
|
2468
2468
|
profile1AccountId: string;
|
|
2469
2469
|
profile2Id: string;
|
|
@@ -2481,14 +2481,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2481
2481
|
flattenObjectIds: true;
|
|
2482
2482
|
}): {
|
|
2483
2483
|
status: import("../index.js").MatchStatus;
|
|
2484
|
-
|
|
2484
|
+
interestId: string;
|
|
2485
2485
|
createdAt: Date;
|
|
2486
|
+
tenantId?: string | undefined;
|
|
2486
2487
|
updatedAt: Date;
|
|
2487
2488
|
totalMessages: number;
|
|
2488
2489
|
endedAt?: Date | undefined;
|
|
2489
2490
|
chatId: string;
|
|
2490
2491
|
declineReason?: string | undefined;
|
|
2491
|
-
interestId: string;
|
|
2492
2492
|
profile1Id: string;
|
|
2493
2493
|
profile1AccountId: string;
|
|
2494
2494
|
profile2Id: string;
|
|
@@ -2524,15 +2524,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2524
2524
|
virtuals: true;
|
|
2525
2525
|
}): {
|
|
2526
2526
|
status: import("../index.js").MatchStatus;
|
|
2527
|
-
|
|
2527
|
+
interestId: string;
|
|
2528
2528
|
createdAt: Date;
|
|
2529
|
+
tenantId?: string | undefined;
|
|
2529
2530
|
updatedAt: Date;
|
|
2530
2531
|
_id: string;
|
|
2531
2532
|
totalMessages: number;
|
|
2532
2533
|
endedAt?: Date | undefined;
|
|
2533
2534
|
chatId: string;
|
|
2534
2535
|
declineReason?: string | undefined;
|
|
2535
|
-
interestId: string;
|
|
2536
2536
|
profile1Id: string;
|
|
2537
2537
|
profile1AccountId: string;
|
|
2538
2538
|
profile2Id: string;
|
|
@@ -2552,15 +2552,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2552
2552
|
virtuals: true;
|
|
2553
2553
|
}): {
|
|
2554
2554
|
status: import("../index.js").MatchStatus;
|
|
2555
|
-
|
|
2555
|
+
interestId: string;
|
|
2556
2556
|
createdAt: Date;
|
|
2557
|
+
tenantId?: string | undefined;
|
|
2557
2558
|
updatedAt: Date;
|
|
2558
2559
|
_id: string;
|
|
2559
2560
|
totalMessages: number;
|
|
2560
2561
|
endedAt?: Date | undefined;
|
|
2561
2562
|
chatId: string;
|
|
2562
2563
|
declineReason?: string | undefined;
|
|
2563
|
-
interestId: string;
|
|
2564
2564
|
profile1Id: string;
|
|
2565
2565
|
profile1AccountId: string;
|
|
2566
2566
|
profile2Id: string;
|
|
@@ -2588,15 +2588,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2588
2588
|
virtuals: true;
|
|
2589
2589
|
}): {
|
|
2590
2590
|
status: import("../index.js").MatchStatus;
|
|
2591
|
-
|
|
2591
|
+
interestId: string;
|
|
2592
2592
|
createdAt: Date;
|
|
2593
|
+
tenantId?: string | undefined;
|
|
2593
2594
|
updatedAt: Date;
|
|
2594
2595
|
_id: string;
|
|
2595
2596
|
totalMessages: number;
|
|
2596
2597
|
endedAt?: Date | undefined;
|
|
2597
2598
|
chatId: string;
|
|
2598
2599
|
declineReason?: string | undefined;
|
|
2599
|
-
interestId: string;
|
|
2600
2600
|
profile1Id: string;
|
|
2601
2601
|
profile1AccountId: string;
|
|
2602
2602
|
profile2Id: string;
|
|
@@ -2623,15 +2623,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2623
2623
|
flattenObjectIds: true;
|
|
2624
2624
|
}): {
|
|
2625
2625
|
status: import("../index.js").MatchStatus;
|
|
2626
|
-
|
|
2626
|
+
interestId: string;
|
|
2627
2627
|
createdAt: Date;
|
|
2628
|
+
tenantId?: string | undefined;
|
|
2628
2629
|
updatedAt: Date;
|
|
2629
2630
|
_id: string;
|
|
2630
2631
|
totalMessages: number;
|
|
2631
2632
|
endedAt?: Date | undefined;
|
|
2632
2633
|
chatId: string;
|
|
2633
2634
|
declineReason?: string | undefined;
|
|
2634
|
-
interestId: string;
|
|
2635
2635
|
profile1Id: string;
|
|
2636
2636
|
profile1AccountId: string;
|
|
2637
2637
|
profile2Id: string;
|
|
@@ -2649,15 +2649,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2649
2649
|
flattenObjectIds: true;
|
|
2650
2650
|
}): {
|
|
2651
2651
|
status: import("../index.js").MatchStatus;
|
|
2652
|
-
|
|
2652
|
+
interestId: string;
|
|
2653
2653
|
createdAt: Date;
|
|
2654
|
+
tenantId?: string | undefined;
|
|
2654
2655
|
updatedAt: Date;
|
|
2655
2656
|
_id: string;
|
|
2656
2657
|
totalMessages: number;
|
|
2657
2658
|
endedAt?: Date | undefined;
|
|
2658
2659
|
chatId: string;
|
|
2659
2660
|
declineReason?: string | undefined;
|
|
2660
|
-
interestId: string;
|
|
2661
2661
|
profile1Id: string;
|
|
2662
2662
|
profile1AccountId: string;
|
|
2663
2663
|
profile2Id: string;
|
|
@@ -2741,15 +2741,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2741
2741
|
versionKey: false;
|
|
2742
2742
|
}): {
|
|
2743
2743
|
status: import("../index.js").MatchStatus;
|
|
2744
|
-
|
|
2744
|
+
interestId: string;
|
|
2745
2745
|
createdAt: Date;
|
|
2746
|
+
tenantId?: string | undefined;
|
|
2746
2747
|
updatedAt: Date;
|
|
2747
2748
|
_id: string;
|
|
2748
2749
|
totalMessages: number;
|
|
2749
2750
|
endedAt?: Date | undefined;
|
|
2750
2751
|
chatId: string;
|
|
2751
2752
|
declineReason?: string | undefined;
|
|
2752
|
-
interestId: string;
|
|
2753
2753
|
profile1Id: string;
|
|
2754
2754
|
profile1AccountId: string;
|
|
2755
2755
|
profile2Id: string;
|
|
@@ -2768,14 +2768,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2768
2768
|
virtuals: true;
|
|
2769
2769
|
}): {
|
|
2770
2770
|
status: import("../index.js").MatchStatus;
|
|
2771
|
-
|
|
2771
|
+
interestId: string;
|
|
2772
2772
|
createdAt: Date;
|
|
2773
|
+
tenantId?: string | undefined;
|
|
2773
2774
|
updatedAt: Date;
|
|
2774
2775
|
totalMessages: number;
|
|
2775
2776
|
endedAt?: Date | undefined;
|
|
2776
2777
|
chatId: string;
|
|
2777
2778
|
declineReason?: string | undefined;
|
|
2778
|
-
interestId: string;
|
|
2779
2779
|
profile1Id: string;
|
|
2780
2780
|
profile1AccountId: string;
|
|
2781
2781
|
profile2Id: string;
|
|
@@ -2815,15 +2815,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2815
2815
|
versionKey: false;
|
|
2816
2816
|
}): {
|
|
2817
2817
|
status: import("../index.js").MatchStatus;
|
|
2818
|
-
|
|
2818
|
+
interestId: string;
|
|
2819
2819
|
createdAt: Date;
|
|
2820
|
+
tenantId?: string | undefined;
|
|
2820
2821
|
updatedAt: Date;
|
|
2821
2822
|
_id: string;
|
|
2822
2823
|
totalMessages: number;
|
|
2823
2824
|
endedAt?: Date | undefined;
|
|
2824
2825
|
chatId: string;
|
|
2825
2826
|
declineReason?: string | undefined;
|
|
2826
|
-
interestId: string;
|
|
2827
2827
|
profile1Id: string;
|
|
2828
2828
|
profile1AccountId: string;
|
|
2829
2829
|
profile2Id: string;
|
|
@@ -2842,14 +2842,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2842
2842
|
virtuals: false;
|
|
2843
2843
|
}): {
|
|
2844
2844
|
status: import("../index.js").MatchStatus;
|
|
2845
|
-
|
|
2845
|
+
interestId: string;
|
|
2846
2846
|
createdAt: Date;
|
|
2847
|
+
tenantId?: string | undefined;
|
|
2847
2848
|
updatedAt: Date;
|
|
2848
2849
|
totalMessages: number;
|
|
2849
2850
|
endedAt?: Date | undefined;
|
|
2850
2851
|
chatId: string;
|
|
2851
2852
|
declineReason?: string | undefined;
|
|
2852
|
-
interestId: string;
|
|
2853
2853
|
profile1Id: string;
|
|
2854
2854
|
profile1AccountId: string;
|
|
2855
2855
|
profile2Id: string;
|
|
@@ -2889,15 +2889,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2889
2889
|
versionKey: false;
|
|
2890
2890
|
}): {
|
|
2891
2891
|
status: import("../index.js").MatchStatus;
|
|
2892
|
-
|
|
2892
|
+
interestId: string;
|
|
2893
2893
|
createdAt: Date;
|
|
2894
|
+
tenantId?: string | undefined;
|
|
2894
2895
|
updatedAt: Date;
|
|
2895
2896
|
_id: string;
|
|
2896
2897
|
totalMessages: number;
|
|
2897
2898
|
endedAt?: Date | undefined;
|
|
2898
2899
|
chatId: string;
|
|
2899
2900
|
declineReason?: string | undefined;
|
|
2900
|
-
interestId: string;
|
|
2901
2901
|
profile1Id: string;
|
|
2902
2902
|
profile1AccountId: string;
|
|
2903
2903
|
profile2Id: string;
|
|
@@ -2916,14 +2916,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2916
2916
|
virtuals: true;
|
|
2917
2917
|
}): {
|
|
2918
2918
|
status: import("../index.js").MatchStatus;
|
|
2919
|
-
|
|
2919
|
+
interestId: string;
|
|
2920
2920
|
createdAt: Date;
|
|
2921
|
+
tenantId?: string | undefined;
|
|
2921
2922
|
updatedAt: Date;
|
|
2922
2923
|
totalMessages: number;
|
|
2923
2924
|
endedAt?: Date | undefined;
|
|
2924
2925
|
chatId: string;
|
|
2925
2926
|
declineReason?: string | undefined;
|
|
2926
|
-
interestId: string;
|
|
2927
2927
|
profile1Id: string;
|
|
2928
2928
|
profile1AccountId: string;
|
|
2929
2929
|
profile2Id: string;
|
|
@@ -2963,15 +2963,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2963
2963
|
versionKey: false;
|
|
2964
2964
|
}): {
|
|
2965
2965
|
status: import("../index.js").MatchStatus;
|
|
2966
|
-
|
|
2966
|
+
interestId: string;
|
|
2967
2967
|
createdAt: Date;
|
|
2968
|
+
tenantId?: string | undefined;
|
|
2968
2969
|
updatedAt: Date;
|
|
2969
2970
|
_id: string;
|
|
2970
2971
|
totalMessages: number;
|
|
2971
2972
|
endedAt?: Date | undefined;
|
|
2972
2973
|
chatId: string;
|
|
2973
2974
|
declineReason?: string | undefined;
|
|
2974
|
-
interestId: string;
|
|
2975
2975
|
profile1Id: string;
|
|
2976
2976
|
profile1AccountId: string;
|
|
2977
2977
|
profile2Id: string;
|
|
@@ -2990,14 +2990,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
2990
2990
|
virtuals: false;
|
|
2991
2991
|
}): {
|
|
2992
2992
|
status: import("../index.js").MatchStatus;
|
|
2993
|
-
|
|
2993
|
+
interestId: string;
|
|
2994
2994
|
createdAt: Date;
|
|
2995
|
+
tenantId?: string | undefined;
|
|
2995
2996
|
updatedAt: Date;
|
|
2996
2997
|
totalMessages: number;
|
|
2997
2998
|
endedAt?: Date | undefined;
|
|
2998
2999
|
chatId: string;
|
|
2999
3000
|
declineReason?: string | undefined;
|
|
3000
|
-
interestId: string;
|
|
3001
3001
|
profile1Id: string;
|
|
3002
3002
|
profile1AccountId: string;
|
|
3003
3003
|
profile2Id: string;
|
|
@@ -3036,14 +3036,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3036
3036
|
virtuals: true;
|
|
3037
3037
|
}): {
|
|
3038
3038
|
status: import("../index.js").MatchStatus;
|
|
3039
|
-
|
|
3039
|
+
interestId: string;
|
|
3040
3040
|
createdAt: Date;
|
|
3041
|
+
tenantId?: string | undefined;
|
|
3041
3042
|
updatedAt: Date;
|
|
3042
3043
|
totalMessages: number;
|
|
3043
3044
|
endedAt?: Date | undefined;
|
|
3044
3045
|
chatId: string;
|
|
3045
3046
|
declineReason?: string | undefined;
|
|
3046
|
-
interestId: string;
|
|
3047
3047
|
profile1Id: string;
|
|
3048
3048
|
profile1AccountId: string;
|
|
3049
3049
|
profile2Id: string;
|
|
@@ -3062,14 +3062,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3062
3062
|
flattenObjectIds: true;
|
|
3063
3063
|
}): {
|
|
3064
3064
|
status: import("../index.js").MatchStatus;
|
|
3065
|
-
|
|
3065
|
+
interestId: string;
|
|
3066
3066
|
createdAt: Date;
|
|
3067
|
+
tenantId?: string | undefined;
|
|
3067
3068
|
updatedAt: Date;
|
|
3068
3069
|
totalMessages: number;
|
|
3069
3070
|
endedAt?: Date | undefined;
|
|
3070
3071
|
chatId: string;
|
|
3071
3072
|
declineReason?: string | undefined;
|
|
3072
|
-
interestId: string;
|
|
3073
3073
|
profile1Id: string;
|
|
3074
3074
|
profile1AccountId: string;
|
|
3075
3075
|
profile2Id: string;
|
|
@@ -3088,14 +3088,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3088
3088
|
virtuals: true;
|
|
3089
3089
|
}): {
|
|
3090
3090
|
status: import("../index.js").MatchStatus;
|
|
3091
|
-
|
|
3091
|
+
interestId: string;
|
|
3092
3092
|
createdAt: Date;
|
|
3093
|
+
tenantId?: string | undefined;
|
|
3093
3094
|
updatedAt: Date;
|
|
3094
3095
|
totalMessages: number;
|
|
3095
3096
|
endedAt?: Date | undefined;
|
|
3096
3097
|
chatId: string;
|
|
3097
3098
|
declineReason?: string | undefined;
|
|
3098
|
-
interestId: string;
|
|
3099
3099
|
profile1Id: string;
|
|
3100
3100
|
profile1AccountId: string;
|
|
3101
3101
|
profile2Id: string;
|
|
@@ -3113,14 +3113,14 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3113
3113
|
flattenObjectIds: true;
|
|
3114
3114
|
}): {
|
|
3115
3115
|
status: import("../index.js").MatchStatus;
|
|
3116
|
-
|
|
3116
|
+
interestId: string;
|
|
3117
3117
|
createdAt: Date;
|
|
3118
|
+
tenantId?: string | undefined;
|
|
3118
3119
|
updatedAt: Date;
|
|
3119
3120
|
totalMessages: number;
|
|
3120
3121
|
endedAt?: Date | undefined;
|
|
3121
3122
|
chatId: string;
|
|
3122
3123
|
declineReason?: string | undefined;
|
|
3123
|
-
interestId: string;
|
|
3124
3124
|
profile1Id: string;
|
|
3125
3125
|
profile1AccountId: string;
|
|
3126
3126
|
profile2Id: string;
|
|
@@ -3156,15 +3156,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3156
3156
|
virtuals: true;
|
|
3157
3157
|
}): {
|
|
3158
3158
|
status: import("../index.js").MatchStatus;
|
|
3159
|
-
|
|
3159
|
+
interestId: string;
|
|
3160
3160
|
createdAt: Date;
|
|
3161
|
+
tenantId?: string | undefined;
|
|
3161
3162
|
updatedAt: Date;
|
|
3162
3163
|
_id: string;
|
|
3163
3164
|
totalMessages: number;
|
|
3164
3165
|
endedAt?: Date | undefined;
|
|
3165
3166
|
chatId: string;
|
|
3166
3167
|
declineReason?: string | undefined;
|
|
3167
|
-
interestId: string;
|
|
3168
3168
|
profile1Id: string;
|
|
3169
3169
|
profile1AccountId: string;
|
|
3170
3170
|
profile2Id: string;
|
|
@@ -3184,15 +3184,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3184
3184
|
virtuals: true;
|
|
3185
3185
|
}): {
|
|
3186
3186
|
status: import("../index.js").MatchStatus;
|
|
3187
|
-
|
|
3187
|
+
interestId: string;
|
|
3188
3188
|
createdAt: Date;
|
|
3189
|
+
tenantId?: string | undefined;
|
|
3189
3190
|
updatedAt: Date;
|
|
3190
3191
|
_id: string;
|
|
3191
3192
|
totalMessages: number;
|
|
3192
3193
|
endedAt?: Date | undefined;
|
|
3193
3194
|
chatId: string;
|
|
3194
3195
|
declineReason?: string | undefined;
|
|
3195
|
-
interestId: string;
|
|
3196
3196
|
profile1Id: string;
|
|
3197
3197
|
profile1AccountId: string;
|
|
3198
3198
|
profile2Id: string;
|
|
@@ -3220,15 +3220,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3220
3220
|
virtuals: true;
|
|
3221
3221
|
}): {
|
|
3222
3222
|
status: import("../index.js").MatchStatus;
|
|
3223
|
-
|
|
3223
|
+
interestId: string;
|
|
3224
3224
|
createdAt: Date;
|
|
3225
|
+
tenantId?: string | undefined;
|
|
3225
3226
|
updatedAt: Date;
|
|
3226
3227
|
_id: string;
|
|
3227
3228
|
totalMessages: number;
|
|
3228
3229
|
endedAt?: Date | undefined;
|
|
3229
3230
|
chatId: string;
|
|
3230
3231
|
declineReason?: string | undefined;
|
|
3231
|
-
interestId: string;
|
|
3232
3232
|
profile1Id: string;
|
|
3233
3233
|
profile1AccountId: string;
|
|
3234
3234
|
profile2Id: string;
|
|
@@ -3255,15 +3255,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3255
3255
|
flattenObjectIds: true;
|
|
3256
3256
|
}): {
|
|
3257
3257
|
status: import("../index.js").MatchStatus;
|
|
3258
|
-
|
|
3258
|
+
interestId: string;
|
|
3259
3259
|
createdAt: Date;
|
|
3260
|
+
tenantId?: string | undefined;
|
|
3260
3261
|
updatedAt: Date;
|
|
3261
3262
|
_id: string;
|
|
3262
3263
|
totalMessages: number;
|
|
3263
3264
|
endedAt?: Date | undefined;
|
|
3264
3265
|
chatId: string;
|
|
3265
3266
|
declineReason?: string | undefined;
|
|
3266
|
-
interestId: string;
|
|
3267
3267
|
profile1Id: string;
|
|
3268
3268
|
profile1AccountId: string;
|
|
3269
3269
|
profile2Id: string;
|
|
@@ -3281,15 +3281,15 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3281
3281
|
flattenObjectIds: true;
|
|
3282
3282
|
}): {
|
|
3283
3283
|
status: import("../index.js").MatchStatus;
|
|
3284
|
-
|
|
3284
|
+
interestId: string;
|
|
3285
3285
|
createdAt: Date;
|
|
3286
|
+
tenantId?: string | undefined;
|
|
3286
3287
|
updatedAt: Date;
|
|
3287
3288
|
_id: string;
|
|
3288
3289
|
totalMessages: number;
|
|
3289
3290
|
endedAt?: Date | undefined;
|
|
3290
3291
|
chatId: string;
|
|
3291
3292
|
declineReason?: string | undefined;
|
|
3292
|
-
interestId: string;
|
|
3293
3293
|
profile1Id: string;
|
|
3294
3294
|
profile1AccountId: string;
|
|
3295
3295
|
profile2Id: string;
|
|
@@ -3366,7 +3366,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3366
3366
|
id: string;
|
|
3367
3367
|
}> | undefined;
|
|
3368
3368
|
unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
|
|
3369
|
-
<T extends "status" | "
|
|
3369
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(path: T): void;
|
|
3370
3370
|
(path: string): void;
|
|
3371
3371
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3372
3372
|
_id: string;
|
|
@@ -3451,7 +3451,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3451
3451
|
id: string;
|
|
3452
3452
|
}> | undefined;
|
|
3453
3453
|
validate?: import("mongoose").SchemaDefinitionProperty<{
|
|
3454
|
-
<T extends "status" | "
|
|
3454
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
|
|
3455
3455
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
|
|
3456
3456
|
(options: {
|
|
3457
3457
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
@@ -3492,7 +3492,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3492
3492
|
pathsToSkip?: import("mongoose").pathsToSkip;
|
|
3493
3493
|
[k: string]: any;
|
|
3494
3494
|
}): import("mongoose").Error.ValidationError | null;
|
|
3495
|
-
<T extends "status" | "
|
|
3495
|
+
<T extends "status" | "interestId" | "createdAt" | "tenantId" | "updatedAt" | "_id" | "totalMessages" | "endedAt" | "chatId" | "declineReason" | "profile1Id" | "profile1AccountId" | "profile2Id" | "profile2AccountId" | "matchType" | "endedBy" | "endReason" | "successfulAt" | "nikahDate" | "testimonialProvided" | "lastActivityAt">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
3496
3496
|
(pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
|
|
3497
3497
|
}, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3498
3498
|
_id: string;
|
|
@@ -3556,7 +3556,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3556
3556
|
} & {
|
|
3557
3557
|
id: string;
|
|
3558
3558
|
}> | undefined;
|
|
3559
|
-
|
|
3559
|
+
interestId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3560
3560
|
_id: string;
|
|
3561
3561
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3562
3562
|
_id: string;
|
|
@@ -3618,7 +3618,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3618
3618
|
} & {
|
|
3619
3619
|
id: string;
|
|
3620
3620
|
}> | undefined;
|
|
3621
|
-
|
|
3621
|
+
tenantId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3622
3622
|
_id: string;
|
|
3623
3623
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3624
3624
|
_id: string;
|
|
@@ -3649,7 +3649,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3649
3649
|
} & {
|
|
3650
3650
|
id: string;
|
|
3651
3651
|
}> | undefined;
|
|
3652
|
-
|
|
3652
|
+
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3653
3653
|
_id: string;
|
|
3654
3654
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3655
3655
|
_id: string;
|
|
@@ -3680,7 +3680,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3680
3680
|
} & {
|
|
3681
3681
|
id: string;
|
|
3682
3682
|
}> | undefined;
|
|
3683
|
-
|
|
3683
|
+
totalMessages?: import("mongoose").SchemaDefinitionProperty<number, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3684
3684
|
_id: string;
|
|
3685
3685
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3686
3686
|
_id: string;
|
|
@@ -3711,7 +3711,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3711
3711
|
} & {
|
|
3712
3712
|
id: string;
|
|
3713
3713
|
}> | undefined;
|
|
3714
|
-
|
|
3714
|
+
endedAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3715
3715
|
_id: string;
|
|
3716
3716
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3717
3717
|
_id: string;
|
|
@@ -3742,7 +3742,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3742
3742
|
} & {
|
|
3743
3743
|
id: string;
|
|
3744
3744
|
}> | undefined;
|
|
3745
|
-
|
|
3745
|
+
chatId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3746
3746
|
_id: string;
|
|
3747
3747
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3748
3748
|
_id: string;
|
|
@@ -3773,7 +3773,7 @@ export declare const MatchSchema: Schema<import("mongoose").Document<unknown, {}
|
|
|
3773
3773
|
} & {
|
|
3774
3774
|
id: string;
|
|
3775
3775
|
}> | undefined;
|
|
3776
|
-
|
|
3776
|
+
declineReason?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IMatch, "id"> & {
|
|
3777
3777
|
_id: string;
|
|
3778
3778
|
}, {}, import("mongoose").DefaultSchemaOptions> & Omit<IMatch, "id"> & {
|
|
3779
3779
|
_id: string;
|