@createiq/backend 1.0.99 → 1.0.101

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.
@@ -378,6 +378,18 @@ export type SetApprovalRulesDto = {
378
378
  quorum: number;
379
379
  };
380
380
 
381
+ export type FailedExtractionSimilarityResultDto = {
382
+ percentComplete: number;
383
+ partialUnstructured: UnstructuredExtractionResultDto;
384
+ electionId?: string;
385
+ created: string;
386
+ partialStructured: StructuredExtractionResultDto;
387
+ version?: string;
388
+ templateId: string;
389
+ updated?: string;
390
+ error: ErrorResponse;
391
+ };
392
+
381
393
  export type UnstructuredExtractionResultsWithAnnotationsDto = {
382
394
  [key: string]: Array<{
383
395
  paragraph: string;
@@ -965,11 +977,6 @@ export type ActiveOrPendingUserForNakhodaAdminDto = {
965
977
  status: string;
966
978
  };
967
979
 
968
- export type NewUserShareDto = {
969
- email: string;
970
- message?: string;
971
- };
972
-
973
980
  export type ESignNegotiationStatusDto = {
974
981
  subAccountId: string;
975
982
  sessionStatus?: ESignSessionStatusDto;
@@ -1047,6 +1054,15 @@ export type PlatformStatisticsDto = {
1047
1054
  presets: number;
1048
1055
  };
1049
1056
 
1057
+ export type NewUserShareDto = {
1058
+ email: string;
1059
+ message?: string;
1060
+ };
1061
+
1062
+ export type UpdateGuestApproversDto = {
1063
+ guestApproversEnabledForAllWorkspaces: boolean;
1064
+ };
1065
+
1050
1066
  export type NegotiationStateGroup = 'preparingFirstDraft' | 'negotiating' | 'confirming' | 'pendingExecution' | 'executed' | 'cancelled' | 'confirmedTemplate' | 'sendingFailed';
1051
1067
 
1052
1068
  export type CreateBulkSetResponseDto = {
@@ -1328,8 +1344,9 @@ export type UpdateAccountPresetApprovalsDto = {
1328
1344
 
1329
1345
  export type CreateSubAccountNSMRequestDto = {
1330
1346
  name: string;
1331
- users?: Array<string>;
1332
1347
  entities?: Array<EntityIdDto>;
1348
+ canUseGuestApprovers?: boolean;
1349
+ users?: Array<string>;
1333
1350
  presetApprovals?: boolean;
1334
1351
  };
1335
1352
 
@@ -1699,6 +1716,24 @@ export type ApprovalDecisionsWithSubmittedValuesDto = {
1699
1716
 
1700
1717
  export type NegotiationFilter_RequiresApproval_RequiresApprovalValue = 'Approval';
1701
1718
 
1719
+ export type CompletedExtractionSimilarityResultDto = {
1720
+ actualAnswersValid: PartyAnswersDto;
1721
+ expectedUnstructured: UnstructuredExtractionResultDto;
1722
+ actualUnstructured: UnstructuredExtractionResultDto;
1723
+ similarityUnstructured: TextSimilarityScoresDto;
1724
+ similarityStructured: {
1725
+ [key: string]: ElectionValueSimilarityScoreDto;
1726
+ };
1727
+ created: string;
1728
+ actualAnswers: PartyAnswersDto;
1729
+ version?: string;
1730
+ expectedAnswers: PartyAnswersDto;
1731
+ templateId: string;
1732
+ updated?: string;
1733
+ electionId?: string;
1734
+ percentExtracted: number;
1735
+ };
1736
+
1702
1737
  export type DocumentDraftingNoteDto = {
1703
1738
  documentId: string;
1704
1739
  subAccountId: string;
@@ -1734,9 +1769,7 @@ export type CreateBulkSetDto = {
1734
1769
 
1735
1770
  export type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1736
1771
 
1737
- export type ExtractionSimilarityResultDto = {
1738
- [key: string]: unknown;
1739
- };
1772
+ export type ExtractionSimilarityResultDto = ProcessingExtractionSimilarityResultDto | FailedExtractionSimilarityResultDto | CompletedExtractionSimilarityResultDto;
1740
1773
 
1741
1774
  export type NegotiationSearchDto = {
1742
1775
  counterpartyEntityName: Array<string>;
@@ -1976,6 +2009,7 @@ export type NoteType = 'internal' | 'external';
1976
2009
  export type SubAccountSummaryDto = {
1977
2010
  name: string;
1978
2011
  entities: Array<EntityDto>;
2012
+ canUseGuestApprovers: boolean;
1979
2013
  users: Array<string>;
1980
2014
  presetApprovals: boolean;
1981
2015
  id: string;
@@ -2008,6 +2042,7 @@ export type NestedPartyAnswersDto = {
2008
2042
 
2009
2043
  export type AdminAccountOnlyDto = {
2010
2044
  accountName: string;
2045
+ guestApproversEnabledForAllWorkspaces: boolean;
2011
2046
  logoUrl?: string;
2012
2047
  presetApprovals: boolean;
2013
2048
  accountId: string;
@@ -2032,18 +2067,11 @@ export type ForwardAccountInviteDto = {
2032
2067
  invitationCode: string;
2033
2068
  };
2034
2069
 
2035
- export type DocumentVersionsSummaryDto_DocumentVersionSummaryDto = {
2036
- version: MajorMinorDto;
2037
- isMajorChange: boolean;
2038
- createdTime: string;
2039
- releaseNotes?: ReleaseNotesDto;
2040
- };
2041
-
2042
2070
  export type AuxiliaryDocumentExistsDto = {
2043
2071
  exists: boolean;
2044
2072
  };
2045
2073
 
2046
- export type ApproverRemovalReason = 'RoleChange' | 'SubAccountRemovedFromAdvisorRelationship' | 'RemovedFromSubAccount' | 'NotInDestinationSubAccount' | 'RemovedFromAccount';
2074
+ export type ApproverRemovalReason = 'RoleChange' | 'SubAccountRemovedFromAdvisorRelationship' | 'RemovedFromSubAccount' | 'NotInDestinationSubAccount' | 'RemovedFromAccount' | 'GuestApproversDisabled';
2047
2075
 
2048
2076
  export type ActivityTimelineSummaryDto = {
2049
2077
  totalUnreadComments: number;
@@ -2097,6 +2125,24 @@ export type NegotiationWithTimelinePreviewAndNestedAnswersDto = NegotiationWithT
2097
2125
  nestedAnswerFullSummary: NestedAnswersSummariesWithAnswersDto;
2098
2126
  };
2099
2127
 
2128
+ export type DocumentVersionsSummaryDto_DocumentVersionSummaryDto = {
2129
+ version: MajorMinorDto;
2130
+ isMajorChange: boolean;
2131
+ createdTime: string;
2132
+ releaseNotes?: ReleaseNotesDto;
2133
+ };
2134
+
2135
+ export type ProcessingExtractionSimilarityResultDto = {
2136
+ percentComplete: number;
2137
+ partialUnstructured: UnstructuredExtractionResultDto;
2138
+ electionId?: string;
2139
+ created: string;
2140
+ partialStructured: StructuredExtractionResultDto;
2141
+ version?: string;
2142
+ templateId: string;
2143
+ updated?: string;
2144
+ };
2145
+
2100
2146
  export type FilterResultsDto = {
2101
2147
  total: number;
2102
2148
  results: {
@@ -2550,6 +2596,7 @@ export type NegotiationAuditEventsDto = {
2550
2596
  export type UpdateSubAccountRequestDto = {
2551
2597
  name?: string;
2552
2598
  presetApprovals?: boolean;
2599
+ canUseGuestApprovers?: boolean;
2553
2600
  };
2554
2601
 
2555
2602
  export type AccountSummaryWithSubAccountsDto = {
@@ -2911,6 +2958,7 @@ export type AdminAccountDetailDto = {
2911
2958
  shortCode: string;
2912
2959
  advisorClients: Array<AccountAndSubAccountsDto>;
2913
2960
  accountName: string;
2961
+ guestApproversEnabledForAllWorkspaces: boolean;
2914
2962
  features: Array<FeatureDto>;
2915
2963
  logoUrl?: string;
2916
2964
  accountId: string;
@@ -3151,6 +3199,7 @@ export type AdminAccountDetailWithDocumentPackDto = {
3151
3199
  shortCode: string;
3152
3200
  advisorClients: Array<AccountAndSubAccountsDto>;
3153
3201
  accountName: string;
3202
+ guestApproversEnabledForAllWorkspaces: boolean;
3154
3203
  features: Array<FeatureDto>;
3155
3204
  logoUrl?: string;
3156
3205
  restrictedDocumentPacks: Array<DocumentPackAndPublisherDto>;
@@ -3742,13 +3791,6 @@ export type FundListSpreadsheetErrorResponseDto = {
3742
3791
  validationErrors: Array<FundListSpreadsheetValidationErrorDto>;
3743
3792
  };
3744
3793
 
3745
- export type InitiatorDto = {
3746
- account: AccountIdAndNameDto;
3747
- user?: UserDto;
3748
- invitationSentOn?: string;
3749
- canUploadSignaturePagesFor: Array<string>;
3750
- };
3751
-
3752
3794
  export type ReceiverUserDto = {
3753
3795
  email: string;
3754
3796
  emailFailedToDeliver?: boolean;
@@ -3785,6 +3827,19 @@ export type SidedNegotiationCountsDto = {
3785
3827
  amendAndRestatement: number;
3786
3828
  };
3787
3829
 
3830
+ export type InitiatorDto = {
3831
+ account: AccountIdAndNameDto;
3832
+ user?: UserDto;
3833
+ invitationSentOn?: string;
3834
+ canUploadSignaturePagesFor: Array<string>;
3835
+ };
3836
+
3837
+ export type TextSimilarityScoresDto = {
3838
+ scores: {
3839
+ [key: string]: Array<TextSimilarityScoreDto>;
3840
+ };
3841
+ };
3842
+
3788
3843
  export type SendAdvisorRequestDto = {
3789
3844
  email: string;
3790
3845
  subAccountIds?: Array<string>;
@@ -4062,6 +4117,7 @@ export type UpdateSubAccountNSMRequestDto = {
4062
4117
  removedEntities?: Array<EntityIdDto>;
4063
4118
  name?: string;
4064
4119
  newEntities?: Array<EntityIdDto>;
4120
+ canUseGuestApprovers?: boolean;
4065
4121
  removedUsers?: Array<string>;
4066
4122
  presetApprovals?: boolean;
4067
4123
  newUsers?: Array<string>;
package/dist/index.d.cts CHANGED
@@ -331,6 +331,17 @@ type SetApprovalRulesDto = {
331
331
  users: Array<string>;
332
332
  quorum: number;
333
333
  };
334
+ type FailedExtractionSimilarityResultDto = {
335
+ percentComplete: number;
336
+ partialUnstructured: UnstructuredExtractionResultDto;
337
+ electionId?: string;
338
+ created: string;
339
+ partialStructured: StructuredExtractionResultDto;
340
+ version?: string;
341
+ templateId: string;
342
+ updated?: string;
343
+ error: ErrorResponse;
344
+ };
334
345
  type UnstructuredExtractionResultsWithAnnotationsDto = {
335
346
  [key: string]: Array<{
336
347
  paragraph: string;
@@ -846,10 +857,6 @@ type ActiveOrPendingUserForNakhodaAdminDto = {
846
857
  subAccounts: Array<SubAccountIdWithNameDto>;
847
858
  status: string;
848
859
  };
849
- type NewUserShareDto = {
850
- email: string;
851
- message?: string;
852
- };
853
860
  type ESignNegotiationStatusDto = {
854
861
  subAccountId: string;
855
862
  sessionStatus?: ESignSessionStatusDto;
@@ -922,6 +929,13 @@ type PlatformStatisticsDto = {
922
929
  };
923
930
  presets: number;
924
931
  };
932
+ type NewUserShareDto = {
933
+ email: string;
934
+ message?: string;
935
+ };
936
+ type UpdateGuestApproversDto = {
937
+ guestApproversEnabledForAllWorkspaces: boolean;
938
+ };
925
939
  type NegotiationStateGroup = 'preparingFirstDraft' | 'negotiating' | 'confirming' | 'pendingExecution' | 'executed' | 'cancelled' | 'confirmedTemplate' | 'sendingFailed';
926
940
  type CreateBulkSetResponseDto = {
927
941
  bulkSetId: string;
@@ -1164,8 +1178,9 @@ type UpdateAccountPresetApprovalsDto = {
1164
1178
  };
1165
1179
  type CreateSubAccountNSMRequestDto = {
1166
1180
  name: string;
1167
- users?: Array<string>;
1168
1181
  entities?: Array<EntityIdDto>;
1182
+ canUseGuestApprovers?: boolean;
1183
+ users?: Array<string>;
1169
1184
  presetApprovals?: boolean;
1170
1185
  };
1171
1186
  type ComponentAnswerDto_EntityWithValuesDto = {
@@ -1479,6 +1494,23 @@ type ApprovalDecisionsWithSubmittedValuesDto = {
1479
1494
  sentForApprovalOn?: string;
1480
1495
  };
1481
1496
  type NegotiationFilter_RequiresApproval_RequiresApprovalValue = 'Approval';
1497
+ type CompletedExtractionSimilarityResultDto = {
1498
+ actualAnswersValid: PartyAnswersDto;
1499
+ expectedUnstructured: UnstructuredExtractionResultDto;
1500
+ actualUnstructured: UnstructuredExtractionResultDto;
1501
+ similarityUnstructured: TextSimilarityScoresDto;
1502
+ similarityStructured: {
1503
+ [key: string]: ElectionValueSimilarityScoreDto;
1504
+ };
1505
+ created: string;
1506
+ actualAnswers: PartyAnswersDto;
1507
+ version?: string;
1508
+ expectedAnswers: PartyAnswersDto;
1509
+ templateId: string;
1510
+ updated?: string;
1511
+ electionId?: string;
1512
+ percentExtracted: number;
1513
+ };
1482
1514
  type DocumentDraftingNoteDto = {
1483
1515
  documentId: string;
1484
1516
  subAccountId: string;
@@ -1508,9 +1540,7 @@ type CreateBulkSetDto = {
1508
1540
  negotiations: Array<CreateBulkSetItemDto>;
1509
1541
  };
1510
1542
  type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1511
- type ExtractionSimilarityResultDto = {
1512
- [key: string]: unknown;
1513
- };
1543
+ type ExtractionSimilarityResultDto = ProcessingExtractionSimilarityResultDto | FailedExtractionSimilarityResultDto | CompletedExtractionSimilarityResultDto;
1514
1544
  type NegotiationSearchDto = {
1515
1545
  counterpartyEntityName: Array<string>;
1516
1546
  staleTo?: number;
@@ -1714,6 +1744,7 @@ type NoteType = 'internal' | 'external';
1714
1744
  type SubAccountSummaryDto = {
1715
1745
  name: string;
1716
1746
  entities: Array<EntityDto>;
1747
+ canUseGuestApprovers: boolean;
1717
1748
  users: Array<string>;
1718
1749
  presetApprovals: boolean;
1719
1750
  id: string;
@@ -1742,6 +1773,7 @@ type NestedPartyAnswersDto = {
1742
1773
  };
1743
1774
  type AdminAccountOnlyDto = {
1744
1775
  accountName: string;
1776
+ guestApproversEnabledForAllWorkspaces: boolean;
1745
1777
  logoUrl?: string;
1746
1778
  presetApprovals: boolean;
1747
1779
  accountId: string;
@@ -1763,16 +1795,10 @@ type ForwardAccountInviteDto = {
1763
1795
  message?: string;
1764
1796
  invitationCode: string;
1765
1797
  };
1766
- type DocumentVersionsSummaryDto_DocumentVersionSummaryDto = {
1767
- version: MajorMinorDto;
1768
- isMajorChange: boolean;
1769
- createdTime: string;
1770
- releaseNotes?: ReleaseNotesDto;
1771
- };
1772
1798
  type AuxiliaryDocumentExistsDto = {
1773
1799
  exists: boolean;
1774
1800
  };
1775
- type ApproverRemovalReason = 'RoleChange' | 'SubAccountRemovedFromAdvisorRelationship' | 'RemovedFromSubAccount' | 'NotInDestinationSubAccount' | 'RemovedFromAccount';
1801
+ type ApproverRemovalReason = 'RoleChange' | 'SubAccountRemovedFromAdvisorRelationship' | 'RemovedFromSubAccount' | 'NotInDestinationSubAccount' | 'RemovedFromAccount' | 'GuestApproversDisabled';
1776
1802
  type ActivityTimelineSummaryDto = {
1777
1803
  totalUnreadComments: number;
1778
1804
  totalActivities: number;
@@ -1821,6 +1847,22 @@ type ExtendInviteExpiryRequestDto = {
1821
1847
  type NegotiationWithTimelinePreviewAndNestedAnswersDto = NegotiationWithTimelineAndPreviewDto & {
1822
1848
  nestedAnswerFullSummary: NestedAnswersSummariesWithAnswersDto;
1823
1849
  };
1850
+ type DocumentVersionsSummaryDto_DocumentVersionSummaryDto = {
1851
+ version: MajorMinorDto;
1852
+ isMajorChange: boolean;
1853
+ createdTime: string;
1854
+ releaseNotes?: ReleaseNotesDto;
1855
+ };
1856
+ type ProcessingExtractionSimilarityResultDto = {
1857
+ percentComplete: number;
1858
+ partialUnstructured: UnstructuredExtractionResultDto;
1859
+ electionId?: string;
1860
+ created: string;
1861
+ partialStructured: StructuredExtractionResultDto;
1862
+ version?: string;
1863
+ templateId: string;
1864
+ updated?: string;
1865
+ };
1824
1866
  type FilterResultsDto = {
1825
1867
  total: number;
1826
1868
  results: {
@@ -2205,6 +2247,7 @@ type NegotiationAuditEventsDto = {
2205
2247
  type UpdateSubAccountRequestDto = {
2206
2248
  name?: string;
2207
2249
  presetApprovals?: boolean;
2250
+ canUseGuestApprovers?: boolean;
2208
2251
  };
2209
2252
  type AccountSummaryWithSubAccountsDto = {
2210
2253
  id: string;
@@ -2510,6 +2553,7 @@ type AdminAccountDetailDto = {
2510
2553
  shortCode: string;
2511
2554
  advisorClients: Array<AccountAndSubAccountsDto>;
2512
2555
  accountName: string;
2556
+ guestApproversEnabledForAllWorkspaces: boolean;
2513
2557
  features: Array<FeatureDto>;
2514
2558
  logoUrl?: string;
2515
2559
  accountId: string;
@@ -2718,6 +2762,7 @@ type AdminAccountDetailWithDocumentPackDto = {
2718
2762
  shortCode: string;
2719
2763
  advisorClients: Array<AccountAndSubAccountsDto>;
2720
2764
  accountName: string;
2765
+ guestApproversEnabledForAllWorkspaces: boolean;
2721
2766
  features: Array<FeatureDto>;
2722
2767
  logoUrl?: string;
2723
2768
  restrictedDocumentPacks: Array<DocumentPackAndPublisherDto>;
@@ -3245,12 +3290,6 @@ type FundListSpreadsheetErrorResponseDto = {
3245
3290
  message: string;
3246
3291
  validationErrors: Array<FundListSpreadsheetValidationErrorDto>;
3247
3292
  };
3248
- type InitiatorDto = {
3249
- account: AccountIdAndNameDto;
3250
- user?: UserDto;
3251
- invitationSentOn?: string;
3252
- canUploadSignaturePagesFor: Array<string>;
3253
- };
3254
3293
  type ReceiverUserDto = {
3255
3294
  email: string;
3256
3295
  emailFailedToDeliver?: boolean;
@@ -3281,6 +3320,17 @@ type SidedNegotiationCountsDto = {
3281
3320
  executing: number;
3282
3321
  amendAndRestatement: number;
3283
3322
  };
3323
+ type InitiatorDto = {
3324
+ account: AccountIdAndNameDto;
3325
+ user?: UserDto;
3326
+ invitationSentOn?: string;
3327
+ canUploadSignaturePagesFor: Array<string>;
3328
+ };
3329
+ type TextSimilarityScoresDto = {
3330
+ scores: {
3331
+ [key: string]: Array<TextSimilarityScoreDto>;
3332
+ };
3333
+ };
3284
3334
  type SendAdvisorRequestDto = {
3285
3335
  email: string;
3286
3336
  subAccountIds?: Array<string>;
@@ -3514,6 +3564,7 @@ type UpdateSubAccountNSMRequestDto = {
3514
3564
  removedEntities?: Array<EntityIdDto>;
3515
3565
  name?: string;
3516
3566
  newEntities?: Array<EntityIdDto>;
3567
+ canUseGuestApprovers?: boolean;
3517
3568
  removedUsers?: Array<string>;
3518
3569
  presetApprovals?: boolean;
3519
3570
  newUsers?: Array<string>;
@@ -12273,4 +12324,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12273
12324
  */
12274
12325
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12275
12326
 
12276
- export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminLikeUsersListDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_BaseColumnLabelDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_EntityWithValuesDto, type ComponentAnswerDto_ExhibitValueSchemaDto, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundList, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NameChangeDto, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocuSignEmailRestriction, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentIntegrationRestriction, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExhibitValueColumnMode, type ExtendInviteExpiryRequestDto, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type ExtractionSimilarityResultDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundListSpreadsheetErrorResponseDto, type FundListSpreadsheetSummaryDto, type FundListSpreadsheetUploadSummaryDto, type FundListSpreadsheetValidationErrorDto, type FundStatusChange, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type MasterListChangesDto, type MasterListIdDto, type MfaStatusResponseDto, type MfaVerifyRequestDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFileNamesDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanConfirmExecutionVersion, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SignerRole, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type TurnstileErrorCode, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountDocusignEmailRestrictionDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAdminLikeUsers, type getAdminLikeUsersData, type getAdminLikeUsersErrors, type getAdminLikeUsersResponse, type getAdminLikeUsersResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
12327
+ export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminLikeUsersListDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type CompletedExtractionSimilarityResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_BaseColumnLabelDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_EntityWithValuesDto, type ComponentAnswerDto_ExhibitValueSchemaDto, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundList, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NameChangeDto, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocuSignEmailRestriction, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentIntegrationRestriction, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExhibitValueColumnMode, type ExtendInviteExpiryRequestDto, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type ExtractionSimilarityResultDto, type FailedExtractionResultDto, type FailedExtractionSimilarityResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundListSpreadsheetErrorResponseDto, type FundListSpreadsheetSummaryDto, type FundListSpreadsheetUploadSummaryDto, type FundListSpreadsheetValidationErrorDto, type FundStatusChange, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type MasterListChangesDto, type MasterListIdDto, type MfaStatusResponseDto, type MfaVerifyRequestDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFileNamesDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanConfirmExecutionVersion, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProcessingExtractionSimilarityResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SignerRole, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextSimilarityScoresDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type TurnstileErrorCode, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountDocusignEmailRestrictionDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateGuestApproversDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAdminLikeUsers, type getAdminLikeUsersData, type getAdminLikeUsersErrors, type getAdminLikeUsersResponse, type getAdminLikeUsersResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
package/dist/index.d.ts CHANGED
@@ -331,6 +331,17 @@ type SetApprovalRulesDto = {
331
331
  users: Array<string>;
332
332
  quorum: number;
333
333
  };
334
+ type FailedExtractionSimilarityResultDto = {
335
+ percentComplete: number;
336
+ partialUnstructured: UnstructuredExtractionResultDto;
337
+ electionId?: string;
338
+ created: string;
339
+ partialStructured: StructuredExtractionResultDto;
340
+ version?: string;
341
+ templateId: string;
342
+ updated?: string;
343
+ error: ErrorResponse;
344
+ };
334
345
  type UnstructuredExtractionResultsWithAnnotationsDto = {
335
346
  [key: string]: Array<{
336
347
  paragraph: string;
@@ -846,10 +857,6 @@ type ActiveOrPendingUserForNakhodaAdminDto = {
846
857
  subAccounts: Array<SubAccountIdWithNameDto>;
847
858
  status: string;
848
859
  };
849
- type NewUserShareDto = {
850
- email: string;
851
- message?: string;
852
- };
853
860
  type ESignNegotiationStatusDto = {
854
861
  subAccountId: string;
855
862
  sessionStatus?: ESignSessionStatusDto;
@@ -922,6 +929,13 @@ type PlatformStatisticsDto = {
922
929
  };
923
930
  presets: number;
924
931
  };
932
+ type NewUserShareDto = {
933
+ email: string;
934
+ message?: string;
935
+ };
936
+ type UpdateGuestApproversDto = {
937
+ guestApproversEnabledForAllWorkspaces: boolean;
938
+ };
925
939
  type NegotiationStateGroup = 'preparingFirstDraft' | 'negotiating' | 'confirming' | 'pendingExecution' | 'executed' | 'cancelled' | 'confirmedTemplate' | 'sendingFailed';
926
940
  type CreateBulkSetResponseDto = {
927
941
  bulkSetId: string;
@@ -1164,8 +1178,9 @@ type UpdateAccountPresetApprovalsDto = {
1164
1178
  };
1165
1179
  type CreateSubAccountNSMRequestDto = {
1166
1180
  name: string;
1167
- users?: Array<string>;
1168
1181
  entities?: Array<EntityIdDto>;
1182
+ canUseGuestApprovers?: boolean;
1183
+ users?: Array<string>;
1169
1184
  presetApprovals?: boolean;
1170
1185
  };
1171
1186
  type ComponentAnswerDto_EntityWithValuesDto = {
@@ -1479,6 +1494,23 @@ type ApprovalDecisionsWithSubmittedValuesDto = {
1479
1494
  sentForApprovalOn?: string;
1480
1495
  };
1481
1496
  type NegotiationFilter_RequiresApproval_RequiresApprovalValue = 'Approval';
1497
+ type CompletedExtractionSimilarityResultDto = {
1498
+ actualAnswersValid: PartyAnswersDto;
1499
+ expectedUnstructured: UnstructuredExtractionResultDto;
1500
+ actualUnstructured: UnstructuredExtractionResultDto;
1501
+ similarityUnstructured: TextSimilarityScoresDto;
1502
+ similarityStructured: {
1503
+ [key: string]: ElectionValueSimilarityScoreDto;
1504
+ };
1505
+ created: string;
1506
+ actualAnswers: PartyAnswersDto;
1507
+ version?: string;
1508
+ expectedAnswers: PartyAnswersDto;
1509
+ templateId: string;
1510
+ updated?: string;
1511
+ electionId?: string;
1512
+ percentExtracted: number;
1513
+ };
1482
1514
  type DocumentDraftingNoteDto = {
1483
1515
  documentId: string;
1484
1516
  subAccountId: string;
@@ -1508,9 +1540,7 @@ type CreateBulkSetDto = {
1508
1540
  negotiations: Array<CreateBulkSetItemDto>;
1509
1541
  };
1510
1542
  type FundListBaseColumn = 'name' | 'lei' | 'fund_identifier';
1511
- type ExtractionSimilarityResultDto = {
1512
- [key: string]: unknown;
1513
- };
1543
+ type ExtractionSimilarityResultDto = ProcessingExtractionSimilarityResultDto | FailedExtractionSimilarityResultDto | CompletedExtractionSimilarityResultDto;
1514
1544
  type NegotiationSearchDto = {
1515
1545
  counterpartyEntityName: Array<string>;
1516
1546
  staleTo?: number;
@@ -1714,6 +1744,7 @@ type NoteType = 'internal' | 'external';
1714
1744
  type SubAccountSummaryDto = {
1715
1745
  name: string;
1716
1746
  entities: Array<EntityDto>;
1747
+ canUseGuestApprovers: boolean;
1717
1748
  users: Array<string>;
1718
1749
  presetApprovals: boolean;
1719
1750
  id: string;
@@ -1742,6 +1773,7 @@ type NestedPartyAnswersDto = {
1742
1773
  };
1743
1774
  type AdminAccountOnlyDto = {
1744
1775
  accountName: string;
1776
+ guestApproversEnabledForAllWorkspaces: boolean;
1745
1777
  logoUrl?: string;
1746
1778
  presetApprovals: boolean;
1747
1779
  accountId: string;
@@ -1763,16 +1795,10 @@ type ForwardAccountInviteDto = {
1763
1795
  message?: string;
1764
1796
  invitationCode: string;
1765
1797
  };
1766
- type DocumentVersionsSummaryDto_DocumentVersionSummaryDto = {
1767
- version: MajorMinorDto;
1768
- isMajorChange: boolean;
1769
- createdTime: string;
1770
- releaseNotes?: ReleaseNotesDto;
1771
- };
1772
1798
  type AuxiliaryDocumentExistsDto = {
1773
1799
  exists: boolean;
1774
1800
  };
1775
- type ApproverRemovalReason = 'RoleChange' | 'SubAccountRemovedFromAdvisorRelationship' | 'RemovedFromSubAccount' | 'NotInDestinationSubAccount' | 'RemovedFromAccount';
1801
+ type ApproverRemovalReason = 'RoleChange' | 'SubAccountRemovedFromAdvisorRelationship' | 'RemovedFromSubAccount' | 'NotInDestinationSubAccount' | 'RemovedFromAccount' | 'GuestApproversDisabled';
1776
1802
  type ActivityTimelineSummaryDto = {
1777
1803
  totalUnreadComments: number;
1778
1804
  totalActivities: number;
@@ -1821,6 +1847,22 @@ type ExtendInviteExpiryRequestDto = {
1821
1847
  type NegotiationWithTimelinePreviewAndNestedAnswersDto = NegotiationWithTimelineAndPreviewDto & {
1822
1848
  nestedAnswerFullSummary: NestedAnswersSummariesWithAnswersDto;
1823
1849
  };
1850
+ type DocumentVersionsSummaryDto_DocumentVersionSummaryDto = {
1851
+ version: MajorMinorDto;
1852
+ isMajorChange: boolean;
1853
+ createdTime: string;
1854
+ releaseNotes?: ReleaseNotesDto;
1855
+ };
1856
+ type ProcessingExtractionSimilarityResultDto = {
1857
+ percentComplete: number;
1858
+ partialUnstructured: UnstructuredExtractionResultDto;
1859
+ electionId?: string;
1860
+ created: string;
1861
+ partialStructured: StructuredExtractionResultDto;
1862
+ version?: string;
1863
+ templateId: string;
1864
+ updated?: string;
1865
+ };
1824
1866
  type FilterResultsDto = {
1825
1867
  total: number;
1826
1868
  results: {
@@ -2205,6 +2247,7 @@ type NegotiationAuditEventsDto = {
2205
2247
  type UpdateSubAccountRequestDto = {
2206
2248
  name?: string;
2207
2249
  presetApprovals?: boolean;
2250
+ canUseGuestApprovers?: boolean;
2208
2251
  };
2209
2252
  type AccountSummaryWithSubAccountsDto = {
2210
2253
  id: string;
@@ -2510,6 +2553,7 @@ type AdminAccountDetailDto = {
2510
2553
  shortCode: string;
2511
2554
  advisorClients: Array<AccountAndSubAccountsDto>;
2512
2555
  accountName: string;
2556
+ guestApproversEnabledForAllWorkspaces: boolean;
2513
2557
  features: Array<FeatureDto>;
2514
2558
  logoUrl?: string;
2515
2559
  accountId: string;
@@ -2718,6 +2762,7 @@ type AdminAccountDetailWithDocumentPackDto = {
2718
2762
  shortCode: string;
2719
2763
  advisorClients: Array<AccountAndSubAccountsDto>;
2720
2764
  accountName: string;
2765
+ guestApproversEnabledForAllWorkspaces: boolean;
2721
2766
  features: Array<FeatureDto>;
2722
2767
  logoUrl?: string;
2723
2768
  restrictedDocumentPacks: Array<DocumentPackAndPublisherDto>;
@@ -3245,12 +3290,6 @@ type FundListSpreadsheetErrorResponseDto = {
3245
3290
  message: string;
3246
3291
  validationErrors: Array<FundListSpreadsheetValidationErrorDto>;
3247
3292
  };
3248
- type InitiatorDto = {
3249
- account: AccountIdAndNameDto;
3250
- user?: UserDto;
3251
- invitationSentOn?: string;
3252
- canUploadSignaturePagesFor: Array<string>;
3253
- };
3254
3293
  type ReceiverUserDto = {
3255
3294
  email: string;
3256
3295
  emailFailedToDeliver?: boolean;
@@ -3281,6 +3320,17 @@ type SidedNegotiationCountsDto = {
3281
3320
  executing: number;
3282
3321
  amendAndRestatement: number;
3283
3322
  };
3323
+ type InitiatorDto = {
3324
+ account: AccountIdAndNameDto;
3325
+ user?: UserDto;
3326
+ invitationSentOn?: string;
3327
+ canUploadSignaturePagesFor: Array<string>;
3328
+ };
3329
+ type TextSimilarityScoresDto = {
3330
+ scores: {
3331
+ [key: string]: Array<TextSimilarityScoreDto>;
3332
+ };
3333
+ };
3284
3334
  type SendAdvisorRequestDto = {
3285
3335
  email: string;
3286
3336
  subAccountIds?: Array<string>;
@@ -3514,6 +3564,7 @@ type UpdateSubAccountNSMRequestDto = {
3514
3564
  removedEntities?: Array<EntityIdDto>;
3515
3565
  name?: string;
3516
3566
  newEntities?: Array<EntityIdDto>;
3567
+ canUseGuestApprovers?: boolean;
3517
3568
  removedUsers?: Array<string>;
3518
3569
  presetApprovals?: boolean;
3519
3570
  newUsers?: Array<string>;
@@ -12273,4 +12324,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
12273
12324
  */
12274
12325
  declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
12275
12326
 
12276
- export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminLikeUsersListDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_BaseColumnLabelDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_EntityWithValuesDto, type ComponentAnswerDto_ExhibitValueSchemaDto, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundList, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NameChangeDto, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocuSignEmailRestriction, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentIntegrationRestriction, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExhibitValueColumnMode, type ExtendInviteExpiryRequestDto, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type ExtractionSimilarityResultDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundListSpreadsheetErrorResponseDto, type FundListSpreadsheetSummaryDto, type FundListSpreadsheetUploadSummaryDto, type FundListSpreadsheetValidationErrorDto, type FundStatusChange, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type MasterListChangesDto, type MasterListIdDto, type MfaStatusResponseDto, type MfaVerifyRequestDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFileNamesDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanConfirmExecutionVersion, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SignerRole, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type TurnstileErrorCode, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountDocusignEmailRestrictionDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAdminLikeUsers, type getAdminLikeUsersData, type getAdminLikeUsersErrors, type getAdminLikeUsersResponse, type getAdminLikeUsersResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
12327
+ export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminLikeUsersListDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type CompletedExtractionSimilarityResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_BaseColumnLabelDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_EntityWithValuesDto, type ComponentAnswerDto_ExhibitValueSchemaDto, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundList, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NameChangeDto, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocuSignEmailRestriction, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentIntegrationRestriction, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExhibitValueColumnMode, type ExtendInviteExpiryRequestDto, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type ExtractionSimilarityResultDto, type FailedExtractionResultDto, type FailedExtractionSimilarityResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundListSpreadsheetErrorResponseDto, type FundListSpreadsheetSummaryDto, type FundListSpreadsheetUploadSummaryDto, type FundListSpreadsheetValidationErrorDto, type FundStatusChange, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type MasterListChangesDto, type MasterListIdDto, type MfaStatusResponseDto, type MfaVerifyRequestDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFileNamesDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanConfirmExecutionVersion, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProcessingExtractionSimilarityResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SignerRole, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextSimilarityScoresDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type TurnstileErrorCode, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountDocusignEmailRestrictionDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateGuestApproversDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAdminLikeUsers, type getAdminLikeUsersData, type getAdminLikeUsersErrors, type getAdminLikeUsersResponse, type getAdminLikeUsersResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createiq/backend",
3
- "version": "1.0.99",
3
+ "version": "1.0.101",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/index.cjs",
@@ -1 +1 @@
1
- 3b4876ef67678d93b2f7e50915151c6598fa6bf79b987cfa6c8179be939de615
1
+ 409174d2dbc661f43602be5ea7fc971a84ec54f5525fbc62abe2d972f74220f4