@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
@@ -1083,7 +1083,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1083
1083
  id: string;
1084
1084
  }> | undefined;
1085
1085
  get?: import("mongoose").SchemaDefinitionProperty<{
1086
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, type?: any, options?: any): (Omit<ICompany, "id"> & {
1086
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, type?: any, options?: any): (Omit<ICompany, "id"> & {
1087
1087
  _id: string;
1088
1088
  })[T];
1089
1089
  (path: string, type?: any, options?: any): any;
@@ -1242,7 +1242,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1242
1242
  id: string;
1243
1243
  }> | undefined;
1244
1244
  invalidate?: import("mongoose").SchemaDefinitionProperty<{
1245
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1245
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1246
1246
  (path: string, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1247
1247
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1248
1248
  _id: string;
@@ -1276,7 +1276,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1276
1276
  id: string;
1277
1277
  }> | undefined;
1278
1278
  isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
1279
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T | T[]): boolean;
1279
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T | T[]): boolean;
1280
1280
  (path: string | Array<string>): boolean;
1281
1281
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1282
1282
  _id: string;
@@ -1310,7 +1310,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1310
1310
  id: string;
1311
1311
  }> | undefined;
1312
1312
  isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
1313
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): boolean;
1313
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): boolean;
1314
1314
  (path: string): boolean;
1315
1315
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1316
1316
  _id: string;
@@ -1344,7 +1344,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1344
1344
  id: string;
1345
1345
  }> | undefined;
1346
1346
  isInit?: import("mongoose").SchemaDefinitionProperty<{
1347
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): boolean;
1347
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): boolean;
1348
1348
  (path: string): boolean;
1349
1349
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1350
1350
  _id: string;
@@ -1378,7 +1378,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1378
1378
  id: string;
1379
1379
  }> | undefined;
1380
1380
  isModified?: import("mongoose").SchemaDefinitionProperty<{
1381
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path?: T | T[] | undefined, options?: {
1381
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path?: T | T[] | undefined, options?: {
1382
1382
  ignoreAtomics?: boolean;
1383
1383
  } | null): boolean;
1384
1384
  (path?: string | Array<string>, options?: {
@@ -1447,7 +1447,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1447
1447
  id: string;
1448
1448
  }> | undefined;
1449
1449
  isSelected?: import("mongoose").SchemaDefinitionProperty<{
1450
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): boolean;
1450
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): boolean;
1451
1451
  (path: string): boolean;
1452
1452
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1453
1453
  _id: string;
@@ -1481,7 +1481,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1481
1481
  id: string;
1482
1482
  }> | undefined;
1483
1483
  markModified?: import("mongoose").SchemaDefinitionProperty<{
1484
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, scope?: any): void;
1484
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, scope?: any): void;
1485
1485
  (path: string, scope?: any): void;
1486
1486
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1487
1487
  _id: string;
@@ -1920,7 +1920,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
1920
1920
  id: string;
1921
1921
  }> | undefined;
