@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 DisputeSchema: Schema<import("mongoose").Document<unknown,
1082
1082
  id: string;
1083
1083
  }> | undefined;
1084
1084
  get?: import("mongoose").SchemaDefinitionProperty<{
1085
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, type?: any, options?: any): (Omit<IDispute, "id"> & {
1085
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, type?: any, options?: any): (Omit<IDispute, "id"> & {
1086
1086
  _id: string;
1087
1087
  })[T];
1088
1088
  (path: string, type?: any, options?: any): any;
@@ -1241,7 +1241,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1241
1241
  id: string;
1242
1242
  }> | undefined;
1243
1243
  invalidate?: import("mongoose").SchemaDefinitionProperty<{
1244
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, errorMsg: string | NativeError, value?: any, kind?: string): NativeError | null;
1244
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(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<IDispute, "id"> & {
1247
1247
  _id: string;
@@ -1275,7 +1275,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1275
1275
  id: string;
1276
1276
  }> | undefined;
1277
1277
  isDirectModified?: import("mongoose").SchemaDefinitionProperty<{
1278
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T | T[]): boolean;
1278
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T | T[]): boolean;
1279
1279
  (path: string | Array<string>): boolean;
1280
1280
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
1281
1281
  _id: string;
@@ -1309,7 +1309,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1309
1309
  id: string;
1310
1310
  }> | undefined;
1311
1311
  isDirectSelected?: import("mongoose").SchemaDefinitionProperty<{
1312
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): boolean;
1312
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): boolean;
1313
1313
  (path: string): boolean;
1314
1314
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
1315
1315
  _id: string;
@@ -1343,7 +1343,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1343
1343
  id: string;
1344
1344
  }> | undefined;
1345
1345
  isInit?: import("mongoose").SchemaDefinitionProperty<{
1346
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): boolean;
1346
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): boolean;
1347
1347
  (path: string): boolean;
1348
1348
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
1349
1349
  _id: string;
@@ -1377,7 +1377,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1377
1377
  id: string;
1378
1378
  }> | undefined;
1379
1379
  isModified?: import("mongoose").SchemaDefinitionProperty<{
1380
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path?: T | T[] | undefined, options?: {
1380
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(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 DisputeSchema: Schema<import("mongoose").Document<unknown,
1446
1446
  id: string;
1447
1447
  }> | undefined;
1448
1448
  isSelected?: import("mongoose").SchemaDefinitionProperty<{
1449
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): boolean;
1449
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): boolean;
1450
1450
  (path: string): boolean;
1451
1451
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
1452
1452
  _id: string;
@@ -1480,7 +1480,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1480
1480
  id: string;
1481
1481
  }> | undefined;
1482
1482
  markModified?: import("mongoose").SchemaDefinitionProperty<{
1483
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, scope?: any): void;
1483
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, scope?: any): void;
1484
1484
  (path: string, scope?: any): void;
1485
1485
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
1486
1486
  _id: string;
@@ -1919,7 +1919,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
1919
1919
  id: string;
1920
1920
  }> | undefined;
