@createiq/backend 1.0.78 → 1.0.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/sdk.gen.ts +28 -1
- package/client/types.gen.ts +131 -21
- package/dist/index.cjs +19 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +125 -19
- package/dist/index.d.ts +125 -19
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1137,6 +1137,10 @@ type CreateSubAccountNSMRequestDto = {
|
|
|
1137
1137
|
entities?: Array<EntityIdDto>;
|
|
1138
1138
|
presetApprovals?: boolean;
|
|
1139
1139
|
};
|
|
1140
|
+
type ComponentAnswerDto_EntityWithValuesDto = {
|
|
1141
|
+
entity: ComponentAnswerDto_FundListEntityDto;
|
|
1142
|
+
exhibitValues: ComponentAnswerDto_ExhibitValuesDto;
|
|
1143
|
+
};
|
|
1140
1144
|
type ExtractionResultDto = (ProcessingExtractionResultDto & {
|
|
1141
1145
|
type: 'processing';
|
|
1142
1146
|
}) | (FailedExtractionResultDto & {
|
|
@@ -2095,6 +2099,13 @@ type NegotiationSummaryAvailableActionsDto = {
|
|
|
2095
2099
|
canNegotiateVolumeBilledDocument: boolean;
|
|
2096
2100
|
};
|
|
2097
2101
|
type ESignAccountStatus = 'never-connected' | 'connected' | 'disconnected';
|
|
2102
|
+
type FundListSpreadsheetUploadSummaryDto = {
|
|
2103
|
+
dryRun: boolean;
|
|
2104
|
+
summary: FundListSpreadsheetSummaryDto;
|
|
2105
|
+
valid: boolean;
|
|
2106
|
+
parsedData: ComponentAnswerDto_FundList;
|
|
2107
|
+
masterListId?: string;
|
|
2108
|
+
};
|
|
2098
2109
|
type FeatureDto = {
|
|
2099
2110
|
featureId: string;
|
|
2100
2111
|
enabled: boolean;
|
|
@@ -2186,23 +2197,6 @@ type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto = {
|
|
|
2186
2197
|
disparity: boolean;
|
|
2187
2198
|
};
|
|
2188
2199
|
type ErrorResponse = ErrorResponseDto | DocumentErrorResponseDto | EntityMoveErrorResponseDto;
|
|
2189
|
-
type ApprovalRoundDto = {
|
|
2190
|
-
submittedAt: string;
|
|
2191
|
-
id: string;
|
|
2192
|
-
overallDecision: string;
|
|
2193
|
-
electionApprovals: {
|
|
2194
|
-
[key: string]: ApprovalDto;
|
|
2195
|
-
};
|
|
2196
|
-
type: string;
|
|
2197
|
-
documentApproval?: ApprovalDto;
|
|
2198
|
-
decidedAt: string;
|
|
2199
|
-
affectedElectionApprovals?: {
|
|
2200
|
-
[key: string]: ApprovalDto;
|
|
2201
|
-
};
|
|
2202
|
-
};
|
|
2203
|
-
type CreateSubAccountResponseDto = {
|
|
2204
|
-
id: string;
|
|
2205
|
-
};
|
|
2206
2200
|
type CounterpartyDto = {
|
|
2207
2201
|
externalComment?: string;
|
|
2208
2202
|
isFreeEmail?: boolean;
|
|
@@ -2239,6 +2233,36 @@ type CancelledByDto = {
|
|
|
2239
2233
|
type UpdateUserFlagsDto = {
|
|
2240
2234
|
displayIntroduction: boolean;
|
|
2241
2235
|
};
|
|
2236
|
+
type FundListSpreadsheetSummaryDto = {
|
|
2237
|
+
columnsDetected: Array<string>;
|
|
2238
|
+
fundsModified: number;
|
|
2239
|
+
totalRows: number;
|
|
2240
|
+
masterListId?: string;
|
|
2241
|
+
parsedRows: number;
|
|
2242
|
+
skippedRows: number;
|
|
2243
|
+
};
|
|
2244
|
+
type ApprovalRoundDto = {
|
|
2245
|
+
submittedAt: string;
|
|
2246
|
+
id: string;
|
|
2247
|
+
overallDecision: string;
|
|
2248
|
+
electionApprovals: {
|
|
2249
|
+
[key: string]: ApprovalDto;
|
|
2250
|
+
};
|
|
2251
|
+
type: string;
|
|
2252
|
+
documentApproval?: ApprovalDto;
|
|
2253
|
+
decidedAt: string;
|
|
2254
|
+
affectedElectionApprovals?: {
|
|
2255
|
+
[key: string]: ApprovalDto;
|
|
2256
|
+
};
|
|
2257
|
+
};
|
|
2258
|
+
type ComponentAnswerDto_ExhibitValueSchemaDto = {
|
|
2259
|
+
name: string;
|
|
2260
|
+
label?: string;
|
|
2261
|
+
behaviour?: string;
|
|
2262
|
+
};
|
|
2263
|
+
type CreateSubAccountResponseDto = {
|
|
2264
|
+
id: string;
|
|
2265
|
+
};
|
|
2242
2266
|
type UserInviteDto = {
|
|
2243
2267
|
subAccountIds?: Array<string>;
|
|
2244
2268
|
lastName: string;
|
|
@@ -2340,6 +2364,13 @@ type NegotiationAction = 'assignUser' | 'assignToMe' | 'cancel' | 'confirm' | 'c
|
|
|
2340
2364
|
type BulkDraftCounterpartyOptionsDto = {
|
|
2341
2365
|
overrideAnswers: PartyAnswersDto;
|
|
2342
2366
|
};
|
|
2367
|
+
type ComponentAnswerDto_NameChangeDto = {
|
|
2368
|
+
newName?: string;
|
|
2369
|
+
newLei?: string;
|
|
2370
|
+
newFundIdentifier?: string;
|
|
2371
|
+
entity: ComponentAnswerDto_FundListEntityDto;
|
|
2372
|
+
exhibitValues: ComponentAnswerDto_ExhibitValuesDto;
|
|
2373
|
+
};
|
|
2343
2374
|
type ElectionsDto = {
|
|
2344
2375
|
standard: Array<ElectionDto>;
|
|
2345
2376
|
executionDate: ElectionDto;
|
|
@@ -2371,6 +2402,10 @@ type PendingOrActiveAdvisorDto = {
|
|
|
2371
2402
|
advisorDomains: Array<string>;
|
|
2372
2403
|
clientSubAccounts: Array<string>;
|
|
2373
2404
|
};
|
|
2405
|
+
type ComponentAnswerDto_BaseColumnLabelDto = {
|
|
2406
|
+
column: 'name' | 'lei' | 'fund_identifier';
|
|
2407
|
+
label: string;
|
|
2408
|
+
};
|
|
2374
2409
|
type NegotiationGroupIdAndNameDto = {
|
|
2375
2410
|
groupId: string;
|
|
2376
2411
|
name: string;
|
|
@@ -2996,7 +3031,6 @@ type DocumentIdWithDraftingNotesFlagDto = {
|
|
|
2996
3031
|
hasInternalDraftingNotes: boolean;
|
|
2997
3032
|
hasExternalDraftingNotes: boolean;
|
|
2998
3033
|
};
|
|
2999
|
-
type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue = 'Yes' | 'No';
|
|
3000
3034
|
type NegotiationOrderKey = 'activeUser' | 'created' | 'documentType' | 'status' | 'lastAction' | 'lastActionWithFavouritesFirst' | 'myEntityName' | 'counterPartyEntityName' | 'displayReferenceId' | 'approverName';
|
|
3001
3035
|
type WorkflowType = 'offline' | 'w1' | 'w1Ext' | 'w1ExtOffline' | 'w1ExtStage2' | 'w1ExtStage2Offline' | 'w1ExtCombinedStage' | 'w1ExtCombinedStageOffline';
|
|
3002
3036
|
type FilterResultDto = {
|
|
@@ -3024,6 +3058,17 @@ type TeamWorkloadStatisticsDto = {
|
|
|
3024
3058
|
totalMembers: number;
|
|
3025
3059
|
activeUsersStatistics: Array<ActiveUserStatisticsDto>;
|
|
3026
3060
|
};
|
|
3061
|
+
type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue = 'Yes' | 'No';
|
|
3062
|
+
type ComponentAnswerDto_FundList = {
|
|
3063
|
+
outOfScope?: Array<ComponentAnswerDto_EntityWithValuesDto>;
|
|
3064
|
+
baseColumns: Array<ComponentAnswerDto_BaseColumnLabelDto>;
|
|
3065
|
+
modify: Array<ComponentAnswerDto_EntityWithValuesDto>;
|
|
3066
|
+
remove: Array<ComponentAnswerDto_FundListEntityDto>;
|
|
3067
|
+
add: Array<ComponentAnswerDto_EntityWithValuesDto>;
|
|
3068
|
+
masterList?: ComponentAnswerDto_MasterListIdDto;
|
|
3069
|
+
nameChange: Array<ComponentAnswerDto_NameChangeDto>;
|
|
3070
|
+
columns: Array<ComponentAnswerDto_ExhibitValueSchemaDto>;
|
|
3071
|
+
};
|
|
3027
3072
|
type UsageStatisticsDto = {
|
|
3028
3073
|
summary: PlatformStatisticsDto;
|
|
3029
3074
|
accounts: Array<AccountStatisticsDto>;
|
|
@@ -3120,6 +3165,11 @@ type SampleValueConfigurationDto = {
|
|
|
3120
3165
|
values: Array<string>;
|
|
3121
3166
|
type: 'sample_values';
|
|
3122
3167
|
};
|
|
3168
|
+
type FundListSpreadsheetValidationErrorDto = {
|
|
3169
|
+
errorType: string;
|
|
3170
|
+
message: string;
|
|
3171
|
+
rows?: Array<number>;
|
|
3172
|
+
};
|
|
3123
3173
|
type NegotiationCustomFieldsDto = {
|
|
3124
3174
|
referenceId?: string;
|
|
3125
3175
|
displayReferenceId?: string;
|
|
@@ -3128,6 +3178,11 @@ type DraftingNotesDto = {
|
|
|
3128
3178
|
draftingNotes: Array<DraftingNoteDto>;
|
|
3129
3179
|
externalDraftingNotes: Array<DraftingNoteDto>;
|
|
3130
3180
|
};
|
|
3181
|
+
type FundListSpreadsheetErrorResponseDto = {
|
|
3182
|
+
code: string;
|
|
3183
|
+
message: string;
|
|
3184
|
+
validationErrors: Array<FundListSpreadsheetValidationErrorDto>;
|
|
3185
|
+
};
|
|
3131
3186
|
type InitiatorDto = {
|
|
3132
3187
|
account: AccountIdAndNameDto;
|
|
3133
3188
|
user?: UserDto;
|
|
@@ -5456,6 +5511,47 @@ type getSubscribedPublishersResponses = {
|
|
|
5456
5511
|
200: Array<DocumentPublisherWithPackDto>;
|
|
5457
5512
|
};
|
|
5458
5513
|
type getSubscribedPublishersResponse = getSubscribedPublishersResponses[keyof getSubscribedPublishersResponses];
|
|
5514
|
+
type uploadFundListSpreadsheetData = {
|
|
5515
|
+
body: {
|
|
5516
|
+
/**
|
|
5517
|
+
* Excel spreadsheet file (.xlsx)
|
|
5518
|
+
*/
|
|
5519
|
+
file?: Blob | File;
|
|
5520
|
+
};
|
|
5521
|
+
path: {
|
|
5522
|
+
subAccountId: string;
|
|
5523
|
+
negotiationId: string;
|
|
5524
|
+
};
|
|
5525
|
+
query?: {
|
|
5526
|
+
/**
|
|
5527
|
+
* If true, validates the spreadsheet without saving changes
|
|
5528
|
+
*/
|
|
5529
|
+
dryRun?: boolean;
|
|
5530
|
+
};
|
|
5531
|
+
url: '/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/fundList/spreadsheet';
|
|
5532
|
+
};
|
|
5533
|
+
type uploadFundListSpreadsheetErrors = {
|
|
5534
|
+
/**
|
|
5535
|
+
* Validation error - invalid spreadsheet format or missing required data
|
|
5536
|
+
*/
|
|
5537
|
+
400: FundListSpreadsheetErrorResponseDto;
|
|
5538
|
+
/**
|
|
5539
|
+
* Forbidden - User does not have required role (SuperManager, Manager, or Editor)
|
|
5540
|
+
*/
|
|
5541
|
+
403: unknown;
|
|
5542
|
+
/**
|
|
5543
|
+
* Negotiation not found
|
|
5544
|
+
*/
|
|
5545
|
+
404: unknown;
|
|
5546
|
+
};
|
|
5547
|
+
type uploadFundListSpreadsheetError = uploadFundListSpreadsheetErrors[keyof uploadFundListSpreadsheetErrors];
|
|
5548
|
+
type uploadFundListSpreadsheetResponses = {
|
|
5549
|
+
/**
|
|
5550
|
+
* Spreadsheet parsed and fund list updated successfully
|
|
5551
|
+
*/
|
|
5552
|
+
200: FundListSpreadsheetUploadSummaryDto;
|
|
5553
|
+
};
|
|
5554
|
+
type uploadFundListSpreadsheetResponse = uploadFundListSpreadsheetResponses[keyof uploadFundListSpreadsheetResponses];
|
|
5459
5555
|
type sendGroupToCounterpartyData = {
|
|
5460
5556
|
body: SendGroupToCounterpartyRequestDto;
|
|
5461
5557
|
path: {
|
|
@@ -10915,6 +11011,16 @@ declare const fixApprovalRules: <ThrowOnError extends boolean = false>(options:
|
|
|
10915
11011
|
* Lists publishers where pack subscriptions are held.
|
|
10916
11012
|
*/
|
|
10917
11013
|
declare const getSubscribedPublishers: <ThrowOnError extends boolean = false>(options?: Options<getSubscribedPublishersData, ThrowOnError>) => RequestResult<getSubscribedPublishersResponses, unknown, ThrowOnError, "fields">;
|
|
11014
|
+
/**
|
|
11015
|
+
* Upload master list spreadsheet to populate fund list data
|
|
11016
|
+
*
|
|
11017
|
+
* Upload master list spreadsheet to populate fund list data.
|
|
11018
|
+
* The spreadsheet should contain - A MASTERLIST IDENTIFIER in the metadata rows (optional) - A header row with columns NAME, RFA ID, CLIENT IDENTIFIER, LEI - Optional exhibit value columns (under "Linked Exhibit" merged header) - Data rows containing fund information
|
|
11019
|
+
* Column mappings - NAME -> Fund name (required) - RFA ID -> Entity ID (required) - CLIENT IDENTIFIER -> Fund identifier (optional) - LEI -> Legal Entity Identifier (optional)
|
|
11020
|
+
* All parsed funds are placed in the "modify" scope of the fund list.
|
|
11021
|
+
* When dryRun is true, the spreadsheet is validated but no changes are saved. The response includes a summary of rows parsed, columns detected, and any validation errors.
|
|
11022
|
+
*/
|
|
11023
|
+
declare const uploadFundListSpreadsheet: <ThrowOnError extends boolean = false>(options: Options<uploadFundListSpreadsheetData, ThrowOnError>) => RequestResult<uploadFundListSpreadsheetResponses, uploadFundListSpreadsheetErrors, ThrowOnError, "fields">;
|
|
10918
11024
|
/**
|
|
10919
11025
|
* Send negotiations in a group to the counterparty
|
|
10920
11026
|
*
|
|
@@ -12104,4 +12210,4 @@ declare const getTimelineActivity: <ThrowOnError extends boolean = false>(option
|
|
|
12104
12210
|
*/
|
|
12105
12211
|
declare const getProfile: <ThrowOnError extends boolean = false>(options?: Options<getProfileData, ThrowOnError>) => RequestResult<getProfileResponses, unknown, ThrowOnError, "fields">;
|
|
12106
12212
|
|
|
12107
|
-
export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_DataEditor, type ComponentAnswerDto_ExhibitValuesDto, type ComponentAnswerDto_FundListEntityDto, type ComponentAnswerDto_MasterListIdDto, type ComponentAnswerDto_Multiple, type ComponentAnswerDto_NestedAnswers, type ComponentAnswerDto_OutOfScopeFundDto, type ComponentAnswerDto_RepeatingGroup, type ComponentAnswerDto_RepeatingGroupElement, type ComponentAnswerDto_Single, type ComponentAnswerDto_Tabular, type ComponentDto, type ComponentIdDto, type ContextAvailableActionsDto, type CounterpartyDto, type CounterpartyWithReferenceIdDto, type CreateApiUserRequest, type CreateApiUserResponse, type CreateBulkSetDto, type CreateBulkSetItemDto, type CreateBulkSetResponseDto, type CreateDocumentMetadataDto, type CreateNegotiationGroupDto, type CreateNegotiationRequestDto, type CreatePresetRequestDto, type CreateSubAccountNSMRequestDto, type CreateSubAccountRequestDto, type CreateSubAccountResponseDto, type DetailedEntityDto, type DetailedInputValidationErrorDto, type DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExhibitValueColumnMode, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListBaseColumn, type FundListMetadataDto, type FundListScope, type FundStatusChange, type GenerateNegotiationDocumentDto, type GenerateNegotiationDocumentJobResponseDto, type GetNegotiationDeltasDto, type InitiatorDto, type InvitationCodeDto, type InvitationDocumentDetailsDto, type IssuesContextDto, type JobStatus, type LegacyNegotiationStateGroup, type LegacyNegotiationStatisticsDto, type LegacySidedNegotiationCountsDto, type LegalEntityAvailableActionsDto, type LegalEntityDto, type LoginType, type MajorChangeSummaryDto, type MajorMinorDto, type MarkApprovalCommentsAsReadRequestDto, type MarkEventAsReadRequestDto, type MarkNotificationsAsReadAndActionedDto, type MasterListChangesDto, type MasterListIdDto, type ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SignerRole, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
|
|
12213
|
+
export { type AcceptInviteDto, type AcceptedRelationshipDto, type AccessRequestState, type AccessTokenDto, type AccessWindowDto, type AccountAndSubAccountsDto, type AccountAvailableActionsDto, type AccountContextDto, type AccountCorrelationIdDto, type AccountIdAndNameDto, type AccountIntegrationDataDto, type AccountInviteByNakhodaDto, type AccountNameDto, type AccountSettingsDto, type AccountStatisticsDto, type AccountSummaryFlatDto, type AccountSummaryWithSubAccountsDto, type AccountUserShareDto, type AccountWithAddedDomainsDto, type ActiveOrPendingUserDto, type ActiveOrPendingUserForNakhodaAdminDto, type ActiveUserDto, type ActiveUserStatisticsDto, type ActivityTimelineSummaryDto, type AddOptionalCommentDto, type AddReactionDto, type AdminAccountDetailDto, type AdminAccountDetailWithDocumentPackDto, type AdminAccountOnlyDto, type AdminAccountSummaryDto, type AdminAccountWithEntitiesDto, type AdminApiUserSummaryDto, type AdminPendingAccountDto, type AdminRevertNegotiationStateDto, type AdminUpdateEmailPreferencesDto, type AdvisorAccountRelationshipDto, type AdvisorAccountRelationshipsDto, type AdvisorNegotiationRequestDto, type AdvisorOrClient, type AdvisorRelationshipExpandedDto, type AdvisorRelationshipSummaryDto, type AdvisorRequestInboundStatsDto, type AdvisorRequestStatus, type AdvisorRequestSummaryDto, type AdvisorUserDto, type AdvisorWithShareSettingDto, type AllowListRequestDto, type AllowlistOrDenylist, type AmendDefaultsDto, type AnalyticsEventType, type AnnouncementDto, type AnnouncementsDto, type AnonymousApproverDto, type AnswersSummariesDto, type ApiUserSummaryDto, type ApprovalCommentAvailableActionsDto, type ApprovalCommentDto, type ApprovalCommentRequestDto, type ApprovalCommentUserDto, type ApprovalCommentsAvailableActionsDto, type ApprovalCommentsDto, type ApprovalCountStatisticsDto, type ApprovalDecisionsWithSubmittedValuesDto, type ApprovalDto, type ApprovalHistoryDto, type ApprovalRoundDto, type ApprovalRoundType, type ApprovalRuleChangesDto, type ApprovalStatus, type ApprovalType, type ApproverDto, type ApproverInRulesDto, type ApproverRemovalReason, type ApproversWithQuorumDto, type AttachmentsExistsDto, type AttachmentsExistsDto_ExistingAttachmentDto, type AuditEventCauseDto, type AuditEventDto, type AuditEventEffectDto, type AuditReportType, type AuditTrailFiltersDto, type AuthEndpointsDto, type AuthEndpointsResponseDto, type AuthServerResponseDto, type AuthnSuccessResponseDto, type AuxiliaryDocumentExistsDto, type AvailableChannelsDto, type AvailableUserForAdvisingDto, type BillableEventType, type BrokenApproversSummaryDto, type BulkDraftCounterpartyOptionsDto, type BulkSetDto, type BulkSetJobCountDto, type BulkSetWithAttachmentsDto, type BulkSetsCountsDto, type CDMOutputDto, type CalendricalFrequency, type CancelJobCountDto, type CancelNegotiationsDto, type CancelledByDto, type CapitalMarketsOrganisationType, type CausesDto, type ChangePasswordRequestDto, type ChangeSigningModeDto, type ChannelType, type ChaserEmailInfoDto, type ClientOptions$1 as ClientOptions, type ClientSubAccountContextDto, type ClonePresetDto, type CommentDto, type CompletedExtractionResultDto, type ComponentAnswerDto, type ComponentAnswerDto_AdditionalFieldsDto, type ComponentAnswerDto_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 DocumentAvailability, type DocumentAvailableActions, type DocumentDisclaimerDto, type DocumentDraftingNoteDto, type DocumentDto, type DocumentErrorResponseDto, type DocumentFilter, type DocumentIdAndVersionDto, type DocumentIdWithDraftingNotesFlagDto, type DocumentListAvailableActionsDto, type DocumentListDto, type DocumentListItemDto, type DocumentOrderKey, type DocumentPackAccess, type DocumentPackAllowListRequestDto, type DocumentPackAllowlistDto, type DocumentPackAndPublisherDto, type DocumentPackDto, type DocumentPackState, type DocumentPackWithDocumentsDto, type DocumentPublisherDisclaimerDto, type DocumentPublisherDocumentDisclaimerDto, type DocumentPublisherDto, type DocumentPublisherPackDisclaimerDto, type DocumentPublisherSummaryDto, type DocumentPublisherWithPackDto, type DocumentSchemaChangesDto, type DocumentState, type DocumentVersionCreatedResponse, type DocumentVersionsSummaryDto, type DocumentVersionsSummaryDto_DocumentVersionSummaryDto, type DocumentVersionsWithMajorChangesDto, type DocumentVersionsWithMajorChangesDto_DocumentGroupDto, type DocumentVersionsWithMajorChangesDto_DocumentVersionFlagsDto, type DocumentVersionsWithMajorChangesDto_MajorChangesFlagDto, type DocumentWithPackDto, type DownloadTemplateForVersionRequestDto, type DownloadTemplateRequestDto, type DraftEmailDto, type DraftReceiverEmailValidationDto, type DraftReceiverEmailsDto, type DraftingNoteDto, type DraftingNoteTextDto, type DraftingNotesDto, type ESignAccountStatus, type ESignAccountStatusDto, type ESignNegotiationSessionStatus, type ESignNegotiationStatusDto, type ESignSessionStatusDto, type ElectionAnswerDto, type ElectionAnswerDto_Components, type ElectionAnswerDto_TextAmendment, type ElectionAnswerSummaryDto, type ElectionAnswerTypeDto, type ElectionApprovalCountsDto, type ElectionDto, type ElectionSampleConfigurationDto, type ElectionValueSimilarityScoreDto, type ElectionsDto, type EmailPreferenceDto, type EmailPreferencesDto, type EmailTemplate, type EmailWithErrorDto, type EntityDto, type EntityIdDto, type EntityMetadataDto, type EntityMoveErrorResponseDto, type ErrorResponse, type ErrorResponseDto, type ExecutedNegotiationSummaryDto, type ExecutedNegotiationSummaryDto_AccountMetadataDto, type ExecutedNegotiationSummaryDto_EventByDto, type ExecutedNegotiationSummaryDto_HistoryDto, type ExecutedNegotiationSummaryDto_PartyDto, type ExecutedVersionExistsDto, type ExhibitValueBehaviour, type ExhibitValueColumnMode, type ExternalPartyDto, type ExternalSystemStatisticsDto, type ExtractedFieldMetadataDto, type ExtractionFeedbackDto, type ExtractionResultDto, type ExtractionResultSummaryDto, type ExtractionResultType, type ExtractionResultWithPreviewDto, type FailedExtractionResultDto, type FeatureDto, type FileExtractionResultDto, type FileExtractionResultSummaryDto, type FilterResultDto, type FilterResultsDto, type FixApprovalRulesDto, type ForgottenPasswordRequestDto, type FormSubmissionErrorResponseDto, type FormSubmissionResponseDto, type FormSubmissionSuccessResponseDto, type ForwardAccountInviteDto, type FundListBaseColumn, type FundListMetadataDto, type FundListScope, type 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 ModifySSOConfigDto, type MoveEntityDto, type NamedApproverDto, type NegotiationAction, type NegotiationAdvisorSummaryDto, type NegotiationAnswersDto, type NegotiationAuditEventsDto, type NegotiationAuditTrailEventDto, type NegotiationAvailableActionsDto, type NegotiationCountStatisticsDto, type NegotiationCustomFieldsDto, type NegotiationDatesDto, type NegotiationDeltaDto, type NegotiationEntityFiltersDto, type NegotiationEstablishedPartyDto, type NegotiationFileAvailableActionDto, type NegotiationFileDto_AuxiliaryDocumentDto, type NegotiationFileDto_ExecutionDocumentDto, type NegotiationFileDto_ExternalAttachmentDto, type NegotiationFileDto_SignatureFileDto, type NegotiationFilesSummaryDto, type NegotiationFilter, type NegotiationFilter_AccessibleToAdvisor_AccessibleToAdvisorValue, type NegotiationFilter_ApprovalType_ApprovalTypeValue, type NegotiationFilter_IsForkedOrFork_IsForkedOrForkValue, type NegotiationFilter_IsOffline_IsOfflineValue, type NegotiationFilter_IsTriparty_IsTripartyValue, type NegotiationFilter_MissingApprovers_MissingApproversValue, type NegotiationFilter_OlderThanPeriod_OlderThanPeriodValue, type NegotiationFilter_RequiresApproval_RequiresApprovalValue, type NegotiationFilter_Status_StatusValue, type NegotiationGroupDto, type NegotiationGroupIdAndNameDto, type NegotiationGroupIdDto, type NegotiationHealth, type NegotiationIdWithCounterpartyDto, type NegotiationJobErrorDto, type NegotiationJobLockType, type NegotiationJobStatus, type NegotiationListDto, type NegotiationListMetadataDto, type NegotiationOrderKey, type NegotiationParentDto, type NegotiationPartyDto, type NegotiationReportType, type NegotiationRequester, type NegotiationSearchDto, type NegotiationSingleDto, type NegotiationStateGroup, type NegotiationStateType, type NegotiationStatusLabel, type NegotiationStubbedPartyDto, type NegotiationSummaryAvailableActionsDto, type NegotiationSummaryDto, type NegotiationUIFilterCountsDto, type NegotiationUIState, type NegotiationUpgradeChangesDto, type NegotiationVersionDetailsDto, type NegotiationWithTimelineAndPreviewDto, type NegotiationWithTimelinePreviewAndMultipleNestedAnswersDto, type NegotiationWithTimelinePreviewAndNestedAnswersDto, type NegotiationsGroupDto, type NestedAnswerPartyElectionsDto, type NestedAnswerPartyElectionsForVersionDto, type NestedAnswersSummariesWithAnswersDto, type NestedAnswersSummariesWithPresetAnswersDto, type NestedAnswersSummaryDto, type NestedPartyAnswersDto, type NewUserShareDto, type NonUserWatcherDto, type NonUserWatchersDto, type NoteType, type NotificationCategory, type NotificationChannel, type NotificationContextDto, type NotificationListDto, type NotificationSearchType, type NotificationSenderDto, type NotificationSubscriptionStatusDto, type NotificationTypeDto, type OfflineNegotiatedDocumentExistsDto, type OfflineNegotiatedDocumentExistsDto_OfflineNegotiatedDocumentAvailableActionsDto, type OneLinkAuthRequestDto, type OneLinkInvitationDetailsDto, type OneLinkInvitationNegotiationDetailsDto, type Options, type OrderDirection, type OwnerEntityDto, type PagingMetaDto, type PartyAnswersDto, type PartyAnswersPatchDto, type PartyElectionDto, type PartyElectionNestedAnswersDto, type PartyElectionNestedAnswersForVersionDto, type PartyNestedAnswersIdsDto, type PartyRelativeRef, type PartyThatCanUploadExecutedVersion, type PendingAccountRequestDto, type PendingApprovalCountsDto, type PendingOrActiveAdvisorDto, type PersonNameDto, type PlatformStatisticsDto, type PopulateStatisticsRequestDto, type PotentialAdvisorSummaryDto, type PresetApproverDto, type PresetAuditEventDto, type PresetAuditEventsDto, type PresetAvailableActionsDto, type PresetDto, type PresetEventHistoryDto, type PresetEventHistoryDto_EventByDto, type PresetHealth, type PresetHealthIssue, type PresetMetadataDto, type PresetOrderKey, type PresetResultsDto, type PresetSelectionDto, type PresetSingleDto, type PresetSingleWithPreviewAndMultipleNestedAnswersDto, type PresetSingleWithPreviewAndNestedAnswersDto, type PresetSingleWithPreviewDto, type PresetStateDto, type PresetSummaryDto, type ProcessingExtractionResultDto, type ProxiedAuthnRequestDto, type PublicAccountSearchResultsDto, type QueryExecutionResponseDto, type RawResultSetDto, type ReceiverDto, type ReceiverUserDto, type RegistrationInvitationDto, type RejectInviteDto, type RejectPresetDto, type ReleaseNotesDto, type RemovedUsersDto, type RenameExecutionAttachmentDto, type RenderTemplateDto, type RenderedTemplateDto, type RenderedTemplateDto_RenderedTemplatePageDto, type ReportGenerationRequestDto, type RestrictionsDto, type SSOConfigDto, type SampleAnswerForTemplateRequestDto, type SampleValueConfigurationDto, type SchemaAvailableAsCDMDto, type SchemaDto, type SchemaRestriction, type SchemaSampleConfigurationDto, type SchemaUpgradeReleaseNotesDto, type SearchContext, type SecurityContextDto, type SelectedElectionsRequestDto, type SendAdvisorPresetRequestDto, type SendAdvisorRequestDto, type SendGroupToCounterpartyRequestDto, type SendGroupToCounterpartyResponseDto, type SendGroupToCounterpartyResponseDto_SendGroupToCounterpartyResultDto, type SendToCounterPartyInitialDto, type SetApprovalRulesDto, type SetFeatureDto, type ShareRequestDto, type SharedSubAccountIdDto, type SharedSubAccountIdWithNegotiationsDto, type SidedExecutionAttachmentsExistsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentAvailableActionsDto, type SidedExecutionAttachmentsExistsDto_SidedExistingExecutionAttachmentDto, type SidedNegotiationCountsDto, type SignatureExistsDto, type SignatureExistsDto_RequiredSignaturePageDto, type SignaturePagePartyNegotiationRole, type SignatureStateDto, type SignedJsonPayloadDto, type SignerRole, type SigningMode, type SingleRecipientNotificationDto, type StaleNegotiationBucketDto, type StructuredExtractionResultDto, type SubAccountComplexStatisticsDto, type SubAccountContextDto, type SubAccountContextStatisticsDto, type SubAccountDto, type SubAccountIdAndNameDto, type SubAccountIdNameShareSettingsDto, type SubAccountIdWithNameDto, type SubAccountRelationshipDto, type SubAccountRequestDto, type SubAccountStatisticsDto, type SubAccountStatisticsOverviewResponseDto, type SubAccountSummaryDto, type SubAccountWithDocPackDto, type SubAccountWithIdAndNameDto, type SubAccountWithIdAndOptionalNameDto, type SupportAccessClientDto, type SupportSessionCreationRequestDto, type SupportSessionCreationResponseDto, type SyncNewApproverDto, type TeamWorkloadStatisticsDto, type TemplateExtractionScoreDto, type TemplateSettingsDto, type TemplateSettingsDto_TemplatePageSettingsDto, type TemplateSettingsDto_TemplateStylesDto, type TextSimilarityScoreDto, type TextValidationFormat, type TimelineEventAvailableActionsDto, type TimelineEventDto, type TimelineEventType, type TimelineEventUserDto, type ToggleFavouriteConfirmedTemplateDto, type UIPartyPosition, type UnreadNotificationCountsDto, type UnreservedElectionsDto, type UnstructuredExtractionResultDto, type UnstructuredExtractionResultsWithAnnotationsDto, type UnsubscribeRequestDto, type UpdateAccountNameDto, type UpdateAccountPresetApprovalsDto, type UpdateCapitalMarketsOrganisationTypeDto, type UpdateCommentDto, type UpdateDocumentDraftingNoteDto, type UpdateDocumentDto, type UpdateDocumentStateDto, type UpdateIsAdvisorDto, type UpdateLogoUrlDto, type UpdateNegotiationGroupMembersDto, type UpdateNegotiationGroupNameDto, type UpdateNegotiationsToMatchDto, type UpdateSubAccountNSMRequestDto, type UpdateSubAccountRequestDto, type UpdateUserFlagsDto, type UpdateUserProfileDto, type UpdateUserRoleDto, type UploadedFileNameWithNegotiationDto, type UpsertDocumentPackDto, type UpsertDocumentPublisherDto, type UsageStatisticsDto, type UseForgottenPasswordCodeRequestDto, type UserAccountDto, type UserDto, type UserFlagsDto, type UserForPickerDto, type UserGroupDto, type UserGroupIdDto, type UserGroupNameDto, type UserId, type UserIdDto, type UserInviteDto, type UserListForPickerDto, type UserNegotiationStatisticsDto, type UserProfileColour, type UserProfileDto, type UserStatisticsDto, type UserWatchlistDto, type UserWithRoleDto, type ValidInvitationResponseDto, type ValidatedEntitiesDto, type ValidatedEntityDto, type ValidatedSchemaDto, type ValidatedSchemaErrorDto, type VerifyMinioDto, type VersionedPartyAnswersDto, type VirusScanServiceStatusDto_Status, type WorkflowType, type ZuvaExtractionResultDto, type ZuvaFieldDto, acceptAllCounterpartyPositions, type acceptAllCounterpartyPositionsData, type acceptAllCounterpartyPositionsErrors, type acceptAllCounterpartyPositionsResponse, type acceptAllCounterpartyPositionsResponses, acceptAllCustodianTemplatePositions, type acceptAllCustodianTemplatePositionsData, type acceptAllCustodianTemplatePositionsErrors, type acceptAllCustodianTemplatePositionsResponse, type acceptAllCustodianTemplatePositionsResponses, acceptAllPositionsFromFork, type acceptAllPositionsFromForkData, type acceptAllPositionsFromForkErrors, type acceptAllPositionsFromForkResponse, type acceptAllPositionsFromForkResponses, acceptAllPositionsFromPreviousVersion, type acceptAllPositionsFromPreviousVersionData, type acceptAllPositionsFromPreviousVersionErrors, type acceptAllPositionsFromPreviousVersionResponse, type acceptAllPositionsFromPreviousVersionResponses, acceptAllPresetPositions, type acceptAllPresetPositionsData, type acceptAllPresetPositionsErrors, type acceptAllPresetPositionsResponse, type acceptAllPresetPositionsResponses, acceptCounterpartyPosition, type acceptCounterpartyPositionData, type acceptCounterpartyPositionErrors, type acceptCounterpartyPositionResponse, type acceptCounterpartyPositionResponses, acceptNestedAnswersCounterpartyPosition, type acceptNestedAnswersCounterpartyPositionData, type acceptNestedAnswersCounterpartyPositionErrors, type acceptNestedAnswersCounterpartyPositionResponse, type acceptNestedAnswersCounterpartyPositionResponses, accountSummary, type accountSummaryData, type accountSummaryErrors, type accountSummaryResponse, type accountSummaryResponses, addApprovalComment, type addApprovalCommentData, type addApprovalCommentErrors, type addApprovalCommentResponse, type addApprovalCommentResponses, addComment, type addCommentData, type addCommentResponse, type addCommentResponses, addElectionApproval, type addElectionApprovalData, type addElectionApprovalErrors, type addElectionApprovalResponse, type addElectionApprovalResponses, addElectionRejection, type addElectionRejectionData, type addElectionRejectionErrors, type addElectionRejectionResponse, type addElectionRejectionResponses, addWatchers, type addWatchersData, type addWatchersErrors, type addWatchersResponse, type addWatchersResponses, applyExtractedAnswers, type applyExtractedAnswersData, type applyExtractedAnswersErrors, type applyExtractedAnswersResponse, type applyExtractedAnswersResponses, approve, approveAccessRequest, type approveAccessRequestData, type approveAccessRequestErrors, type approveAccessRequestResponse, type approveAccessRequestResponses, type approveData, type approveErrors, approveFinalDocument, type approveFinalDocumentData, type approveFinalDocumentErrors, type approveFinalDocumentResponses, type approveResponse, type approveResponses, assignEntity, type assignEntityData, type assignEntityErrors, type assignEntityResponse, type assignEntityResponses, assignToMe, type assignToMeData, type assignToMeErrors, type assignToMeResponse, type assignToMeResponses, assignUser, type assignUserData, type assignUserErrors, type assignUserResponse, type assignUserResponses, auditTrailFilters, type auditTrailFiltersData, type auditTrailFiltersResponse, type auditTrailFiltersResponses, auditTrailForAccountAsJson, type auditTrailForAccountAsJsonData, type auditTrailForAccountAsJsonResponse, type auditTrailForAccountAsJsonResponses, auditTrailForSubAccountAsJson, type auditTrailForSubAccountAsJsonData, type auditTrailForSubAccountAsJsonResponse, type auditTrailForSubAccountAsJsonResponses, authPing, type authPingData, type authPingErrors, type authPingResponses, breakingChanges, type breakingChangesData, type breakingChangesResponse, type breakingChangesResponses, bulkSetsJobCount, type bulkSetsJobCountData, type bulkSetsJobCountResponse, type bulkSetsJobCountResponses, cancel, type cancelData, type cancelErrors, cancelExtraction, type cancelExtractionData, type cancelExtractionErrors, type cancelExtractionResponse, type cancelExtractionResponses, cancelExtractionSimilarity, type cancelExtractionSimilarityData, type cancelExtractionSimilarityErrors, type cancelExtractionSimilarityResponses, cancelNegotiations, type cancelNegotiationsData, cancelNegotiationsJobCount, type cancelNegotiationsJobCountData, type cancelNegotiationsJobCountResponse, type cancelNegotiationsJobCountResponses, type cancelNegotiationsResponse, type cancelNegotiationsResponses, type cancelResponse, type cancelResponses, changeSigningMode, type changeSigningModeData, type changeSigningModeErrors, type changeSigningModeResponse, type changeSigningModeResponses, checkAuxiliaryDocument, type checkAuxiliaryDocumentData, type checkAuxiliaryDocumentErrors, type checkAuxiliaryDocumentResponse, type checkAuxiliaryDocumentResponses, checkForBrokenApprovers, type checkForBrokenApproversData, type checkForBrokenApproversResponse, type checkForBrokenApproversResponses, checkOfflineNegotiatedDocument, type checkOfflineNegotiatedDocumentData, type checkOfflineNegotiatedDocumentErrors, type checkOfflineNegotiatedDocumentResponse, type checkOfflineNegotiatedDocumentResponses, checkSignedExecutedVersion, type checkSignedExecutedVersionData, type checkSignedExecutedVersionErrors, type checkSignedExecutedVersionResponse, type checkSignedExecutedVersionResponses, checkSignedSignaturePagePDF, type checkSignedSignaturePagePDFData, type checkSignedSignaturePagePDFErrors, type checkSignedSignaturePagePDFResponse, type checkSignedSignaturePagePDFResponses, clonePreset, type clonePresetData, type clonePresetErrors, type clonePresetResponse, type clonePresetResponses, confirm, type confirmData, type confirmErrors, confirmExecutionVersion, type confirmExecutionVersionData, type confirmExecutionVersionErrors, type confirmExecutionVersionResponse, type confirmExecutionVersionResponses, type confirmResponse, type confirmResponses, consentCodeCallback, type consentCodeCallbackData, contactForNewApprover, type contactForNewApproverData, type contactForNewApproverErrors, type contactForNewApproverResponses, createAuditTrailJson, type createAuditTrailJsonData, type createAuditTrailJsonResponse, type createAuditTrailJsonResponses, createAuditTrailPDF, type createAuditTrailPDFData, type createAuditTrailPDFResponse, type createAuditTrailPDFResponses, createAuditTrailXLSX, type createAuditTrailXLSXData, type createAuditTrailXLSXResponse, type createAuditTrailXLSXResponses, createBulkSet, type createBulkSetData, type createBulkSetResponse, type createBulkSetResponses, createGroup, type createGroupData, type createGroupResponse, type createGroupResponses, createNegotiation, type createNegotiationData, type createNegotiationErrors, type createNegotiationResponse, type createNegotiationResponses, createPreset, createPresetAuditTrailJson, type createPresetAuditTrailJsonData, type createPresetAuditTrailJsonResponse, type createPresetAuditTrailJsonResponses, createPresetAuditTrailXLSX, type createPresetAuditTrailXLSXData, type createPresetAuditTrailXLSXResponse, type createPresetAuditTrailXLSXResponses, type createPresetData, type createPresetErrors, type createPresetResponse, type createPresetResponses, createSignaturePagePDF, type createSignaturePagePDFData, type createSignaturePagePDFResponse, type createSignaturePagePDFResponses, createSigningPack, type createSigningPackData, type createSigningPackResponse, type createSigningPackResponses, deleteApprovalComment, type deleteApprovalCommentData, type deleteApprovalCommentErrors, type deleteApprovalCommentResponses, deleteAuxiliaryDocument, type deleteAuxiliaryDocumentData, type deleteAuxiliaryDocumentResponse, type deleteAuxiliaryDocumentResponses, deleteBulkSetAttachment, type deleteBulkSetAttachmentData, type deleteBulkSetAttachmentResponse, type deleteBulkSetAttachmentResponses, deleteComment, type deleteCommentData, type deleteCommentResponse, type deleteCommentResponses, deleteCoverNote, type deleteCoverNoteData, type deleteCoverNoteResponse, type deleteCoverNoteResponses, deleteDocumentDraftingNote, type deleteDocumentDraftingNoteData, type deleteDocumentDraftingNoteErrors, type deleteDocumentDraftingNoteResponses, deleteDocumentElectionDraftingNote, type deleteDocumentElectionDraftingNoteData, type deleteDocumentElectionDraftingNoteErrors, type deleteDocumentElectionDraftingNoteResponses, deleteDraftingNotesDocument, type deleteDraftingNotesDocumentData, type deleteDraftingNotesDocumentResponses, deleteEntity, type deleteEntityData, type deleteEntityErrors, type deleteEntityResponse, type deleteEntityResponses, deleteExecutionAttachment, type deleteExecutionAttachmentData, type deleteExecutionAttachmentResponse, type deleteExecutionAttachmentResponses, deleteExternalAttachment, type deleteExternalAttachmentData, type deleteExternalAttachmentResponse, type deleteExternalAttachmentResponses, deleteGeneralCoverNote, type deleteGeneralCoverNoteData, type deleteGeneralCoverNoteErrors, type deleteGeneralCoverNoteResponse, type deleteGeneralCoverNoteResponses, deleteOfflineNegotiatedDocument, type deleteOfflineNegotiatedDocumentData, type deleteOfflineNegotiatedDocumentResponse, type deleteOfflineNegotiatedDocumentResponses, deletePreset, type deletePresetData, type deletePresetResponses, deleteSignedExecutedVersion, type deleteSignedExecutedVersionData, type deleteSignedExecutedVersionErrors, type deleteSignedExecutedVersionResponse, type deleteSignedExecutedVersionResponses, deleteSignedSignaturePageForParty, type deleteSignedSignaturePageForPartyData, type deleteSignedSignaturePageForPartyResponses, documentRenderTemplate, type documentRenderTemplateData, type documentRenderTemplateErrors, type documentRenderTemplateResponse, type documentRenderTemplateResponses, documentsFilter, type documentsFilterData, type documentsFilterErrors, type documentsFilterResponse, type documentsFilterResponses, downloadNegotiation, type downloadNegotiationData, type downloadNegotiationResponse, type downloadNegotiationResponses, downloadPostExecutionPack, type downloadPostExecutionPackData, type downloadPostExecutionPackResponse, type downloadPostExecutionPackResponses, downloadPreExecutionCounterpartyNegotiation, type downloadPreExecutionCounterpartyNegotiationData, type downloadPreExecutionCounterpartyNegotiationResponse, type downloadPreExecutionCounterpartyNegotiationResponses, downloadPreset, type downloadPresetData, type downloadPresetResponse, type downloadPresetResponses, editAnswers, type editAnswersData, type editAnswersErrors, type editAnswersResponse, type editAnswersResponses, editApprovalComment, type editApprovalCommentData, type editApprovalCommentErrors, type editApprovalCommentResponse, type editApprovalCommentResponses, editDefaultAnswers, type editDefaultAnswersData, type editDefaultAnswersErrors, type editDefaultAnswersResponse, type editDefaultAnswersResponses, emailPreferences, type emailPreferencesData, type emailPreferencesResponse, type emailPreferencesResponses, extendWindow, type extendWindowData, type extendWindowErrors, type extendWindowResponse, type extendWindowResponses, fixApprovalRules, type fixApprovalRulesData, type fixApprovalRulesResponse, type fixApprovalRulesResponses, forkNegotiation, type forkNegotiationData, type forkNegotiationErrors, type forkNegotiationResponse, type forkNegotiationResponses, generateActiveNegotiationsReportAsExcel, type generateActiveNegotiationsReportAsExcelData, type generateActiveNegotiationsReportAsExcelResponses, generateAndMaybeSendEnvelope, type generateAndMaybeSendEnvelopeData, type generateAndMaybeSendEnvelopeErrors, type generateAndMaybeSendEnvelopeResponses, generateAuditTrailForAccountAsExcel, type generateAuditTrailForAccountAsExcelData, type generateAuditTrailForAccountAsExcelResponses, generateAuditTrailForSubAccountAsExcel, type generateAuditTrailForSubAccountAsExcelData, type generateAuditTrailForSubAccountAsExcelResponses, generateCommentsReport, type generateCommentsReportData, type generateCommentsReportResponses, generateExecutedNegotiationsReportAsExcel, type generateExecutedNegotiationsReportAsExcelData, type generateExecutedNegotiationsReportAsExcelErrors, type generateExecutedNegotiationsReportAsExcelResponses, generateNegotiationsReport, type generateNegotiationsReportData, type generateNegotiationsReportResponses, getAccessibleNegotiation, type getAccessibleNegotiationData, type getAccessibleNegotiationResponse, type getAccessibleNegotiationResponses, getAccountRelationshipSummaries, type getAccountRelationshipSummariesData, type getAccountRelationshipSummariesErrors, type getAccountRelationshipSummariesResponse, type getAccountRelationshipSummariesResponses, getAllVersions, type getAllVersionsData, type getAllVersionsErrors, type getAllVersionsResponse, type getAllVersionsResponses, getAmendDefaults, type getAmendDefaultsData, type getAmendDefaultsErrors, type getAmendDefaultsResponse, type getAmendDefaultsResponses, getAnnotatedOfflineNegotiatedDocument, type getAnnotatedOfflineNegotiatedDocumentData, type getAnnotatedOfflineNegotiatedDocumentErrors, type getAnnotatedOfflineNegotiatedDocumentResponse, type getAnnotatedOfflineNegotiatedDocumentResponses, getApprovalComments, type getApprovalCommentsData, type getApprovalCommentsErrors, type getApprovalCommentsResponse, type getApprovalCommentsResponses, getApprovalHistory, type getApprovalHistoryData, type getApprovalHistoryResponse, type getApprovalHistoryResponses, getApprovalRound, type getApprovalRoundData, type getApprovalRoundResponse, type getApprovalRoundResponses, getAsCDM, type getAsCDMData, type getAsCDMErrors, type getAsCDMResponse, type getAsCDMResponses, getAuxiliaryDocument, type getAuxiliaryDocumentData, type getAuxiliaryDocumentErrors, type getAuxiliaryDocumentResponse, type getAuxiliaryDocumentResponses, getBulkSet, getBulkSetAttachment, type getBulkSetAttachmentData, type getBulkSetAttachmentResponse, type getBulkSetAttachmentResponses, type getBulkSetData, type getBulkSetResponse, type getBulkSetResponses, getChannelTimeline, type getChannelTimelineData, type getChannelTimelineErrors, type getChannelTimelineResponses, getCommentSummary, type getCommentSummaryData, type getCommentSummaryErrors, type getCommentSummaryResponses, getComments, type getCommentsData, type getCommentsErrors, type getCommentsResponses, getCompanyByEntityId, type getCompanyByEntityIdData, type getCompanyByEntityIdErrors, type getCompanyByEntityIdResponse, type getCompanyByEntityIdResponses, getDocument, type getDocumentData, type getDocumentErrors, type getDocumentResponse, type getDocumentResponses, getDocumentSchema, type getDocumentSchemaData, type getDocumentSchemaErrors, type getDocumentSchemaResponse, type getDocumentSchemaResponses, getDownloadActiveNegotiationsReportAsExcel, type getDownloadActiveNegotiationsReportAsExcelData, type getDownloadActiveNegotiationsReportAsExcelErrors, type getDownloadActiveNegotiationsReportAsExcelResponse, type getDownloadActiveNegotiationsReportAsExcelResponses, getDownloadExecutedNegotiationsAsExcel, type getDownloadExecutedNegotiationsAsExcelData, type getDownloadExecutedNegotiationsAsExcelErrors, type getDownloadExecutedNegotiationsAsExcelResponse, type getDownloadExecutedNegotiationsAsExcelResponses, getDraftingNotes, type getDraftingNotesData, getDraftingNotesDocument, type getDraftingNotesDocumentData, type getDraftingNotesDocumentResponse, type getDraftingNotesDocumentResponses, type getDraftingNotesResponse, type getDraftingNotesResponses, getElectionAnswer, type getElectionAnswerData, type getElectionAnswerErrors, type getElectionAnswerResponse, type getElectionAnswerResponses, getExecutedNegotiationSummary, type getExecutedNegotiationSummaryData, type getExecutedNegotiationSummaryErrors, type getExecutedNegotiationSummaryResponse, type getExecutedNegotiationSummaryResponses, getExecutionAttachment, type getExecutionAttachmentData, type getExecutionAttachmentErrors, type getExecutionAttachmentResponse, type getExecutionAttachmentResponses, getExternalAttachment, type getExternalAttachmentData, type getExternalAttachmentErrors, type getExternalAttachmentResponse, type getExternalAttachmentResponses, getExtractionResults, type getExtractionResultsData, type getExtractionResultsErrors, type getExtractionResultsResponse, type getExtractionResultsResponses, getGroupNames, type getGroupNamesData, type getGroupNamesResponse, type getGroupNamesResponses, getLatestDocumentSchema, type getLatestDocumentSchemaData, type getLatestDocumentSchemaErrors, type getLatestDocumentSchemaResponse, type getLatestDocumentSchemaResponses, getLegacyStatistics, type getLegacyStatisticsData, type getLegacyStatisticsErrors, type getLegacyStatisticsResponse, type getLegacyStatisticsResponses, getMajorVersions, type getMajorVersionsData, type getMajorVersionsErrors, type getMajorVersionsResponse, type getMajorVersionsResponses, getMultipleNestedAnswers, type getMultipleNestedAnswersData, type getMultipleNestedAnswersErrors, type getMultipleNestedAnswersResponse, type getMultipleNestedAnswersResponses, getNegotiation, type getNegotiationData, getNegotiationDeltas, type getNegotiationDeltasData, type getNegotiationDeltasResponses, getNegotiationDraftingNotes, type getNegotiationDraftingNotesData, type getNegotiationDraftingNotesResponse, type getNegotiationDraftingNotesResponses, getNegotiationESignStatus, type getNegotiationESignStatusData, type getNegotiationESignStatusResponse, type getNegotiationESignStatusResponses, getNegotiationFilesSummary, type getNegotiationFilesSummaryData, type getNegotiationFilesSummaryErrors, type getNegotiationFilesSummaryResponse, type getNegotiationFilesSummaryResponses, type getNegotiationResponse, type getNegotiationResponses, getNegotiationsGroup, type getNegotiationsGroupData, type getNegotiationsGroupResponse, type getNegotiationsGroupResponses, getNestedAnswers, type getNestedAnswersData, type getNestedAnswersErrors, type getNestedAnswersResponse, type getNestedAnswersResponses, getOfflineNegotiatedDocument, getOfflineNegotiatedDocumentAnnotations, type getOfflineNegotiatedDocumentAnnotationsData, type getOfflineNegotiatedDocumentAnnotationsErrors, type getOfflineNegotiatedDocumentAnnotationsResponse, type getOfflineNegotiatedDocumentAnnotationsResponses, type getOfflineNegotiatedDocumentData, type getOfflineNegotiatedDocumentErrors, type getOfflineNegotiatedDocumentResponse, type getOfflineNegotiatedDocumentResponses, getOriginalAnswersForForkNegotiation, type getOriginalAnswersForForkNegotiationData, type getOriginalAnswersForForkNegotiationErrors, type getOriginalAnswersForForkNegotiationResponse, type getOriginalAnswersForForkNegotiationResponses, getOtherPartyAnswers, type getOtherPartyAnswersData, type getOtherPartyAnswersErrors, type getOtherPartyAnswersResponse, type getOtherPartyAnswersResponses, getPartyAnswers, type getPartyAnswersData, type getPartyAnswersErrors, type getPartyAnswersResponse, type getPartyAnswersResponses, getPotentialReplacementApprovers, type getPotentialReplacementApproversData, type getPotentialReplacementApproversResponse, type getPotentialReplacementApproversResponses, getPotentialUsers, type getPotentialUsersData, type getPotentialUsersErrors, type getPotentialUsersResponse, type getPotentialUsersResponses, getPreset, type getPresetData, type getPresetResponse, type getPresetResponses, getPreviousActiveUsers, type getPreviousActiveUsersData, type getPreviousActiveUsersErrors, type getPreviousActiveUsersResponse, type getPreviousActiveUsersResponses, getPreviousMajorVersionsNestedAnswerElections, type getPreviousMajorVersionsNestedAnswerElectionsData, type getPreviousMajorVersionsNestedAnswerElectionsErrors, type getPreviousMajorVersionsNestedAnswerElectionsResponse, type getPreviousMajorVersionsNestedAnswerElectionsResponses, getPreviousMajorVersionsNestedAnswerIds, type getPreviousMajorVersionsNestedAnswerIdsData, type getPreviousMajorVersionsNestedAnswerIdsErrors, type getPreviousMajorVersionsNestedAnswerIdsResponse, type getPreviousMajorVersionsNestedAnswerIdsResponses, getProfile, type getProfileData, type getProfileResponse, type getProfileResponses, getSSOConfig, type getSSOConfigData, type getSSOConfigResponse, type getSSOConfigResponses, getSecurityContext, type getSecurityContextData, type getSecurityContextResponse, type getSecurityContextResponses, getSettings, type getSettingsData, type getSettingsErrors, type getSettingsResponse, type getSettingsResponses, getSignedExecutedVersion, type getSignedExecutedVersionData, type getSignedExecutedVersionErrors, type getSignedExecutedVersionResponse, type getSignedExecutedVersionResponses, getSignedSignaturePagePDF, type getSignedSignaturePagePDFData, type getSignedSignaturePagePDFErrors, type getSignedSignaturePagePDFResponse, type getSignedSignaturePagePDFResponses, getStatistics, type getStatisticsData, type getStatisticsErrors, getStatisticsOverview, type getStatisticsOverviewData, type getStatisticsOverviewErrors, type getStatisticsOverviewResponse, type getStatisticsOverviewResponses, type getStatisticsResponse, type getStatisticsResponses, getSubAccount, type getSubAccountData, type getSubAccountResponses, getSubscribedPublishers, type getSubscribedPublishersData, type getSubscribedPublishersResponse, type getSubscribedPublishersResponses, getTimeline, getTimelineActivity, type getTimelineActivityData, type getTimelineActivityErrors, type getTimelineActivityResponses, type getTimelineData, type getTimelineErrors, type getTimelineResponses, getUserStatistics, type getUserStatisticsData, type getUserStatisticsErrors, type getUserStatisticsResponse, type getUserStatisticsResponses, getUsers, type getUsersData, type getUsersErrors, getUsersForPicker, type getUsersForPickerData, type getUsersForPickerErrors, type getUsersForPickerResponse, type getUsersForPickerResponses, type getUsersResponse, type getUsersResponses, getWatchers, type getWatchersData, type getWatchersErrors, type getWatchersResponse, type getWatchersResponses, getWindow, type getWindowData, type getWindowErrors, type getWindowResponse, type getWindowResponses, grantAllNegotiationsAccess, type grantAllNegotiationsAccessData, type grantAllNegotiationsAccessResponse, type grantAllNegotiationsAccessResponses, grantNegotiationsAccess, type grantNegotiationsAccessData, type grantNegotiationsAccessResponse, type grantNegotiationsAccessResponses, grantPresetsAccess, type grantPresetsAccessData, type grantPresetsAccessResponse, type grantPresetsAccessResponses, grantWindow, type grantWindowData, type grantWindowErrors, type grantWindowResponse, type grantWindowResponses, initialAnswers, type initialAnswersData, type initialAnswersErrors, type initialAnswersResponse, type initialAnswersResponses, listAdvisorsForWorkspace, type listAdvisorsForWorkspaceData, type listAdvisorsForWorkspaceResponse, type listAdvisorsForWorkspaceResponses, listAllPresetsForSubAccountV1, type listAllPresetsForSubAccountV1Data, type listAllPresetsForSubAccountV1Response, type listAllPresetsForSubAccountV1Responses, listAllPresetsForSubAccountV2, type listAllPresetsForSubAccountV2Data, type listAllPresetsForSubAccountV2Response, type listAllPresetsForSubAccountV2Responses, listBulkSets, type listBulkSetsData, type listBulkSetsResponses, listDocuments, type listDocumentsData, type listDocumentsResponse, type listDocumentsResponses, listDocumentsVersionsSummary, type listDocumentsVersionsSummaryData, type listDocumentsVersionsSummaryResponse, type listDocumentsVersionsSummaryResponses, listDocumentsWithPagination, type listDocumentsWithPaginationData, type listDocumentsWithPaginationResponse, type listDocumentsWithPaginationResponses, listEntities, type listEntitiesData, type listEntitiesResponse, type listEntitiesResponses, listExecutionAttachments, type listExecutionAttachmentsData, type listExecutionAttachmentsErrors, type listExecutionAttachmentsResponse, type listExecutionAttachmentsResponses, listExternalAttachments, type listExternalAttachmentsData, type listExternalAttachmentsErrors, type listExternalAttachmentsResponse, type listExternalAttachmentsResponses, listNegotiations, type listNegotiationsData, type listNegotiationsResponse, type listNegotiationsResponses, listPotentialNegotiationAdvisors, type listPotentialNegotiationAdvisorsData, type listPotentialNegotiationAdvisorsResponse, type listPotentialNegotiationAdvisorsResponses, listPotentialPresetAdvisors, type listPotentialPresetAdvisorsData, type listPotentialPresetAdvisorsResponse, type listPotentialPresetAdvisorsResponses, listPresets, type listPresetsData, type listPresetsResponse, type listPresetsResponses, listRecentExtractions, type listRecentExtractionsData, type listRecentExtractionsResponse, type listRecentExtractionsResponses, listSubAccounts, type listSubAccountsData, type listSubAccountsResponses, markActivityEventsAsViewed, type markActivityEventsAsViewedData, type markActivityEventsAsViewedErrors, type markActivityEventsAsViewedResponses, markApprovalCommentsAsViewed, type markApprovalCommentsAsViewedData, type markApprovalCommentsAsViewedErrors, type markApprovalCommentsAsViewedResponses, markAsFinal, type markAsFinalData, type markAsFinalErrors, type markAsFinalResponse, type markAsFinalResponses, markAsOffline, type markAsOfflineData, type markAsOfflineErrors, type markAsOfflineResponse, type markAsOfflineResponses, markCommentEventsAsViewed, type markCommentEventsAsViewedData, type markCommentEventsAsViewedErrors, type markCommentEventsAsViewedResponses, markEventsAsViewed, type markEventsAsViewedData, type markEventsAsViewedErrors, type markEventsAsViewedResponses, moveEntity, type moveEntityData, type moveEntityErrors, type moveEntityResponse, type moveEntityResponses, negotiationForkHistory, type negotiationForkHistoryData, type negotiationForkHistoryErrors, type negotiationForkHistoryResponse, type negotiationForkHistoryResponses, negotiationGetDocumentSchema, type negotiationGetDocumentSchemaData, type negotiationGetDocumentSchemaErrors, type negotiationGetDocumentSchemaResponse, type negotiationGetDocumentSchemaResponses, negotiationRenderCounterpartyTemplate, type negotiationRenderCounterpartyTemplateData, type negotiationRenderCounterpartyTemplateErrors, type negotiationRenderCounterpartyTemplateResponse, type negotiationRenderCounterpartyTemplateResponses, negotiationRenderTemplate, type negotiationRenderTemplateData, type negotiationRenderTemplateErrors, type negotiationRenderTemplateResponse, type negotiationRenderTemplateResponses, negotiationSendForApproval, type negotiationSendForApprovalData, type negotiationSendForApprovalErrors, type negotiationSendForApprovalResponse, type negotiationSendForApprovalResponses, negotiationsFilter, type negotiationsFilterData, type negotiationsFilterErrors, type negotiationsFilterResponse, type negotiationsFilterResponses, notifyOfDraft, type notifyOfDraftData, type notifyOfDraftErrors, type notifyOfDraftResponses, obtainConsent, type obtainConsentData, overrideApproveFinalDocument, type overrideApproveFinalDocumentData, type overrideApproveFinalDocumentErrors, type overrideApproveFinalDocumentResponses, overrideElectionApproval, type overrideElectionApprovalData, type overrideElectionApprovalErrors, type overrideElectionApprovalResponse, type overrideElectionApprovalResponses, overrideElectionRejection, type overrideElectionRejectionData, type overrideElectionRejectionErrors, type overrideElectionRejectionResponse, type overrideElectionRejectionResponses, overrideRejectFinalDocument, type overrideRejectFinalDocumentData, type overrideRejectFinalDocumentErrors, type overrideRejectFinalDocumentResponses, patchAnswers, type patchAnswersData, type patchAnswersErrors, type patchAnswersResponse, type patchAnswersResponses, patchEmailPreferences, type patchEmailPreferencesData, type patchEmailPreferencesResponses, phase1Answers, type phase1AnswersData, type phase1AnswersErrors, type phase1AnswersResponse, type phase1AnswersResponses, presetEditAnswers, type presetEditAnswersData, type presetEditAnswersErrors, type presetEditAnswersResponse, type presetEditAnswersResponses, presetGetDocumentSchema, type presetGetDocumentSchemaData, type presetGetDocumentSchemaErrors, type presetGetDocumentSchemaResponse, type presetGetDocumentSchemaResponses, presetGetMultipleNestedAnswers, type presetGetMultipleNestedAnswersData, type presetGetMultipleNestedAnswersErrors, type presetGetMultipleNestedAnswersResponse, type presetGetMultipleNestedAnswersResponses, presetGetNestedAnswers, type presetGetNestedAnswersData, type presetGetNestedAnswersErrors, type presetGetNestedAnswersResponse, type presetGetNestedAnswersResponses, presetRenderTemplate, type presetRenderTemplateData, type presetRenderTemplateErrors, type presetRenderTemplateResponse, type presetRenderTemplateResponses, presetRequestApproval, type presetRequestApprovalData, type presetRequestApprovalErrors, type presetRequestApprovalResponse, type presetRequestApprovalResponses, presetSendForApproval, type presetSendForApprovalData, type presetSendForApprovalErrors, type presetSendForApprovalResponse, type presetSendForApprovalResponses, presetSetElectionApproval, type presetSetElectionApprovalData, type presetSetElectionApprovalErrors, type presetSetElectionApprovalResponse, type presetSetElectionApprovalResponses, presetSetFinalApproval, type presetSetFinalApprovalData, type presetSetFinalApprovalErrors, type presetSetFinalApprovalResponse, type presetSetFinalApprovalResponses, presetSetMultipleNestedAnswers, type presetSetMultipleNestedAnswersData, type presetSetMultipleNestedAnswersErrors, type presetSetMultipleNestedAnswersResponse, type presetSetMultipleNestedAnswersResponses, presetSetNestedAnswers, type presetSetNestedAnswersData, type presetSetNestedAnswersErrors, type presetSetNestedAnswersResponse, type presetSetNestedAnswersResponses, presetSwapParties, type presetSwapPartiesData, type presetSwapPartiesErrors, type presetSwapPartiesResponse, type presetSwapPartiesResponses, publisherSummaries, type publisherSummariesData, type publisherSummariesResponse, type publisherSummariesResponses, queueGenerateNegotiationDocumentJob, type queueGenerateNegotiationDocumentJobData, type queueGenerateNegotiationDocumentJobResponse, type queueGenerateNegotiationDocumentJobResponses, rejectAccessRequest, type rejectAccessRequestData, type rejectAccessRequestErrors, type rejectAccessRequestResponse, type rejectAccessRequestResponses, rejectFinalDocument, type rejectFinalDocumentData, type rejectFinalDocumentErrors, type rejectFinalDocumentResponses, rejectPresetApproval, type rejectPresetApprovalData, type rejectPresetApprovalErrors, type rejectPresetApprovalResponse, type rejectPresetApprovalResponses, removeWatchers, type removeWatchersData, type removeWatchersErrors, type removeWatchersResponse, type removeWatchersResponses, renameExecutionAttachment, type renameExecutionAttachmentData, type renameExecutionAttachmentErrors, type renameExecutionAttachmentResponse, type renameExecutionAttachmentResponses, resetUserAnswers, type resetUserAnswersData, type resetUserAnswersErrors, type resetUserAnswersResponse, type resetUserAnswersResponses, retract, type retractData, type retractErrors, type retractResponse, type retractResponses, revertToAmending, type revertToAmendingData, type revertToAmendingErrors, type revertToAmendingResponse, type revertToAmendingResponses, revokeNegotiationsAccess, type revokeNegotiationsAccessData, type revokeNegotiationsAccessResponse, type revokeNegotiationsAccessResponses, revokePresetsAccess, type revokePresetsAccessData, type revokePresetsAccessResponse, type revokePresetsAccessResponses, revokeWindow, type revokeWindowData, type revokeWindowResponses, scheduleExtraction, type scheduleExtractionData, type scheduleExtractionErrors, type scheduleExtractionResponse, type scheduleExtractionResponses, schemaAvailableAsCDM, type schemaAvailableAsCDMData, type schemaAvailableAsCDMErrors, type schemaAvailableAsCDMResponse, type schemaAvailableAsCDMResponses, searchEntity, type searchEntityData, type searchEntityResponse, type searchEntityResponses, sendBulkSetToCounterpartiesInitial, type sendBulkSetToCounterpartiesInitialData, type sendBulkSetToCounterpartiesInitialResponse, type sendBulkSetToCounterpartiesInitialResponses, sendChaserEmail, type sendChaserEmailData, type sendChaserEmailErrors, type sendChaserEmailResponses, sendDocumentApprovalReminder, type sendDocumentApprovalReminderData, type sendDocumentApprovalReminderErrors, type sendDocumentApprovalReminderResponses, sendElectionApprovalReminder, type sendElectionApprovalReminderData, type sendElectionApprovalReminderErrors, type sendElectionApprovalReminderResponses, sendGroupToCounterparty, type sendGroupToCounterpartyData, type sendGroupToCounterpartyErrors, type sendGroupToCounterpartyResponse, type sendGroupToCounterpartyResponses, sendToCounterparty, type sendToCounterpartyData, type sendToCounterpartyErrors, sendToCounterpartyInitial, type sendToCounterpartyInitialData, type sendToCounterpartyInitialErrors, type sendToCounterpartyInitialResponse, type sendToCounterpartyInitialResponses, type sendToCounterpartyResponse, type sendToCounterpartyResponses, setAuxiliaryDocument, type setAuxiliaryDocumentData, type setAuxiliaryDocumentErrors, type setAuxiliaryDocumentResponse, type setAuxiliaryDocumentResponses, setBulkSetAttachments, type setBulkSetAttachmentsData, type setBulkSetAttachmentsErrors, type setBulkSetAttachmentsResponse, type setBulkSetAttachmentsResponses, setCounterparties, type setCounterpartiesData, type setCounterpartiesErrors, type setCounterpartiesResponse, type setCounterpartiesResponses, setElectionApproval, type setElectionApprovalData, type setElectionApprovalErrors, type setElectionApprovalResponse, type setElectionApprovalResponses, setExecutionAttachment, type setExecutionAttachmentData, type setExecutionAttachmentErrors, type setExecutionAttachmentResponse, type setExecutionAttachmentResponses, setExecutionAttachments, type setExecutionAttachmentsData, type setExecutionAttachmentsErrors, type setExecutionAttachmentsResponse, type setExecutionAttachmentsResponses, setExternalAttachment, type setExternalAttachmentData, type setExternalAttachmentErrors, type setExternalAttachmentResponse, type setExternalAttachmentResponses, setExternalAttachments, type setExternalAttachmentsData, type setExternalAttachmentsErrors, type setExternalAttachmentsResponse, type setExternalAttachmentsResponses, setFinalApproval, type setFinalApprovalData, type setFinalApprovalResponse, type setFinalApprovalResponses, setGeneralCoverNote, type setGeneralCoverNoteData, type setGeneralCoverNoteErrors, type setGeneralCoverNoteResponse, type setGeneralCoverNoteResponses, setMultipleNestedAnswers, type setMultipleNestedAnswersData, type setMultipleNestedAnswersErrors, type setMultipleNestedAnswersResponse, type setMultipleNestedAnswersResponses, setNestedAnswers, type setNestedAnswersData, type setNestedAnswersErrors, type setNestedAnswersResponse, type setNestedAnswersResponses, setOfflineNegotiatedDocument, type setOfflineNegotiatedDocumentData, type setOfflineNegotiatedDocumentErrors, type setOfflineNegotiatedDocumentResponse, type setOfflineNegotiatedDocumentResponses, setOwnerEntity, type setOwnerEntityData, type setOwnerEntityErrors, type setOwnerEntityResponse, type setOwnerEntityResponses, setPreset, type setPresetData, type setPresetErrors, type setPresetResponse, type setPresetResponses, setReceiverEntity, type setReceiverEntityData, type setReceiverEntityErrors, type setReceiverEntityResponse, type setReceiverEntityResponses, setSignedExecutedVersion, type setSignedExecutedVersionData, type setSignedExecutedVersionErrors, type setSignedExecutedVersionResponse, type setSignedExecutedVersionResponses, setSignedSignaturePageForParty, type setSignedSignaturePageForPartyData, type setSignedSignaturePageForPartyResponse, type setSignedSignaturePageForPartyResponses, shareNegotiation, type shareNegotiationData, type shareNegotiationErrors, type shareNegotiationResponse, type shareNegotiationResponses, shareSubAccount, type shareSubAccountData, type shareSubAccountErrors, type shareSubAccountResponse, type shareSubAccountResponses, suggestGroupName, type suggestGroupNameData, type suggestGroupNameResponse, type suggestGroupNameResponses, swapParties, type swapPartiesData, type swapPartiesErrors, type swapPartiesResponse, type swapPartiesResponses, syncFundList, type syncFundListData, type syncFundListErrors, type syncFundListResponse, type syncFundListResponses, syncNewApprover, type syncNewApproverData, type syncNewApproverResponses, unsubscribe, type unsubscribeData, type unsubscribeErrors, type unsubscribeResponses, updateAttachDocx, type updateAttachDocxData, type updateAttachDocxResponse, type updateAttachDocxResponses, updateComment, type updateCommentData, updateCommentReaction, type updateCommentReactionData, type updateCommentReactionResponse, type updateCommentReactionResponses, type updateCommentResponse, type updateCommentResponses, updateCoverNote, type updateCoverNoteData, type updateCoverNoteResponse, type updateCoverNoteResponses, updateCustomFields, type updateCustomFieldsData, type updateCustomFieldsErrors, type updateCustomFieldsResponse, type updateCustomFieldsResponses, updateDocumentDraftingNote, type updateDocumentDraftingNoteData, type updateDocumentDraftingNoteErrors, type updateDocumentDraftingNoteResponse, type updateDocumentDraftingNoteResponses, updateDocumentElectionDraftingNote, type updateDocumentElectionDraftingNoteData, type updateDocumentElectionDraftingNoteErrors, type updateDocumentElectionDraftingNoteResponse, type updateDocumentElectionDraftingNoteResponses, updateDraftingNotes, type updateDraftingNotesData, type updateDraftingNotesErrors, type updateDraftingNotesResponse, type updateDraftingNotesResponses, updateExtractionFeedback, type updateExtractionFeedbackData, type updateExtractionFeedbackErrors, type updateExtractionFeedbackResponse, type updateExtractionFeedbackResponses, updateGroupMembers, type updateGroupMembersData, type updateGroupMembersErrors, type updateGroupMembersResponses, updateGroupName, type updateGroupNameData, type updateGroupNameErrors, type updateGroupNameResponses, updateMetadata, type updateMetadataData, type updateMetadataErrors, type updateMetadataResponse, type updateMetadataResponses, updateNegotiationsToMatch, type updateNegotiationsToMatchData, type updateNegotiationsToMatchErrors, type updateNegotiationsToMatchResponses, updateSelectedElections, type updateSelectedElectionsData, type updateSelectedElectionsErrors, type updateSelectedElectionsResponse, type updateSelectedElectionsResponses, updateSubAccount, type updateSubAccountData, type updateSubAccountErrors, type updateSubAccountResponses, updateUserAnswers, type updateUserAnswersData, type updateUserAnswersErrors, type updateUserAnswersResponse, type updateUserAnswersResponses, upgradePresetSchema, type upgradePresetSchemaData, type upgradePresetSchemaErrors, type upgradePresetSchemaResponse, type upgradePresetSchemaResponses, upgradeSchema, type upgradeSchemaData, type upgradeSchemaResponse, type upgradeSchemaResponses, uploadFundListSpreadsheet, type uploadFundListSpreadsheetData, type uploadFundListSpreadsheetError, type uploadFundListSpreadsheetErrors, type uploadFundListSpreadsheetResponse, type uploadFundListSpreadsheetResponses, usersWithNegotiationAccess, type usersWithNegotiationAccessData, type usersWithNegotiationAccessResponse, type usersWithNegotiationAccessResponses, validateDraftReceiverEmails, type validateDraftReceiverEmailsData, type validateDraftReceiverEmailsResponse, type validateDraftReceiverEmailsResponses, validateEntities, type validateEntitiesData, type validateEntitiesResponse, type validateEntitiesResponses, version, type versionData, type versionResponses, voidESignEnvelopeForNegotiation, type voidESignEnvelopeForNegotiationData, type voidESignEnvelopeForNegotiationErrors, type voidESignEnvelopeForNegotiationResponses };
|
package/dist/index.js
CHANGED
|
@@ -1975,6 +1975,23 @@ var getSubscribedPublishers = (options) => {
|
|
|
1975
1975
|
...options
|
|
1976
1976
|
});
|
|
1977
1977
|
};
|
|
1978
|
+
var uploadFundListSpreadsheet = (options) => {
|
|
1979
|
+
return (options.client ?? client).post({
|
|
1980
|
+
...formDataBodySerializer,
|
|
1981
|
+
security: [
|
|
1982
|
+
{
|
|
1983
|
+
name: "Authorization",
|
|
1984
|
+
type: "apiKey"
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/fundList/spreadsheet",
|
|
1988
|
+
...options,
|
|
1989
|
+
headers: {
|
|
1990
|
+
"Content-Type": null,
|
|
1991
|
+
...options.headers
|
|
1992
|
+
}
|
|
1993
|
+
});
|
|
1994
|
+
};
|
|
1978
1995
|
var sendGroupToCounterparty = (options) => {
|
|
1979
1996
|
return (options.client ?? client).put({
|
|
1980
1997
|
security: [
|
|
@@ -4852,6 +4869,7 @@ export {
|
|
|
4852
4869
|
updateUserAnswers,
|
|
4853
4870
|
upgradePresetSchema,
|
|
4854
4871
|
upgradeSchema,
|
|
4872
|
+
uploadFundListSpreadsheet,
|
|
4855
4873
|
usersWithNegotiationAccess,
|
|
4856
4874
|
validateDraftReceiverEmails,
|
|
4857
4875
|
validateEntities,
|