@managesome/knotr-toolkit 0.8.16 → 0.8.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/backend/index.d.ts +2 -2
  2. package/dist/backend/index.d.ts.map +1 -1
  3. package/dist/backend/index.js +1 -1
  4. package/dist/backend/index.js.map +1 -1
  5. package/dist/backend/worker-queue.d.ts +203 -13
  6. package/dist/backend/worker-queue.d.ts.map +1 -1
  7. package/dist/backend/worker-queue.js +67 -12
  8. package/dist/backend/worker-queue.js.map +1 -1
  9. package/dist/constants/worker.d.ts +17 -0
  10. package/dist/constants/worker.d.ts.map +1 -1
  11. package/dist/constants/worker.js +20 -0
  12. package/dist/constants/worker.js.map +1 -1
  13. package/dist/schemas/account.schema.d.ts +66 -66
  14. package/dist/schemas/chat.schema.d.ts +49 -49
  15. package/dist/schemas/chat.schema.d.ts.map +1 -1
  16. package/dist/schemas/collaboration-request.schema.d.ts +84 -84
  17. package/dist/schemas/collaboration-request.schema.d.ts.map +1 -1
  18. package/dist/schemas/company-review.schema.d.ts +83 -83
  19. package/dist/schemas/company-review.schema.d.ts.map +1 -1
  20. package/dist/schemas/company.schema.d.ts +88 -88
  21. package/dist/schemas/company.schema.d.ts.map +1 -1
  22. package/dist/schemas/contract.schema.d.ts +120 -120
  23. package/dist/schemas/contract.schema.d.ts.map +1 -1
  24. package/dist/schemas/dispute.schema.d.ts +84 -84
  25. package/dist/schemas/dispute.schema.d.ts.map +1 -1
  26. package/dist/schemas/donation.schema.d.ts +49 -49
  27. package/dist/schemas/donation.schema.d.ts.map +1 -1
  28. package/dist/schemas/escrow.schema.d.ts +84 -84
  29. package/dist/schemas/escrow.schema.d.ts.map +1 -1
  30. package/dist/schemas/interest.schema.d.ts +87 -87
  31. package/dist/schemas/interest.schema.d.ts.map +1 -1
  32. package/dist/schemas/match.schema.d.ts +87 -87
  33. package/dist/schemas/match.schema.d.ts.map +1 -1
  34. package/dist/schemas/message.schema.d.ts +53 -53
  35. package/dist/schemas/message.schema.d.ts.map +1 -1
  36. package/dist/schemas/milestone.schema.d.ts +48 -48
  37. package/dist/schemas/notification.schema.d.ts +155 -155
  38. package/dist/schemas/notification.schema.d.ts.map +1 -1
  39. package/dist/schemas/profile.schema.d.ts +87 -87
  40. package/dist/schemas/profile.schema.d.ts.map +1 -1
  41. package/dist/schemas/profit-share-agreement.schema.d.ts +48 -48
  42. package/dist/schemas/profit-share.schema.d.ts +48 -48
  43. package/dist/schemas/proposal.schema.d.ts +48 -48
  44. package/dist/schemas/purchase.schema.d.ts +49 -49
  45. package/dist/schemas/purchase.schema.d.ts.map +1 -1
  46. package/dist/schemas/requirement-post.schema.d.ts +84 -84
  47. package/dist/schemas/requirement-post.schema.d.ts.map +1 -1
  48. package/dist/schemas/service-listing.schema.d.ts +48 -48
  49. package/dist/schemas/subscription.schema.d.ts +83 -83
  50. package/dist/schemas/subscription.schema.d.ts.map +1 -1
  51. package/dist/schemas/tmc-application.schema.d.ts +48 -48
  52. package/dist/schemas/tmc-membership.schema.d.ts +48 -48
  53. package/dist/schemas/trust-badge.schema.d.ts +48 -48
  54. package/dist/schemas/verification.schema.d.ts +87 -87
  55. package/dist/schemas/verification.schema.d.ts.map +1 -1
  56. package/dist/schemas/webhook-event.schema.d.ts +48 -48
  57. package/dist/types/worker.d.ts +9 -2
  58. package/dist/types/worker.d.ts.map +1 -1
  59. package/package.json +1 -1