1921
1921
  set?: import("mongoose").SchemaDefinitionProperty<{
1922
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, val: (Omit<IDispute, "id"> & {
1922
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T, val: (Omit<IDispute, "id"> & {
1923
1923
  _id: string;
1924
1924
  })[T], type: any, options?: import("mongoose").DocumentSetOptions): import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
1925
1925
  _id: string;
@@ -2008,12 +2008,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2008
2008
  status: DisputeStatus;
2009
2009
  currency: string;
2010
2010
  category: import("../index.js").DisputeCategory;
2011
- companyId: string;
2011
+ accountId: string;
2012
2012
  createdAt: Date;
2013
+ companyId: string;
2013
2014
  updatedAt: Date;
2014
2015
  _id: string;
2015
2016
  contractId: string;
2016
- accountId: string;
2017
2017
  escrowId: string;
2018
2018
  respondentAccountId?: string | undefined;
2019
2019
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2069,11 +2069,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2069
2069
  status: DisputeStatus;
2070
2070
  currency: string;
2071
2071
  category: import("../index.js").DisputeCategory;
2072
- companyId: string;
2072
+ accountId: string;
2073
2073
  createdAt: Date;
2074
+ companyId: string;
2074
2075
  updatedAt: Date;
2075
2076
  contractId: string;
2076
- accountId: string;
2077
2077
  escrowId: string;
2078
2078
  respondentAccountId?: string | undefined;
2079
2079
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2150,12 +2150,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2150
2150
  status: DisputeStatus;
2151
2151
  currency: string;
2152
2152
  category: import("../index.js").DisputeCategory;
2153
- companyId: string;
2153
+ accountId: string;
2154
2154
  createdAt: Date;
2155
+ companyId: string;
2155
2156
  updatedAt: Date;
2156
2157
  _id: string;
2157
2158
  contractId: string;
2158
- accountId: string;
2159
2159
  escrowId: string;
2160
2160
  respondentAccountId?: string | undefined;
2161
2161
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2211,11 +2211,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2211
2211
  status: DisputeStatus;
2212
2212
  currency: string;
2213
2213
  category: import("../index.js").DisputeCategory;
2214
- companyId: string;
2214
+ accountId: string;
2215
2215
  createdAt: Date;
2216
+ companyId: string;
2216
2217
  updatedAt: Date;
2217
2218
  contractId: string;
2218
- accountId: string;
2219
2219
  escrowId: string;
2220
2220
  respondentAccountId?: string | undefined;
2221
2221
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2292,12 +2292,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2292
2292
  status: DisputeStatus;
2293
2293
  currency: string;
2294
2294
  category: import("../index.js").DisputeCategory;
2295
- companyId: string;
2295
+ accountId: string;
2296
2296
  createdAt: Date;
2297
+ companyId: string;
2297
2298
  updatedAt: Date;
2298
2299
  _id: string;
2299
2300
  contractId: string;
2300
- accountId: string;
2301
2301
  escrowId: string;
2302
2302
  respondentAccountId?: string | undefined;
2303
2303
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2353,11 +2353,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2353
2353
  status: DisputeStatus;
2354
2354
  currency: string;
2355
2355
  category: import("../index.js").DisputeCategory;
2356
- companyId: string;
2356
+ accountId: string;
2357
2357
  createdAt: Date;
2358
+ companyId: string;
2358
2359
  updatedAt: Date;
2359
2360
  contractId: string;
2360
- accountId: string;
2361
2361
  escrowId: string;
2362
2362
  respondentAccountId?: string | undefined;
2363
2363
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2434,12 +2434,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2434
2434
  status: DisputeStatus;
2435
2435
  currency: string;
2436
2436
  category: import("../index.js").DisputeCategory;
2437
- companyId: string;
2437
+ accountId: string;
2438
2438
  createdAt: Date;
2439
+ companyId: string;
2439
2440
  updatedAt: Date;
2440
2441
  _id: string;
2441
2442
  contractId: string;
2442
- accountId: string;
2443
2443
  escrowId: string;
2444
2444
  respondentAccountId?: string | undefined;
2445
2445
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2495,11 +2495,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2495
2495
  status: DisputeStatus;
2496
2496
  currency: string;
2497
2497
  category: import("../index.js").DisputeCategory;
2498
- companyId: string;
2498
+ accountId: string;
2499
2499
  createdAt: Date;
2500
+ companyId: string;
2500
2501
  updatedAt: Date;
2501
2502
  contractId: string;
2502
- accountId: string;
2503
2503
  escrowId: string;
2504
2504
  respondentAccountId?: string | undefined;
2505
2505
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2575,11 +2575,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2575
2575
  status: DisputeStatus;
2576
2576
  currency: string;
2577
2577
  category: import("../index.js").DisputeCategory;
2578
- companyId: string;
2578
+ accountId: string;
2579
2579
  createdAt: Date;
2580
+ companyId: string;
2580
2581
  updatedAt: Date;
2581
2582
  contractId: string;
2582
- accountId: string;
2583
2583
  escrowId: string;
2584
2584
  respondentAccountId?: string | undefined;
2585
2585
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2635,11 +2635,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2635
2635
  status: DisputeStatus;
2636
2636
  currency: string;
2637
2637
  category: import("../index.js").DisputeCategory;
2638
- companyId: string;
2638
+ accountId: string;
2639
2639
  createdAt: Date;
2640
+ companyId: string;
2640
2641
  updatedAt: Date;
2641
2642
  contractId: string;
2642
- accountId: string;
2643
2643
  escrowId: string;
2644
2644
  respondentAccountId?: string | undefined;
2645
2645
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2695,11 +2695,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2695
2695
  status: DisputeStatus;
2696
2696
  currency: string;
2697
2697
  category: import("../index.js").DisputeCategory;
2698
- companyId: string;
2698
+ accountId: string;
2699
2699
  createdAt: Date;
2700
+ companyId: string;
2700
2701
  updatedAt: Date;
2701
2702
  contractId: string;
2702
- accountId: string;
2703
2703
  escrowId: string;
2704
2704
  respondentAccountId?: string | undefined;
2705
2705
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2754,11 +2754,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2754
2754
  status: DisputeStatus;
2755
2755
  currency: string;
2756
2756
  category: import("../index.js").DisputeCategory;
2757
- companyId: string;
2757
+ accountId: string;
2758
2758
  createdAt: Date;
2759
+ companyId: string;
2759
2760
  updatedAt: Date;
2760
2761
  contractId: string;
2761
- accountId: string;
2762
2762
  escrowId: string;
2763
2763
  respondentAccountId?: string | undefined;
2764
2764
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2831,12 +2831,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2831
2831
  status: DisputeStatus;
2832
2832
  currency: string;
2833
2833
  category: import("../index.js").DisputeCategory;
2834
- companyId: string;
2834
+ accountId: string;
2835
2835
  createdAt: Date;
2836
+ companyId: string;
2836
2837
  updatedAt: Date;
2837
2838
  _id: string;
2838
2839
  contractId: string;
2839
- accountId: string;
2840
2840
  escrowId: string;
2841
2841
  respondentAccountId?: string | undefined;
2842
2842
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2893,12 +2893,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2893
2893
  status: DisputeStatus;
2894
2894
  currency: string;
2895
2895
  category: import("../index.js").DisputeCategory;
2896
- companyId: string;
2896
+ accountId: string;
2897
2897
  createdAt: Date;
2898
+ companyId: string;
2898
2899
  updatedAt: Date;
2899
2900
  _id: string;
2900
2901
  contractId: string;
2901
- accountId: string;
2902
2902
  escrowId: string;
2903
2903
  respondentAccountId?: string | undefined;
2904
2904
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -2963,12 +2963,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
2963
2963
  status: DisputeStatus;
2964
2964
  currency: string;
2965
2965
  category: import("../index.js").DisputeCategory;
2966
- companyId: string;
2966
+ accountId: string;
2967
2967
  createdAt: Date;
2968
+ companyId: string;
2968
2969
  updatedAt: Date;
2969
2970
  _id: string;
2970
2971
  contractId: string;
2971
- accountId: string;
2972
2972
  escrowId: string;
2973
2973
  respondentAccountId?: string | undefined;
2974
2974
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3032,12 +3032,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3032
3032
  status: DisputeStatus;
3033
3033
  currency: string;
3034
3034
  category: import("../index.js").DisputeCategory;
3035
- companyId: string;
3035
+ accountId: string;
3036
3036
  createdAt: Date;
3037
+ companyId: string;
3037
3038
  updatedAt: Date;
3038
3039
  _id: string;
3039
3040
  contractId: string;
3040
- accountId: string;
3041
3041
  escrowId: string;
3042
3042
  respondentAccountId?: string | undefined;
3043
3043
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3092,12 +3092,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3092
3092
  status: DisputeStatus;
3093
3093
  currency: string;
3094
3094
  category: import("../index.js").DisputeCategory;
3095
- companyId: string;
3095
+ accountId: string;
3096
3096
  createdAt: Date;
3097
+ companyId: string;
3097
3098
  updatedAt: Date;
3098
3099
  _id: string;
3099
3100
  contractId: string;
3100
- accountId: string;
3101
3101
  escrowId: string;
3102
3102
  respondentAccountId?: string | undefined;
3103
3103
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3218,12 +3218,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3218
3218
  status: DisputeStatus;
3219
3219
  currency: string;
3220
3220
  category: import("../index.js").DisputeCategory;
3221
- companyId: string;
3221
+ accountId: string;
3222
3222
  createdAt: Date;
3223
+ companyId: string;
3223
3224
  updatedAt: Date;
3224
3225
  _id: string;
3225
3226
  contractId: string;
3226
- accountId: string;
3227
3227
  escrowId: string;
3228
3228
  respondentAccountId?: string | undefined;
3229
3229
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3279,11 +3279,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3279
3279
  status: DisputeStatus;
3280
3280
  currency: string;
3281
3281
  category: import("../index.js").DisputeCategory;
3282
- companyId: string;
3282
+ accountId: string;
3283
3283
  createdAt: Date;
3284
+ companyId: string;
3284
3285
  updatedAt: Date;
3285
3286
  contractId: string;
3286
- accountId: string;
3287
3287
  escrowId: string;
3288
3288
  respondentAccountId?: string | undefined;
3289
3289
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3360,12 +3360,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3360
3360
  status: DisputeStatus;
3361
3361
  currency: string;
3362
3362
  category: import("../index.js").DisputeCategory;
3363
- companyId: string;
3363
+ accountId: string;
3364
3364
  createdAt: Date;
3365
+ companyId: string;
3365
3366
  updatedAt: Date;
3366
3367
  _id: string;
3367
3368
  contractId: string;
3368
- accountId: string;
3369
3369
  escrowId: string;
3370
3370
  respondentAccountId?: string | undefined;
3371
3371
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3421,11 +3421,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3421
3421
  status: DisputeStatus;
3422
3422
  currency: string;
3423
3423
  category: import("../index.js").DisputeCategory;
3424
- companyId: string;
3424
+ accountId: string;
3425
3425
  createdAt: Date;
3426
+ companyId: string;
3426
3427
  updatedAt: Date;
3427
3428
  contractId: string;
3428
- accountId: string;
3429
3429
  escrowId: string;
3430
3430
  respondentAccountId?: string | undefined;
3431
3431
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3502,12 +3502,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3502
3502
  status: DisputeStatus;
3503
3503
  currency: string;
3504
3504
  category: import("../index.js").DisputeCategory;
3505
- companyId: string;
3505
+ accountId: string;
3506
3506
  createdAt: Date;
3507
+ companyId: string;
3507
3508
  updatedAt: Date;
3508
3509
  _id: string;
3509
3510
  contractId: string;
3510
- accountId: string;
3511
3511
  escrowId: string;
3512
3512
  respondentAccountId?: string | undefined;
3513
3513
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3563,11 +3563,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3563
3563
  status: DisputeStatus;
3564
3564
  currency: string;
3565
3565
  category: import("../index.js").DisputeCategory;
3566
- companyId: string;
3566
+ accountId: string;
3567
3567
  createdAt: Date;
3568
+ companyId: string;
3568
3569
  updatedAt: Date;
3569
3570
  contractId: string;
3570
- accountId: string;
3571
3571
  escrowId: string;
3572
3572
  respondentAccountId?: string | undefined;
3573
3573
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3644,12 +3644,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3644
3644
  status: DisputeStatus;
3645
3645
  currency: string;
3646
3646
  category: import("../index.js").DisputeCategory;
3647
- companyId: string;
3647
+ accountId: string;
3648
3648
  createdAt: Date;
3649
+ companyId: string;
3649
3650
  updatedAt: Date;
3650
3651
  _id: string;
3651
3652
  contractId: string;
3652
- accountId: string;
3653
3653
  escrowId: string;
3654
3654
  respondentAccountId?: string | undefined;
3655
3655
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3705,11 +3705,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3705
3705
  status: DisputeStatus;
3706
3706
  currency: string;
3707
3707
  category: import("../index.js").DisputeCategory;
3708
- companyId: string;
3708
+ accountId: string;
3709
3709
  createdAt: Date;
3710
+ companyId: string;
3710
3711
  updatedAt: Date;
3711
3712
  contractId: string;
3712
- accountId: string;
3713
3713
  escrowId: string;
3714
3714
  respondentAccountId?: string | undefined;
3715
3715
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3785,11 +3785,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3785
3785
  status: DisputeStatus;
3786
3786
  currency: string;
3787
3787
  category: import("../index.js").DisputeCategory;
3788
- companyId: string;
3788
+ accountId: string;
3789
3789
  createdAt: Date;
3790
+ companyId: string;
3790
3791
  updatedAt: Date;
3791
3792
  contractId: string;
3792
- accountId: string;
3793
3793
  escrowId: string;
3794
3794
  respondentAccountId?: string | undefined;
3795
3795
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3845,11 +3845,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3845
3845
  status: DisputeStatus;
3846
3846
  currency: string;
3847
3847
  category: import("../index.js").DisputeCategory;
3848
- companyId: string;
3848
+ accountId: string;
3849
3849
  createdAt: Date;
3850
+ companyId: string;
3850
3851
  updatedAt: Date;
3851
3852
  contractId: string;
3852
- accountId: string;
3853
3853
  escrowId: string;
3854
3854
  respondentAccountId?: string | undefined;
3855
3855
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3905,11 +3905,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3905
3905
  status: DisputeStatus;
3906
3906
  currency: string;
3907
3907
  category: import("../index.js").DisputeCategory;
3908
- companyId: string;
3908
+ accountId: string;
3909
3909
  createdAt: Date;
3910
+ companyId: string;
3910
3911
  updatedAt: Date;
3911
3912
  contractId: string;
3912
- accountId: string;
3913
3913
  escrowId: string;
3914
3914
  respondentAccountId?: string | undefined;
3915
3915
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -3964,11 +3964,11 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
3964
3964
  status: DisputeStatus;
3965
3965
  currency: string;
3966
3966
  category: import("../index.js").DisputeCategory;
3967
- companyId: string;
3967
+ accountId: string;
3968
3968
  createdAt: Date;
3969
+ companyId: string;
3969
3970
  updatedAt: Date;
3970
3971
  contractId: string;
3971
- accountId: string;
3972
3972
  escrowId: string;
3973
3973
  respondentAccountId?: string | undefined;
3974
3974
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -4041,12 +4041,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4041
4041
  status: DisputeStatus;
4042
4042
  currency: string;
4043
4043
  category: import("../index.js").DisputeCategory;
4044
- companyId: string;
4044
+ accountId: string;
4045
4045
  createdAt: Date;
4046
+ companyId: string;
4046
4047
  updatedAt: Date;
4047
4048
  _id: string;
4048
4049
  contractId: string;
4049
- accountId: string;
4050
4050
  escrowId: string;
4051
4051
  respondentAccountId?: string | undefined;
4052
4052
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -4103,12 +4103,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4103
4103
  status: DisputeStatus;
4104
4104
  currency: string;
4105
4105
  category: import("../index.js").DisputeCategory;
4106
- companyId: string;
4106
+ accountId: string;
4107
4107
  createdAt: Date;
4108
+ companyId: string;
4108
4109
  updatedAt: Date;
4109
4110
  _id: string;
4110
4111
  contractId: string;
4111
- accountId: string;
4112
4112
  escrowId: string;
4113
4113
  respondentAccountId?: string | undefined;
4114
4114
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -4173,12 +4173,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4173
4173
  status: DisputeStatus;
4174
4174
  currency: string;
4175
4175
  category: import("../index.js").DisputeCategory;
4176
- companyId: string;
4176
+ accountId: string;
4177
4177
  createdAt: Date;
4178
+ companyId: string;
4178
4179
  updatedAt: Date;
4179
4180
  _id: string;
4180
4181
  contractId: string;
4181
- accountId: string;
4182
4182
  escrowId: string;
4183
4183
  respondentAccountId?: string | undefined;
4184
4184
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -4242,12 +4242,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4242
4242
  status: DisputeStatus;
4243
4243
  currency: string;
4244
4244
  category: import("../index.js").DisputeCategory;
4245
- companyId: string;
4245
+ accountId: string;
4246
4246
  createdAt: Date;
4247
+ companyId: string;
4247
4248
  updatedAt: Date;
4248
4249
  _id: string;
4249
4250
  contractId: string;
4250
- accountId: string;
4251
4251
  escrowId: string;
4252
4252
  respondentAccountId?: string | undefined;
4253
4253
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -4302,12 +4302,12 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4302
4302
  status: DisputeStatus;
4303
4303
  currency: string;
4304
4304
  category: import("../index.js").DisputeCategory;
4305
- companyId: string;
4305
+ accountId: string;
4306
4306
  createdAt: Date;
4307
+ companyId: string;
4307
4308
  updatedAt: Date;
4308
4309
  _id: string;
4309
4310
  contractId: string;
4310
- accountId: string;
4311
4311
  escrowId: string;
4312
4312
  respondentAccountId?: string | undefined;
4313
4313
  initiatedBy: import("../index.js").DisputeInitiatedBy;
@@ -4417,7 +4417,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4417
4417
  id: string;
4418
4418
  }> | undefined;
4419
4419
  unmarkModified?: import("mongoose").SchemaDefinitionProperty<{
4420
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): void;
4420
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(path: T): void;
4421
4421
  (path: string): void;
4422
4422
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4423
4423
  _id: string;
@@ -4502,7 +4502,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4502
4502
  id: string;
4503
4503
  }> | undefined;