1922
1922
  set?: import("mongoose").SchemaDefinitionProperty<{
1923
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, val: (Omit<ICompany, "id"> & {
1923
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T, val: (Omit<ICompany, "id"> & {
1924
1924
  _id: string;
1925
1925
  })[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
1926
1926
  _id: string;
@@ -2033,15 +2033,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2033
2033
  verifiedAt?: Date | undefined;
2034
2034
  notes?: string | undefined;
2035
2035
  }[];
2036
+ accountId: string;
2037
+ createdAt: Date;
2036
2038
  firebaseUid?: string | undefined;
2037
2039
  tenantId?: string | undefined;
2038
- createdAt: Date;
2039
2040
  updatedAt: Date;
2040
2041
  _id: string;
2041
2042
  reviewedAt?: Date | undefined;
2042
2043
  reviewedBy?: string | undefined;
2043
2044
  reviewNotes?: string | undefined;
2044
- accountId: string;
2045
2045
  registrationNumber?: string | undefined;
2046
2046
  registrationDocument?: string | undefined;
2047
2047
  contactEmail?: string | undefined;
@@ -2114,14 +2114,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2114
2114
  verifiedAt?: Date | undefined;
2115
2115
  notes?: string | undefined;
2116
2116
  }[];
2117
+ accountId: string;
2118
+ createdAt: Date;
2117
2119
  firebaseUid?: string | undefined;
2118
2120
  tenantId?: string | undefined;
2119
- createdAt: Date;
2120
2121
  updatedAt: Date;
2121
2122
  reviewedAt?: Date | undefined;
2122
2123
  reviewedBy?: string | undefined;
2123
2124
  reviewNotes?: string | undefined;
2124
- accountId: string;
2125
2125
  registrationNumber?: string | undefined;
2126
2126
  registrationDocument?: string | undefined;
2127
2127
  contactEmail?: string | undefined;
@@ -2215,15 +2215,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2215
2215
  verifiedAt?: Date | undefined;
2216
2216
  notes?: string | undefined;
2217
2217
  }[];
2218
+ accountId: string;
2219
+ createdAt: Date;
2218
2220
  firebaseUid?: string | undefined;
2219
2221
  tenantId?: string | undefined;
2220
- createdAt: Date;
2221
2222
  updatedAt: Date;
2222
2223
  _id: string;
2223
2224
  reviewedAt?: Date | undefined;
2224
2225
  reviewedBy?: string | undefined;
2225
2226
  reviewNotes?: string | undefined;
2226
- accountId: string;
2227
2227
  registrationNumber?: string | undefined;
2228
2228
  registrationDocument?: string | undefined;
2229
2229
  contactEmail?: string | undefined;
@@ -2296,14 +2296,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2296
2296
  verifiedAt?: Date | undefined;
2297
2297
  notes?: string | undefined;
2298
2298
  }[];
2299
+ accountId: string;
2300
+ createdAt: Date;
2299
2301
  firebaseUid?: string | undefined;
2300
2302
  tenantId?: string | undefined;
2301
- createdAt: Date;
2302
2303
  updatedAt: Date;
2303
2304
  reviewedAt?: Date | undefined;
2304
2305
  reviewedBy?: string | undefined;
2305
2306
  reviewNotes?: string | undefined;
2306
- accountId: string;
2307
2307
  registrationNumber?: string | undefined;
2308
2308
  registrationDocument?: string | undefined;
2309
2309
  contactEmail?: string | undefined;
@@ -2397,15 +2397,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2397
2397
  verifiedAt?: Date | undefined;
2398
2398
  notes?: string | undefined;
2399
2399
  }[];
2400
+ accountId: string;
2401
+ createdAt: Date;
2400
2402
  firebaseUid?: string | undefined;
2401
2403
  tenantId?: string | undefined;
2402
- createdAt: Date;
2403
2404
  updatedAt: Date;
2404
2405
  _id: string;
2405
2406
  reviewedAt?: Date | undefined;
2406
2407
  reviewedBy?: string | undefined;
2407
2408
  reviewNotes?: string | undefined;
2408
- accountId: string;
2409
2409
  registrationNumber?: string | undefined;
2410
2410
  registrationDocument?: string | undefined;
2411
2411
  contactEmail?: string | undefined;
@@ -2478,14 +2478,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2478
2478
  verifiedAt?: Date | undefined;
2479
2479
  notes?: string | undefined;
2480
2480
  }[];
2481
+ accountId: string;
2482
+ createdAt: Date;
2481
2483
  firebaseUid?: string | undefined;
2482
2484
  tenantId?: string | undefined;
2483
- createdAt: Date;
2484
2485
  updatedAt: Date;
2485
2486
  reviewedAt?: Date | undefined;
2486
2487
  reviewedBy?: string | undefined;
2487
2488
  reviewNotes?: string | undefined;
2488
- accountId: string;
2489
2489
  registrationNumber?: string | undefined;
2490
2490
  registrationDocument?: string | undefined;
2491
2491
  contactEmail?: string | undefined;
@@ -2579,15 +2579,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2579
2579
  verifiedAt?: Date | undefined;
2580
2580
  notes?: string | undefined;
2581
2581
  }[];
2582
+ accountId: string;
2583
+ createdAt: Date;
2582
2584
  firebaseUid?: string | undefined;
2583
2585
  tenantId?: string | undefined;
2584
- createdAt: Date;
2585
2586
  updatedAt: Date;
2586
2587
  _id: string;
2587
2588
  reviewedAt?: Date | undefined;
2588
2589
  reviewedBy?: string | undefined;
2589
2590
  reviewNotes?: string | undefined;
