@managesome/knotr-toolkit 0.8.6 → 0.8.7

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