@createiq/backend 1.0.25 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -287,11 +287,6 @@ type ValidInvitationResponseDto = {
287
287
  canForward: boolean;
288
288
  firstName?: string;
289
289
  };
290
- type ShareNegotiationRequestDto = {
291
- generalMessage?: string;
292
- accountUsers: Array<AccountUserShareDto>;
293
- newUsers: Array<NewUserShareDto>;
294
- };
295
290
  type ApprovalCountStatisticsDto = {
296
291
  myPendingApprovals: PendingApprovalCountsDto;
297
292
  teamPendingApprovals: PendingApprovalCountsDto;
@@ -1251,6 +1246,11 @@ type UpdateNegotiationGroupMembersDto = {
1251
1246
  type ESignAccountStatusDto = {
1252
1247
  value: string;
1253
1248
  };
1249
+ type ShareRequestDto = {
1250
+ generalMessage?: string;
1251
+ accountUsers: Array<AccountUserShareDto>;
1252
+ newUsers: Array<NewUserShareDto>;
1253
+ };
1254
1254
  type NegotiationGroupDto = {
1255
1255
  id: string;
1256
1256
  name: string;
@@ -1731,7 +1731,7 @@ type SignatureExistsDto_RequiredSignaturePageDto = {
1731
1731
  exists: boolean;
1732
1732
  sigPageId: string;
1733
1733
  };
1734
- type EmailTemplate = 'userInvite' | 'accountInvite' | 'negotiationCreateAccountInvite' | 'negotiationOneLinkInvite' | 'registerSSOUser' | 'approversRemoved' | 'approversFixed' | 'userTaggedInComment' | 'userTaggedInApprovalComment' | 'shareNegotiation' | 'accessRequest' | 'presetApprovalRequested' | 'forwardInvite' | 'forgottenPassword' | 'unregisteredUserForgottenPassword' | 'negotiationInvite' | 'notifyDraft' | 'supportAccessConfirmation' | 'negotiationInviteApproverOrAdmin' | 'negotiationInviteNamedWhereNoEntity' | 'negotiationInviteNamedWhereNoUser' | 'negotiationInviteEntityManagement' | 'negotiationStarted' | 'negotiationUpdate' | 'negotiationGroupInvite' | 'negotiationGroupCreateAccountInvite' | 'negotiationGroupInviteApproverOrAdmin' | 'negotiationGroupInviteNamedWhereNoEntity' | 'negotiationGroupInviteEntityManagement' | 'negotiationGroupInviteNamedWhereNoUser' | 'negotiationGroupUpdate' | 'negotiationGroupDissolved' | 'chaserEmail' | 'sSOExpiresSoon' | 'sSOExpiresImminently' | 'finalDocumentRejected' | 'finalDocumentApproved' | 'finalApprovalRequired' | 'contactSMForNewApprovalRequired' | 'electionApprovalRequired' | 'documentApprovalReminder' | 'electionApprovalReminder' | 'electionApprovalResponsesReceived' | 'confirmAgreedForm' | 'executionAgreed' | 'negotiationComplete' | 'revertToAmending' | 'executionCpPagesUploaded' | 'inviteExistingUserAdvisorAccount' | 'inviteExistingUserNonAdvisorAccount' | 'inviteNewUserAdvisorAccount' | 'inviteNewUserNonAdvisorAccount' | 'inviteNewAccount' | 'advisorRequestRejected' | 'advisorRequestAccepted' | 'notifyBreakingChange' | 'auxiliaryDocumentUploaded' | 'negotiationExtendedWorkflowStage1ConfirmTemplate' | 'noContent' | 'negotiationUnsubscribe' | 'negotiationReport' | 'auditReport' | 'notifyCounterpartyUnsubscribed' | 'dailyNotificationDigest' | 'existingApproverReplaced';
1734
+ type EmailTemplate = 'userInvite' | 'accountInvite' | 'negotiationCreateAccountInvite' | 'negotiationOneLinkInvite' | 'registerSSOUser' | 'approversRemoved' | 'approversFixed' | 'userTaggedInComment' | 'userTaggedInApprovalComment' | 'shareNegotiation' | 'shareSubAccount' | 'accessRequest' | 'accessRequestResponse' | 'presetApprovalRequested' | 'forwardInvite' | 'forgottenPassword' | 'unregisteredUserForgottenPassword' | 'negotiationInvite' | 'notifyDraft' | 'supportAccessConfirmation' | 'negotiationInviteApproverOrAdmin' | 'negotiationInviteNamedWhereNoEntity' | 'negotiationInviteNamedWhereNoUser' | 'negotiationInviteEntityManagement' | 'negotiationStarted' | 'negotiationUpdate' | 'negotiationGroupInvite' | 'negotiationGroupCreateAccountInvite' | 'negotiationGroupInviteApproverOrAdmin' | 'negotiationGroupInviteNamedWhereNoEntity' | 'negotiationGroupInviteEntityManagement' | 'negotiationGroupInviteNamedWhereNoUser' | 'negotiationGroupUpdate' | 'negotiationGroupDissolved' | 'chaserEmail' | 'sSOExpiresSoon' | 'sSOExpiresImminently' | 'finalDocumentRejected' | 'finalDocumentApproved' | 'finalApprovalRequired' | 'contactSMForNewApprovalRequired' | 'electionApprovalRequired' | 'documentApprovalReminder' | 'electionApprovalReminder' | 'electionApprovalResponsesReceived' | 'confirmAgreedForm' | 'executionAgreed' | 'negotiationComplete' | 'revertToAmending' | 'executionCpPagesUploaded' | 'inviteExistingUserAdvisorAccount' | 'inviteExistingUserNonAdvisorAccount' | 'inviteNewUserAdvisorAccount' | 'inviteNewUserNonAdvisorAccount' | 'inviteNewAccount' | 'advisorRequestRejected' | 'advisorRequestAccepted' | 'notifyBreakingChange' | 'auxiliaryDocumentUploaded' | 'negotiationExtendedWorkflowStage1ConfirmTemplate' | 'noContent' | 'negotiationUnsubscribe' | 'negotiationReport' | 'auditReport' | 'notifyCounterpartyUnsubscribed' | 'dailyNotificationDigest' | 'existingApproverReplaced';
1735
1735
  type PartyRelativeRef = 'our' | 'counterparty';
1736
1736
  type PresetOrderKey = 'name' | 'documentType' | 'status' | 'dateCreated';
1737
1737
  type BulkSetDto = {
@@ -4329,6 +4329,27 @@ type ListEntities_Responses = {
4329
4329
  200: LegalEntityDto;
4330
4330
  };
4331
4331
  type ListEntities_Response = ListEntities_Responses[keyof ListEntities_Responses];
4332
+ type ShareSubAccount_Data = {
4333
+ body: ShareRequestDto;
4334
+ path: {
4335
+ subAccountId: string;
4336
+ };
4337
+ query?: never;
4338
+ url: '/api/v1/subAccounts/{subAccountId}/share';
4339
+ };
4340
+ type ShareSubAccount_Errors = {
4341
+ /**
4342
+ * Invalid email address for one or more new users or one or more existing users doesnt exist
4343
+ */
4344
+ 400: unknown;
4345
+ };
4346
+ type ShareSubAccount_Responses = {
4347
+ /**
4348
+ * The workspace was either shared or approval was requested
4349
+ */
4350
+ 204: void;
4351
+ };
4352
+ type ShareSubAccount_Response = ShareSubAccount_Responses[keyof ShareSubAccount_Responses];
4332
4353
  type AssignEntity_Data = {
4333
4354
  body: EntityIdDto;
4334
4355
  path: {
@@ -4918,7 +4939,7 @@ type UpdateDocumentDraftingNote_Responses = {
4918
4939
  };
4919
4940
  type UpdateDocumentDraftingNote_Response = UpdateDocumentDraftingNote_Responses[keyof UpdateDocumentDraftingNote_Responses];
4920
4941
  type ShareNegotiation_Data = {
4921
- body: ShareNegotiationRequestDto;
4942
+ body: ShareRequestDto;
4922
4943
  path: {
4923
4944
  subAccountId: string;
4924
4945
  negotiationId: string;
@@ -4934,9 +4955,9 @@ type ShareNegotiation_Errors = {
4934
4955
  };
4935
4956
  type ShareNegotiation_Responses = {
4936
4957
  /**
4937
- * The negotiation from the point of view of the requester
4958
+ * The negotiation was either shared or approval was requested
4938
4959
  */
4939
- 200: NegotiationWithTimelineAndPreviewDto;
4960
+ 204: void;
4940
4961
  };
4941
4962
  type ShareNegotiation_Response = ShareNegotiation_Responses[keyof ShareNegotiation_Responses];
4942
4963
  type SetBulkSetAttachments_Data = {
@@ -8111,6 +8132,28 @@ type ScheduleExtraction_Responses = {
8111
8132
  202: NegotiationWithTimelineAndPreviewDto;
8112
8133
  };
8113
8134
  type ScheduleExtraction_Response = ScheduleExtraction_Responses[keyof ScheduleExtraction_Responses];
8135
+ type ApproveAccessRequest_Data = {
8136
+ body?: never;
8137
+ path: {
8138
+ subAccountId: string;
8139
+ accessRequestId: string;
8140
+ };
8141
+ query?: never;
8142
+ url: '/api/v1/subAccounts/{subAccountId}/accessRequest/{accessRequestId}/approve';
8143
+ };
8144
+ type ApproveAccessRequest_Errors = {
8145
+ /**
8146
+ * The request has already been actioned
8147
+ */
8148
+ 409: unknown;
8149
+ };
8150
+ type ApproveAccessRequest_Responses = {
8151
+ /**
8152
+ * The request was approved
8153
+ */
8154
+ 204: void;
8155
+ };
8156
+ type ApproveAccessRequest_Response = ApproveAccessRequest_Responses[keyof ApproveAccessRequest_Responses];
8114
8157
  type NegotiationsFilter_Data = {
8115
8158
  body?: never;
8116
8159
  path: {
@@ -9368,6 +9411,28 @@ type SendElectionApprovalReminder_Responses = {
9368
9411
  */
9369
9412
  201: unknown;
9370
9413
  };
9414
+ type RejectAccessRequest_Data = {
9415
+ body?: never;
9416
+ path: {
9417
+ subAccountId: string;
9418
+ accessRequestId: string;
9419
+ };
9420
+ query?: never;
9421
+ url: '/api/v1/subAccounts/{subAccountId}/accessRequest/{accessRequestId}/reject';
9422
+ };
9423
+ type RejectAccessRequest_Errors = {
9424
+ /**
9425
+ * The request has already been actioned
9426
+ */
9427
+ 409: unknown;
9428
+ };
9429
+ type RejectAccessRequest_Responses = {
9430
+ /**
9431
+ * The request was rejected
9432
+ */
9433
+ 204: void;
9434
+ };
9435
+ type RejectAccessRequest_Response = RejectAccessRequest_Responses[keyof RejectAccessRequest_Responses];
9371
9436
  type GetExecutedNegotiationSummary_Data = {
9372
9437
  body?: never;
9373
9438
  path: {
@@ -9929,6 +9994,11 @@ declare const moveEntity: <ThrowOnError extends boolean = false>(options: Option
9929
9994
  * View a list of all entities assigned to Sub-Accounts, account-wide.
9930
9995
  */
9931
9996
  declare const listEntities: <ThrowOnError extends boolean = false>(options?: Options<ListEntities_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<LegalEntityDto, unknown, ThrowOnError>;
9997
+ /**
9998
+ * Share a workspace with specified users.
9999
+ * Share a workspace with specified users. Grants or requests access to the workspace if required.
10000
+ */
10001
+ declare const shareSubAccount: <ThrowOnError extends boolean = false>(options: Options<ShareSubAccount_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<void, unknown, ThrowOnError>;
9932
10002
  /**
9933
10003
  * Assign an entity to a Sub-Account
9934
10004
  * Assign an entity to a subaccount.
@@ -10025,10 +10095,10 @@ declare const deleteDocumentDraftingNote: <ThrowOnError extends boolean = false>
10025
10095
  */
10026
10096
  declare const updateDocumentDraftingNote: <ThrowOnError extends boolean = false>(options: Options<UpdateDocumentDraftingNote_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DraftingNoteTextDto, unknown, ThrowOnError>;
10027
10097
  /**
10028
- * Share a negotiation with specified usesr.
10029
10098
  * Share a negotiation with specified users.
10099
+ * Share a negotiation with specified users. Grants or requests access to the negotiations workspace if required.
10030
10100
  */
10031
- declare const shareNegotiation: <ThrowOnError extends boolean = false>(options: Options<ShareNegotiation_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<NegotiationWithTimelineAndPreviewDto, unknown, ThrowOnError>;
10101
+ declare const shareNegotiation: <ThrowOnError extends boolean = false>(options: Options<ShareNegotiation_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<void, unknown, ThrowOnError>;
10032
10102
  /**
10033
10103
  * Upload one or more bulk set attachments for a bulk set
10034
10104
  * Upload one or more bulk set attachments for a bulk set.
@@ -10696,6 +10766,11 @@ declare const addApprovalComment: <ThrowOnError extends boolean = false>(options
10696
10766
  * Extract answers from the offline negotiated document linked to the negotiation.
10697
10767
  */
10698
10768
  declare const scheduleExtraction: <ThrowOnError extends boolean = false>(options: Options<ScheduleExtraction_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<NegotiationWithTimelineAndPreviewDto, unknown, ThrowOnError>;
10769
+ /**
10770
+ * Approve a request to grant access to a workspace.
10771
+ * Approve a request to grant access to a workspace.
10772
+ */
10773
+ declare const approveAccessRequest: <ThrowOnError extends boolean = false>(options: Options<ApproveAccessRequest_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<void, unknown, ThrowOnError>;
10699
10774
  /**
10700
10775
  * Get the names of the matching items for the specified free text under a particular `filter`
10701
10776
  * Get the names of the matching items for the specified free text under a particular `filter`.
@@ -10976,6 +11051,11 @@ declare const updateCustomFields: <ThrowOnError extends boolean = false>(options
10976
11051
  * Sends the approval reminder email to all approvers in a quorum for an election.
10977
11052
  */
10978
11053
  declare const sendElectionApprovalReminder: <ThrowOnError extends boolean = false>(options: Options<SendElectionApprovalReminder_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
11054
+ /**
11055
+ * Reject a request to grant access to a workspace.
11056
+ * Reject a request to grant access to a workspace.
11057
+ */
11058
+ declare const rejectAccessRequest: <ThrowOnError extends boolean = false>(options: Options<RejectAccessRequest_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<void, unknown, ThrowOnError>;
10979
11059
  /**
10980
11060
  * View metadata for an executed negotiation
10981
11061
  * View metadata for an executed negotiation.
@@ -11052,4 +11132,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
11052
11132
  */
11053
11133
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<GetProfile_Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UserProfileDto, unknown, ThrowOnError>;
11054
11134
 
11055
- export { type AcceptAllCounterpartyPositions_Data, type AcceptAllCounterpartyPositions_Errors, type AcceptAllCounterpartyPositions_Response, type AcceptAllCounterpartyPositions_Responses, type AcceptAllCustodianTemplatePositions_Data, type AcceptAllCustodianTemplatePositions_Errors, type AcceptAllCustodianTemplatePositions_Response, type AcceptAllCustodianTemplatePositions_Responses, type AcceptAllPositionsFromFork_Data, type AcceptAllPositionsFromFork_Errors, type AcceptAllPositionsFromFork_Response, type AcceptAllPositionsFromFork_Responses, type AcceptAllPositionsFromPreviousVersion_Data, type AcceptAllPositionsFromPreviousVersion_Errors, type AcceptAllPositionsFromPreviousVersion_Response, type AcceptAllPositionsFromPreviousVersion_Responses, type AcceptAllPresetPositions_Data, type AcceptAllPresetPositions_Errors, type AcceptAllPresetPositions_Response, type AcceptAllPresetPositions_Responses, type AcceptCounterpartyPosition_Data, type AcceptCounterpartyPosition_Errors, type AcceptCounterpartyPosition_Response, type AcceptCounterpartyPosition_Responses, type AcceptInviteDto, type AcceptNestedAnswersCounterpartyPosition_Data, type AcceptNestedAnswersCounterpartyPosition_Errors, type AcceptNestedAnswersCounterpartyPosition_Response, type AcceptNestedAnswersCounterpartyPosition_Responses, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountSummary_Data, type AccountSummary_Errors, type AccountSummary_Response, type AccountSummary_Responses, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddApprovalComment_Data, type AddApprovalComment_Errors, type AddApprovalComment_Response, type AddApprovalComment_Responses, type AddComment_Data, type AddComment_Response, type AddComment_Responses, type AddElectionApproval_Data, type AddElectionApproval_Errors, type AddElectionApproval_Response, type AddElectionApproval_Responses, type AddElectionRejection_Data, type AddElectionRejection_Errors, type AddElectionRejection_Response, type AddElectionRejection_Responses, type AddOptionalCommentDto, type AddWatchers_Data, type AddWatchers_Errors, type AddWatchers_Response, type AddWatchers_Responses, type AdminAccountDetailDto, 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 AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApplyExtractedAnswers_Data, type ApplyExtractedAnswers_Errors, type ApplyExtractedAnswers_Response, type ApplyExtractedAnswers_Responses, 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 ApproveFinalDocument_Data, type ApproveFinalDocument_Errors, type ApproveFinalDocument_Responses, type Approve_Data, type Approve_Errors, type Approve_Response, type Approve_Responses, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AssignEntity_Data, type AssignEntity_Errors, type AssignEntity_Response, type AssignEntity_Responses, type AssignToMe_Data, type AssignToMe_Errors, type AssignToMe_Response, type AssignToMe_Responses, type AssignUser_Data, type AssignUser_Errors, type AssignUser_Response, type AssignUser_Responses, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuditTrailFilters_Data, type AuditTrailFilters_Response, type AuditTrailFilters_Responses, type AuditTrailForAccountAsJson_Data, type AuditTrailForAccountAsJson_Response, type AuditTrailForAccountAsJson_Responses, type AuditTrailForSubAccountAsJson_Data, type AuditTrailForSubAccountAsJson_Response, type AuditTrailForSubAccountAsJson_Responses, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthPing_Data, type AuthPing_Errors, type AuthPing_Responses, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BreakingChanges_Data, type BreakingChanges_Response, type BreakingChanges_Responses, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type BulkSetsJobCount_Data, type BulkSetsJobCount_Response, type BulkSetsJobCount_Responses, type CDMOutputDto, type CalendricalFrequency, type CancelExtraction_Data, type CancelExtraction_Errors, type CancelExtraction_Response, type CancelExtraction_Responses, type CancelJobCountDto, type CancelNegotiationsDto, type CancelNegotiationsJobCount_Data, type CancelNegotiationsJobCount_Response, type CancelNegotiationsJobCount_Responses, type CancelNegotiations_Data, type CancelNegotiations_Response, type CancelNegotiations_Responses, type Cancel_Data, type Cancel_Errors, type Cancel_Response, type Cancel_Responses, type CancelledByDto, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChangeSigningMode_Data, type ChangeSigningMode_Errors, type ChangeSigningMode_Response, type ChangeSigningMode_Responses, type ChannelType, type ChaserEmailInfoDto, type CheckAuxiliaryDocument_Data, type CheckAuxiliaryDocument_Errors, type CheckAuxiliaryDocument_Response, type CheckAuxiliaryDocument_Responses, type CheckForBrokenApprovers_Data, type CheckForBrokenApprovers_Response, type CheckForBrokenApprovers_Responses, type CheckOfflineNegotiatedDocument_Data, type CheckOfflineNegotiatedDocument_Errors, type CheckOfflineNegotiatedDocument_Response, type CheckOfflineNegotiatedDocument_Responses, type CheckSignedExecutedVersion_Data, type CheckSignedExecutedVersion_Errors, type CheckSignedExecutedVersion_Response, type CheckSignedExecutedVersion_Responses, type CheckSignedSignaturePagePdf_Data, type CheckSignedSignaturePagePdf_Errors, type CheckSignedSignaturePagePdf_Response, type CheckSignedSignaturePagePdf_Responses, type ClientOptions, type ClientSubAccountContextDto, type ClonePreset_Data, type ClonePreset_Errors, type ClonePreset_Response, type ClonePreset_Responses, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ConfirmExecutionVersion_Data, type ConfirmExecutionVersion_Errors, type ConfirmExecutionVersion_Response, type ConfirmExecutionVersion_Responses, type Confirm_Data, type Confirm_Errors, type Confirm_Response, type Confirm_Responses, type ConsentCodeCallback_Data, type ContactForNewApprover_Data, type ContactForNewApprover_Errors, type ContactForNewApprover_Responses, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateAuditTrailJson_Data, type CreateAuditTrailJson_Response, type CreateAuditTrailJson_Responses, type CreateAuditTrailPdf_Data, type CreateAuditTrailPdf_Response, type CreateAuditTrailPdf_Responses, type CreateAuditTrailXlsx_Data, type CreateAuditTrailXlsx_Response, type CreateAuditTrailXlsx_Responses, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateBulkSet_Data, type CreateBulkSet_Response, type CreateBulkSet_Responses, type CreateDocumentMetadataDto, type CreateGroup_Data, type CreateGroup_Response, type CreateGroup_Responses, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreateNegotiation_Data, type CreateNegotiation_Errors, type CreateNegotiation_Response, type CreateNegotiation_Responses, type CreatePresetAuditTrailJson_Data, type CreatePresetAuditTrailJson_Response, type CreatePresetAuditTrailJson_Responses, type CreatePresetAuditTrailXlsx_Data, type CreatePresetAuditTrailXlsx_Response, type CreatePresetAuditTrailXlsx_Responses, type CreatePresetRequestDto, type CreatePreset_Data, type CreatePreset_Errors, type CreatePreset_Response, type CreatePreset_Responses, type CreateSignaturePagePdf_Data, type CreateSignaturePagePdf_Response, type CreateSignaturePagePdf_Responses, type CreateSigningPack_Data, type CreateSigningPack_Response, type CreateSigningPack_Responses, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DeleteApprovalComment_Data, type DeleteApprovalComment_Errors, type DeleteApprovalComment_Responses, type DeleteAuxiliaryDocument_Data, type DeleteAuxiliaryDocument_Response, type DeleteAuxiliaryDocument_Responses, type DeleteBulkSetAttachment_Data, type DeleteBulkSetAttachment_Response, type DeleteBulkSetAttachment_Responses, type DeleteComment_Data, type DeleteComment_Response, type DeleteComment_Responses, type DeleteCoverNote_Data, type DeleteCoverNote_Response, type DeleteCoverNote_Responses, type DeleteDocumentDraftingNote_Data, type DeleteDocumentDraftingNote_Errors, type DeleteDocumentDraftingNote_Responses, type DeleteDocumentElectionDraftingNote_Data, type DeleteDocumentElectionDraftingNote_Errors, type DeleteDocumentElectionDraftingNote_Responses, type DeleteDraftingNotesDocument_Data, type DeleteDraftingNotesDocument_Responses, type DeleteEntity_Data, type DeleteEntity_Errors, type DeleteEntity_Response, type DeleteEntity_Responses, type DeleteExecutionAttachment_Data, type DeleteExecutionAttachment_Response, type DeleteExecutionAttachment_Responses, type DeleteExternalAttachment_Data, type DeleteExternalAttachment_Response, type DeleteExternalAttachment_Responses, type DeleteGeneralCoverNote_Data, type DeleteGeneralCoverNote_Errors, type DeleteGeneralCoverNote_Response, type DeleteGeneralCoverNote_Responses, type DeleteOfflineNegotiatedDocument_Data, type DeleteOfflineNegotiatedDocument_Response, type DeleteOfflineNegotiatedDocument_Responses, type DeletePreset_Data, type DeletePreset_Responses, type DeleteSignedExecutedVersion_Data, type DeleteSignedExecutedVersion_Errors, type DeleteSignedExecutedVersion_Response, type DeleteSignedExecutedVersion_Responses, type DeleteSignedSignaturePageForParty_Data, type DeleteSignedSignaturePageForParty_Responses, 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 DocumentPackAllowlistDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPackWithDocumentsWithUsageDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentPublisherWithPackWithUsageDto, type DocumentRenderTemplate_Data, type DocumentRenderTemplate_Errors, type DocumentRenderTemplate_Response, type DocumentRenderTemplate_Responses, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DocumentWithUsageDto, type DocumentsFilter_Data, type DocumentsFilter_Errors, type DocumentsFilter_Response, type DocumentsFilter_Responses, type DownloadNegotiation_Data, type DownloadNegotiation_Response, type DownloadNegotiation_Responses, type DownloadPostExecutionPack_Data, type DownloadPostExecutionPack_Response, type DownloadPostExecutionPack_Responses, type DownloadPreExecutionCounterpartyNegotiation_Data, type DownloadPreExecutionCounterpartyNegotiation_Response, type DownloadPreExecutionCounterpartyNegotiation_Responses, type DownloadPreset_Data, type DownloadPreset_Response, type DownloadPreset_Responses, 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 EditAnswers_Data, type EditAnswers_Errors, type EditAnswers_Response, type EditAnswers_Responses, type EditApprovalComment_Data, type EditApprovalComment_Errors, type EditApprovalComment_Response, type EditApprovalComment_Responses, type EditDefaultAnswers_Data, type EditDefaultAnswers_Errors, type EditDefaultAnswers_Response, type EditDefaultAnswers_Responses, 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 EmailPreferences_Data, type EmailPreferences_Response, type EmailPreferences_Responses, 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 ExtendWindow_Data, type ExtendWindow_Errors, type ExtendWindow_Response, type ExtendWindow_Responses, 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 FixApprovalRules_Data, type FixApprovalRules_Response, type FixApprovalRules_Responses, type ForgottenPasswordRequestDto, type ForkNegotiation_Data, type ForkNegotiation_Errors, type ForkNegotiation_Response, type ForkNegotiation_Responses, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type GenerateActiveNegotiationsReportAsExcel_Data, type GenerateActiveNegotiationsReportAsExcel_Responses, type GenerateAndMaybeSendEnvelope_Data, type GenerateAndMaybeSendEnvelope_Errors, type GenerateAndMaybeSendEnvelope_Responses, type GenerateAuditTrailForAccountAsExcel_Data, type GenerateAuditTrailForAccountAsExcel_Responses, type GenerateAuditTrailForSubAccountAsExcel_Data, type GenerateAuditTrailForSubAccountAsExcel_Responses, type GenerateCommentsReport_Data, type GenerateCommentsReport_Responses, type GenerateExecutedNegotiationsReportAsExcel_Data, type GenerateExecutedNegotiationsReportAsExcel_Errors, type GenerateExecutedNegotiationsReportAsExcel_Responses, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GenerateNegotiationsReport_Data, type GenerateNegotiationsReport_Responses, type GetAccessibleNegotiation_Data, type GetAccessibleNegotiation_Response, type GetAccessibleNegotiation_Responses, type GetAccountRelationshipSummaries_Data, type GetAccountRelationshipSummaries_Errors, type GetAccountRelationshipSummaries_Response, type GetAccountRelationshipSummaries_Responses, type GetAllVersions_Data, type GetAllVersions_Errors, type GetAllVersions_Response, type GetAllVersions_Responses, type GetAmendDefaults_Data, type GetAmendDefaults_Errors, type GetAmendDefaults_Response, type GetAmendDefaults_Responses, type GetAnnotatedOfflineNegotiatedDocument_Data, type GetAnnotatedOfflineNegotiatedDocument_Errors, type GetAnnotatedOfflineNegotiatedDocument_Response, type GetAnnotatedOfflineNegotiatedDocument_Responses, type GetApprovalComments_Data, type GetApprovalComments_Errors, type GetApprovalComments_Response, type GetApprovalComments_Responses, type GetApprovalHistory_Data, type GetApprovalHistory_Response, type GetApprovalHistory_Responses, type GetApprovalRound_Data, type GetApprovalRound_Response, type GetApprovalRound_Responses, type GetAsCdm_Data, type GetAsCdm_Errors, type GetAsCdm_Response, type GetAsCdm_Responses, type GetAuxiliaryDocument_Data, type GetAuxiliaryDocument_Errors, type GetAuxiliaryDocument_Response, type GetAuxiliaryDocument_Responses, type GetBulkSetAttachment_Data, type GetBulkSetAttachment_Response, type GetBulkSetAttachment_Responses, type GetBulkSet_Data, type GetBulkSet_Response, type GetBulkSet_Responses, type GetChannelTimeline_Data, type GetChannelTimeline_Errors, type GetChannelTimeline_Responses, type GetCommentSummary_Data, type GetCommentSummary_Errors, type GetCommentSummary_Responses, type GetComments_Data, type GetComments_Errors, type GetComments_Responses, type GetCompanyByEntityId_Data, type GetCompanyByEntityId_Errors, type GetCompanyByEntityId_Response, type GetCompanyByEntityId_Responses, type GetDocumentSchema_Data, type GetDocumentSchema_Errors, type GetDocumentSchema_Response, type GetDocumentSchema_Responses, type GetDocument_Data, type GetDocument_Errors, type GetDocument_Response, type GetDocument_Responses, type GetDownloadActiveNegotiationsReportAsExcel_Data, type GetDownloadActiveNegotiationsReportAsExcel_Errors, type GetDownloadActiveNegotiationsReportAsExcel_Response, type GetDownloadActiveNegotiationsReportAsExcel_Responses, type GetDownloadExecutedNegotiationsAsExcel_Data, type GetDownloadExecutedNegotiationsAsExcel_Errors, type GetDownloadExecutedNegotiationsAsExcel_Response, type GetDownloadExecutedNegotiationsAsExcel_Responses, type GetDraftingNotesDocument_Data, type GetDraftingNotesDocument_Response, type GetDraftingNotesDocument_Responses, type GetDraftingNotes_Data, type GetDraftingNotes_Response, type GetDraftingNotes_Responses, type GetElectionAnswer_Data, type GetElectionAnswer_Errors, type GetElectionAnswer_Response, type GetElectionAnswer_Responses, type GetExecutedNegotiationSummary_Data, type GetExecutedNegotiationSummary_Errors, type GetExecutedNegotiationSummary_Response, type GetExecutedNegotiationSummary_Responses, type GetExecutionAttachment_Data, type GetExecutionAttachment_Errors, type GetExecutionAttachment_Response, type GetExecutionAttachment_Responses, type GetExternalAttachment_Data, type GetExternalAttachment_Errors, type GetExternalAttachment_Response, type GetExternalAttachment_Responses, type GetExtractionResults_Data, type GetExtractionResults_Errors, type GetExtractionResults_Response, type GetExtractionResults_Responses, type GetGroupNames_Data, type GetGroupNames_Response, type GetGroupNames_Responses, type GetLatestDocumentSchema_Data, type GetLatestDocumentSchema_Errors, type GetLatestDocumentSchema_Response, type GetLatestDocumentSchema_Responses, type GetLegacyStatistics_Data, type GetLegacyStatistics_Errors, type GetLegacyStatistics_Response, type GetLegacyStatistics_Responses, type GetMajorVersions_Data, type GetMajorVersions_Errors, type GetMajorVersions_Response, type GetMajorVersions_Responses, type GetMultipleNestedAnswers_Data, type GetMultipleNestedAnswers_Errors, type GetMultipleNestedAnswers_Response, type GetMultipleNestedAnswers_Responses, type GetNegotiationDeltasDto, type GetNegotiationDeltas_Data, type GetNegotiationDeltas_Responses, type GetNegotiationDraftingNotes_Data, type GetNegotiationDraftingNotes_Response, type GetNegotiationDraftingNotes_Responses, type GetNegotiationESignStatus_Data, type GetNegotiationESignStatus_Response, type GetNegotiationESignStatus_Responses, type GetNegotiationFilesSummary_Data, type GetNegotiationFilesSummary_Errors, type GetNegotiationFilesSummary_Response, type GetNegotiationFilesSummary_Responses, type GetNegotiation_Data, type GetNegotiation_Response, type GetNegotiation_Responses, type GetNegotiationsGroup_Data, type GetNegotiationsGroup_Response, type GetNegotiationsGroup_Responses, type GetNestedAnswers_Data, type GetNestedAnswers_Errors, type GetNestedAnswers_Response, type GetNestedAnswers_Responses, type GetOfflineNegotiatedDocumentAnnotations_Data, type GetOfflineNegotiatedDocumentAnnotations_Errors, type GetOfflineNegotiatedDocumentAnnotations_Response, type GetOfflineNegotiatedDocumentAnnotations_Responses, type GetOfflineNegotiatedDocument_Data, type GetOfflineNegotiatedDocument_Errors, type GetOfflineNegotiatedDocument_Response, type GetOfflineNegotiatedDocument_Responses, type GetOriginalAnswersForForkNegotiation_Data, type GetOriginalAnswersForForkNegotiation_Errors, type GetOriginalAnswersForForkNegotiation_Response, type GetOriginalAnswersForForkNegotiation_Responses, type GetOtherPartyAnswers_Data, type GetOtherPartyAnswers_Errors, type GetOtherPartyAnswers_Response, type GetOtherPartyAnswers_Responses, type GetPartyAnswers_Data, type GetPartyAnswers_Errors, type GetPartyAnswers_Response, type GetPartyAnswers_Responses, type GetPotentialUsers_Data, type GetPotentialUsers_Errors, type GetPotentialUsers_Response, type GetPotentialUsers_Responses, type GetPreset_Data, type GetPreset_Response, type GetPreset_Responses, type GetPreviousActiveUsers_Data, type GetPreviousActiveUsers_Errors, type GetPreviousActiveUsers_Response, type GetPreviousActiveUsers_Responses, type GetPreviousMajorVersionsNestedAnswerElections_Data, type GetPreviousMajorVersionsNestedAnswerElections_Errors, type GetPreviousMajorVersionsNestedAnswerElections_Response, type GetPreviousMajorVersionsNestedAnswerElections_Responses, type GetPreviousMajorVersionsNestedAnswerIds_Data, type GetPreviousMajorVersionsNestedAnswerIds_Errors, type GetPreviousMajorVersionsNestedAnswerIds_Response, type GetPreviousMajorVersionsNestedAnswerIds_Responses, type GetProfile_Data, type GetProfile_Response, type GetProfile_Responses, type GetSecurityContext_Data, type GetSecurityContext_Response, type GetSecurityContext_Responses, type GetSettings_Data, type GetSettings_Errors, type GetSettings_Response, type GetSettings_Responses, type GetSignedExecutedVersion_Data, type GetSignedExecutedVersion_Errors, type GetSignedExecutedVersion_Response, type GetSignedExecutedVersion_Responses, type GetSignedSignaturePagePdf_Data, type GetSignedSignaturePagePdf_Errors, type GetSignedSignaturePagePdf_Response, type GetSignedSignaturePagePdf_Responses, type GetSsoConfig_Data, type GetSsoConfig_Response, type GetSsoConfig_Responses, type GetStatisticsOverview_Data, type GetStatisticsOverview_Errors, type GetStatisticsOverview_Response, type GetStatisticsOverview_Responses, type GetStatistics_Data, type GetStatistics_Errors, type GetStatistics_Response, type GetStatistics_Responses, type GetSubAccount_Data, type GetSubAccount_Responses, type GetSubscribedPublishers_Data, type GetSubscribedPublishers_Response, type GetSubscribedPublishers_Responses, type GetTimelineActivity_Data, type GetTimelineActivity_Errors, type GetTimelineActivity_Responses, type GetTimeline_Data, type GetTimeline_Errors, type GetTimeline_Responses, type GetUserStatistics_Data, type GetUserStatistics_Errors, type GetUserStatistics_Response, type GetUserStatistics_Responses, type GetUsersForPicker_Data, type GetUsersForPicker_Errors, type GetUsersForPicker_Response, type GetUsersForPicker_Responses, type GetUsers_Data, type GetUsers_Errors, type GetUsers_Response, type GetUsers_Responses, type GetWatchers_Data, type GetWatchers_Errors, type GetWatchers_Response, type GetWatchers_Responses, type GetWindow_Data, type GetWindow_Errors, type GetWindow_Response, type GetWindow_Responses, type GrantAllNegotiationsAccess_Data, type GrantAllNegotiationsAccess_Response, type GrantAllNegotiationsAccess_Responses, type GrantNegotiationsAccess_Data, type GrantNegotiationsAccess_Response, type GrantNegotiationsAccess_Responses, type GrantPresetsAccess_Data, type GrantPresetsAccess_Response, type GrantPresetsAccess_Responses, type GrantWindow_Data, type GrantWindow_Errors, type GrantWindow_Response, type GrantWindow_Responses, type InitialAnswers_Data, type InitialAnswers_Errors, type InitialAnswers_Response, type InitialAnswers_Responses, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type ListAdvisorsForWorkspace_Data, type ListAdvisorsForWorkspace_Response, type ListAdvisorsForWorkspace_Responses, type ListAllPresetsForSubAccountV1_Data, type ListAllPresetsForSubAccountV1_Response, type ListAllPresetsForSubAccountV1_Responses, type ListAllPresetsForSubAccountV2_Data, type ListAllPresetsForSubAccountV2_Response, type ListAllPresetsForSubAccountV2_Responses, type ListBulkSets_Data, type ListBulkSets_Responses, type ListDocumentsVersionsSummary_Data, type ListDocumentsVersionsSummary_Response, type ListDocumentsVersionsSummary_Responses, type ListDocumentsWithPagination_Data, type ListDocumentsWithPagination_Response, type ListDocumentsWithPagination_Responses, type ListDocuments_Data, type ListDocuments_Response, type ListDocuments_Responses, type ListEntities_Data, type ListEntities_Response, type ListEntities_Responses, type ListExecutionAttachments_Data, type ListExecutionAttachments_Errors, type ListExecutionAttachments_Response, type ListExecutionAttachments_Responses, type ListExternalAttachments_Data, type ListExternalAttachments_Errors, type ListExternalAttachments_Response, type ListExternalAttachments_Responses, type ListNegotiations_Data, type ListNegotiations_Response, type ListNegotiations_Responses, type ListPotentialNegotiationAdvisors_Data, type ListPotentialNegotiationAdvisors_Response, type ListPotentialNegotiationAdvisors_Responses, type ListPotentialPresetAdvisors_Data, type ListPotentialPresetAdvisors_Response, type ListPotentialPresetAdvisors_Responses, type ListPresets_Data, type ListPresets_Response, type ListPresets_Responses, type ListRecentExtractions_Data, type ListRecentExtractions_Response, type ListRecentExtractions_Responses, type ListSubAccounts_Data, type ListSubAccounts_Responses, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkActivityEventsAsViewed_Data, type MarkActivityEventsAsViewed_Errors, type MarkActivityEventsAsViewed_Responses, type MarkApprovalCommentsAsReadRequestDto, type MarkApprovalCommentsAsViewed_Data, type MarkApprovalCommentsAsViewed_Errors, type MarkApprovalCommentsAsViewed_Responses, type MarkAsFinal_Data, type MarkAsFinal_Errors, type MarkAsFinal_Response, type MarkAsFinal_Responses, type MarkAsOffline_Data, type MarkAsOffline_Errors, type MarkAsOffline_Response, type MarkAsOffline_Responses, type MarkCommentEventsAsViewed_Data, type MarkCommentEventsAsViewed_Errors, type MarkCommentEventsAsViewed_Responses, type MarkEventAsReadRequestDto, type MarkEventsAsViewed_Data, type MarkEventsAsViewed_Errors, type MarkEventsAsViewed_Responses, type MarkNotificationsAsReadAndActionedDto, type ModifySSOConfigDto, type MoveEntityDto, type MoveEntity_Data, type MoveEntity_Errors, type MoveEntity_Response, type MoveEntity_Responses, 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 NegotiationForkHistory_Data, type NegotiationForkHistory_Errors, type NegotiationForkHistory_Response, type NegotiationForkHistory_Responses, type NegotiationGetDocumentSchema_Data, type NegotiationGetDocumentSchema_Errors, type NegotiationGetDocumentSchema_Response, type NegotiationGetDocumentSchema_Responses, 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 NegotiationRenderTemplate_Data, type NegotiationRenderTemplate_Errors, type NegotiationRenderTemplate_Response, type NegotiationRenderTemplate_Responses, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSendForApproval_Data, type NegotiationSendForApproval_Errors, type NegotiationSendForApproval_Response, type NegotiationSendForApproval_Responses, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWatcherDto, type NegotiationWatchersDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsFilter_Data, type NegotiationsFilter_Errors, type NegotiationsFilter_Response, type NegotiationsFilter_Responses, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type NotifyOfDraft_Data, type NotifyOfDraft_Errors, type NotifyOfDraft_Responses, type ObtainConsent_Data, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OverrideApproveFinalDocument_Data, type OverrideApproveFinalDocument_Errors, type OverrideApproveFinalDocument_Responses, type OverrideElectionApproval_Data, type OverrideElectionApproval_Errors, type OverrideElectionApproval_Response, type OverrideElectionApproval_Responses, type OverrideElectionRejection_Data, type OverrideElectionRejection_Errors, type OverrideElectionRejection_Response, type OverrideElectionRejection_Responses, type OverrideRejectFinalDocument_Data, type OverrideRejectFinalDocument_Errors, type OverrideRejectFinalDocument_Responses, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PatchEmailPreferences_Data, type PatchEmailPreferences_Responses, 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 PresetEditAnswers_Data, type PresetEditAnswers_Errors, type PresetEditAnswers_Response, type PresetEditAnswers_Responses, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetGetDocumentSchema_Data, type PresetGetDocumentSchema_Errors, type PresetGetDocumentSchema_Response, type PresetGetDocumentSchema_Responses, type PresetGetMultipleNestedAnswers_Data, type PresetGetMultipleNestedAnswers_Errors, type PresetGetMultipleNestedAnswers_Response, type PresetGetMultipleNestedAnswers_Responses, type PresetGetNestedAnswers_Data, type PresetGetNestedAnswers_Errors, type PresetGetNestedAnswers_Response, type PresetGetNestedAnswers_Responses, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetRenderTemplate_Data, type PresetRenderTemplate_Errors, type PresetRenderTemplate_Response, type PresetRenderTemplate_Responses, type PresetRequestApproval_Data, type PresetRequestApproval_Errors, type PresetRequestApproval_Response, type PresetRequestApproval_Responses, type PresetResultsDto, type PresetSelectionDto, type PresetSendForApproval_Data, type PresetSendForApproval_Errors, type PresetSendForApproval_Response, type PresetSendForApproval_Responses, type PresetSetElectionApproval_Data, type PresetSetElectionApproval_Errors, type PresetSetElectionApproval_Response, type PresetSetElectionApproval_Responses, type PresetSetFinalApproval_Data, type PresetSetFinalApproval_Errors, type PresetSetFinalApproval_Response, type PresetSetFinalApproval_Responses, type PresetSetMultipleNestedAnswers_Data, type PresetSetMultipleNestedAnswers_Errors, type PresetSetMultipleNestedAnswers_Response, type PresetSetMultipleNestedAnswers_Responses, type PresetSetNestedAnswers_Data, type PresetSetNestedAnswers_Errors, type PresetSetNestedAnswers_Response, type PresetSetNestedAnswers_Responses, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type PresetSwapParties_Data, type PresetSwapParties_Errors, type PresetSwapParties_Response, type PresetSwapParties_Responses, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type PublisherSummaries_Data, type PublisherSummaries_Response, type PublisherSummaries_Responses, type QueryExecutionResponseDto, type QueueGenerateNegotiationDocumentJob_Data, type QueueGenerateNegotiationDocumentJob_Response, type QueueGenerateNegotiationDocumentJob_Responses, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectFinalDocument_Data, type RejectFinalDocument_Errors, type RejectFinalDocument_Responses, type RejectInviteDto, type RejectPresetApproval_Data, type RejectPresetApproval_Errors, type RejectPresetApproval_Response, type RejectPresetApproval_Responses, type RejectPresetDto, type ReleaseNotesDto, type RemoveWatchers_Data, type RemoveWatchers_Errors, type RemoveWatchers_Response, type RemoveWatchers_Responses, type RemovedUsersDto, type RenameExecutionAttachment_Data, type RenameExecutionAttachment_Errors, type RenameExecutionAttachment_Response, type RenameExecutionAttachment_Responses, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type ResetUserAnswers_Data, type ResetUserAnswers_Errors, type ResetUserAnswers_Response, type ResetUserAnswers_Responses, type RestrictionsDto, type Retract_Data, type Retract_Errors, type Retract_Response, type Retract_Responses, type RevertToAmending_Data, type RevertToAmending_Errors, type RevertToAmending_Response, type RevertToAmending_Responses, type RevokeNegotiationsAccess_Data, type RevokeNegotiationsAccess_Response, type RevokeNegotiationsAccess_Responses, type RevokePresetsAccess_Data, type RevokePresetsAccess_Response, type RevokePresetsAccess_Responses, type RevokeWindow_Data, type RevokeWindow_Responses, type SSOConfigDto, type SampleValueConfigurationDto, type ScheduleExtraction_Data, type ScheduleExtraction_Errors, type ScheduleExtraction_Response, type ScheduleExtraction_Responses, type SchemaAvailableAsCDMDto, type SchemaAvailableAsCdm_Data, type SchemaAvailableAsCdm_Errors, type SchemaAvailableAsCdm_Response, type SchemaAvailableAsCdm_Responses, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SearchEntity_Data, type SearchEntity_Response, type SearchEntity_Responses, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendBulkSetToCounterpartiesInitial_Data, type SendBulkSetToCounterpartiesInitial_Response, type SendBulkSetToCounterpartiesInitial_Responses, type SendChaserEmail_Data, type SendChaserEmail_Errors, type SendChaserEmail_Responses, type SendDocumentApprovalReminder_Data, type SendDocumentApprovalReminder_Errors, type SendDocumentApprovalReminder_Responses, type SendElectionApprovalReminder_Data, type SendElectionApprovalReminder_Errors, type SendElectionApprovalReminder_Responses, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendGroupToCounterparty_Data, type SendGroupToCounterparty_Errors, type SendGroupToCounterparty_Response, type SendGroupToCounterparty_Responses, type SendToCounterPartyInitialDto, type SendToCounterpartyInitial_Data, type SendToCounterpartyInitial_Errors, type SendToCounterpartyInitial_Response, type SendToCounterpartyInitial_Responses, type SendToCounterparty_Data, type SendToCounterparty_Errors, type SendToCounterparty_Response, type SendToCounterparty_Responses, type SetApprovalRulesDto, type SetAuxiliaryDocument_Data, type SetAuxiliaryDocument_Errors, type SetAuxiliaryDocument_Response, type SetAuxiliaryDocument_Responses, type SetBulkSetAttachments_Data, type SetBulkSetAttachments_Errors, type SetBulkSetAttachments_Response, type SetBulkSetAttachments_Responses, type SetCounterparties_Data, type SetCounterparties_Errors, type SetCounterparties_Response, type SetCounterparties_Responses, type SetElectionApproval_Data, type SetElectionApproval_Errors, type SetElectionApproval_Response, type SetElectionApproval_Responses, type SetExecutionAttachment_Data, type SetExecutionAttachment_Errors, type SetExecutionAttachment_Response, type SetExecutionAttachment_Responses, type SetExecutionAttachments_Data, type SetExecutionAttachments_Errors, type SetExecutionAttachments_Response, type SetExecutionAttachments_Responses, type SetExternalAttachment_Data, type SetExternalAttachment_Errors, type SetExternalAttachment_Response, type SetExternalAttachment_Responses, type SetExternalAttachments_Data, type SetExternalAttachments_Errors, type SetExternalAttachments_Response, type SetExternalAttachments_Responses, type SetFeatureDto, type SetFinalApproval_Data, type SetFinalApproval_Response, type SetFinalApproval_Responses, type SetGeneralCoverNote_Data, type SetGeneralCoverNote_Errors, type SetGeneralCoverNote_Response, type SetGeneralCoverNote_Responses, type SetMultipleNestedAnswers_Data, type SetMultipleNestedAnswers_Errors, type SetMultipleNestedAnswers_Response, type SetMultipleNestedAnswers_Responses, type SetNestedAnswers_Data, type SetNestedAnswers_Errors, type SetNestedAnswers_Response, type SetNestedAnswers_Responses, type SetOfflineNegotiatedDocument_Data, type SetOfflineNegotiatedDocument_Errors, type SetOfflineNegotiatedDocument_Response, type SetOfflineNegotiatedDocument_Responses, type SetOwnerEntity_Data, type SetOwnerEntity_Errors, type SetOwnerEntity_Response, type SetOwnerEntity_Responses, type SetPreset_Data, type SetPreset_Errors, type SetPreset_Response, type SetPreset_Responses, type SetReceiverEntity_Data, type SetReceiverEntity_Errors, type SetReceiverEntity_Response, type SetReceiverEntity_Responses, type SetSignedExecutedVersion_Data, type SetSignedExecutedVersion_Errors, type SetSignedExecutedVersion_Response, type SetSignedExecutedVersion_Responses, type SetSignedSignaturePageForParty_Data, type SetSignedSignaturePageForParty_Response, type SetSignedSignaturePageForParty_Responses, type ShareNegotiationRequestDto, type ShareNegotiation_Data, type ShareNegotiation_Errors, type ShareNegotiation_Response, type ShareNegotiation_Responses, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SuggestGroupName_Data, type SuggestGroupName_Response, type SuggestGroupName_Responses, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SwapParties_Data, type SwapParties_Errors, type SwapParties_Response, type SwapParties_Responses, type SyncNewApproverDto, type SyncNewApprover_Data, type SyncNewApprover_Responses, 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 Unsubscribe_Data, type Unsubscribe_Errors, type Unsubscribe_Responses, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateAttachDocx_Data, type UpdateAttachDocx_Response, type UpdateAttachDocx_Responses, type UpdateCommentDto, type UpdateComment_Data, type UpdateComment_Response, type UpdateComment_Responses, type UpdateCoverNote_Data, type UpdateCoverNote_Response, type UpdateCoverNote_Responses, type UpdateCustomFields_Data, type UpdateCustomFields_Errors, type UpdateCustomFields_Response, type UpdateCustomFields_Responses, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDraftingNote_Data, type UpdateDocumentDraftingNote_Errors, type UpdateDocumentDraftingNote_Response, type UpdateDocumentDraftingNote_Responses, type UpdateDocumentDto, type UpdateDocumentElectionDraftingNote_Data, type UpdateDocumentElectionDraftingNote_Errors, type UpdateDocumentElectionDraftingNote_Response, type UpdateDocumentElectionDraftingNote_Responses, type UpdateDocumentStateDto, type UpdateDraftingNotes_Data, type UpdateDraftingNotes_Errors, type UpdateDraftingNotes_Response, type UpdateDraftingNotes_Responses, type UpdateExtractionFeedback_Data, type UpdateExtractionFeedback_Errors, type UpdateExtractionFeedback_Response, type UpdateExtractionFeedback_Responses, type UpdateGroupMembers_Data, type UpdateGroupMembers_Errors, type UpdateGroupMembers_Responses, type UpdateGroupName_Data, type UpdateGroupName_Errors, type UpdateGroupName_Responses, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateMetadata_Data, type UpdateMetadata_Errors, type UpdateMetadata_Response, type UpdateMetadata_Responses, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateNegotiationsToMatch_Data, type UpdateNegotiationsToMatch_Errors, type UpdateNegotiationsToMatch_Responses, type UpdateSelectedElections_Data, type UpdateSelectedElections_Errors, type UpdateSelectedElections_Response, type UpdateSelectedElections_Responses, type UpdateSubAccountRequestDto, type UpdateSubAccount_Data, type UpdateSubAccount_Errors, type UpdateSubAccount_Responses, type UpdateUserAnswers_Data, type UpdateUserAnswers_Errors, type UpdateUserAnswers_Response, type UpdateUserAnswers_Responses, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UpgradePresetSchema_Data, type UpgradePresetSchema_Errors, type UpgradePresetSchema_Response, type UpgradePresetSchema_Responses, type UpgradeSchema_Data, type UpgradeSchema_Response, type UpgradeSchema_Responses, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWithRoleDto, type UsersWithNegotiationAccess_Data, type UsersWithNegotiationAccess_Response, type UsersWithNegotiationAccess_Responses, type ValidInvitationResponseDto, type ValidateDraftReceiverEmails_Data, type ValidateDraftReceiverEmails_Response, type ValidateDraftReceiverEmails_Responses, type ValidateEntities_Data, type ValidateEntities_Response, type ValidateEntities_Responses, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type Version_Data, type Version_Responses, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type VoidESignEnvelopeForNegotiation_Data, type VoidESignEnvelopeForNegotiation_Errors, type VoidESignEnvelopeForNegotiation_Responses, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, acceptAllCustodianTemplatePositions, acceptAllPositionsFromFork, acceptAllPositionsFromPreviousVersion, acceptAllPresetPositions, acceptCounterpartyPosition, acceptNestedAnswersCounterpartyPosition, accountSummary, addApprovalComment, addComment, addElectionApproval, addElectionRejection, addWatchers, applyExtractedAnswers, approve, approveFinalDocument, assignEntity, assignToMe, assignUser, auditTrailFilters, auditTrailForAccountAsJson, auditTrailForSubAccountAsJson, authPing, breakingChanges, bulkSetsJobCount, cancel, cancelExtraction, cancelNegotiations, cancelNegotiationsJobCount, changeSigningMode, checkAuxiliaryDocument, checkForBrokenApprovers, checkOfflineNegotiatedDocument, checkSignedExecutedVersion, checkSignedSignaturePagePdf, clonePreset, confirm, confirmExecutionVersion, consentCodeCallback, contactForNewApprover, createAuditTrailJson, createAuditTrailPdf, createAuditTrailXlsx, createBulkSet, createGroup, createNegotiation, createPreset, createPresetAuditTrailJson, createPresetAuditTrailXlsx, createSignaturePagePdf, createSigningPack, deleteApprovalComment, deleteAuxiliaryDocument, deleteBulkSetAttachment, deleteComment, deleteCoverNote, deleteDocumentDraftingNote, deleteDocumentElectionDraftingNote, deleteDraftingNotesDocument, deleteEntity, deleteExecutionAttachment, deleteExternalAttachment, deleteGeneralCoverNote, deleteOfflineNegotiatedDocument, deletePreset, deleteSignedExecutedVersion, deleteSignedSignaturePageForParty, documentRenderTemplate, documentsFilter, downloadNegotiation, downloadPostExecutionPack, downloadPreExecutionCounterpartyNegotiation, downloadPreset, editAnswers, editApprovalComment, editDefaultAnswers, emailPreferences, extendWindow, fixApprovalRules, forkNegotiation, generateActiveNegotiationsReportAsExcel, generateAndMaybeSendEnvelope, generateAuditTrailForAccountAsExcel, generateAuditTrailForSubAccountAsExcel, generateCommentsReport, generateExecutedNegotiationsReportAsExcel, generateNegotiationsReport, getAccessibleNegotiation, getAccountRelationshipSummaries, getAllVersions, getAmendDefaults, getAnnotatedOfflineNegotiatedDocument, getApprovalComments, getApprovalHistory, getApprovalRound, getAsCdm, getAuxiliaryDocument, getBulkSet, getBulkSetAttachment, getChannelTimeline, getCommentSummary, getComments, getCompanyByEntityId, getDocument, getDocumentSchema, getDownloadActiveNegotiationsReportAsExcel, getDownloadExecutedNegotiationsAsExcel, getDraftingNotes, getDraftingNotesDocument, getElectionAnswer, getExecutedNegotiationSummary, getExecutionAttachment, getExternalAttachment, getExtractionResults, getGroupNames, getLatestDocumentSchema, getLegacyStatistics, getMajorVersions, getMultipleNestedAnswers, getNegotiation, getNegotiationDeltas, getNegotiationDraftingNotes, getNegotiationESignStatus, getNegotiationFilesSummary, getNegotiationsGroup, getNestedAnswers, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, getOriginalAnswersForForkNegotiation, getOtherPartyAnswers, getPartyAnswers, getPotentialUsers, getPreset, getPreviousActiveUsers, getPreviousMajorVersionsNestedAnswerElections, getPreviousMajorVersionsNestedAnswerIds, getProfile, getSecurityContext, getSettings, getSignedExecutedVersion, getSignedSignaturePagePdf, getSsoConfig, getStatistics, getStatisticsOverview, getSubAccount, getSubscribedPublishers, getTimeline, getTimelineActivity, getUserStatistics, getUsers, getUsersForPicker, getWatchers, getWindow, grantAllNegotiationsAccess, grantNegotiationsAccess, grantPresetsAccess, grantWindow, initialAnswers, listAdvisorsForWorkspace, listAllPresetsForSubAccountV1, listAllPresetsForSubAccountV2, listBulkSets, listDocuments, listDocumentsVersionsSummary, listDocumentsWithPagination, listEntities, listExecutionAttachments, listExternalAttachments, listNegotiations, listPotentialNegotiationAdvisors, listPotentialPresetAdvisors, listPresets, listRecentExtractions, listSubAccounts, markActivityEventsAsViewed, markApprovalCommentsAsViewed, markAsFinal, markAsOffline, markCommentEventsAsViewed, markEventsAsViewed, moveEntity, negotiationForkHistory, negotiationGetDocumentSchema, negotiationRenderTemplate, negotiationSendForApproval, negotiationsFilter, notifyOfDraft, obtainConsent, overrideApproveFinalDocument, overrideElectionApproval, overrideElectionRejection, overrideRejectFinalDocument, patchEmailPreferences, presetEditAnswers, presetGetDocumentSchema, presetGetMultipleNestedAnswers, presetGetNestedAnswers, presetRenderTemplate, presetRequestApproval, presetSendForApproval, presetSetElectionApproval, presetSetFinalApproval, presetSetMultipleNestedAnswers, presetSetNestedAnswers, presetSwapParties, publisherSummaries, queueGenerateNegotiationDocumentJob, rejectFinalDocument, rejectPresetApproval, removeWatchers, renameExecutionAttachment, resetUserAnswers, retract, revertToAmending, revokeNegotiationsAccess, revokePresetsAccess, revokeWindow, scheduleExtraction, schemaAvailableAsCdm, searchEntity, sendBulkSetToCounterpartiesInitial, sendChaserEmail, sendDocumentApprovalReminder, sendElectionApprovalReminder, sendGroupToCounterparty, sendToCounterparty, sendToCounterpartyInitial, setAuxiliaryDocument, setBulkSetAttachments, setCounterparties, setElectionApproval, setExecutionAttachment, setExecutionAttachments, setExternalAttachment, setExternalAttachments, setFinalApproval, setGeneralCoverNote, setMultipleNestedAnswers, setNestedAnswers, setOfflineNegotiatedDocument, setOwnerEntity, setPreset, setReceiverEntity, setSignedExecutedVersion, setSignedSignaturePageForParty, shareNegotiation, suggestGroupName, swapParties, syncNewApprover, unsubscribe, updateAttachDocx, updateComment, updateCoverNote, updateCustomFields, updateDocumentDraftingNote, updateDocumentElectionDraftingNote, updateDraftingNotes, updateExtractionFeedback, updateGroupMembers, updateGroupName, updateMetadata, updateNegotiationsToMatch, updateSelectedElections, updateSubAccount, updateUserAnswers, upgradePresetSchema, upgradeSchema, usersWithNegotiationAccess, validateDraftReceiverEmails, validateEntities, version, voidESignEnvelopeForNegotiation };
11135
+ export { type AcceptAllCounterpartyPositions_Data, type AcceptAllCounterpartyPositions_Errors, type AcceptAllCounterpartyPositions_Response, type AcceptAllCounterpartyPositions_Responses, type AcceptAllCustodianTemplatePositions_Data, type AcceptAllCustodianTemplatePositions_Errors, type AcceptAllCustodianTemplatePositions_Response, type AcceptAllCustodianTemplatePositions_Responses, type AcceptAllPositionsFromFork_Data, type AcceptAllPositionsFromFork_Errors, type AcceptAllPositionsFromFork_Response, type AcceptAllPositionsFromFork_Responses, type AcceptAllPositionsFromPreviousVersion_Data, type AcceptAllPositionsFromPreviousVersion_Errors, type AcceptAllPositionsFromPreviousVersion_Response, type AcceptAllPositionsFromPreviousVersion_Responses, type AcceptAllPresetPositions_Data, type AcceptAllPresetPositions_Errors, type AcceptAllPresetPositions_Response, type AcceptAllPresetPositions_Responses, type AcceptCounterpartyPosition_Data, type AcceptCounterpartyPosition_Errors, type AcceptCounterpartyPosition_Response, type AcceptCounterpartyPosition_Responses, type AcceptInviteDto, type AcceptNestedAnswersCounterpartyPosition_Data, type AcceptNestedAnswersCounterpartyPosition_Errors, type AcceptNestedAnswersCounterpartyPosition_Response, type AcceptNestedAnswersCounterpartyPosition_Responses, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountSummary_Data, type AccountSummary_Errors, type AccountSummary_Response, type AccountSummary_Responses, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddApprovalComment_Data, type AddApprovalComment_Errors, type AddApprovalComment_Response, type AddApprovalComment_Responses, type AddComment_Data, type AddComment_Response, type AddComment_Responses, type AddElectionApproval_Data, type AddElectionApproval_Errors, type AddElectionApproval_Response, type AddElectionApproval_Responses, type AddElectionRejection_Data, type AddElectionRejection_Errors, type AddElectionRejection_Response, type AddElectionRejection_Responses, type AddOptionalCommentDto, type AddWatchers_Data, type AddWatchers_Errors, type AddWatchers_Response, type AddWatchers_Responses, type AdminAccountDetailDto, 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 AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApplyExtractedAnswers_Data, type ApplyExtractedAnswers_Errors, type ApplyExtractedAnswers_Response, type ApplyExtractedAnswers_Responses, 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 ApproveAccessRequest_Data, type ApproveAccessRequest_Errors, type ApproveAccessRequest_Response, type ApproveAccessRequest_Responses, type ApproveFinalDocument_Data, type ApproveFinalDocument_Errors, type ApproveFinalDocument_Responses, type Approve_Data, type Approve_Errors, type Approve_Response, type Approve_Responses, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AssignEntity_Data, type AssignEntity_Errors, type AssignEntity_Response, type AssignEntity_Responses, type AssignToMe_Data, type AssignToMe_Errors, type AssignToMe_Response, type AssignToMe_Responses, type AssignUser_Data, type AssignUser_Errors, type AssignUser_Response, type AssignUser_Responses, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuditTrailFilters_Data, type AuditTrailFilters_Response, type AuditTrailFilters_Responses, type AuditTrailForAccountAsJson_Data, type AuditTrailForAccountAsJson_Response, type AuditTrailForAccountAsJson_Responses, type AuditTrailForSubAccountAsJson_Data, type AuditTrailForSubAccountAsJson_Response, type AuditTrailForSubAccountAsJson_Responses, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthPing_Data, type AuthPing_Errors, type AuthPing_Responses, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BreakingChanges_Data, type BreakingChanges_Response, type BreakingChanges_Responses, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type BulkSetsJobCount_Data, type BulkSetsJobCount_Response, type BulkSetsJobCount_Responses, type CDMOutputDto, type CalendricalFrequency, type CancelExtraction_Data, type CancelExtraction_Errors, type CancelExtraction_Response, type CancelExtraction_Responses, type CancelJobCountDto, type CancelNegotiationsDto, type CancelNegotiationsJobCount_Data, type CancelNegotiationsJobCount_Response, type CancelNegotiationsJobCount_Responses, type CancelNegotiations_Data, type CancelNegotiations_Response, type CancelNegotiations_Responses, type Cancel_Data, type Cancel_Errors, type Cancel_Response, type Cancel_Responses, type CancelledByDto, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChangeSigningMode_Data, type ChangeSigningMode_Errors, type ChangeSigningMode_Response, type ChangeSigningMode_Responses, type ChannelType, type ChaserEmailInfoDto, type CheckAuxiliaryDocument_Data, type CheckAuxiliaryDocument_Errors, type CheckAuxiliaryDocument_Response, type CheckAuxiliaryDocument_Responses, type CheckForBrokenApprovers_Data, type CheckForBrokenApprovers_Response, type CheckForBrokenApprovers_Responses, type CheckOfflineNegotiatedDocument_Data, type CheckOfflineNegotiatedDocument_Errors, type CheckOfflineNegotiatedDocument_Response, type CheckOfflineNegotiatedDocument_Responses, type CheckSignedExecutedVersion_Data, type CheckSignedExecutedVersion_Errors, type CheckSignedExecutedVersion_Response, type CheckSignedExecutedVersion_Responses, type CheckSignedSignaturePagePdf_Data, type CheckSignedSignaturePagePdf_Errors, type CheckSignedSignaturePagePdf_Response, type CheckSignedSignaturePagePdf_Responses, type ClientOptions, type ClientSubAccountContextDto, type ClonePreset_Data, type ClonePreset_Errors, type ClonePreset_Response, type ClonePreset_Responses, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ConfirmExecutionVersion_Data, type ConfirmExecutionVersion_Errors, type ConfirmExecutionVersion_Response, type ConfirmExecutionVersion_Responses, type Confirm_Data, type Confirm_Errors, type Confirm_Response, type Confirm_Responses, type ConsentCodeCallback_Data, type ContactForNewApprover_Data, type ContactForNewApprover_Errors, type ContactForNewApprover_Responses, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateAuditTrailJson_Data, type CreateAuditTrailJson_Response, type CreateAuditTrailJson_Responses, type CreateAuditTrailPdf_Data, type CreateAuditTrailPdf_Response, type CreateAuditTrailPdf_Responses, type CreateAuditTrailXlsx_Data, type CreateAuditTrailXlsx_Response, type CreateAuditTrailXlsx_Responses, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateBulkSet_Data, type CreateBulkSet_Response, type CreateBulkSet_Responses, type CreateDocumentMetadataDto, type CreateGroup_Data, type CreateGroup_Response, type CreateGroup_Responses, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreateNegotiation_Data, type CreateNegotiation_Errors, type CreateNegotiation_Response, type CreateNegotiation_Responses, type CreatePresetAuditTrailJson_Data, type CreatePresetAuditTrailJson_Response, type CreatePresetAuditTrailJson_Responses, type CreatePresetAuditTrailXlsx_Data, type CreatePresetAuditTrailXlsx_Response, type CreatePresetAuditTrailXlsx_Responses, type CreatePresetRequestDto, type CreatePreset_Data, type CreatePreset_Errors, type CreatePreset_Response, type CreatePreset_Responses, type CreateSignaturePagePdf_Data, type CreateSignaturePagePdf_Response, type CreateSignaturePagePdf_Responses, type CreateSigningPack_Data, type CreateSigningPack_Response, type CreateSigningPack_Responses, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DeleteApprovalComment_Data, type DeleteApprovalComment_Errors, type DeleteApprovalComment_Responses, type DeleteAuxiliaryDocument_Data, type DeleteAuxiliaryDocument_Response, type DeleteAuxiliaryDocument_Responses, type DeleteBulkSetAttachment_Data, type DeleteBulkSetAttachment_Response, type DeleteBulkSetAttachment_Responses, type DeleteComment_Data, type DeleteComment_Response, type DeleteComment_Responses, type DeleteCoverNote_Data, type DeleteCoverNote_Response, type DeleteCoverNote_Responses, type DeleteDocumentDraftingNote_Data, type DeleteDocumentDraftingNote_Errors, type DeleteDocumentDraftingNote_Responses, type DeleteDocumentElectionDraftingNote_Data, type DeleteDocumentElectionDraftingNote_Errors, type DeleteDocumentElectionDraftingNote_Responses, type DeleteDraftingNotesDocument_Data, type DeleteDraftingNotesDocument_Responses, type DeleteEntity_Data, type DeleteEntity_Errors, type DeleteEntity_Response, type DeleteEntity_Responses, type DeleteExecutionAttachment_Data, type DeleteExecutionAttachment_Response, type DeleteExecutionAttachment_Responses, type DeleteExternalAttachment_Data, type DeleteExternalAttachment_Response, type DeleteExternalAttachment_Responses, type DeleteGeneralCoverNote_Data, type DeleteGeneralCoverNote_Errors, type DeleteGeneralCoverNote_Response, type DeleteGeneralCoverNote_Responses, type DeleteOfflineNegotiatedDocument_Data, type DeleteOfflineNegotiatedDocument_Response, type DeleteOfflineNegotiatedDocument_Responses, type DeletePreset_Data, type DeletePreset_Responses, type DeleteSignedExecutedVersion_Data, type DeleteSignedExecutedVersion_Errors, type DeleteSignedExecutedVersion_Response, type DeleteSignedExecutedVersion_Responses, type DeleteSignedSignaturePageForParty_Data, type DeleteSignedSignaturePageForParty_Responses, 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 DocumentPackAllowlistDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPackWithDocumentsWithUsageDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentPublisherWithPackWithUsageDto, type DocumentRenderTemplate_Data, type DocumentRenderTemplate_Errors, type DocumentRenderTemplate_Response, type DocumentRenderTemplate_Responses, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DocumentWithUsageDto, type DocumentsFilter_Data, type DocumentsFilter_Errors, type DocumentsFilter_Response, type DocumentsFilter_Responses, type DownloadNegotiation_Data, type DownloadNegotiation_Response, type DownloadNegotiation_Responses, type DownloadPostExecutionPack_Data, type DownloadPostExecutionPack_Response, type DownloadPostExecutionPack_Responses, type DownloadPreExecutionCounterpartyNegotiation_Data, type DownloadPreExecutionCounterpartyNegotiation_Response, type DownloadPreExecutionCounterpartyNegotiation_Responses, type DownloadPreset_Data, type DownloadPreset_Response, type DownloadPreset_Responses, 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 EditAnswers_Data, type EditAnswers_Errors, type EditAnswers_Response, type EditAnswers_Responses, type EditApprovalComment_Data, type EditApprovalComment_Errors, type EditApprovalComment_Response, type EditApprovalComment_Responses, type EditDefaultAnswers_Data, type EditDefaultAnswers_Errors, type EditDefaultAnswers_Response, type EditDefaultAnswers_Responses, 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 EmailPreferences_Data, type EmailPreferences_Response, type EmailPreferences_Responses, 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 ExtendWindow_Data, type ExtendWindow_Errors, type ExtendWindow_Response, type ExtendWindow_Responses, 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 FixApprovalRules_Data, type FixApprovalRules_Response, type FixApprovalRules_Responses, type ForgottenPasswordRequestDto, type ForkNegotiation_Data, type ForkNegotiation_Errors, type ForkNegotiation_Response, type ForkNegotiation_Responses, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type GenerateActiveNegotiationsReportAsExcel_Data, type GenerateActiveNegotiationsReportAsExcel_Responses, type GenerateAndMaybeSendEnvelope_Data, type GenerateAndMaybeSendEnvelope_Errors, type GenerateAndMaybeSendEnvelope_Responses, type GenerateAuditTrailForAccountAsExcel_Data, type GenerateAuditTrailForAccountAsExcel_Responses, type GenerateAuditTrailForSubAccountAsExcel_Data, type GenerateAuditTrailForSubAccountAsExcel_Responses, type GenerateCommentsReport_Data, type GenerateCommentsReport_Responses, type GenerateExecutedNegotiationsReportAsExcel_Data, type GenerateExecutedNegotiationsReportAsExcel_Errors, type GenerateExecutedNegotiationsReportAsExcel_Responses, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GenerateNegotiationsReport_Data, type GenerateNegotiationsReport_Responses, type GetAccessibleNegotiation_Data, type GetAccessibleNegotiation_Response, type GetAccessibleNegotiation_Responses, type GetAccountRelationshipSummaries_Data, type GetAccountRelationshipSummaries_Errors, type GetAccountRelationshipSummaries_Response, type GetAccountRelationshipSummaries_Responses, type GetAllVersions_Data, type GetAllVersions_Errors, type GetAllVersions_Response, type GetAllVersions_Responses, type GetAmendDefaults_Data, type GetAmendDefaults_Errors, type GetAmendDefaults_Response, type GetAmendDefaults_Responses, type GetAnnotatedOfflineNegotiatedDocument_Data, type GetAnnotatedOfflineNegotiatedDocument_Errors, type GetAnnotatedOfflineNegotiatedDocument_Response, type GetAnnotatedOfflineNegotiatedDocument_Responses, type GetApprovalComments_Data, type GetApprovalComments_Errors, type GetApprovalComments_Response, type GetApprovalComments_Responses, type GetApprovalHistory_Data, type GetApprovalHistory_Response, type GetApprovalHistory_Responses, type GetApprovalRound_Data, type GetApprovalRound_Response, type GetApprovalRound_Responses, type GetAsCdm_Data, type GetAsCdm_Errors, type GetAsCdm_Response, type GetAsCdm_Responses, type GetAuxiliaryDocument_Data, type GetAuxiliaryDocument_Errors, type GetAuxiliaryDocument_Response, type GetAuxiliaryDocument_Responses, type GetBulkSetAttachment_Data, type GetBulkSetAttachment_Response, type GetBulkSetAttachment_Responses, type GetBulkSet_Data, type GetBulkSet_Response, type GetBulkSet_Responses, type GetChannelTimeline_Data, type GetChannelTimeline_Errors, type GetChannelTimeline_Responses, type GetCommentSummary_Data, type GetCommentSummary_Errors, type GetCommentSummary_Responses, type GetComments_Data, type GetComments_Errors, type GetComments_Responses, type GetCompanyByEntityId_Data, type GetCompanyByEntityId_Errors, type GetCompanyByEntityId_Response, type GetCompanyByEntityId_Responses, type GetDocumentSchema_Data, type GetDocumentSchema_Errors, type GetDocumentSchema_Response, type GetDocumentSchema_Responses, type GetDocument_Data, type GetDocument_Errors, type GetDocument_Response, type GetDocument_Responses, type GetDownloadActiveNegotiationsReportAsExcel_Data, type GetDownloadActiveNegotiationsReportAsExcel_Errors, type GetDownloadActiveNegotiationsReportAsExcel_Response, type GetDownloadActiveNegotiationsReportAsExcel_Responses, type GetDownloadExecutedNegotiationsAsExcel_Data, type GetDownloadExecutedNegotiationsAsExcel_Errors, type GetDownloadExecutedNegotiationsAsExcel_Response, type GetDownloadExecutedNegotiationsAsExcel_Responses, type GetDraftingNotesDocument_Data, type GetDraftingNotesDocument_Response, type GetDraftingNotesDocument_Responses, type GetDraftingNotes_Data, type GetDraftingNotes_Response, type GetDraftingNotes_Responses, type GetElectionAnswer_Data, type GetElectionAnswer_Errors, type GetElectionAnswer_Response, type GetElectionAnswer_Responses, type GetExecutedNegotiationSummary_Data, type GetExecutedNegotiationSummary_Errors, type GetExecutedNegotiationSummary_Response, type GetExecutedNegotiationSummary_Responses, type GetExecutionAttachment_Data, type GetExecutionAttachment_Errors, type GetExecutionAttachment_Response, type GetExecutionAttachment_Responses, type GetExternalAttachment_Data, type GetExternalAttachment_Errors, type GetExternalAttachment_Response, type GetExternalAttachment_Responses, type GetExtractionResults_Data, type GetExtractionResults_Errors, type GetExtractionResults_Response, type GetExtractionResults_Responses, type GetGroupNames_Data, type GetGroupNames_Response, type GetGroupNames_Responses, type GetLatestDocumentSchema_Data, type GetLatestDocumentSchema_Errors, type GetLatestDocumentSchema_Response, type GetLatestDocumentSchema_Responses, type GetLegacyStatistics_Data, type GetLegacyStatistics_Errors, type GetLegacyStatistics_Response, type GetLegacyStatistics_Responses, type GetMajorVersions_Data, type GetMajorVersions_Errors, type GetMajorVersions_Response, type GetMajorVersions_Responses, type GetMultipleNestedAnswers_Data, type GetMultipleNestedAnswers_Errors, type GetMultipleNestedAnswers_Response, type GetMultipleNestedAnswers_Responses, type GetNegotiationDeltasDto, type GetNegotiationDeltas_Data, type GetNegotiationDeltas_Responses, type GetNegotiationDraftingNotes_Data, type GetNegotiationDraftingNotes_Response, type GetNegotiationDraftingNotes_Responses, type GetNegotiationESignStatus_Data, type GetNegotiationESignStatus_Response, type GetNegotiationESignStatus_Responses, type GetNegotiationFilesSummary_Data, type GetNegotiationFilesSummary_Errors, type GetNegotiationFilesSummary_Response, type GetNegotiationFilesSummary_Responses, type GetNegotiation_Data, type GetNegotiation_Response, type GetNegotiation_Responses, type GetNegotiationsGroup_Data, type GetNegotiationsGroup_Response, type GetNegotiationsGroup_Responses, type GetNestedAnswers_Data, type GetNestedAnswers_Errors, type GetNestedAnswers_Response, type GetNestedAnswers_Responses, type GetOfflineNegotiatedDocumentAnnotations_Data, type GetOfflineNegotiatedDocumentAnnotations_Errors, type GetOfflineNegotiatedDocumentAnnotations_Response, type GetOfflineNegotiatedDocumentAnnotations_Responses, type GetOfflineNegotiatedDocument_Data, type GetOfflineNegotiatedDocument_Errors, type GetOfflineNegotiatedDocument_Response, type GetOfflineNegotiatedDocument_Responses, type GetOriginalAnswersForForkNegotiation_Data, type GetOriginalAnswersForForkNegotiation_Errors, type GetOriginalAnswersForForkNegotiation_Response, type GetOriginalAnswersForForkNegotiation_Responses, type GetOtherPartyAnswers_Data, type GetOtherPartyAnswers_Errors, type GetOtherPartyAnswers_Response, type GetOtherPartyAnswers_Responses, type GetPartyAnswers_Data, type GetPartyAnswers_Errors, type GetPartyAnswers_Response, type GetPartyAnswers_Responses, type GetPotentialUsers_Data, type GetPotentialUsers_Errors, type GetPotentialUsers_Response, type GetPotentialUsers_Responses, type GetPreset_Data, type GetPreset_Response, type GetPreset_Responses, type GetPreviousActiveUsers_Data, type GetPreviousActiveUsers_Errors, type GetPreviousActiveUsers_Response, type GetPreviousActiveUsers_Responses, type GetPreviousMajorVersionsNestedAnswerElections_Data, type GetPreviousMajorVersionsNestedAnswerElections_Errors, type GetPreviousMajorVersionsNestedAnswerElections_Response, type GetPreviousMajorVersionsNestedAnswerElections_Responses, type GetPreviousMajorVersionsNestedAnswerIds_Data, type GetPreviousMajorVersionsNestedAnswerIds_Errors, type GetPreviousMajorVersionsNestedAnswerIds_Response, type GetPreviousMajorVersionsNestedAnswerIds_Responses, type GetProfile_Data, type GetProfile_Response, type GetProfile_Responses, type GetSecurityContext_Data, type GetSecurityContext_Response, type GetSecurityContext_Responses, type GetSettings_Data, type GetSettings_Errors, type GetSettings_Response, type GetSettings_Responses, type GetSignedExecutedVersion_Data, type GetSignedExecutedVersion_Errors, type GetSignedExecutedVersion_Response, type GetSignedExecutedVersion_Responses, type GetSignedSignaturePagePdf_Data, type GetSignedSignaturePagePdf_Errors, type GetSignedSignaturePagePdf_Response, type GetSignedSignaturePagePdf_Responses, type GetSsoConfig_Data, type GetSsoConfig_Response, type GetSsoConfig_Responses, type GetStatisticsOverview_Data, type GetStatisticsOverview_Errors, type GetStatisticsOverview_Response, type GetStatisticsOverview_Responses, type GetStatistics_Data, type GetStatistics_Errors, type GetStatistics_Response, type GetStatistics_Responses, type GetSubAccount_Data, type GetSubAccount_Responses, type GetSubscribedPublishers_Data, type GetSubscribedPublishers_Response, type GetSubscribedPublishers_Responses, type GetTimelineActivity_Data, type GetTimelineActivity_Errors, type GetTimelineActivity_Responses, type GetTimeline_Data, type GetTimeline_Errors, type GetTimeline_Responses, type GetUserStatistics_Data, type GetUserStatistics_Errors, type GetUserStatistics_Response, type GetUserStatistics_Responses, type GetUsersForPicker_Data, type GetUsersForPicker_Errors, type GetUsersForPicker_Response, type GetUsersForPicker_Responses, type GetUsers_Data, type GetUsers_Errors, type GetUsers_Response, type GetUsers_Responses, type GetWatchers_Data, type GetWatchers_Errors, type GetWatchers_Response, type GetWatchers_Responses, type GetWindow_Data, type GetWindow_Errors, type GetWindow_Response, type GetWindow_Responses, type GrantAllNegotiationsAccess_Data, type GrantAllNegotiationsAccess_Response, type GrantAllNegotiationsAccess_Responses, type GrantNegotiationsAccess_Data, type GrantNegotiationsAccess_Response, type GrantNegotiationsAccess_Responses, type GrantPresetsAccess_Data, type GrantPresetsAccess_Response, type GrantPresetsAccess_Responses, type GrantWindow_Data, type GrantWindow_Errors, type GrantWindow_Response, type GrantWindow_Responses, type InitialAnswers_Data, type InitialAnswers_Errors, type InitialAnswers_Response, type InitialAnswers_Responses, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type ListAdvisorsForWorkspace_Data, type ListAdvisorsForWorkspace_Response, type ListAdvisorsForWorkspace_Responses, type ListAllPresetsForSubAccountV1_Data, type ListAllPresetsForSubAccountV1_Response, type ListAllPresetsForSubAccountV1_Responses, type ListAllPresetsForSubAccountV2_Data, type ListAllPresetsForSubAccountV2_Response, type ListAllPresetsForSubAccountV2_Responses, type ListBulkSets_Data, type ListBulkSets_Responses, type ListDocumentsVersionsSummary_Data, type ListDocumentsVersionsSummary_Response, type ListDocumentsVersionsSummary_Responses, type ListDocumentsWithPagination_Data, type ListDocumentsWithPagination_Response, type ListDocumentsWithPagination_Responses, type ListDocuments_Data, type ListDocuments_Response, type ListDocuments_Responses, type ListEntities_Data, type ListEntities_Response, type ListEntities_Responses, type ListExecutionAttachments_Data, type ListExecutionAttachments_Errors, type ListExecutionAttachments_Response, type ListExecutionAttachments_Responses, type ListExternalAttachments_Data, type ListExternalAttachments_Errors, type ListExternalAttachments_Response, type ListExternalAttachments_Responses, type ListNegotiations_Data, type ListNegotiations_Response, type ListNegotiations_Responses, type ListPotentialNegotiationAdvisors_Data, type ListPotentialNegotiationAdvisors_Response, type ListPotentialNegotiationAdvisors_Responses, type ListPotentialPresetAdvisors_Data, type ListPotentialPresetAdvisors_Response, type ListPotentialPresetAdvisors_Responses, type ListPresets_Data, type ListPresets_Response, type ListPresets_Responses, type ListRecentExtractions_Data, type ListRecentExtractions_Response, type ListRecentExtractions_Responses, type ListSubAccounts_Data, type ListSubAccounts_Responses, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkActivityEventsAsViewed_Data, type MarkActivityEventsAsViewed_Errors, type MarkActivityEventsAsViewed_Responses, type MarkApprovalCommentsAsReadRequestDto, type MarkApprovalCommentsAsViewed_Data, type MarkApprovalCommentsAsViewed_Errors, type MarkApprovalCommentsAsViewed_Responses, type MarkAsFinal_Data, type MarkAsFinal_Errors, type MarkAsFinal_Response, type MarkAsFinal_Responses, type MarkAsOffline_Data, type MarkAsOffline_Errors, type MarkAsOffline_Response, type MarkAsOffline_Responses, type MarkCommentEventsAsViewed_Data, type MarkCommentEventsAsViewed_Errors, type MarkCommentEventsAsViewed_Responses, type MarkEventAsReadRequestDto, type MarkEventsAsViewed_Data, type MarkEventsAsViewed_Errors, type MarkEventsAsViewed_Responses, type MarkNotificationsAsReadAndActionedDto, type ModifySSOConfigDto, type MoveEntityDto, type MoveEntity_Data, type MoveEntity_Errors, type MoveEntity_Response, type MoveEntity_Responses, 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 NegotiationForkHistory_Data, type NegotiationForkHistory_Errors, type NegotiationForkHistory_Response, type NegotiationForkHistory_Responses, type NegotiationGetDocumentSchema_Data, type NegotiationGetDocumentSchema_Errors, type NegotiationGetDocumentSchema_Response, type NegotiationGetDocumentSchema_Responses, 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 NegotiationRenderTemplate_Data, type NegotiationRenderTemplate_Errors, type NegotiationRenderTemplate_Response, type NegotiationRenderTemplate_Responses, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSendForApproval_Data, type NegotiationSendForApproval_Errors, type NegotiationSendForApproval_Response, type NegotiationSendForApproval_Responses, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWatcherDto, type NegotiationWatchersDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsFilter_Data, type NegotiationsFilter_Errors, type NegotiationsFilter_Response, type NegotiationsFilter_Responses, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type NotifyOfDraft_Data, type NotifyOfDraft_Errors, type NotifyOfDraft_Responses, type ObtainConsent_Data, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OverrideApproveFinalDocument_Data, type OverrideApproveFinalDocument_Errors, type OverrideApproveFinalDocument_Responses, type OverrideElectionApproval_Data, type OverrideElectionApproval_Errors, type OverrideElectionApproval_Response, type OverrideElectionApproval_Responses, type OverrideElectionRejection_Data, type OverrideElectionRejection_Errors, type OverrideElectionRejection_Response, type OverrideElectionRejection_Responses, type OverrideRejectFinalDocument_Data, type OverrideRejectFinalDocument_Errors, type OverrideRejectFinalDocument_Responses, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PatchEmailPreferences_Data, type PatchEmailPreferences_Responses, 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 PresetEditAnswers_Data, type PresetEditAnswers_Errors, type PresetEditAnswers_Response, type PresetEditAnswers_Responses, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetGetDocumentSchema_Data, type PresetGetDocumentSchema_Errors, type PresetGetDocumentSchema_Response, type PresetGetDocumentSchema_Responses, type PresetGetMultipleNestedAnswers_Data, type PresetGetMultipleNestedAnswers_Errors, type PresetGetMultipleNestedAnswers_Response, type PresetGetMultipleNestedAnswers_Responses, type PresetGetNestedAnswers_Data, type PresetGetNestedAnswers_Errors, type PresetGetNestedAnswers_Response, type PresetGetNestedAnswers_Responses, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetRenderTemplate_Data, type PresetRenderTemplate_Errors, type PresetRenderTemplate_Response, type PresetRenderTemplate_Responses, type PresetRequestApproval_Data, type PresetRequestApproval_Errors, type PresetRequestApproval_Response, type PresetRequestApproval_Responses, type PresetResultsDto, type PresetSelectionDto, type PresetSendForApproval_Data, type PresetSendForApproval_Errors, type PresetSendForApproval_Response, type PresetSendForApproval_Responses, type PresetSetElectionApproval_Data, type PresetSetElectionApproval_Errors, type PresetSetElectionApproval_Response, type PresetSetElectionApproval_Responses, type PresetSetFinalApproval_Data, type PresetSetFinalApproval_Errors, type PresetSetFinalApproval_Response, type PresetSetFinalApproval_Responses, type PresetSetMultipleNestedAnswers_Data, type PresetSetMultipleNestedAnswers_Errors, type PresetSetMultipleNestedAnswers_Response, type PresetSetMultipleNestedAnswers_Responses, type PresetSetNestedAnswers_Data, type PresetSetNestedAnswers_Errors, type PresetSetNestedAnswers_Response, type PresetSetNestedAnswers_Responses, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type PresetSwapParties_Data, type PresetSwapParties_Errors, type PresetSwapParties_Response, type PresetSwapParties_Responses, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type PublisherSummaries_Data, type PublisherSummaries_Response, type PublisherSummaries_Responses, type QueryExecutionResponseDto, type QueueGenerateNegotiationDocumentJob_Data, type QueueGenerateNegotiationDocumentJob_Response, type QueueGenerateNegotiationDocumentJob_Responses, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectAccessRequest_Data, type RejectAccessRequest_Errors, type RejectAccessRequest_Response, type RejectAccessRequest_Responses, type RejectFinalDocument_Data, type RejectFinalDocument_Errors, type RejectFinalDocument_Responses, type RejectInviteDto, type RejectPresetApproval_Data, type RejectPresetApproval_Errors, type RejectPresetApproval_Response, type RejectPresetApproval_Responses, type RejectPresetDto, type ReleaseNotesDto, type RemoveWatchers_Data, type RemoveWatchers_Errors, type RemoveWatchers_Response, type RemoveWatchers_Responses, type RemovedUsersDto, type RenameExecutionAttachment_Data, type RenameExecutionAttachment_Errors, type RenameExecutionAttachment_Response, type RenameExecutionAttachment_Responses, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type ResetUserAnswers_Data, type ResetUserAnswers_Errors, type ResetUserAnswers_Response, type ResetUserAnswers_Responses, type RestrictionsDto, type Retract_Data, type Retract_Errors, type Retract_Response, type Retract_Responses, type RevertToAmending_Data, type RevertToAmending_Errors, type RevertToAmending_Response, type RevertToAmending_Responses, type RevokeNegotiationsAccess_Data, type RevokeNegotiationsAccess_Response, type RevokeNegotiationsAccess_Responses, type RevokePresetsAccess_Data, type RevokePresetsAccess_Response, type RevokePresetsAccess_Responses, type RevokeWindow_Data, type RevokeWindow_Responses, type SSOConfigDto, type SampleValueConfigurationDto, type ScheduleExtraction_Data, type ScheduleExtraction_Errors, type ScheduleExtraction_Response, type ScheduleExtraction_Responses, type SchemaAvailableAsCDMDto, type SchemaAvailableAsCdm_Data, type SchemaAvailableAsCdm_Errors, type SchemaAvailableAsCdm_Response, type SchemaAvailableAsCdm_Responses, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SearchEntity_Data, type SearchEntity_Response, type SearchEntity_Responses, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendBulkSetToCounterpartiesInitial_Data, type SendBulkSetToCounterpartiesInitial_Response, type SendBulkSetToCounterpartiesInitial_Responses, type SendChaserEmail_Data, type SendChaserEmail_Errors, type SendChaserEmail_Responses, type SendDocumentApprovalReminder_Data, type SendDocumentApprovalReminder_Errors, type SendDocumentApprovalReminder_Responses, type SendElectionApprovalReminder_Data, type SendElectionApprovalReminder_Errors, type SendElectionApprovalReminder_Responses, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendGroupToCounterparty_Data, type SendGroupToCounterparty_Errors, type SendGroupToCounterparty_Response, type SendGroupToCounterparty_Responses, type SendToCounterPartyInitialDto, type SendToCounterpartyInitial_Data, type SendToCounterpartyInitial_Errors, type SendToCounterpartyInitial_Response, type SendToCounterpartyInitial_Responses, type SendToCounterparty_Data, type SendToCounterparty_Errors, type SendToCounterparty_Response, type SendToCounterparty_Responses, type SetApprovalRulesDto, type SetAuxiliaryDocument_Data, type SetAuxiliaryDocument_Errors, type SetAuxiliaryDocument_Response, type SetAuxiliaryDocument_Responses, type SetBulkSetAttachments_Data, type SetBulkSetAttachments_Errors, type SetBulkSetAttachments_Response, type SetBulkSetAttachments_Responses, type SetCounterparties_Data, type SetCounterparties_Errors, type SetCounterparties_Response, type SetCounterparties_Responses, type SetElectionApproval_Data, type SetElectionApproval_Errors, type SetElectionApproval_Response, type SetElectionApproval_Responses, type SetExecutionAttachment_Data, type SetExecutionAttachment_Errors, type SetExecutionAttachment_Response, type SetExecutionAttachment_Responses, type SetExecutionAttachments_Data, type SetExecutionAttachments_Errors, type SetExecutionAttachments_Response, type SetExecutionAttachments_Responses, type SetExternalAttachment_Data, type SetExternalAttachment_Errors, type SetExternalAttachment_Response, type SetExternalAttachment_Responses, type SetExternalAttachments_Data, type SetExternalAttachments_Errors, type SetExternalAttachments_Response, type SetExternalAttachments_Responses, type SetFeatureDto, type SetFinalApproval_Data, type SetFinalApproval_Response, type SetFinalApproval_Responses, type SetGeneralCoverNote_Data, type SetGeneralCoverNote_Errors, type SetGeneralCoverNote_Response, type SetGeneralCoverNote_Responses, type SetMultipleNestedAnswers_Data, type SetMultipleNestedAnswers_Errors, type SetMultipleNestedAnswers_Response, type SetMultipleNestedAnswers_Responses, type SetNestedAnswers_Data, type SetNestedAnswers_Errors, type SetNestedAnswers_Response, type SetNestedAnswers_Responses, type SetOfflineNegotiatedDocument_Data, type SetOfflineNegotiatedDocument_Errors, type SetOfflineNegotiatedDocument_Response, type SetOfflineNegotiatedDocument_Responses, type SetOwnerEntity_Data, type SetOwnerEntity_Errors, type SetOwnerEntity_Response, type SetOwnerEntity_Responses, type SetPreset_Data, type SetPreset_Errors, type SetPreset_Response, type SetPreset_Responses, type SetReceiverEntity_Data, type SetReceiverEntity_Errors, type SetReceiverEntity_Response, type SetReceiverEntity_Responses, type SetSignedExecutedVersion_Data, type SetSignedExecutedVersion_Errors, type SetSignedExecutedVersion_Response, type SetSignedExecutedVersion_Responses, type SetSignedSignaturePageForParty_Data, type SetSignedSignaturePageForParty_Response, type SetSignedSignaturePageForParty_Responses, type ShareNegotiation_Data, type ShareNegotiation_Errors, type ShareNegotiation_Response, type ShareNegotiation_Responses, type ShareRequestDto, type ShareSubAccount_Data, type ShareSubAccount_Errors, type ShareSubAccount_Response, type ShareSubAccount_Responses, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SuggestGroupName_Data, type SuggestGroupName_Response, type SuggestGroupName_Responses, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SwapParties_Data, type SwapParties_Errors, type SwapParties_Response, type SwapParties_Responses, type SyncNewApproverDto, type SyncNewApprover_Data, type SyncNewApprover_Responses, 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 Unsubscribe_Data, type Unsubscribe_Errors, type Unsubscribe_Responses, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateAttachDocx_Data, type UpdateAttachDocx_Response, type UpdateAttachDocx_Responses, type UpdateCommentDto, type UpdateComment_Data, type UpdateComment_Response, type UpdateComment_Responses, type UpdateCoverNote_Data, type UpdateCoverNote_Response, type UpdateCoverNote_Responses, type UpdateCustomFields_Data, type UpdateCustomFields_Errors, type UpdateCustomFields_Response, type UpdateCustomFields_Responses, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDraftingNote_Data, type UpdateDocumentDraftingNote_Errors, type UpdateDocumentDraftingNote_Response, type UpdateDocumentDraftingNote_Responses, type UpdateDocumentDto, type UpdateDocumentElectionDraftingNote_Data, type UpdateDocumentElectionDraftingNote_Errors, type UpdateDocumentElectionDraftingNote_Response, type UpdateDocumentElectionDraftingNote_Responses, type UpdateDocumentStateDto, type UpdateDraftingNotes_Data, type UpdateDraftingNotes_Errors, type UpdateDraftingNotes_Response, type UpdateDraftingNotes_Responses, type UpdateExtractionFeedback_Data, type UpdateExtractionFeedback_Errors, type UpdateExtractionFeedback_Response, type UpdateExtractionFeedback_Responses, type UpdateGroupMembers_Data, type UpdateGroupMembers_Errors, type UpdateGroupMembers_Responses, type UpdateGroupName_Data, type UpdateGroupName_Errors, type UpdateGroupName_Responses, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateMetadata_Data, type UpdateMetadata_Errors, type UpdateMetadata_Response, type UpdateMetadata_Responses, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateNegotiationsToMatch_Data, type UpdateNegotiationsToMatch_Errors, type UpdateNegotiationsToMatch_Responses, type UpdateSelectedElections_Data, type UpdateSelectedElections_Errors, type UpdateSelectedElections_Response, type UpdateSelectedElections_Responses, type UpdateSubAccountRequestDto, type UpdateSubAccount_Data, type UpdateSubAccount_Errors, type UpdateSubAccount_Responses, type UpdateUserAnswers_Data, type UpdateUserAnswers_Errors, type UpdateUserAnswers_Response, type UpdateUserAnswers_Responses, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UpgradePresetSchema_Data, type UpgradePresetSchema_Errors, type UpgradePresetSchema_Response, type UpgradePresetSchema_Responses, type UpgradeSchema_Data, type UpgradeSchema_Response, type UpgradeSchema_Responses, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWithRoleDto, type UsersWithNegotiationAccess_Data, type UsersWithNegotiationAccess_Response, type UsersWithNegotiationAccess_Responses, type ValidInvitationResponseDto, type ValidateDraftReceiverEmails_Data, type ValidateDraftReceiverEmails_Response, type ValidateDraftReceiverEmails_Responses, type ValidateEntities_Data, type ValidateEntities_Response, type ValidateEntities_Responses, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type Version_Data, type Version_Responses, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type VoidESignEnvelopeForNegotiation_Data, type VoidESignEnvelopeForNegotiation_Errors, type VoidESignEnvelopeForNegotiation_Responses, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, acceptAllCustodianTemplatePositions, acceptAllPositionsFromFork, acceptAllPositionsFromPreviousVersion, acceptAllPresetPositions, acceptCounterpartyPosition, acceptNestedAnswersCounterpartyPosition, accountSummary, addApprovalComment, addComment, addElectionApproval, addElectionRejection, addWatchers, applyExtractedAnswers, approve, approveAccessRequest, approveFinalDocument, assignEntity, assignToMe, assignUser, auditTrailFilters, auditTrailForAccountAsJson, auditTrailForSubAccountAsJson, authPing, breakingChanges, bulkSetsJobCount, cancel, cancelExtraction, cancelNegotiations, cancelNegotiationsJobCount, changeSigningMode, checkAuxiliaryDocument, checkForBrokenApprovers, checkOfflineNegotiatedDocument, checkSignedExecutedVersion, checkSignedSignaturePagePdf, clonePreset, confirm, confirmExecutionVersion, consentCodeCallback, contactForNewApprover, createAuditTrailJson, createAuditTrailPdf, createAuditTrailXlsx, createBulkSet, createGroup, createNegotiation, createPreset, createPresetAuditTrailJson, createPresetAuditTrailXlsx, createSignaturePagePdf, createSigningPack, deleteApprovalComment, deleteAuxiliaryDocument, deleteBulkSetAttachment, deleteComment, deleteCoverNote, deleteDocumentDraftingNote, deleteDocumentElectionDraftingNote, deleteDraftingNotesDocument, deleteEntity, deleteExecutionAttachment, deleteExternalAttachment, deleteGeneralCoverNote, deleteOfflineNegotiatedDocument, deletePreset, deleteSignedExecutedVersion, deleteSignedSignaturePageForParty, documentRenderTemplate, documentsFilter, downloadNegotiation, downloadPostExecutionPack, downloadPreExecutionCounterpartyNegotiation, downloadPreset, editAnswers, editApprovalComment, editDefaultAnswers, emailPreferences, extendWindow, fixApprovalRules, forkNegotiation, generateActiveNegotiationsReportAsExcel, generateAndMaybeSendEnvelope, generateAuditTrailForAccountAsExcel, generateAuditTrailForSubAccountAsExcel, generateCommentsReport, generateExecutedNegotiationsReportAsExcel, generateNegotiationsReport, getAccessibleNegotiation, getAccountRelationshipSummaries, getAllVersions, getAmendDefaults, getAnnotatedOfflineNegotiatedDocument, getApprovalComments, getApprovalHistory, getApprovalRound, getAsCdm, getAuxiliaryDocument, getBulkSet, getBulkSetAttachment, getChannelTimeline, getCommentSummary, getComments, getCompanyByEntityId, getDocument, getDocumentSchema, getDownloadActiveNegotiationsReportAsExcel, getDownloadExecutedNegotiationsAsExcel, getDraftingNotes, getDraftingNotesDocument, getElectionAnswer, getExecutedNegotiationSummary, getExecutionAttachment, getExternalAttachment, getExtractionResults, getGroupNames, getLatestDocumentSchema, getLegacyStatistics, getMajorVersions, getMultipleNestedAnswers, getNegotiation, getNegotiationDeltas, getNegotiationDraftingNotes, getNegotiationESignStatus, getNegotiationFilesSummary, getNegotiationsGroup, getNestedAnswers, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, getOriginalAnswersForForkNegotiation, getOtherPartyAnswers, getPartyAnswers, getPotentialUsers, getPreset, getPreviousActiveUsers, getPreviousMajorVersionsNestedAnswerElections, getPreviousMajorVersionsNestedAnswerIds, getProfile, getSecurityContext, getSettings, getSignedExecutedVersion, getSignedSignaturePagePdf, getSsoConfig, getStatistics, getStatisticsOverview, getSubAccount, getSubscribedPublishers, getTimeline, getTimelineActivity, getUserStatistics, getUsers, getUsersForPicker, getWatchers, getWindow, grantAllNegotiationsAccess, grantNegotiationsAccess, grantPresetsAccess, grantWindow, initialAnswers, listAdvisorsForWorkspace, listAllPresetsForSubAccountV1, listAllPresetsForSubAccountV2, listBulkSets, listDocuments, listDocumentsVersionsSummary, listDocumentsWithPagination, listEntities, listExecutionAttachments, listExternalAttachments, listNegotiations, listPotentialNegotiationAdvisors, listPotentialPresetAdvisors, listPresets, listRecentExtractions, listSubAccounts, markActivityEventsAsViewed, markApprovalCommentsAsViewed, markAsFinal, markAsOffline, markCommentEventsAsViewed, markEventsAsViewed, moveEntity, negotiationForkHistory, negotiationGetDocumentSchema, negotiationRenderTemplate, negotiationSendForApproval, negotiationsFilter, notifyOfDraft, obtainConsent, overrideApproveFinalDocument, overrideElectionApproval, overrideElectionRejection, overrideRejectFinalDocument, patchEmailPreferences, presetEditAnswers, presetGetDocumentSchema, presetGetMultipleNestedAnswers, presetGetNestedAnswers, presetRenderTemplate, presetRequestApproval, presetSendForApproval, presetSetElectionApproval, presetSetFinalApproval, presetSetMultipleNestedAnswers, presetSetNestedAnswers, presetSwapParties, publisherSummaries, queueGenerateNegotiationDocumentJob, rejectAccessRequest, rejectFinalDocument, rejectPresetApproval, removeWatchers, renameExecutionAttachment, resetUserAnswers, retract, revertToAmending, revokeNegotiationsAccess, revokePresetsAccess, revokeWindow, scheduleExtraction, schemaAvailableAsCdm, searchEntity, sendBulkSetToCounterpartiesInitial, sendChaserEmail, sendDocumentApprovalReminder, sendElectionApprovalReminder, sendGroupToCounterparty, sendToCounterparty, sendToCounterpartyInitial, setAuxiliaryDocument, setBulkSetAttachments, setCounterparties, setElectionApproval, setExecutionAttachment, setExecutionAttachments, setExternalAttachment, setExternalAttachments, setFinalApproval, setGeneralCoverNote, setMultipleNestedAnswers, setNestedAnswers, setOfflineNegotiatedDocument, setOwnerEntity, setPreset, setReceiverEntity, setSignedExecutedVersion, setSignedSignaturePageForParty, shareNegotiation, shareSubAccount, suggestGroupName, swapParties, syncNewApprover, unsubscribe, updateAttachDocx, updateComment, updateCoverNote, updateCustomFields, updateDocumentDraftingNote, updateDocumentElectionDraftingNote, updateDraftingNotes, updateExtractionFeedback, updateGroupMembers, updateGroupName, updateMetadata, updateNegotiationsToMatch, updateSelectedElections, updateSubAccount, updateUserAnswers, upgradePresetSchema, upgradeSchema, usersWithNegotiationAccess, validateDraftReceiverEmails, validateEntities, version, voidESignEnvelopeForNegotiation };
package/dist/index.js CHANGED
@@ -660,6 +660,22 @@ var listEntities = (options) => {
660
660
  ...options
661
661
  });
662
662
  };
663
+ var shareSubAccount = (options) => {
664
+ return (options.client ?? client).post({
665
+ security: [
666
+ {
667
+ name: "Authorization",
668
+ type: "apiKey"
669
+ }
670
+ ],
671
+ url: "/api/v1/subAccounts/{subAccountId}/share",
672
+ ...options,
673
+ headers: {
674
+ "Content-Type": "application/json",
675
+ ...options?.headers
676
+ }
677
+ });
678
+ };
663
679
  var assignEntity = (options) => {
664
680
  return (options.client ?? client).put({
665
681
  security: [
@@ -2686,6 +2702,18 @@ var scheduleExtraction = (options) => {
2686
2702
  ...options
2687
2703
  });
2688
2704
  };
2705
+ var approveAccessRequest = (options) => {
2706
+ return (options.client ?? client).put({
2707
+ security: [
2708
+ {
2709
+ name: "Authorization",
2710
+ type: "apiKey"
2711
+ }
2712
+ ],
2713
+ url: "/api/v1/subAccounts/{subAccountId}/accessRequest/{accessRequestId}/approve",
2714
+ ...options
2715
+ });
2716
+ };
2689
2717
  var negotiationsFilter = (options) => {
2690
2718
  return (options.client ?? client).get({
2691
2719
  security: [
@@ -3435,6 +3463,18 @@ var sendElectionApprovalReminder = (options) => {
3435
3463
  ...options
3436
3464
  });
3437
3465
  };
3466
+ var rejectAccessRequest = (options) => {
3467
+ return (options.client ?? client).put({
3468
+ security: [
3469
+ {
3470
+ name: "Authorization",
3471
+ type: "apiKey"
3472
+ }
3473
+ ],
3474
+ url: "/api/v1/subAccounts/{subAccountId}/accessRequest/{accessRequestId}/reject",
3475
+ ...options
3476
+ });
3477
+ };
3438
3478
  var getExecutedNegotiationSummary = (options) => {
3439
3479
  return (options.client ?? client).get({
3440
3480
  security: [
@@ -3631,6 +3671,7 @@ export {
3631
3671
  addWatchers,
3632
3672
  applyExtractedAnswers,
3633
3673
  approve,
3674
+ approveAccessRequest,
3634
3675
  approveFinalDocument,
3635
3676
  assignEntity,
3636
3677
  assignToMe,
@@ -3823,6 +3864,7 @@ export {
3823
3864
  presetSwapParties,
3824
3865
  publisherSummaries,
3825
3866
  queueGenerateNegotiationDocumentJob,
3867
+ rejectAccessRequest,
3826
3868
  rejectFinalDocument,
3827
3869
  rejectPresetApproval,
3828
3870
  removeWatchers,
@@ -3862,6 +3904,7 @@ export {
3862
3904
  setSignedExecutedVersion,
3863
3905
  setSignedSignaturePageForParty,
3864
3906
  shareNegotiation,
3907
+ shareSubAccount,
3865
3908
  suggestGroupName,
3866
3909
  swapParties,
3867
3910
  syncNewApprover,