2590
- accountId: string;
2591
2591
  registrationNumber?: string | undefined;
2592
2592
  registrationDocument?: string | undefined;
2593
2593
  contactEmail?: string | undefined;
@@ -2660,14 +2660,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2660
2660
  verifiedAt?: Date | undefined;
2661
2661
  notes?: string | undefined;
2662
2662
  }[];
2663
+ accountId: string;
2664
+ createdAt: Date;
2663
2665
  firebaseUid?: string | undefined;
2664
2666
  tenantId?: string | undefined;
2665
- createdAt: Date;
2666
2667
  updatedAt: Date;
2667
2668
  reviewedAt?: Date | undefined;
2668
2669
  reviewedBy?: string | undefined;
2669
2670
  reviewNotes?: string | undefined;
2670
- accountId: string;
2671
2671
  registrationNumber?: string | undefined;
2672
2672
  registrationDocument?: string | undefined;
2673
2673
  contactEmail?: string | undefined;
@@ -2760,14 +2760,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2760
2760
  verifiedAt?: Date | undefined;
2761
2761
  notes?: string | undefined;
2762
2762
  }[];
2763
+ accountId: string;
2764
+ createdAt: Date;
2763
2765
  firebaseUid?: string | undefined;
2764
2766
  tenantId?: string | undefined;
2765
- createdAt: Date;
2766
2767
  updatedAt: Date;
2767
2768
  reviewedAt?: Date | undefined;
2768
2769
  reviewedBy?: string | undefined;
2769
2770
  reviewNotes?: string | undefined;
2770
- accountId: string;
2771
2771
  registrationNumber?: string | undefined;
2772
2772
  registrationDocument?: string | undefined;
2773
2773
  contactEmail?: string | undefined;
@@ -2840,14 +2840,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2840
2840
  verifiedAt?: Date | undefined;
2841
2841
  notes?: string | undefined;
2842
2842
  }[];
2843
+ accountId: string;
2844
+ createdAt: Date;
2843
2845
  firebaseUid?: string | undefined;
2844
2846
  tenantId?: string | undefined;
2845
- createdAt: Date;
2846
2847
  updatedAt: Date;
2847
2848
  reviewedAt?: Date | undefined;
2848
2849
  reviewedBy?: string | undefined;
2849
2850
  reviewNotes?: string | undefined;
2850
- accountId: string;
2851
2851
  registrationNumber?: string | undefined;
2852
2852
  registrationDocument?: string | undefined;
2853
2853
  contactEmail?: string | undefined;
@@ -2920,14 +2920,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2920
2920
  verifiedAt?: Date | undefined;
2921
2921
  notes?: string | undefined;
2922
2922
  }[];
2923
+ accountId: string;
2924
+ createdAt: Date;
2923
2925
  firebaseUid?: string | undefined;
2924
2926
  tenantId?: string | undefined;
2925
- createdAt: Date;
2926
2927
  updatedAt: Date;
2927
2928
  reviewedAt?: Date | undefined;
2928
2929
  reviewedBy?: string | undefined;
2929
2930
  reviewNotes?: string | undefined;
2930
- accountId: string;
2931
2931
  registrationNumber?: string | undefined;
2932
2932
  registrationDocument?: string | undefined;
2933
2933
  contactEmail?: string | undefined;
@@ -2999,14 +2999,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
2999
2999
  verifiedAt?: Date | undefined;
3000
3000
  notes?: string | undefined;
3001
3001
  }[];
3002
+ accountId: string;
3003
+ createdAt: Date;
3002
3004
  firebaseUid?: string | undefined;
3003
3005
  tenantId?: string | undefined;
3004
- createdAt: Date;
3005
3006
  updatedAt: Date;
3006
3007
  reviewedAt?: Date | undefined;
3007
3008
  reviewedBy?: string | undefined;
3008
3009
  reviewNotes?: string | undefined;
3009
- accountId: string;
3010
3010
  registrationNumber?: string | undefined;
3011
3011
  registrationDocument?: string | undefined;
3012
3012
  contactEmail?: string | undefined;
@@ -3096,15 +3096,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3096
3096
  verifiedAt?: Date | undefined;
3097
3097
  notes?: string | undefined;
3098
3098
  }[];
