@createiq/backend 1.0.76 → 1.0.78

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.
@@ -207,10 +207,24 @@ export type AccountSettingsDto = {
207
207
  allowedDomains: Array<string>;
208
208
  };
209
209
 
210
+ /**
211
+ * Authentication success response. Contains either sessionToken (OAuth flow) or interactionCode (IDX flow).
212
+ */
210
213
  export type AuthnSuccessResponseDto = {
214
+ /**
215
+ * Present when flowType is interactionCode
216
+ */
217
+ interactionCode?: string;
218
+ /**
219
+ * Indicates the authentication flow type
220
+ */
221
+ flowType: 'authorizationCode' | 'interactionCode';
211
222
  expiresAt: string;
212
223
  status: string;
213
- sessionToken: string;
224
+ /**
225
+ * Present when flowType is authorizationCode
226
+ */
227
+ sessionToken?: string;
214
228
  };
215
229
 
216
230
  export type ValidatedEntityDto = {
@@ -296,6 +310,7 @@ export type PresetSingleWithPreviewDto = PresetSingleDto & {
296
310
  export type AuthServerResponseDto = {
297
311
  sso: boolean;
298
312
  idpId?: string;
313
+ authFlowType: string;
299
314
  };
300
315
 
301
316
  export type SchemaUpgradeReleaseNotesDto = {
@@ -1615,6 +1630,8 @@ export type ChaserEmailInfoDto = {
1615
1630
  emailFailedToDeliver: boolean;
1616
1631
  };
1617
1632
 
1633
+ export type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1634
+
1618
1635
  export type AddReactionDto = {
1619
1636
  emoji: string;
1620
1637
  };
@@ -2446,9 +2463,16 @@ export type DocumentPackDto = {
2446
2463
  subAccountAllowlist?: Array<string>;
2447
2464
  };
2448
2465
 
2466
+ /**
2467
+ * Authentication request. Include code_challenge for IDX flow.
2468
+ */
2449
2469
  export type ProxiedAuthnRequestDto = {
2450
2470
  username: string;
2451
2471
  password: string;
2472
+ /**
2473
+ * PKCE code challenge. Include for IDX flow, omit for OAuth flow.
2474
+ */
2475
+ code_challenge?: string;
2452
2476
  };
2453
2477
 
2454
2478
  export type NegotiationAuditEventsDto = {
@@ -2483,6 +2507,7 @@ export type AuthEndpointsDto = {
2483
2507
  authn: string;
2484
2508
  oauthRefresh: string;
2485
2509
  logoutUrl: string;
2510
+ authFlowType?: string;
2486
2511
  };
2487
2512
 
2488
2513
  export type BulkSetJobCountDto = {
@@ -3360,6 +3385,7 @@ export type CancelJobCountDto = {
3360
3385
  export type OneLinkAuthRequestDto = {
3361
3386
  oneLinkId: string;
3362
3387
  email: string;
3388
+ code_challenge?: string;
3363
3389
  };
3364
3390
 
3365
3391
  export type MajorChangeSummaryDto = {
package/dist/index.d.cts CHANGED
@@ -184,10 +184,24 @@ type AccountSettingsDto = {
184
184
  accountName: string;
185
185
  allowedDomains: Array<string>;
186
186
  };
187
+ /**
188
+ * Authentication success response. Contains either sessionToken (OAuth flow) or interactionCode (IDX flow).
189
+ */
187
190
  type AuthnSuccessResponseDto = {
191
+ /**
192
+ * Present when flowType is interactionCode
193
+ */
194
+ interactionCode?: string;
195
+ /**
196
+ * Indicates the authentication flow type
197
+ */
198
+ flowType: 'authorizationCode' | 'interactionCode';
188
199
  expiresAt: string;
189
200
  status: string;
190
- sessionToken: string;
201
+ /**
202
+ * Present when flowType is authorizationCode
203
+ */
204
+ sessionToken?: string;
191
205
  };
192
206
  type ValidatedEntityDto = {
193
207
  type: 'ValidEntityDto';
@@ -260,6 +274,7 @@ type PresetSingleWithPreviewDto = PresetSingleDto & {
260
274
  type AuthServerResponseDto = {
261
275
  sso: boolean;
262
276
  idpId?: string;
277
+ authFlowType: string;
263
278
  };
264
279
  type SchemaUpgradeReleaseNotesDto = {
265
280
  version: MajorMinorDto;
@@ -1406,6 +1421,7 @@ type ChaserEmailInfoDto = {
1406
1421
  lastNotification: string;
1407
1422
  emailFailedToDeliver: boolean;
1408
1423
  };
1424
+ type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1409
1425
  type AddReactionDto = {
1410
1426
  emoji: string;
1411
1427
  };
@@ -2115,9 +2131,16 @@ type DocumentPackDto = {
2115
2131
  documentPublisherId: string;
2116
2132
  subAccountAllowlist?: Array<string>;
2117
2133
  };
2134
+ /**
2135
+ * Authentication request. Include code_challenge for IDX flow.
2136
+ */
2118
2137
  type ProxiedAuthnRequestDto = {
2119
2138
  username: string;
2120
2139
  password: string;
2140
+ /**
2141
+ * PKCE code challenge. Include for IDX flow, omit for OAuth flow.
2142
+ */
2143
+ code_challenge?: string;
2121
2144
  };
2122
2145
  type NegotiationAuditEventsDto = {
2123
2146
  auditEvents: Array<NegotiationAuditTrailEventDto>;
@@ -2145,6 +2168,7 @@ type AuthEndpointsDto = {
2145
2168
  authn: string;
2146
2169
  oauthRefresh: string;
2147
2170
  logoutUrl: string;
2171
+ authFlowType?: string;
2148
2172
  };
2149
2173
  type BulkSetJobCountDto = {
2150
2174
  remainingSendJobs: number;
@@ -2907,6 +2931,7 @@ type CancelJobCountDto = {
2907
2931
  type OneLinkAuthRequestDto = {
2908
2932
  oneLinkId: string;
2909
2933
  email: string;
2934
+ code_challenge?: string;
2910
2935
  };
2911
2936
  type MajorChangeSummaryDto = {
2912
2937
  electionId: string;
@@ -12079,4 +12104,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12079
12104
  */
12080
12105
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12081
12106
 
12082
- export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, 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 DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type 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 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 FundListMetadataDto, type FundListScope, 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 ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type 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 UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, 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, 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 };
12107
+ export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, 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 DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type 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 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 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 ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type 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 UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, 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, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
package/dist/index.d.ts CHANGED
@@ -184,10 +184,24 @@ type AccountSettingsDto = {
184
184
  accountName: string;
185
185
  allowedDomains: Array<string>;
186
186
  };
187
+ /**
188
+ * Authentication success response. Contains either sessionToken (OAuth flow) or interactionCode (IDX flow).
189
+ */
187
190
  type AuthnSuccessResponseDto = {
191
+ /**
192
+ * Present when flowType is interactionCode
193
+ */
194
+ interactionCode?: string;
195
+ /**
196
+ * Indicates the authentication flow type
197
+ */
198
+ flowType: 'authorizationCode' | 'interactionCode';
188
199
  expiresAt: string;
189
200
  status: string;
190
- sessionToken: string;
201
+ /**
202
+ * Present when flowType is authorizationCode
203
+ */
204
+ sessionToken?: string;
191
205
  };
192
206
  type ValidatedEntityDto = {
193
207
  type: 'ValidEntityDto';
@@ -260,6 +274,7 @@ type PresetSingleWithPreviewDto = PresetSingleDto & {
260
274
  type AuthServerResponseDto = {
261
275
  sso: boolean;
262
276
  idpId?: string;
277
+ authFlowType: string;
263
278
  };
264
279
  type SchemaUpgradeReleaseNotesDto = {
265
280
  version: MajorMinorDto;
@@ -1406,6 +1421,7 @@ type ChaserEmailInfoDto = {
1406
1421
  lastNotification: string;
1407
1422
  emailFailedToDeliver: boolean;
1408
1423
  };
1424
+ type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1409
1425
  type AddReactionDto = {
1410
1426
  emoji: string;
1411
1427
  };
@@ -2115,9 +2131,16 @@ type DocumentPackDto = {
2115
2131
  documentPublisherId: string;
2116
2132
  subAccountAllowlist?: Array<string>;
2117
2133
  };
2134
+ /**
2135
+ * Authentication request. Include code_challenge for IDX flow.
2136
+ */
2118
2137
  type ProxiedAuthnRequestDto = {
2119
2138
  username: string;
2120
2139
  password: string;
2140
+ /**
2141
+ * PKCE code challenge. Include for IDX flow, omit for OAuth flow.
2142
+ */
2143
+ code_challenge?: string;
2121
2144
  };
2122
2145
  type NegotiationAuditEventsDto = {
2123
2146
  auditEvents: Array<NegotiationAuditTrailEventDto>;
@@ -2145,6 +2168,7 @@ type AuthEndpointsDto = {
2145
2168
  authn: string;
2146
2169
  oauthRefresh: string;
2147
2170
  logoutUrl: string;
2171
+ authFlowType?: string;
2148
2172
  };
2149
2173
  type BulkSetJobCountDto = {
2150
2174
  remainingSendJobs: number;
@@ -2907,6 +2931,7 @@ type CancelJobCountDto = {
2907
2931
  type OneLinkAuthRequestDto = {
2908
2932
  oneLinkId: string;
2909
2933
  email: string;
2934
+ code_challenge?: string;
2910
2935
  };
2911
2936
  type MajorChangeSummaryDto = {
2912
2937
  electionId: string;
@@ -12079,4 +12104,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12079
12104
  */
12080
12105
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12081
12106
 
12082
- export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, 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 DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type 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 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 FundListMetadataDto, type FundListScope, 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 ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type 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 UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, 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, 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 };
12107
+ export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, 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 DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type 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 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 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 ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type 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 UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, 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, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createiq/backend",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/index.cjs",
@@ -1 +1 @@
1
- 6ce5f8ba9c9d671c84ce0a855ead81674e8cea72b84d201ea863d14306eab926
1
+ 36e4d0859026529a3c83c2972fff580508c0ea8eda201555e8033a64d3645a55