@createiq/backend 1.0.95 → 1.0.97

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.
package/dist/index.d.ts CHANGED
@@ -350,7 +350,6 @@ type CreateDocumentMetadataDto = {
350
350
  workflowType: 'offline' | 'w1' | 'w1Ext' | 'w1ExtOffline' | 'w1ExtStage2' | 'w1ExtStage2Offline' | 'w1ExtCombinedStage' | 'w1ExtCombinedStageOffline';
351
351
  mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
352
352
  governingLaw: string;
353
- uploadFullDocumentsInsteadOfSignaturePages: boolean;
354
353
  documentType: string;
355
354
  supportsAuxiliaryDocumentUpload: boolean;
356
355
  supportsExtraction: boolean;
@@ -369,10 +368,13 @@ type CreateDocumentMetadataDto = {
369
368
  year: number;
370
369
  prefillReceiverAnswers: boolean;
371
370
  skipProposeDatePhase: boolean;
371
+ autoAttachPdfToInvites: boolean;
372
+ uploadFullDocumentsInsteadOfSignaturePages: boolean;
372
373
  supportsBulkUpload: boolean;
373
374
  supportsOfflineNegotiations: boolean;
374
375
  uploadExecutedVersionOnlyNoSignaturePages: boolean;
375
376
  partyThatCanConfirmExecutionVersion?: 'initiator' | 'receiver' | 'moderator';
377
+ autoAttachDocxToInvites: boolean;
376
378
  supportsInviteAttachments: boolean;
377
379
  supportsForking: boolean;
378
380
  };
@@ -759,7 +761,6 @@ type DocumentDto = {
759
761
  hasSchema: boolean;
760
762
  mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
761
763
  governingLaw: string;
762
- uploadFullDocumentsInsteadOfSignaturePages: boolean;
763
764
  id: string;
764
765
  documentType: string;
765
766
  supportsAuxiliaryDocumentUpload: boolean;
@@ -782,11 +783,14 @@ type DocumentDto = {
782
783
  year: number;
783
784
  prefillReceiverAnswers: boolean;
784
785
  skipProposeDatePhase: boolean;
786
+ autoAttachPdfToInvites: boolean;
787
+ uploadFullDocumentsInsteadOfSignaturePages: boolean;
785
788
  supportsBulkUpload: boolean;
786
789
  supportsOfflineNegotiations: boolean;
787
790
  version?: MajorMinorDto;
788
791
  uploadExecutedVersionOnlyNoSignaturePages: boolean;
789
792
  partyThatCanConfirmExecutionVersion?: 'initiator' | 'receiver' | 'moderator';
793
+ autoAttachDocxToInvites: boolean;
790
794
  supportsInviteAttachments: boolean;
791
795
  supportsForking: boolean;
792
796
  };
@@ -861,7 +865,6 @@ type UpdateDocumentDto = {
861
865
  initiatorCanUploadCounterpartySignaturePages: boolean;
862
866
  mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
863
867
  governingLaw: string;
864
- uploadFullDocumentsInsteadOfSignaturePages: boolean;
865
868
  documentType: string;
866
869
  supportsAuxiliaryDocumentUpload: boolean;
867
870
  supportsExtraction: boolean;
@@ -882,10 +885,13 @@ type UpdateDocumentDto = {
882
885
  year: number;
883
886
  prefillReceiverAnswers: boolean;
884
887
  skipProposeDatePhase: boolean;
888
+ autoAttachPdfToInvites: boolean;
889
+ uploadFullDocumentsInsteadOfSignaturePages: boolean;
885
890
  supportsBulkUpload: boolean;
886
891
  supportsOfflineNegotiations: boolean;
887
892
  uploadExecutedVersionOnlyNoSignaturePages: boolean;
888
893
  partyThatCanConfirmExecutionVersion?: 'initiator' | 'receiver' | 'moderator';
894
+ autoAttachDocxToInvites: boolean;
889
895
  supportsInviteAttachments: boolean;
890
896
  supportsForking: boolean;
891
897
  };
@@ -972,7 +978,12 @@ type TimelineEventDto = {
972
978
  updated?: string;
973
979
  approvers?: ApprovalRuleChangesDto;
974
980
  removedApprovers?: Array<UserWithRoleDto>;
975
- commentReactions?: unknown;
981
+ commentReactions?: {
982
+ [key: string]: Array<{
983
+ user: UserDto;
984
+ timestamp: string;
985
+ }>;
986
+ };
976
987
  type: string;
977
988
  created: string;
978
989
  state: string;
@@ -1023,6 +1034,7 @@ type CounterpartyWithReferenceIdDto = {
1023
1034
  attachDocx?: boolean;
1024
1035
  email?: DraftEmailDto;
1025
1036
  additionalEmails?: Array<DraftEmailDto>;
1037
+ attachPdf?: boolean;
1026
1038
  externalAttachments?: Array<string>;
1027
1039
  entity: EntityIdDto;
1028
1040
  };
@@ -1185,6 +1197,7 @@ type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableAction
1185
1197
  type SendGroupToCounterpartyRequestDto = {
1186
1198
  negotiationIds: Array<string>;
1187
1199
  attachDocx?: boolean;
1200
+ attachPdf?: boolean;
1188
1201
  };
1189
1202
  type SSOConfigDto = {
1190
1203
  x5cExpiry?: string;
@@ -1445,7 +1458,6 @@ type ChaserEmailInfoDto = {
1445
1458
  lastNotification: string;
1446
1459
  emailFailedToDeliver: boolean;
1447
1460
  };
1448
- type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1449
1461
  type AddReactionDto = {
1450
1462
  emoji: string;
1451
1463
  };
@@ -1495,6 +1507,10 @@ type CreateBulkSetDto = {
1495
1507
  negotiationId?: string;
1496
1508
  negotiations: Array<CreateBulkSetItemDto>;
1497
1509
  };
1510
+ type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1511
+ type ExtractionSimilarityResultDto = {
1512
+ [key: string]: unknown;
1513
+ };
1498
1514
  type NegotiationSearchDto = {
1499
1515
  counterpartyEntityName: Array<string>;
1500
1516
  staleTo?: number;
@@ -2241,6 +2257,7 @@ type CounterpartyDto = {
2241
2257
  attachDocx?: boolean;
2242
2258
  email?: string;
2243
2259
  additionalEmails?: Array<EmailWithErrorDto>;
2260
+ attachPdf?: boolean;
2244
2261
  referenceId?: string;
2245
2262
  error?: string;
2246
2263
  externalAttachments?: Array<string>;
@@ -2574,7 +2591,6 @@ type DocumentWithPackDto = {
2574
2591
  initiatorCanUploadCounterpartySignaturePages: boolean;
2575
2592
  mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
2576
2593
  governingLaw: string;
2577
- uploadFullDocumentsInsteadOfSignaturePages: boolean;
2578
2594
  id: string;
2579
2595
  availableActions: DocumentAvailableActions;
2580
2596
  documentType: string;
@@ -2600,6 +2616,8 @@ type DocumentWithPackDto = {
2600
2616
  year: number;
2601
2617
  prefillReceiverAnswers: boolean;
2602
2618
  skipProposeDatePhase: boolean;
2619
+ autoAttachPdfToInvites: boolean;
2620
+ uploadFullDocumentsInsteadOfSignaturePages: boolean;
2603
2621
  supportsBulkUpload: boolean;
2604
2622
  supportsOfflineNegotiations: boolean;
2605
2623
  version?: MajorMinorDto;
@@ -2608,6 +2626,7 @@ type DocumentWithPackDto = {
2608
2626
  };
2609
2627
  uploadExecutedVersionOnlyNoSignaturePages: boolean;
2610
2628
  partyThatCanConfirmExecutionVersion?: 'initiator' | 'receiver' | 'moderator';
2629
+ autoAttachDocxToInvites: boolean;
2611
2630
  supportsInviteAttachments: boolean;
2612
2631
  supportsForking: boolean;
2613
2632
  };
@@ -9252,31 +9271,6 @@ type checkSignedExecutedVersionResponses = {
9252
9271
  200: ExecutedVersionExistsDto;
9253
9272
  };
9254
9273
  type checkSignedExecutedVersionResponse = checkSignedExecutedVersionResponses[keyof checkSignedExecutedVersionResponses];
9255
- type cancelExtractionSimilarityData = {
9256
- body?: never;
9257
- path: {
9258
- templateId: string;
9259
- };
9260
- query?: {
9261
- /**
9262
- * Election ID if running test for single extraction
9263
- */
9264
- electionId?: string;
9265
- };
9266
- url: '/api/v1/templates/{templateId}/extraction/cancel';
9267
- };
9268
- type cancelExtractionSimilarityErrors = {
9269
- /**
9270
- * Extraction has not started for the template
9271
- */
9272
- 403: unknown;
9273
- };
9274
- type cancelExtractionSimilarityResponses = {
9275
- /**
9276
- * Ok
9277
- */
9278
- 202: unknown;
9279
- };
9280
9274
  type getDownloadActiveNegotiationsReportAsExcelData = {
9281
9275
  body?: never;
9282
9276
  path: {
@@ -11996,12 +11990,6 @@ declare const setExecutionAttachment: <ThrowOnError extends boolean = false>(opt
11996
11990
  * Determine whether an executed version has been generated, or not.
11997
11991
  */
11998
11992
  declare const checkSignedExecutedVersion: <ThrowOnError extends boolean = false>(options: Options<checkSignedExecutedVersionData, ThrowOnError>) => RequestResult<checkSignedExecutedVersionResponses, checkSignedExecutedVersionErrors, ThrowOnError, "fields">;
11999
- /**
12000
- * Cancel extraction similarity test that is in progress
12001
- *
12002
- * Cancel extraction similarity test that is in progress.
12003
- */
12004
- declare const cancelExtractionSimilarity: <ThrowOnError extends boolean = false>(options: Options<cancelExtractionSimilarityData, ThrowOnError>) => RequestResult<cancelExtractionSimilarityResponses, cancelExtractionSimilarityErrors, ThrowOnError, "fields">;
12005
11993
  /**
12006
11994
  * View an election analytics report for all negotiations that you can access in a Sub-Account
12007
11995
  *
@@ -12285,4 +12273,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12285
12273
  */
12286
12274
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12287
12275
 
12288
- 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 AdminLikeUsersListDto, 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_AdditionalFieldsDto, type ComponentAnswerDto_BaseColumnLabelDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_EntityWithValuesDto, type ComponentAnswerDto_ExhibitValueSchemaDto, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundList, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NameChangeDto, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, 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 DocuSignEmailRestriction, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentIntegrationRestriction, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, 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 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 ExhibitValueColumnMode, type ExtendInviteExpiryRequestDto, 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 FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundListSpreadsheetErrorResponseDto, type FundListSpreadsheetSummaryDto, type FundListSpreadsheetUploadSummaryDto, type FundListSpreadsheetValidationErrorDto, type FundStatusChange, 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 MasterListChangesDto, type MasterListIdDto, type MfaStatusResponseDto, type MfaVerifyRequestDto, 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 NegotiationFileNamesDto, 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 PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanConfirmExecutionVersion, 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 SignerRole, 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 TurnstileErrorCode, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountDocusignEmailRestrictionDto, 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, getAdminLikeUsers, type getAdminLikeUsersData, type getAdminLikeUsersErrors, type getAdminLikeUsersResponse, type getAdminLikeUsersResponses, 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, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, 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, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, 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 };
12276
+ 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 AdminLikeUsersListDto, 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_AdditionalFieldsDto, type ComponentAnswerDto_BaseColumnLabelDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_EntityWithValuesDto, type ComponentAnswerDto_ExhibitValueSchemaDto, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundList, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NameChangeDto, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, 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 DocuSignEmailRestriction, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentIntegrationRestriction, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, 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 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 ExhibitValueColumnMode, type ExtendInviteExpiryRequestDto, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type ExtractionSimilarityResultDto, 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 FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundListSpreadsheetErrorResponseDto, type FundListSpreadsheetSummaryDto, type FundListSpreadsheetUploadSummaryDto, type FundListSpreadsheetValidationErrorDto, type FundStatusChange, 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 MasterListChangesDto, type MasterListIdDto, type MfaStatusResponseDto, type MfaVerifyRequestDto, 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 NegotiationFileNamesDto, 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 PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanConfirmExecutionVersion, 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 SignerRole, 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 TurnstileErrorCode, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountDocusignEmailRestrictionDto, 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, 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, getAdminLikeUsers, type getAdminLikeUsersData, type getAdminLikeUsersErrors, type getAdminLikeUsersResponse, type getAdminLikeUsersResponses, 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, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, 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, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, 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.js CHANGED
@@ -3987,18 +3987,6 @@ var checkSignedExecutedVersion = (options) => {
3987
3987
  ...options
3988
3988
  });
3989
3989
  };
3990
- var cancelExtractionSimilarity = (options) => {
3991
- return (options.client ?? client).put({
3992
- security: [
3993
- {
3994
- name: "Authorization",
3995
- type: "apiKey"
3996
- }
3997
- ],
3998
- url: "/api/v1/templates/{templateId}/extraction/cancel",
3999
- ...options
4000
- });
4001
- };
4002
3990
  var getDownloadActiveNegotiationsReportAsExcel = (options) => {
4003
3991
  return (options.client ?? client).get({
4004
3992
  security: [
@@ -4632,7 +4620,6 @@ export {
4632
4620
  bulkSetsJobCount,
4633
4621
  cancel,
4634
4622
  cancelExtraction,
4635
- cancelExtractionSimilarity,
4636
4623
  cancelNegotiations,
4637
4624
  cancelNegotiationsJobCount,
4638
4625
  changeSigningMode,