3099
+ accountId: string;
3100
+ createdAt: Date;
3099
3101
  firebaseUid?: string | undefined;
3100
3102
  tenantId?: string | undefined;
3101
- createdAt: Date;
3102
3103
  updatedAt: Date;
3103
3104
  _id: string;
3104
3105
  reviewedAt?: Date | undefined;
3105
3106
  reviewedBy?: string | undefined;
3106
3107
  reviewNotes?: string | undefined;
3107
- accountId: string;
3108
3108
  registrationNumber?: string | undefined;
3109
3109
  registrationDocument?: string | undefined;
3110
3110
  contactEmail?: string | undefined;
@@ -3178,15 +3178,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3178
3178
  verifiedAt?: Date | undefined;
3179
3179
  notes?: string | undefined;
3180
3180
  }[];
3181
+ accountId: string;
3182
+ createdAt: Date;
3181
3183
  firebaseUid?: string | undefined;
3182
3184
  tenantId?: string | undefined;
3183
- createdAt: Date;
3184
3185
  updatedAt: Date;
3185
3186
  _id: string;
3186
3187
  reviewedAt?: Date | undefined;
3187
3188
  reviewedBy?: string | undefined;
3188
3189
  reviewNotes?: string | undefined;
3189
- accountId: string;
3190
3190
  registrationNumber?: string | undefined;
3191
3191
  registrationDocument?: string | undefined;
3192
3192
  contactEmail?: string | undefined;
@@ -3268,15 +3268,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3268
3268
  verifiedAt?: Date | undefined;
3269
3269
  notes?: string | undefined;
3270
3270
  }[];
3271
+ accountId: string;
3272
+ createdAt: Date;
3271
3273
  firebaseUid?: string | undefined;
3272
3274
  tenantId?: string | undefined;
3273
- createdAt: Date;
3274
3275
  updatedAt: Date;
3275
3276
  _id: string;
3276
3277
  reviewedAt?: Date | undefined;
3277
3278
  reviewedBy?: string | undefined;
3278
3279
  reviewNotes?: string | undefined;
3279
- accountId: string;
3280
3280
  registrationNumber?: string | undefined;
3281
3281
  registrationDocument?: string | undefined;
3282
3282
  contactEmail?: string | undefined;
@@ -3357,15 +3357,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3357
3357
  verifiedAt?: Date | undefined;
3358
3358
  notes?: string | undefined;
3359
3359
  }[];
3360
+ accountId: string;
3361
+ createdAt: Date;
3360
3362
  firebaseUid?: string | undefined;
3361
3363
  tenantId?: string | undefined;
3362
- createdAt: Date;
3363
3364
  updatedAt: Date;
3364
3365
  _id: string;
3365
3366
  reviewedAt?: Date | undefined;
3366
3367
  reviewedBy?: string | undefined;
3367
3368
  reviewNotes?: string | undefined;
3368
- accountId: string;
3369
3369
  registrationNumber?: string | undefined;
3370
3370
  registrationDocument?: string | undefined;
3371
3371
  contactEmail?: string | undefined;
@@ -3437,15 +3437,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3437
3437
  verifiedAt?: Date | undefined;
3438
3438
  notes?: string | undefined;
3439
3439
  }[];
3440
+ accountId: string;
3441
+ createdAt: Date;
3440
3442
  firebaseUid?: string | undefined;
3441
3443
  tenantId?: string | undefined;
3442
- createdAt: Date;
3443
3444
  updatedAt: Date;
3444
3445
  _id: string;
3445
3446
  reviewedAt?: Date | undefined;
3446
3447
  reviewedBy?: string | undefined;
3447
3448
  reviewNotes?: string | undefined;
3448
- accountId: string;
3449
3449
  registrationNumber?: string | undefined;
3450
3450
  registrationDocument?: string | undefined;
3451
3451
  contactEmail?: string | undefined;
@@ -3583,15 +3583,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3583
3583
  verifiedAt?: Date | undefined;
3584
3584
  notes?: string | undefined;
3585
3585
  }[];
3586
+ accountId: string;
3587
+ createdAt: Date;
3586
3588
  firebaseUid?: string | undefined;
3587
3589
  tenantId?: string | undefined;
3588
- createdAt: Date;
3589
3590
  updatedAt: Date;
3590
3591
  _id: string;
3591
3592
  reviewedAt?: Date | undefined;