4504
4504
  validate?: import("mongoose").SchemaDefinitionProperty<{
4505
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
4505
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): Promise<void>;
4506
4506
  (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): Promise<void>;
4507
4507
  (options: {
4508
4508
  pathsToSkip?: import("mongoose").pathsToSkip;
@@ -4543,7 +4543,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4543
4543
  pathsToSkip?: import("mongoose").pathsToSkip;
4544
4544
  [k: string]: any;
4545
4545
  }): import("mongoose").Error.ValidationError | null;
4546
- <T extends "title" | "description" | "status" | "currency" | "category" | "companyId" | "createdAt" | "updatedAt" | "_id" | "contractId" | "accountId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
4546
+ <T extends "title" | "description" | "status" | "currency" | "category" | "accountId" | "createdAt" | "companyId" | "updatedAt" | "_id" | "contractId" | "escrowId" | "respondentAccountId" | "initiatedBy" | "initiatedAt" | "amountInDispute" | "currentPhase" | "phaseStartedAt" | "autoEscalateAt" | "phaseHistory" | "familyEvidenceSubmitted" | "companyEvidenceSubmitted" | "evidenceDeadline" | "proposedResolution" | "resolution" | "resolvedAt" | "resolvedBy" | "resolutionNotes" | "refundAmount" | "releaseAmount" | "assignedAdminId" | "assignedAt" | "adminNotes">(pathsToValidate?: T | T[] | undefined, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
4547
4547
  (pathsToValidate?: import("mongoose").pathsToValidate, options?: import("mongoose").AnyObject): import("mongoose").Error.ValidationError | null;
4548
4548
  }, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4549