@@ -1082,7 +1082,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1082
1082
  id: string;
1083
1083
  }> | undefined;
1084
1084
  get?: import("mongoose").SchemaDefinitionProperty<{
1085
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, type?: any, options?: any): (Omit<IRequirementPost, "id"> & {
1085
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, type?: any, options?: any): (Omit<IRequirementPost, "id"> & {
1086
1086
  _id: string;
1087
1087
  })[T];
1088
1088
  (path: string, type?: any, options?: any): any;
@@ -1241,7 +1241,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1241
1241
  id: string;
1242
1242
  }> | undefined;
1243
1243
  invalidate?: import("mongoose").SchemaDefinitionProperty<{
1244
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1244
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1245
1245
  (path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1246
1246
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1247
1247
  _id: string;
@@ -1275,7 +1275,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1275
1275
  id: string;
1276
1276
  }> | undefined;
1277
1277
  isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
1278
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T | T[]): boolean;
1278
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T | T[]): boolean;
1279
1279
  (path: string | Array<string>): boolean;
1280
1280
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1281
1281
  _id: string;
@@ -1309,7 +1309,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1309
1309
  id: string;
1310
1310
  }> | undefined;
1311
1311
  isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
1312
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): boolean;
1312
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): boolean;
1313
1313
  (path: string): boolean;
1314
1314
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1315
1315
  _id: string;
@@ -1343,7 +1343,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1343
1343
  id: string;
1344
1344
  }> | undefined;
1345
1345
  isInit?: import("mongoose").SchemaDefinitionProperty<{
1346
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): boolean;
1346
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): boolean;
1347
1347
  (path: string): boolean;
1348
1348
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1349
1349
  _id: string;
@@ -1377,7 +1377,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1377
1377
  id: string;
1378
1378
  }> | undefined;
1379
1379
  isModified?: import("mongoose").SchemaDefinitionProperty<{
1380
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path?: T | T[] | undefined, options?: {
1380
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path?: T | T[] | undefined, options?: {
1381
1381
  ignoreAtomics?: boolean;
1382
1382
  } | null): boolean;
1383
1383
  (path?: string | Array<string>, options?: {
@@ -1446,7 +1446,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1446
1446
  id: string;
1447
1447
  }> | undefined;
1448
1448
  isSelected?: import("mongoose").SchemaDefinitionProperty<{
1449
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): boolean;
1449
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): boolean;
1450
1450
  (path: string): boolean;
1451
1451
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1452
1452
  _id: string;
@@ -1480,7 +1480,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1480
1480
  id: string;
1481
1481
  }> | undefined;
1482
1482
  markModified?: import("mongoose").SchemaDefinitionProperty<{
1483
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, scope?: any): void;
1483
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, scope?: any): void;
1484
1484
  (path: string, scope?: any): void;
1485
1485
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1486
1486
  _id: string;
@@ -1919,7 +1919,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
1919
1919
  id: string;
1920
1920
  }> | undefined;