3592
3593
  reviewedBy?: string | undefined;
3593
3594
  reviewNotes?: string | undefined;
3594
- accountId: string;
3595
3595
  registrationNumber?: string | undefined;
3596
3596
  registrationDocument?: string | undefined;
3597
3597
  contactEmail?: string | undefined;
@@ -3664,14 +3664,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3664
3664
  verifiedAt?: Date | undefined;
3665
3665
  notes?: string | undefined;
3666
3666
  }[];
3667
+ accountId: string;
3668
+ createdAt: Date;
3667
3669
  firebaseUid?: string | undefined;
3668
3670
  tenantId?: string | undefined;
3669
- createdAt: Date;
3670
3671
  updatedAt: Date;
3671
3672
  reviewedAt?: Date | undefined;
3672
3673
  reviewedBy?: string | undefined;
3673
3674
  reviewNotes?: string | undefined;
3674
- accountId: string;
3675
3675
  registrationNumber?: string | undefined;
3676
3676
  registrationDocument?: string | undefined;
3677
3677
  contactEmail?: string | undefined;
@@ -3765,15 +3765,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3765
3765
  verifiedAt?: Date | undefined;
3766
3766
  notes?: string | undefined;
3767
3767
  }[];
3768
+ accountId: string;
3769
+ createdAt: Date;
3768
3770
  firebaseUid?: string | undefined;
3769
3771
  tenantId?: string | undefined;
3770
- createdAt: Date;
3771
3772
  updatedAt: Date;
3772
3773
  _id: string;
3773
3774
  reviewedAt?: Date | undefined;
3774
3775
  reviewedBy?: string | undefined;
3775
3776
  reviewNotes?: string | undefined;
3776
- accountId: string;
3777
3777
  registrationNumber?: string | undefined;
3778
3778
  registrationDocument?: string | undefined;
3779
3779
  contactEmail?: string | undefined;
@@ -3846,14 +3846,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3846
3846
  verifiedAt?: Date | undefined;
3847
3847
  notes?: string | undefined;
3848
3848
  }[];
3849
+ accountId: string;
3850
+ createdAt: Date;
3849
3851
  firebaseUid?: string | undefined;
3850
3852
  tenantId?: string | undefined;
3851
- createdAt: Date;
3852
3853
  updatedAt: Date;
3853
3854
  reviewedAt?: Date | undefined;
3854
3855
  reviewedBy?: string | undefined;
3855
3856
  reviewNotes?: string | undefined;
3856
- accountId: string;
3857
3857
  registrationNumber?: string | undefined;
3858
3858
  registrationDocument?: string | undefined;
3859
3859
  contactEmail?: string | undefined;
@@ -3947,15 +3947,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
3947
3947
  verifiedAt?: Date | undefined;
3948
3948
  notes?: string | undefined;
3949
3949
  }[];
3950
+ accountId: string;
3951
+ createdAt: Date;
3950
3952
  firebaseUid?: string | undefined;
3951
3953
  tenantId?: string | undefined;
3952
- createdAt: Date;
3953
3954
  updatedAt: Date;
3954
3955
  _id: string;
3955
3956
  reviewedAt?: Date | undefined;
3956
3957
  reviewedBy?: string | undefined;
3957
3958
  reviewNotes?: string | undefined;
3958
- accountId: string;
3959
3959
  registrationNumber?: string | undefined;
3960
3960
  registrationDocument?: string | undefined;
3961
3961
  contactEmail?: string | undefined;
@@ -4028,14 +4028,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4028
4028
  verifiedAt?: Date | undefined;
4029
4029
  notes?: string | undefined;
4030
4030
  }[];
4031
+ accountId: string;
4032
+ createdAt: Date;
4031
4033
  firebaseUid?: string | undefined;
4032
4034
  tenantId?: string | undefined;
4033
- createdAt: Date;
4034
4035
  updatedAt: Date;
4035
4036
  reviewedAt?: Date | undefined;
4036
4037
  reviewedBy?: string | undefined;
4037
4038
  reviewNotes?: string | undefined;
4038
- accountId: string;
4039
4039
  registrationNumber?: string | undefined;
4040
4040
  registrationDocument?: string | undefined;
4041
4041
  contactEmail?: string | undefined;