4549
  _id: string;
@@ -4731,7 +4731,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4731
4731
  } & {
4732
4732
  id: string;
4733
4733
  }> | undefined;
4734
- companyId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4734
+ accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4735
4735
  _id: string;
4736
4736
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IDispute, "id"> & {
4737
4737
  _id: string;
@@ -4793,7 +4793,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4793
4793
  } & {
4794
4794
  id: string;
4795
4795
  }> | undefined;
4796
- updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4796
+ companyId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4797
4797
  _id: string;
4798
4798
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IDispute, "id"> & {
4799
4799
  _id: string;
@@ -4824,7 +4824,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4824
4824
  } & {
4825
4825
  id: string;
4826
4826
  }> | undefined;
4827
- contractId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4827
+ updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4828
4828
  _id: string;
4829
4829
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IDispute, "id"> & {
4830
4830
  _id: string;
@@ -4855,7 +4855,7 @@ export declare const DisputeSchema: Schema<import("mongoose").Document<unknown,
4855
4855
  } & {
4856
4856
  id: string;
4857
4857
  }> | undefined;
4858
- accountId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4858
+ contractId?: import("mongoose").SchemaDefinitionProperty<string, import("mongoose").Document<unknown, {}, Omit<IDispute, "id"> & {
4859
4859
  _id: string;
4860
4860
  }, {}, import("mongoose").DefaultSchemaOptions> & Omit<IDispute, "id"> & {
4861
4861
  _id: string;