1921
1921
  set?: import("mongoose").SchemaDefinitionProperty<{
1922
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, val: (Omit<IRequirementPost, "id"> & {
1922
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T, val: (Omit<IRequirementPost, "id"> & {
1923
1923
  _id: string;
1924
1924
  })[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
1925
1925
  _id: string;
@@ -2032,11 +2032,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2032
2032
  currency: string;
2033
2033
  timeline: number;
2034
2034
  visibility: RequirementVisibility;
2035
+ accountId: string;
2036
+ profileId?: string | undefined;
2035
2037
  createdAt: Date;
2036
2038
  updatedAt: Date;
2037
2039
  _id: string;
2038
- profileId?: string | undefined;
2039
- accountId: string;
2040
2040
  viewCount: number;
2041
2041
  expiresAt?: Date | undefined;
2042
2042
  candidateOverview: string;
@@ -2110,10 +2110,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2110
2110
  currency: string;
2111
2111
  timeline: number;
2112
2112
  visibility: RequirementVisibility;
2113
+ accountId: string;
2114
+ profileId?: string | undefined;
2113
2115
  createdAt: Date;
2114
2116
  updatedAt: Date;
2115
- profileId?: string | undefined;
2116
- accountId: string;
2117
2117
  viewCount: number;
2118
2118
  expiresAt?: Date | undefined;
2119
2119
  candidateOverview: string;
@@ -2208,11 +2208,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2208
2208
  currency: string;
2209
2209
  timeline: number;
2210
2210
  visibility: RequirementVisibility;
2211
+ accountId: string;
2212
+ profileId?: string | undefined;
2211
2213
  createdAt: Date;
2212
2214
  updatedAt: Date;
2213
2215
  _id: string;
2214
- profileId?: string | undefined;
2215
- accountId: string;
2216
2216
  viewCount: number;
2217
2217
  expiresAt?: Date | undefined;
2218
2218
  candidateOverview: string;
@@ -2286,10 +2286,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2286
2286
  currency: string;
2287
2287
  timeline: number;
2288
2288
  visibility: RequirementVisibility;
2289
+ accountId: string;
2290
+ profileId?: string | undefined;
2289
2291
  createdAt: Date;
2290
2292
  updatedAt: Date;
2291
- profileId?: string | undefined;
2292
- accountId: string;
2293
2293
  viewCount: number;
2294
2294
  expiresAt?: Date | undefined;
2295
2295
  candidateOverview: string;
@@ -2384,11 +2384,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2384
2384
  currency: string;
2385
2385
  timeline: number;
2386
2386
  visibility: RequirementVisibility;
2387
+ accountId: string;
2388
+ profileId?: string | undefined;
2387
2389
  createdAt: Date;
2388
2390
  updatedAt: Date;
2389
2391
  _id: string;
2390
- profileId?: string | undefined;
2391
- accountId: string;
2392
2392
  viewCount: number;
2393
2393
  expiresAt?: Date | undefined;
2394
2394
  candidateOverview: string;
@@ -2462,10 +2462,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2462
2462
  currency: string;
2463
2463
  timeline: number;
2464
2464
  visibility: RequirementVisibility;
2465
+ accountId: string;
2466
+ profileId?: string | undefined;
2465
2467
  createdAt: Date;
2466
2468
  updatedAt: Date;
2467
- profileId?: string | undefined;
2468
- accountId: string;
2469
2469
  viewCount: number;
2470
2470
  expiresAt?: Date | undefined;
2471
2471
  candidateOverview: string;
@@ -2560,11 +2560,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2560
2560
  currency: string;
2561
2561
  timeline: number;
2562
2562
  visibility: RequirementVisibility;
2563
+ accountId: string;
2564
+ profileId?: string | undefined;
2563
2565
  createdAt: Date;
2564
2566
  updatedAt: Date;
2565
2567
  _id: string;
2566
- profileId?: string | undefined;
2567
- accountId: string;
2568
2568
  viewCount: number;
2569
2569
  expiresAt?: Date | undefined;
2570
2570
  candidateOverview: string;
@@ -2638,10 +2638,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2638
2638
  currency: string;
2639
2639
  timeline: number;
2640
2640
  visibility: RequirementVisibility;
2641
+ accountId: string;
2642
+ profileId?: string | undefined;
2641
2643
  createdAt: Date;
2642
2644
  updatedAt: Date;
2643
- profileId?: string | undefined;
2644
- accountId: string;
2645
2645
  viewCount: number;
2646
2646
  expiresAt?: Date | undefined;
2647
2647
  candidateOverview: string;
@@ -2735,10 +2735,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2735
2735
  currency: string;
2736
2736
  timeline: number;
2737
2737
  visibility: RequirementVisibility;
2738
+ accountId: string;
2739
+ profileId?: string | undefined;
2738
2740
  createdAt: Date;
2739
2741
  updatedAt: Date;
2740
- profileId?: string | undefined;
2741
- accountId: string;
2742
2742
  viewCount: number;
2743
2743
  expiresAt?: Date | undefined;
2744
2744
  candidateOverview: string;
@@ -2812,10 +2812,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2812
2812
  currency: string;
2813
2813
  timeline: number;
2814
2814
  visibility: RequirementVisibility;
2815
+ accountId: string;
2816
+ profileId?: string | undefined;
2815
2817
  createdAt: Date;
2816
2818
  updatedAt: Date;
2817
- profileId?: string | undefined;
2818
- accountId: string;
2819
2819
  viewCount: number;
2820
2820
  expiresAt?: Date | undefined;
2821
2821
  candidateOverview: string;
@@ -2889,10 +2889,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2889
2889
  currency: string;
2890
2890
  timeline: number;
2891
2891
  visibility: RequirementVisibility;
2892
+ accountId: string;
2893
+ profileId?: string | undefined;
2892
2894
  createdAt: Date;
2893
2895
  updatedAt: Date;
2894
- profileId?: string | undefined;
2895
- accountId: string;
2896
2896
  viewCount: number;
2897
2897
  expiresAt?: Date | undefined;
2898
2898
  candidateOverview: string;
@@ -2965,10 +2965,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
2965
2965
  currency: string;
2966
2966
  timeline: number;
2967
2967
  visibility: RequirementVisibility;
2968
+ accountId: string;
2969
+ profileId?: string | undefined;
2968
2970
  createdAt: Date;
2969
2971
  updatedAt: Date;
2970
- profileId?: string | undefined;
2971
- accountId: string;
2972
2972
  viewCount: number;
2973
2973
  expiresAt?: Date | undefined;
2974
2974
  candidateOverview: string;
@@ -3059,11 +3059,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3059
3059
  currency: string;
3060
3060
  timeline: number;
3061
3061
  visibility: RequirementVisibility;
3062
+ accountId: string;
3063
+ profileId?: string | undefined;
3062
3064
  createdAt: Date;
3063
3065
  updatedAt: Date;
3064
3066
  _id: string;
3065
- profileId?: string | undefined;
3066
- accountId: string;
3067
3067
  viewCount: number;
3068
3068
  expiresAt?: Date | undefined;
3069
3069
  candidateOverview: string;
@@ -3138,11 +3138,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3138
3138
  currency: string;
3139
3139
  timeline: number;
3140
3140
  visibility: RequirementVisibility;
3141
+ accountId: string;
3142
+ profileId?: string | undefined;
3141
3143
  createdAt: Date;
3142
3144
  updatedAt: Date;
3143
3145
  _id: string;
3144
- profileId?: string | undefined;
3145
- accountId: string;
3146
3146
  viewCount: number;
3147
3147
  expiresAt?: Date | undefined;
3148
3148
  candidateOverview: string;
@@ -3225,11 +3225,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3225
3225
  currency: string;
3226
3226
  timeline: number;
3227
3227
  visibility: RequirementVisibility;
3228
+ accountId: string;
3229
+ profileId?: string | undefined;
3228
3230
  createdAt: Date;
3229
3231
  updatedAt: Date;
3230
3232
  _id: string;
3231
- profileId?: string | undefined;
3232
- accountId: string;
3233
3233
  viewCount: number;
3234
3234
  expiresAt?: Date | undefined;
3235
3235
  candidateOverview: string;
@@ -3311,11 +3311,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3311
3311
  currency: string;
3312
3312
  timeline: number;
3313
3313
  visibility: RequirementVisibility;
3314
+ accountId: string;
3315
+ profileId?: string | undefined;
3314
3316
  createdAt: Date;
3315
3317
  updatedAt: Date;
3316
3318
  _id: string;
3317
- profileId?: string | undefined;
3318
- accountId: string;
3319
3319
  viewCount: number;
3320
3320
  expiresAt?: Date | undefined;
3321
3321
  candidateOverview: string;
@@ -3388,11 +3388,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3388
3388
  currency: string;
3389
3389
  timeline: number;
3390
3390
  visibility: RequirementVisibility;
3391
+ accountId: string;
3392
+ profileId?: string | undefined;
3391
3393
  createdAt: Date;
3392
3394
  updatedAt: Date;
3393
3395
  _id: string;
3394
- profileId?: string | undefined;
3395
- accountId: string;
3396
3396
  viewCount: number;
3397
3397
  expiresAt?: Date | undefined;
3398
3398
  candidateOverview: string;
@@ -3531,11 +3531,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3531
3531
  currency: string;
3532
3532
  timeline: number;
3533
3533
  visibility: RequirementVisibility;
3534
+ accountId: string;
3535
+ profileId?: string | undefined;
3534
3536
  createdAt: Date;
3535
3537
  updatedAt: Date;
3536
3538
  _id: string;
3537
- profileId?: string | undefined;
3538
- accountId: string;
3539
3539
  viewCount: number;
3540
3540
  expiresAt?: Date | undefined;
3541
3541
  candidateOverview: string;
@@ -3609,10 +3609,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3609
3609
  currency: string;
3610
3610
  timeline: number;
3611
3611
  visibility: RequirementVisibility;
3612
+ accountId: string;
3613
+ profileId?: string | undefined;
3612
3614
  createdAt: Date;
3613
3615
  updatedAt: Date;
3614
- profileId?: string | undefined;
3615
- accountId: string;
3616
3616
  viewCount: number;
3617
3617
  expiresAt?: Date | undefined;
3618
3618
  candidateOverview: string;
@@ -3707,11 +3707,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3707
3707
  currency: string;
3708
3708
  timeline: number;
3709
3709
  visibility: RequirementVisibility;
3710
+ accountId: string;
3711
+ profileId?: string | undefined;
3710
3712
  createdAt: Date;
3711
3713
  updatedAt: Date;
3712
3714
  _id: string;
3713
- profileId?: string | undefined;
3714
- accountId: string;
3715
3715
  viewCount: number;
3716
3716
  expiresAt?: Date | undefined;
3717
3717
  candidateOverview: string;
@@ -3785,10 +3785,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3785
3785
  currency: string;
3786
3786
  timeline: number;
3787
3787
  visibility: RequirementVisibility;
3788
+ accountId: string;
3789
+ profileId?: string | undefined;
3788
3790
  createdAt: Date;
3789
3791
  updatedAt: Date;
3790
- profileId?: string | undefined;
3791
- accountId: string;
3792
3792
  viewCount: number;
3793
3793
  expiresAt?: Date | undefined;
3794
3794
  candidateOverview: string;
@@ -3883,11 +3883,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3883
3883
  currency: string;
3884
3884
  timeline: number;
3885
3885
  visibility: RequirementVisibility;
3886
+ accountId: string;
3887
+ profileId?: string | undefined;
3886
3888
  createdAt: Date;
3887
3889
  updatedAt: Date;
3888
3890
  _id: string;
3889
- profileId?: string | undefined;
3890
- accountId: string;
3891
3891
  viewCount: number;
3892
3892
  expiresAt?: Date | undefined;
3893
3893
  candidateOverview: string;
@@ -3961,10 +3961,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
3961
3961
  currency: string;
3962
3962
  timeline: number;
3963
3963
  visibility: RequirementVisibility;
3964
+ accountId: string;
3965
+ profileId?: string | undefined;
3964
3966
  createdAt: Date;
3965
3967
  updatedAt: Date;
3966
- profileId?: string | undefined;
3967
- accountId: string;
3968
3968
  viewCount: number;
3969
3969
  expiresAt?: Date | undefined;
3970
3970
  candidateOverview: string;
@@ -4059,11 +4059,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4059
4059
  currency: string;
4060
4060
  timeline: number;
4061
4061
  visibility: RequirementVisibility;
4062
+ accountId: string;
4063
+ profileId?: string | undefined;
4062
4064
  createdAt: Date;
4063
4065
  updatedAt: Date;
4064
4066
  _id: string;
4065
- profileId?: string | undefined;
4066
- accountId: string;
4067
4067
  viewCount: number;
4068
4068
  expiresAt?: Date | undefined;
4069
4069
  candidateOverview: string;
@@ -4137,10 +4137,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4137
4137
  currency: string;
4138
4138
  timeline: number;
4139
4139
  visibility: RequirementVisibility;
4140
+ accountId: string;
4141
+ profileId?: string | undefined;
4140
4142
  createdAt: Date;
4141
4143
  updatedAt: Date;
4142
- profileId?: string | undefined;
4143
- accountId: string;
4144
4144
  viewCount: number;
4145
4145
  expiresAt?: Date | undefined;
4146
4146
  candidateOverview: string;
@@ -4234,10 +4234,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4234
4234
  currency: string;
4235
4235
  timeline: number;
4236
4236
  visibility: RequirementVisibility;
4237
+ accountId: string;
4238
+ profileId?: string | undefined;
4237
4239
  createdAt: Date;
4238
4240
  updatedAt: Date;
4239
- profileId?: string | undefined;
4240
- accountId: string;
4241
4241
  viewCount: number;
4242
4242
  expiresAt?: Date | undefined;
4243
4243
  candidateOverview: string;
@@ -4311,10 +4311,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4311
4311
  currency: string;
4312
4312
  timeline: number;
4313
4313
  visibility: RequirementVisibility;
4314
+ accountId: string;
4315
+ profileId?: string | undefined;
4314
4316
  createdAt: Date;
4315
4317
  updatedAt: Date;
4316
- profileId?: string | undefined;
4317
- accountId: string;
4318
4318
  viewCount: number;
4319
4319
  expiresAt?: Date | undefined;
4320
4320
  candidateOverview: string;
@@ -4388,10 +4388,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4388
4388
  currency: string;
4389
4389
  timeline: number;
4390
4390
  visibility: RequirementVisibility;
4391
+ accountId: string;
4392
+ profileId?: string | undefined;
4391
4393
  createdAt: Date;
4392
4394
  updatedAt: Date;
4393
- profileId?: string | undefined;
4394
- accountId: string;
4395
4395
  viewCount: number;
4396
4396
  expiresAt?: Date | undefined;
4397
4397
  candidateOverview: string;
@@ -4464,10 +4464,10 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4464
4464
  currency: string;
4465
4465
  timeline: number;
4466
4466
  visibility: RequirementVisibility;
4467
+ accountId: string;
4468
+ profileId?: string | undefined;
4467
4469
  createdAt: Date;
4468
4470
  updatedAt: Date;
4469
- profileId?: string | undefined;
4470
- accountId: string;
4471
4471
  viewCount: number;
4472
4472
  expiresAt?: Date | undefined;
4473
4473
  candidateOverview: string;
@@ -4558,11 +4558,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4558
4558
  currency: string;
4559
4559
  timeline: number;
4560
4560
  visibility: RequirementVisibility;
4561
+ accountId: string;
4562
+ profileId?: string | undefined;
4561
4563
  createdAt: Date;
4562
4564
  updatedAt: Date;
4563
4565
  _id: string;
4564
- profileId?: string | undefined;
4565
- accountId: string;
4566
4566
  viewCount: number;
4567
4567
  expiresAt?: Date | undefined;
4568
4568
  candidateOverview: string;
@@ -4637,11 +4637,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4637
4637
  currency: string;
4638
4638
  timeline: number;
4639
4639
  visibility: RequirementVisibility;
4640
+ accountId: string;
4641
+ profileId?: string | undefined;
4640
4642
  createdAt: Date;
4641
4643
  updatedAt: Date;
4642
4644
  _id: string;
4643
- profileId?: string | undefined;
4644
- accountId: string;
4645
4645
  viewCount: number;
4646
4646
  expiresAt?: Date | undefined;
4647
4647
  candidateOverview: string;
@@ -4724,11 +4724,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4724
4724
  currency: string;
4725
4725
  timeline: number;
4726
4726
  visibility: RequirementVisibility;
4727
+ accountId: string;
4728
+ profileId?: string | undefined;
4727
4729
  createdAt: Date;
4728
4730
  updatedAt: Date;
4729
4731
  _id: string;
4730
- profileId?: string | undefined;
4731
- accountId: string;
4732
4732
  viewCount: number;
4733
4733
  expiresAt?: Date | undefined;
4734
4734
  candidateOverview: string;
@@ -4810,11 +4810,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4810
4810
  currency: string;
4811
4811
  timeline: number;
4812
4812
  visibility: RequirementVisibility;
4813
+ accountId: string;
4814
+ profileId?: string | undefined;
4813
4815
  createdAt: Date;
4814
4816
  updatedAt: Date;
4815
4817
  _id: string;
4816
- profileId?: string | undefined;
4817
- accountId: string;
4818
4818
  viewCount: number;
4819
4819
  expiresAt?: Date | undefined;
4820
4820
  candidateOverview: string;
@@ -4887,11 +4887,11 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4887
4887
  currency: string;
4888
4888
  timeline: number;
4889
4889
  visibility: RequirementVisibility;
4890
+ accountId: string;
4891
+ profileId?: string | undefined;
4890
4892
  createdAt: Date;
4891
4893
  updatedAt: Date;
4892
4894
  _id: string;
4893
- profileId?: string | undefined;
4894
- accountId: string;
4895
4895
  viewCount: number;
4896
4896
  expiresAt?: Date | undefined;
4897
4897
  candidateOverview: string;
@@ -4995,7 +4995,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
4995
4995
  id: string;
4996
4996
  }> | undefined;
4997
4997
  unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
4998
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): void;
4998
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(path: T): void;
4999
4999
  (path: string): void;
5000
5000
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5001
5001
  _id: string;
@@ -5080,7 +5080,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
5080
5080
  id: string;
5081
5081
  }> | undefined;
5082
5082
  validate?: import("mongoose").SchemaDefinitionProperty<{
5083
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
5083
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
5084
5084
  (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
5085
5085
  (options: {
5086
5086
  pathsToSkip?: import("mongoose").pathsToSkip;
@@ -5121,7 +5121,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
5121
5121
  pathsToSkip?: import("mongoose").pathsToSkip;
5122
5122
  [k: string]: any;
5123
5123
  }): import("mongoose").Error.ValidationError | null;
5124
- <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "createdAt" | "updatedAt" | "_id" | "profileId" | "accountId" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
5124
+ <T extends "title" | "description" | "preferences" | "status" | "budgetMin" | "budgetMax" | "currency" | "timeline" | "visibility" | "accountId" | "profileId" | "createdAt" | "updatedAt" | "_id" | "viewCount" | "expiresAt" | "candidateOverview" | "candidateGender" | "candidateAge" | "candidateProfession" | "candidateEducation" | "candidateLocation" | "candidateSect" | "urgency" | "preferredCompanyTypes" | "preferredRegions" | "requireVerifiedCompany" | "minimumRating" | "invitedCompanyIds" | "proposalCount" | "shortlistedCount" | "publishedAt" | "closedAt" | "closedReason" | "selectedContractId" | "filledAt">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
5125
5125
  (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
5126
5126
  }, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5127
5127
  _id: string;
@@ -5433,7 +5433,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
5433
5433
  } & {
5434
5434
  id: string;
5435
5435
  }> | undefined;
5436
- createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5436
+ accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5437
5437
  _id: string;
5438
5438
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IRequirementPost, "id"> & {
5439
5439
  _id: string;
@@ -5464,7 +5464,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
5464
5464
  } & {
5465
5465
  id: string;
5466
5466
  }> | undefined;
5467
- updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5467
+ profileId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5468
5468
  _id: string;
5469
5469
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IRequirementPost, "id"> & {
5470
5470
  _id: string;
@@ -5495,7 +5495,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
5495
5495
  } & {
5496
5496
  id: string;
5497
5497
  }> | undefined;
5498
- profileId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5498
+ createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5499
5499
  _id: string;
5500
5500
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IRequirementPost, "id"> & {
5501
5501
  _id: string;
@@ -5526,7 +5526,7 @@ export declare const RequirementPostSchema: Schema<import("mongoose").Document<u
5526
5526
  } & {
5527
5527
  id: string;
5528
5528
  }> | undefined;
5529
- accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5529
+ updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IRequirementPost, "id"> & {
5530
5530
  _id: string;
5531
5531
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IRequirementPost, "id"> & {
5532
5532
  _id: string;