@@ -4129,15 +4129,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4129
4129
  verifiedAt?: Date | undefined;
4130
4130
  notes?: string | undefined;
4131
4131
  }[];
4132
+ accountId: string;
4133
+ createdAt: Date;
4132
4134
  firebaseUid?: string | undefined;
4133
4135
  tenantId?: string | undefined;
4134
- createdAt: Date;
4135
4136
  updatedAt: Date;
4136
4137
  _id: string;
4137
4138
  reviewedAt?: Date | undefined;
4138
4139
  reviewedBy?: string | undefined;
4139
4140
  reviewNotes?: string | undefined;
4140
- accountId: string;
4141
4141
  registrationNumber?: string | undefined;
4142
4142
  registrationDocument?: string | undefined;
4143
4143
  contactEmail?: string | undefined;
@@ -4210,14 +4210,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4210
4210
  verifiedAt?: Date | undefined;
4211
4211
  notes?: string | undefined;
4212
4212
  }[];
4213
+ accountId: string;
4214
+ createdAt: Date;
4213
4215
  firebaseUid?: string | undefined;
4214
4216
  tenantId?: string | undefined;
4215
- createdAt: Date;
4216
4217
  updatedAt: Date;
4217
4218
  reviewedAt?: Date | undefined;
4218
4219
  reviewedBy?: string | undefined;
4219
4220
  reviewNotes?: string | undefined;
4220
- accountId: string;
4221
4221
  registrationNumber?: string | undefined;
4222
4222
  registrationDocument?: string | undefined;
4223
4223
  contactEmail?: string | undefined;
@@ -4310,14 +4310,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4310
4310
  verifiedAt?: Date | undefined;
4311
4311
  notes?: string | undefined;
4312
4312
  }[];
4313
+ accountId: string;
4314
+ createdAt: Date;
4313
4315
  firebaseUid?: string | undefined;
4314
4316
  tenantId?: string | undefined;
4315
- createdAt: Date;
4316
4317
  updatedAt: Date;
4317
4318
  reviewedAt?: Date | undefined;
4318
4319
  reviewedBy?: string | undefined;
4319
4320
  reviewNotes?: string | undefined;
4320
- accountId: string;
4321
4321
  registrationNumber?: string | undefined;
4322
4322
  registrationDocument?: string | undefined;
4323
4323
  contactEmail?: string | undefined;
@@ -4390,14 +4390,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4390
4390
  verifiedAt?: Date | undefined;
4391
4391
  notes?: string | undefined;
4392
4392
  }[];
4393
+ accountId: string;
4394
+ createdAt: Date;
4393
4395
  firebaseUid?: string | undefined;
4394
4396
  tenantId?: string | undefined;
4395
- createdAt: Date;
4396
4397
  updatedAt: Date;
4397
4398
  reviewedAt?: Date | undefined;
4398
4399
  reviewedBy?: string | undefined;
4399
4400
  reviewNotes?: string | undefined;
4400
- accountId: string;
4401
4401
  registrationNumber?: string | undefined;
4402
4402
  registrationDocument?: string | undefined;
4403
4403
  contactEmail?: string | undefined;
@@ -4470,14 +4470,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4470
4470
  verifiedAt?: Date | undefined;
4471
4471
  notes?: string | undefined;
4472
4472
  }[];
4473
+ accountId: string;
4474
+ createdAt: Date;
4473
4475
  firebaseUid?: string | undefined;
4474
4476
  tenantId?: string | undefined;
4475
- createdAt: Date;
4476
4477
  updatedAt: Date;
4477
4478
  reviewedAt?: Date | undefined;
4478
4479
  reviewedBy?: string | undefined;
4479
4480
  reviewNotes?: string | undefined;
4480
- accountId: string;
4481
4481
  registrationNumber?: string | undefined;
4482
4482
  registrationDocument?: string | undefined;
4483
4483
  contactEmail?: string | undefined;
@@ -4549,14 +4549,14 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4549
4549
  verifiedAt?: Date | undefined;
4550
4550
  notes?: string | undefined;
4551
4551
  }[];
4552
+ accountId: string;
4553
+ createdAt: Date;
4552
4554
  firebaseUid?: string | undefined;
4553
4555
  tenantId?: string | undefined;
4554
- createdAt: Date;
4555
4556
  updatedAt: Date;
