@createiq/backend 1.0.64 → 1.0.66

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.
@@ -620,11 +620,6 @@ export type SchemaDto = {
620
620
  [key: string]: unknown;
621
621
  };
622
622
 
623
- export type NegotiationWatcherDto = {
624
- name?: PersonNameDto;
625
- email: string;
626
- };
627
-
628
623
  export type AccountCorrelationIdDto = {
629
624
  value: string;
630
625
  };
@@ -641,6 +636,7 @@ export type AnnouncementsDto = {
641
636
  };
642
637
 
643
638
  export type AuditEventCauseDto = {
639
+ unverifiedOneLinkEmail?: string;
644
640
  timestamp: string;
645
641
  role?: string;
646
642
  description: string;
@@ -770,7 +766,6 @@ export type PresetEventHistoryDto_EventByDto = {
770
766
  export type SignaturePagePartyNegotiationRole = 'initiator' | 'receiver' | 'moderator';
771
767
 
772
768
  export type PresetAuditEventDto = {
773
- auditEventId: string;
774
769
  timestamp: string;
775
770
  description?: string;
776
771
  requesterEmail?: string;
@@ -781,6 +776,8 @@ export type PresetAuditEventDto = {
781
776
  requesterLastName?: string;
782
777
  message: string;
783
778
  supportImpersonatorUserId?: string;
779
+ unverifiedOneLinkEmail?: string;
780
+ auditEventId: string;
784
781
  };
785
782
 
786
783
  export type PagingMetaDto = {
@@ -1518,7 +1515,6 @@ export type ExecutedNegotiationSummaryDto = {
1518
1515
  };
1519
1516
 
1520
1517
  export type NegotiationAuditTrailEventDto = {
1521
- auditEventId: string;
1522
1518
  timestamp: string;
1523
1519
  description?: string;
1524
1520
  requesterEmail?: string;
@@ -1529,6 +1525,8 @@ export type NegotiationAuditTrailEventDto = {
1529
1525
  requesterLastName?: string;
1530
1526
  message: string;
1531
1527
  supportImpersonatorUserId?: string;
1528
+ unverifiedOneLinkEmail?: string;
1529
+ auditEventId: string;
1532
1530
  negotiationVersion: MajorMinorDto;
1533
1531
  negotiationId: string;
1534
1532
  };
@@ -2397,11 +2395,6 @@ export type ProxiedAuthnRequestDto = {
2397
2395
  password: string;
2398
2396
  };
2399
2397
 
2400
- export type SubAccountWithIdAndNameDto = {
2401
- id: string;
2402
- name: string;
2403
- };
2404
-
2405
2398
  export type NegotiationAuditEventsDto = {
2406
2399
  auditEvents: Array<NegotiationAuditTrailEventDto>;
2407
2400
  };
@@ -2421,6 +2414,15 @@ export type AdminRevertNegotiationStateDto = {
2421
2414
  comment: string;
2422
2415
  };
2423
2416
 
2417
+ export type SubAccountWithIdAndNameDto = {
2418
+ id: string;
2419
+ name: string;
2420
+ };
2421
+
2422
+ export type NonUserWatchersDto = {
2423
+ watchers: Array<NonUserWatcherDto>;
2424
+ };
2425
+
2424
2426
  export type AuthEndpointsDto = {
2425
2427
  authn: string;
2426
2428
  oauthRefresh: string;
@@ -2710,6 +2712,10 @@ export type ComponentAnswerDto_DataEditor = {
2710
2712
  html: string;
2711
2713
  };
2712
2714
 
2715
+ export type UserWatchlistDto = {
2716
+ users: Array<UserDto>;
2717
+ };
2718
+
2713
2719
  export type AdminAccountDetailDto = {
2714
2720
  shortCode: string;
2715
2721
  advisorClients: Array<AccountAndSubAccountsDto>;
@@ -3700,6 +3706,11 @@ export type ReportGenerationRequestDto = {
3700
3706
  timeZone?: string;
3701
3707
  };
3702
3708
 
3709
+ export type NonUserWatcherDto = {
3710
+ name?: PersonNameDto;
3711
+ email: string;
3712
+ };
3713
+
3703
3714
  export type ElectionDto = {
3704
3715
  readOnly?: boolean;
3705
3716
  description?: string;
@@ -3770,10 +3781,6 @@ export type AmendDefaultsDto = {
3770
3781
 
3771
3782
  export type DocumentPackAccess = 'required' | 'granted' | 'restricted';
3772
3783
 
3773
- export type NegotiationWatchersDto = {
3774
- watchers: Array<NegotiationWatcherDto>;
3775
- };
3776
-
3777
3784
  export type AccountNameDto = {
3778
3785
  accountName: string;
3779
3786
  };
@@ -4044,7 +4051,7 @@ export type getWatchersResponses = {
4044
4051
  /**
4045
4052
  * Watchers email addresses for a negotiation in a subaccount
4046
4053
  */
4047
- 200: NegotiationWatchersDto;
4054
+ 200: NonUserWatchersDto;
4048
4055
  };
4049
4056
 
4050
4057
  export type getWatchersResponse = getWatchersResponses[keyof getWatchersResponses];
@@ -4053,7 +4060,7 @@ export type addWatchersData = {
4053
4060
  /**
4054
4061
  * Watchers email addreeses to be added
4055
4062
  */
4056
- body: NegotiationWatchersDto;
4063
+ body: NonUserWatchersDto;
4057
4064
  path: {
4058
4065
  negotiationId: string;
4059
4066
  subAccountId: string;
@@ -4073,7 +4080,7 @@ export type addWatchersResponses = {
4073
4080
  /**
4074
4081
  * Watchers email addresses for a negotiation in a subaccount
4075
4082
  */
4076
- 200: NegotiationWatchersDto;
4083
+ 200: NonUserWatchersDto;
4077
4084
  };
4078
4085
 
4079
4086
  export type addWatchersResponse = addWatchersResponses[keyof addWatchersResponses];
@@ -6532,7 +6539,7 @@ export type removeWatchersData = {
6532
6539
  /**
6533
6540
  * Watchers email addreeses to be removed
6534
6541
  */
6535
- body: NegotiationWatchersDto;
6542
+ body: NonUserWatchersDto;
6536
6543
  path: {
6537
6544
  negotiationId: string;
6538
6545
  subAccountId: string;
@@ -6552,7 +6559,7 @@ export type removeWatchersResponses = {
6552
6559
  /**
6553
6560
  * Watchers email addresses for a negotiation in a subaccount
6554
6561
  */
6555
- 200: NegotiationWatchersDto;
6562
+ 200: NonUserWatchersDto;
6556
6563
  };
6557
6564
 
6558
6565
  export type removeWatchersResponse = removeWatchersResponses[keyof removeWatchersResponses];
package/dist/index.d.cts CHANGED
@@ -548,10 +548,6 @@ type DocumentState = 'draft' | 'private' | 'retired' | 'inherited';
548
548
  type SchemaDto = {
549
549
  [key: string]: unknown;
550
550
  };
551
- type NegotiationWatcherDto = {
552
- name?: PersonNameDto;
553
- email: string;
554
- };
555
551
  type AccountCorrelationIdDto = {
556
552
  value: string;
557
553
  };
@@ -564,6 +560,7 @@ type AnnouncementsDto = {
564
560
  announcements: Array<AnnouncementDto>;
565
561
  };
566
562
  type AuditEventCauseDto = {
563
+ unverifiedOneLinkEmail?: string;
567
564
  timestamp: string;
568
565
  role?: string;
569
566
  description: string;
@@ -673,7 +670,6 @@ type PresetEventHistoryDto_EventByDto = {
673
670
  };
674
671
  type SignaturePagePartyNegotiationRole = 'initiator' | 'receiver' | 'moderator';
675
672
  type PresetAuditEventDto = {
676
- auditEventId: string;
677
673
  timestamp: string;
678
674
  description?: string;
679
675
  requesterEmail?: string;
@@ -684,6 +680,8 @@ type PresetAuditEventDto = {
684
680
  requesterLastName?: string;
685
681
  message: string;
686
682
  supportImpersonatorUserId?: string;
683
+ unverifiedOneLinkEmail?: string;
684
+ auditEventId: string;
687
685
  };
688
686
  type PagingMetaDto = {
689
687
  firstIndex: number;
@@ -1327,7 +1325,6 @@ type ExecutedNegotiationSummaryDto = {
1327
1325
  };
1328
1326
  };
1329
1327
  type NegotiationAuditTrailEventDto = {
1330
- auditEventId: string;
1331
1328
  timestamp: string;
1332
1329
  description?: string;
1333
1330
  requesterEmail?: string;
@@ -1338,6 +1335,8 @@ type NegotiationAuditTrailEventDto = {
1338
1335
  requesterLastName?: string;
1339
1336
  message: string;
1340
1337
  supportImpersonatorUserId?: string;
1338
+ unverifiedOneLinkEmail?: string;
1339
+ auditEventId: string;
1341
1340
  negotiationVersion: MajorMinorDto;
1342
1341
  negotiationId: string;
1343
1342
  };
@@ -2072,10 +2071,6 @@ type ProxiedAuthnRequestDto = {
2072
2071
  username: string;
2073
2072
  password: string;
2074
2073
  };
2075
- type SubAccountWithIdAndNameDto = {
2076
- id: string;
2077
- name: string;
2078
- };
2079
2074
  type NegotiationAuditEventsDto = {
2080
2075
  auditEvents: Array<NegotiationAuditTrailEventDto>;
2081
2076
  };
@@ -2091,6 +2086,13 @@ type AccountSummaryWithSubAccountsDto = {
2091
2086
  type AdminRevertNegotiationStateDto = {
2092
2087
  comment: string;
2093
2088
  };
2089
+ type SubAccountWithIdAndNameDto = {
2090
+ id: string;
2091
+ name: string;
2092
+ };
2093
+ type NonUserWatchersDto = {
2094
+ watchers: Array<NonUserWatcherDto>;
2095
+ };
2094
2096
  type AuthEndpointsDto = {
2095
2097
  authn: string;
2096
2098
  oauthRefresh: string;
@@ -2336,6 +2338,9 @@ type ComponentAnswerDto_DataEditor = {
2336
2338
  }>>;
2337
2339
  html: string;
2338
2340
  };
2341
+ type UserWatchlistDto = {
2342
+ users: Array<UserDto>;
2343
+ };
2339
2344
  type AdminAccountDetailDto = {
2340
2345
  shortCode: string;
2341
2346
  advisorClients: Array<AccountAndSubAccountsDto>;
@@ -3204,6 +3209,10 @@ type ReportGenerationRequestDto = {
3204
3209
  documentIds?: Array<string>;
3205
3210
  timeZone?: string;
3206
3211
  };
3212
+ type NonUserWatcherDto = {
3213
+ name?: PersonNameDto;
3214
+ email: string;
3215
+ };
3207
3216
  type ElectionDto = {
3208
3217
  readOnly?: boolean;
3209
3218
  description?: string;
@@ -3265,9 +3274,6 @@ type AmendDefaultsDto = {
3265
3274
  };
3266
3275
  };
3267
3276
  type DocumentPackAccess = 'required' | 'granted' | 'restricted';
3268
- type NegotiationWatchersDto = {
3269
- watchers: Array<NegotiationWatcherDto>;
3270
- };
3271
3277
  type AccountNameDto = {
3272
3278
  accountName: string;
3273
3279
  };
@@ -3497,14 +3503,14 @@ type getWatchersResponses = {
3497
3503
  /**
3498
3504
  * Watchers email addresses for a negotiation in a subaccount
3499
3505
  */
3500
- 200: NegotiationWatchersDto;
3506
+ 200: NonUserWatchersDto;
3501
3507
  };
3502
3508
  type getWatchersResponse = getWatchersResponses[keyof getWatchersResponses];
3503
3509
  type addWatchersData = {
3504
3510
  /**
3505
3511
  * Watchers email addreeses to be added
3506
3512
  */
3507
- body: NegotiationWatchersDto;
3513
+ body: NonUserWatchersDto;
3508
3514
  path: {
3509
3515
  negotiationId: string;
3510
3516
  subAccountId: string;
@@ -3522,7 +3528,7 @@ type addWatchersResponses = {
3522
3528
  /**
3523
3529
  * Watchers email addresses for a negotiation in a subaccount
3524
3530
  */
3525
- 200: NegotiationWatchersDto;
3531
+ 200: NonUserWatchersDto;
3526
3532
  };
3527
3533
  type addWatchersResponse = addWatchersResponses[keyof addWatchersResponses];
3528
3534
  type getUserStatisticsData = {
@@ -5678,7 +5684,7 @@ type removeWatchersData = {
5678
5684
  /**
5679
5685
  * Watchers email addreeses to be removed
5680
5686
  */
5681
- body: NegotiationWatchersDto;
5687
+ body: NonUserWatchersDto;
5682
5688
  path: {
5683
5689
  negotiationId: string;
5684
5690
  subAccountId: string;
@@ -5696,7 +5702,7 @@ type removeWatchersResponses = {
5696
5702
  /**
5697
5703
  * Watchers email addresses for a negotiation in a subaccount
5698
5704
  */
5699
- 200: NegotiationWatchersDto;
5705
+ 200: NonUserWatchersDto;
5700
5706
  };
5701
5707
  type removeWatchersResponse = removeWatchersResponses[keyof removeWatchersResponses];
5702
5708
  type getNegotiationData = {
@@ -12008,4 +12014,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12008
12014
  */
12009
12015
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12010
12016
 
12011
- export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPackWithDocumentsWithUsageDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentPublisherWithPackWithUsageDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DocumentWithUsageDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListScope, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWatcherDto, type NegotiationWatchersDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
12017
+ export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPackWithDocumentsWithUsageDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentPublisherWithPackWithUsageDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DocumentWithUsageDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListScope, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
package/dist/index.d.ts CHANGED
@@ -548,10 +548,6 @@ type DocumentState = 'draft' | 'private' | 'retired' | 'inherited';
548
548
  type SchemaDto = {
549
549
  [key: string]: unknown;
550
550
  };
551
- type NegotiationWatcherDto = {
552
- name?: PersonNameDto;
553
- email: string;
554
- };
555
551
  type AccountCorrelationIdDto = {
556
552
  value: string;
557
553
  };
@@ -564,6 +560,7 @@ type AnnouncementsDto = {
564
560
  announcements: Array<AnnouncementDto>;
565
561
  };
566
562
  type AuditEventCauseDto = {
563
+ unverifiedOneLinkEmail?: string;
567
564
  timestamp: string;
568
565
  role?: string;
569
566
  description: string;
@@ -673,7 +670,6 @@ type PresetEventHistoryDto_EventByDto = {
673
670
  };
674
671
  type SignaturePagePartyNegotiationRole = 'initiator' | 'receiver' | 'moderator';
675
672
  type PresetAuditEventDto = {
676
- auditEventId: string;
677
673
  timestamp: string;
678
674
  description?: string;
679
675
  requesterEmail?: string;
@@ -684,6 +680,8 @@ type PresetAuditEventDto = {
684
680
  requesterLastName?: string;
685
681
  message: string;
686
682
  supportImpersonatorUserId?: string;
683
+ unverifiedOneLinkEmail?: string;
684
+ auditEventId: string;
687
685
  };
688
686
  type PagingMetaDto = {
689
687
  firstIndex: number;
@@ -1327,7 +1325,6 @@ type ExecutedNegotiationSummaryDto = {
1327
1325
  };
1328
1326
  };
1329
1327
  type NegotiationAuditTrailEventDto = {
1330
- auditEventId: string;
1331
1328
  timestamp: string;
1332
1329
  description?: string;
1333
1330
  requesterEmail?: string;
@@ -1338,6 +1335,8 @@ type NegotiationAuditTrailEventDto = {
1338
1335
  requesterLastName?: string;
1339
1336
  message: string;
1340
1337
  supportImpersonatorUserId?: string;
1338
+ unverifiedOneLinkEmail?: string;
1339
+ auditEventId: string;
1341
1340
  negotiationVersion: MajorMinorDto;
1342
1341
  negotiationId: string;
1343
1342
  };
@@ -2072,10 +2071,6 @@ type ProxiedAuthnRequestDto = {
2072
2071
  username: string;
2073
2072
  password: string;
2074
2073
  };
2075
- type SubAccountWithIdAndNameDto = {
2076
- id: string;
2077
- name: string;
2078
- };
2079
2074
  type NegotiationAuditEventsDto = {
2080
2075
  auditEvents: Array<NegotiationAuditTrailEventDto>;
2081
2076
  };
@@ -2091,6 +2086,13 @@ type AccountSummaryWithSubAccountsDto = {
2091
2086
  type AdminRevertNegotiationStateDto = {
2092
2087
  comment: string;
2093
2088
  };
2089
+ type SubAccountWithIdAndNameDto = {
2090
+ id: string;
2091
+ name: string;
2092
+ };
2093
+ type NonUserWatchersDto = {
2094
+ watchers: Array<NonUserWatcherDto>;
2095
+ };
2094
2096
  type AuthEndpointsDto = {
2095
2097
  authn: string;
2096
2098
  oauthRefresh: string;
@@ -2336,6 +2338,9 @@ type ComponentAnswerDto_DataEditor = {
2336
2338
  }>>;
2337
2339
  html: string;
2338
2340
  };
2341
+ type UserWatchlistDto = {
2342
+ users: Array<UserDto>;
2343
+ };
2339
2344
  type AdminAccountDetailDto = {
2340
2345
  shortCode: string;
2341
2346
  advisorClients: Array<AccountAndSubAccountsDto>;
@@ -3204,6 +3209,10 @@ type ReportGenerationRequestDto = {
3204
3209
  documentIds?: Array<string>;
3205
3210
  timeZone?: string;
3206
3211
  };
3212
+ type NonUserWatcherDto = {
3213
+ name?: PersonNameDto;
3214
+ email: string;
3215
+ };
3207
3216
  type ElectionDto = {
3208
3217
  readOnly?: boolean;
3209
3218
  description?: string;
@@ -3265,9 +3274,6 @@ type AmendDefaultsDto = {
3265
3274
  };
3266
3275
  };
3267
3276
  type DocumentPackAccess = 'required' | 'granted' | 'restricted';
3268
- type NegotiationWatchersDto = {
3269
- watchers: Array<NegotiationWatcherDto>;
3270
- };
3271
3277
  type AccountNameDto = {
3272
3278
  accountName: string;
3273
3279
  };
@@ -3497,14 +3503,14 @@ type getWatchersResponses = {
3497
3503
  /**
3498
3504
  * Watchers email addresses for a negotiation in a subaccount
3499
3505
  */
3500
- 200: NegotiationWatchersDto;
3506
+ 200: NonUserWatchersDto;
3501
3507
  };
3502
3508
  type getWatchersResponse = getWatchersResponses[keyof getWatchersResponses];
3503
3509
  type addWatchersData = {
3504
3510
  /**
3505
3511
  * Watchers email addreeses to be added
3506
3512
  */
3507
- body: NegotiationWatchersDto;
3513
+ body: NonUserWatchersDto;
3508
3514
  path: {
3509
3515
  negotiationId: string;
3510
3516
  subAccountId: string;
@@ -3522,7 +3528,7 @@ type addWatchersResponses = {
3522
3528
  /**
3523
3529
  * Watchers email addresses for a negotiation in a subaccount
3524
3530
  */
3525
- 200: NegotiationWatchersDto;
3531
+ 200: NonUserWatchersDto;
3526
3532
  };
3527
3533
  type addWatchersResponse = addWatchersResponses[keyof addWatchersResponses];
3528
3534
  type getUserStatisticsData = {
@@ -5678,7 +5684,7 @@ type removeWatchersData = {
5678
5684
  /**
5679
5685
  * Watchers email addreeses to be removed
5680
5686
  */
5681
- body: NegotiationWatchersDto;
5687
+ body: NonUserWatchersDto;
5682
5688
  path: {
5683
5689
  negotiationId: string;
5684
5690
  subAccountId: string;
@@ -5696,7 +5702,7 @@ type removeWatchersResponses = {
5696
5702
  /**
5697
5703
  * Watchers email addresses for a negotiation in a subaccount
5698
5704
  */
5699
- 200: NegotiationWatchersDto;
5705
+ 200: NonUserWatchersDto;
5700
5706
  };
5701
5707
  type removeWatchersResponse = removeWatchersResponses[keyof removeWatchersResponses];
5702
5708
  type getNegotiationData = {
@@ -12008,4 +12014,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12008
12014
  */
12009
12015
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12010
12016
 
12011
- export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPackWithDocumentsWithUsageDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentPublisherWithPackWithUsageDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DocumentWithUsageDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListScope, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWatcherDto, type NegotiationWatchersDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
12017
+ export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPackWithDocumentsWithUsageDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentPublisherWithPackWithUsageDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DocumentWithUsageDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListScope, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createiq/backend",
3
- "version": "1.0.64",
3
+ "version": "1.0.66",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/index.cjs",
@@ -1 +1 @@
1
- a1b815aa13258f1a9a86e041e155aa15c2e4dce4f82bc66f15a62b0923f9ee72
1
+ 0c35ae1179e7cc9fbc8e9d50ba606cf982d3b42b95436a9d516f7c83240382e1