4556
4557
  reviewedAt?: Date | undefined;
4557
4558
  reviewedBy?: string | undefined;
4558
4559
  reviewNotes?: string | undefined;
4559
- accountId: string;
4560
4560
  registrationNumber?: string | undefined;
4561
4561
  registrationDocument?: string | undefined;
4562
4562
  contactEmail?: string | undefined;
@@ -4646,15 +4646,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4646
4646
  verifiedAt?: Date | undefined;
4647
4647
  notes?: string | undefined;
4648
4648
  }[];
4649
+ accountId: string;
4650
+ createdAt: Date;
4649
4651
  firebaseUid?: string | undefined;
4650
4652
  tenantId?: string | undefined;
4651
- createdAt: Date;
4652
4653
  updatedAt: Date;
4653
4654
  _id: string;
4654
4655
  reviewedAt?: Date | undefined;
4655
4656
  reviewedBy?: string | undefined;
4656
4657
  reviewNotes?: string | undefined;
4657
- accountId: string;
4658
4658
  registrationNumber?: string | undefined;
4659
4659
  registrationDocument?: string | undefined;
4660
4660
  contactEmail?: string | undefined;
@@ -4728,15 +4728,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4728
4728
  verifiedAt?: Date | undefined;
4729
4729
  notes?: string | undefined;
4730
4730
  }[];
4731
+ accountId: string;
4732
+ createdAt: Date;
4731
4733
  firebaseUid?: string | undefined;
4732
4734
  tenantId?: string | undefined;
4733
- createdAt: Date;
4734
4735
  updatedAt: Date;
4735
4736
  _id: string;
4736
4737
  reviewedAt?: Date | undefined;
4737
4738
  reviewedBy?: string | undefined;
4738
4739
  reviewNotes?: string | undefined;
4739
- accountId: string;
4740
4740
  registrationNumber?: string | undefined;
4741
4741
  registrationDocument?: string | undefined;
4742
4742
  contactEmail?: string | undefined;
@@ -4818,15 +4818,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4818
4818
  verifiedAt?: Date | undefined;
4819
4819
  notes?: string | undefined;
4820
4820
  }[];
4821
+ accountId: string;
4822
+ createdAt: Date;
4821
4823
  firebaseUid?: string | undefined;
4822
4824
  tenantId?: string | undefined;
4823
- createdAt: Date;
4824
4825
  updatedAt: Date;
4825
4826
  _id: string;
4826
4827
  reviewedAt?: Date | undefined;
4827
4828
  reviewedBy?: string | undefined;
4828
4829
  reviewNotes?: string | undefined;
4829
- accountId: string;
4830
4830
  registrationNumber?: string | undefined;
4831
4831
  registrationDocument?: string | undefined;
4832
4832
  contactEmail?: string | undefined;
@@ -4907,15 +4907,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4907
4907
  verifiedAt?: Date | undefined;
4908
4908
  notes?: string | undefined;
4909
4909
  }[];
4910
+ accountId: string;
4911
+ createdAt: Date;
4910
4912
  firebaseUid?: string | undefined;
4911
4913
  tenantId?: string | undefined;
4912
- createdAt: Date;
4913
4914
  updatedAt: Date;
4914
4915
  _id: string;
4915
4916
  reviewedAt?: Date | undefined;
4916
4917
  reviewedBy?: string | undefined;
4917
4918
  reviewNotes?: string | undefined;
4918
- accountId: string;
4919
4919
  registrationNumber?: string | undefined;
4920
4920
  registrationDocument?: string | undefined;
4921
4921
  contactEmail?: string | undefined;
@@ -4987,15 +4987,15 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
4987
4987
  verifiedAt?: Date | undefined;
4988
4988
  notes?: string | undefined;
4989
4989
  }[];
4990
+ accountId: string;
4991
+ createdAt: Date;
4990
4992
  firebaseUid?: string | undefined;
4991
4993
  tenantId?: string | undefined;
4992
- createdAt: Date;
4993
4994
  updatedAt: Date;
4994
4995
  _id: string;
4995
4996
  reviewedAt?: Date | undefined;
4996
4997
  reviewedBy?: string | undefined;
4997
4998
  reviewNotes?: string | undefined;
4998
- accountId: string;
4999
4999
  registrationNumber?: string | undefined;
5000
5000
  registrationDocument?: string | undefined;
5001
5001
  contactEmail?: string | undefined;
@@ -5098,7 +5098,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5098
5098
  id: string;
5099
5099
  }> | undefined;
5100
5100
  unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
5101
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): void;
5101
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(path: T): void;
5102
5102
  (path: string): void;
5103
5103
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5104
5104
  _id: string;
@@ -5183,7 +5183,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5183
5183
  id: string;
5184
5184
  }> | undefined;
5185
5185
  validate?: import("mongoose").SchemaDefinitionProperty<{
5186
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
5186
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
5187
5187
  (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
5188
5188
  (options: {
5189
5189
  pathsToSkip?: import("mongoose").pathsToSkip;
@@ -5224,7 +5224,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5224
5224
  pathsToSkip?: import("mongoose").pathsToSkip;
5225
5225
  [k: string]: any;
5226
5226
  }): import("mongoose").Error.ValidationError | null;
5227
- <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "firebaseUid" | "tenantId" | "createdAt" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "accountId" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
5227
+ <T extends "email" | "phone" | "description" | "status" | "location" | "trustLevel" | "rating" | "activeProfiles" | "successfulMatches" | "name" | "type" | "website" | "references" | "accountId" | "createdAt" | "firebaseUid" | "tenantId" | "updatedAt" | "_id" | "reviewedAt" | "reviewedBy" | "reviewNotes" | "registrationNumber" | "registrationDocument" | "contactEmail" | "contactPhone" | "logoUrl" | "socialMedia" | "serviceAreas" | "yearsInBusiness" | "documentsSubmitted" | "guaranteeStatement" | "rejectionReason" | "totalReviews" | "totalProfilesCreated" | "reportedCount" | "autoApproveProfiles" | "maxConcurrentChats" | "isTmc" | "teamMembers">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
5228
5228
  (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
5229
5229
  }, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5230
5230
  _id: string;
@@ -5660,7 +5660,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5660
5660
  } & {
5661
5661
  id: string;
5662
5662
  }> | undefined;
5663
- firebaseUid?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5663
+ accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5664
5664
  _id: string;
5665
5665
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5666
5666
  _id: string;
@@ -5691,7 +5691,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5691
5691
  } & {
5692
5692
  id: string;
5693
5693
  }> | undefined;
5694
- tenantId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5694
+ createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5695
5695
  _id: string;
5696
5696
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5697
5697
  _id: string;
@@ -5722,7 +5722,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5722
5722
  } & {
5723
5723
  id: string;
5724
5724
  }> | undefined;
5725
- createdAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5725
+ firebaseUid?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5726
5726
  _id: string;
5727
5727
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5728
5728
  _id: string;
@@ -5753,7 +5753,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5753
5753
  } & {
5754
5754
  id: string;
5755
5755
  }> | undefined;
5756
- updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5756
+ tenantId?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5757
5757
  _id: string;
5758
5758
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5759
5759
  _id: string;
@@ -5784,7 +5784,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5784
5784
  } & {
5785
5785
  id: string;
5786
5786
  }> | undefined;
5787
- reviewedAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5787
+ updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5788
5788
  _id: string;
5789
5789
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5790
5790
  _id: string;
@@ -5815,7 +5815,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5815
5815
  } & {
5816
5816
  id: string;
5817
5817
  }> | undefined;
5818
- reviewedBy?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5818
+ reviewedAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5819
5819
  _id: string;
5820
5820
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5821
5821
  _id: string;
@@ -5846,7 +5846,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5846
5846
  } & {
5847
5847
  id: string;
5848
5848
  }> | undefined;
5849
- reviewNotes?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5849
+ reviewedBy?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5850
5850
  _id: string;
5851
5851
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5852
5852
  _id: string;
@@ -5877,7 +5877,7 @@ export declare const CompanySchema: Schema<import("mongoose").Document<unknown,
5877
5877
  } & {
5878
5878
  id: string;
5879
5879
  }> | undefined;
5880
- accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5880
+ reviewNotes?: import("mongoose").SchemaDefinitionProperty<string | undefined, import("mongoose").Document<unknown, {}, Omit<ICompany, "id"> & {
5881
5881
  _id: string;
5882
5882
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<ICompany, "id"> & {
5883
5883
  _id: string;