@createiq/backend 1.0.1 → 1.0.3
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 +1660 -1626
- package/client/types.gen.ts +6529 -6405
- package/dist/index.cjs +1028 -1246
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7213 -7138
- package/dist/index.d.ts +7213 -7138
- package/dist/index.js +1026 -1219
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/dist/index.cjs
CHANGED
|
@@ -20,33 +20,6 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_exports, {
|
|
23
|
-
Access: () => Access,
|
|
24
|
-
ApprovalStatus: () => ApprovalStatus,
|
|
25
|
-
Availability: () => Availability,
|
|
26
|
-
CdmAvailability: () => CdmAvailability,
|
|
27
|
-
Channel: () => Channel,
|
|
28
|
-
DocumentApprovalState: () => DocumentApprovalState,
|
|
29
|
-
ElectionApprovalState: () => ElectionApprovalState,
|
|
30
|
-
Extension: () => Extension,
|
|
31
|
-
ExternalDocumentApprovalState: () => ExternalDocumentApprovalState,
|
|
32
|
-
ExtractionResultType: () => ExtractionResultType,
|
|
33
|
-
Filter: () => Filter,
|
|
34
|
-
Health: () => Health,
|
|
35
|
-
JobStatus: () => JobStatus,
|
|
36
|
-
NoteType: () => NoteType,
|
|
37
|
-
NotificationCategory: () => NotificationCategory,
|
|
38
|
-
OrderBy: () => OrderBy,
|
|
39
|
-
OrderDirection: () => OrderDirection,
|
|
40
|
-
PartyThatCanUploadExecutedVersion: () => PartyThatCanUploadExecutedVersion,
|
|
41
|
-
Position: () => Position,
|
|
42
|
-
RestrictedTo: () => RestrictedTo,
|
|
43
|
-
SearchContext: () => SearchContext,
|
|
44
|
-
State: () => State,
|
|
45
|
-
Status: () => Status,
|
|
46
|
-
SummaryContext: () => SummaryContext,
|
|
47
|
-
Turn: () => Turn,
|
|
48
|
-
Type: () => Type,
|
|
49
|
-
WorkflowType: () => WorkflowType,
|
|
50
23
|
acceptAllCounterpartyPositions: () => acceptAllCounterpartyPositions,
|
|
51
24
|
acceptAllCustodianTemplatePositions: () => acceptAllCustodianTemplatePositions,
|
|
52
25
|
acceptAllPositionsFromFork: () => acceptAllPositionsFromFork,
|
|
@@ -187,6 +160,7 @@ __export(index_exports, {
|
|
|
187
160
|
getStatistics: () => getStatistics,
|
|
188
161
|
getStatisticsOverview: () => getStatisticsOverview,
|
|
189
162
|
getSubAccount: () => getSubAccount,
|
|
163
|
+
getSubscribedPublishers: () => getSubscribedPublishers,
|
|
190
164
|
getTimeline: () => getTimeline,
|
|
191
165
|
getTimelineActivity: () => getTimelineActivity,
|
|
192
166
|
getUserStatistics: () => getUserStatistics,
|
|
@@ -245,6 +219,7 @@ __export(index_exports, {
|
|
|
245
219
|
presetSetMultipleNestedAnswers: () => presetSetMultipleNestedAnswers,
|
|
246
220
|
presetSetNestedAnswers: () => presetSetNestedAnswers,
|
|
247
221
|
presetSwapParties: () => presetSwapParties,
|
|
222
|
+
publisherSummaries: () => publisherSummaries,
|
|
248
223
|
queueGenerateNegotiationDocumentJob: () => queueGenerateNegotiationDocumentJob,
|
|
249
224
|
rejectFinalDocument: () => rejectFinalDocument,
|
|
250
225
|
removeWatchers: () => removeWatchers,
|
|
@@ -311,198 +286,6 @@ __export(index_exports, {
|
|
|
311
286
|
});
|
|
312
287
|
module.exports = __toCommonJS(index_exports);
|
|
313
288
|
|
|
314
|
-
// client/types.gen.ts
|
|
315
|
-
var DocumentApprovalState = /* @__PURE__ */ ((DocumentApprovalState2) => {
|
|
316
|
-
DocumentApprovalState2["Pending"] = "Pending";
|
|
317
|
-
DocumentApprovalState2["ApprovalRequired"] = "ApprovalRequired";
|
|
318
|
-
DocumentApprovalState2["Rejected"] = "Rejected";
|
|
319
|
-
DocumentApprovalState2["Approved"] = "Approved";
|
|
320
|
-
DocumentApprovalState2["NoApprovalRequired"] = "NoApprovalRequired";
|
|
321
|
-
return DocumentApprovalState2;
|
|
322
|
-
})(DocumentApprovalState || {});
|
|
323
|
-
var ExternalDocumentApprovalState = /* @__PURE__ */ ((ExternalDocumentApprovalState2) => {
|
|
324
|
-
ExternalDocumentApprovalState2["Pending"] = "Pending";
|
|
325
|
-
ExternalDocumentApprovalState2["ApprovalRequired"] = "ApprovalRequired";
|
|
326
|
-
ExternalDocumentApprovalState2["Rejected"] = "Rejected";
|
|
327
|
-
ExternalDocumentApprovalState2["Approved"] = "Approved";
|
|
328
|
-
ExternalDocumentApprovalState2["NoApprovalRequired"] = "NoApprovalRequired";
|
|
329
|
-
return ExternalDocumentApprovalState2;
|
|
330
|
-
})(ExternalDocumentApprovalState || {});
|
|
331
|
-
var ElectionApprovalState = /* @__PURE__ */ ((ElectionApprovalState2) => {
|
|
332
|
-
ElectionApprovalState2["Pending"] = "Pending";
|
|
333
|
-
ElectionApprovalState2["ApprovalRequired"] = "ApprovalRequired";
|
|
334
|
-
ElectionApprovalState2["Rejected"] = "Rejected";
|
|
335
|
-
ElectionApprovalState2["Approved"] = "Approved";
|
|
336
|
-
ElectionApprovalState2["NoApprovalRequired"] = "NoApprovalRequired";
|
|
337
|
-
return ElectionApprovalState2;
|
|
338
|
-
})(ElectionApprovalState || {});
|
|
339
|
-
var Health = /* @__PURE__ */ ((Health2) => {
|
|
340
|
-
Health2["Ok"] = "Ok";
|
|
341
|
-
Health2["Broken"] = "Broken";
|
|
342
|
-
Health2["Blocked"] = "Blocked";
|
|
343
|
-
return Health2;
|
|
344
|
-
})(Health || {});
|
|
345
|
-
var WorkflowType = /* @__PURE__ */ ((WorkflowType2) => {
|
|
346
|
-
WorkflowType2["Offline"] = "offline";
|
|
347
|
-
WorkflowType2["W1"] = "w1";
|
|
348
|
-
WorkflowType2["W1UnilateralExecutionDate"] = "w1UnilateralExecutionDate";
|
|
349
|
-
WorkflowType2["W1Ext"] = "w1Ext";
|
|
350
|
-
WorkflowType2["W1ExtOffline"] = "w1ExtOffline";
|
|
351
|
-
WorkflowType2["W1ExtStage2"] = "w1ExtStage2";
|
|
352
|
-
WorkflowType2["W1ExtStage2Offline"] = "w1ExtStage2Offline";
|
|
353
|
-
WorkflowType2["W1ExtCombinedStage"] = "w1ExtCombinedStage";
|
|
354
|
-
WorkflowType2["W1ExtCombinedStageOffline"] = "w1ExtCombinedStageOffline";
|
|
355
|
-
return WorkflowType2;
|
|
356
|
-
})(WorkflowType || {});
|
|
357
|
-
var State = /* @__PURE__ */ ((State2) => {
|
|
358
|
-
State2["Private"] = "private";
|
|
359
|
-
State2["Public"] = "public";
|
|
360
|
-
State2["Restricted"] = "restricted";
|
|
361
|
-
return State2;
|
|
362
|
-
})(State || {});
|
|
363
|
-
var Type = /* @__PURE__ */ ((Type2) => {
|
|
364
|
-
Type2["NegotiationContextDto"] = "NegotiationContextDto";
|
|
365
|
-
return Type2;
|
|
366
|
-
})(Type || {});
|
|
367
|
-
var Channel = /* @__PURE__ */ ((Channel2) => {
|
|
368
|
-
Channel2["General"] = "general";
|
|
369
|
-
Channel2["Personal"] = "personal";
|
|
370
|
-
return Channel2;
|
|
371
|
-
})(Channel || {});
|
|
372
|
-
var Availability = /* @__PURE__ */ ((Availability2) => {
|
|
373
|
-
Availability2["Default"] = "default";
|
|
374
|
-
Availability2["New"] = "new";
|
|
375
|
-
Availability2["Unavailable"] = "unavailable";
|
|
376
|
-
return Availability2;
|
|
377
|
-
})(Availability || {});
|
|
378
|
-
var ExtractionResultType = /* @__PURE__ */ ((ExtractionResultType2) => {
|
|
379
|
-
ExtractionResultType2["Processing"] = "processing";
|
|
380
|
-
ExtractionResultType2["Failed"] = "failed";
|
|
381
|
-
ExtractionResultType2["Complete"] = "complete";
|
|
382
|
-
return ExtractionResultType2;
|
|
383
|
-
})(ExtractionResultType || {});
|
|
384
|
-
var CdmAvailability = /* @__PURE__ */ ((CdmAvailability2) => {
|
|
385
|
-
CdmAvailability2["Unavailable"] = "unavailable";
|
|
386
|
-
CdmAvailability2["Comingsoon"] = "comingsoon";
|
|
387
|
-
CdmAvailability2["Available"] = "available";
|
|
388
|
-
return CdmAvailability2;
|
|
389
|
-
})(CdmAvailability || {});
|
|
390
|
-
var Access = /* @__PURE__ */ ((Access2) => {
|
|
391
|
-
Access2["Required"] = "required";
|
|
392
|
-
Access2["Granted"] = "granted";
|
|
393
|
-
Access2["Restricted"] = "restricted";
|
|
394
|
-
return Access2;
|
|
395
|
-
})(Access || {});
|
|
396
|
-
var PartyThatCanUploadExecutedVersion = /* @__PURE__ */ ((PartyThatCanUploadExecutedVersion2) => {
|
|
397
|
-
PartyThatCanUploadExecutedVersion2["Initiator"] = "initiator";
|
|
398
|
-
PartyThatCanUploadExecutedVersion2["Receiver"] = "receiver";
|
|
399
|
-
PartyThatCanUploadExecutedVersion2["Moderator"] = "moderator";
|
|
400
|
-
PartyThatCanUploadExecutedVersion2["AnyRegular"] = "any-regular";
|
|
401
|
-
PartyThatCanUploadExecutedVersion2["Any"] = "any";
|
|
402
|
-
return PartyThatCanUploadExecutedVersion2;
|
|
403
|
-
})(PartyThatCanUploadExecutedVersion || {});
|
|
404
|
-
var Position = /* @__PURE__ */ ((Position2) => {
|
|
405
|
-
Position2["PartyA"] = "party_a";
|
|
406
|
-
Position2["PartyB"] = "party_b";
|
|
407
|
-
return Position2;
|
|
408
|
-
})(Position || {});
|
|
409
|
-
var ApprovalStatus = /* @__PURE__ */ ((ApprovalStatus2) => {
|
|
410
|
-
ApprovalStatus2["Pending"] = "Pending";
|
|
411
|
-
ApprovalStatus2["ApprovalRequired"] = "ApprovalRequired";
|
|
412
|
-
ApprovalStatus2["Rejected"] = "Rejected";
|
|
413
|
-
ApprovalStatus2["Approved"] = "Approved";
|
|
414
|
-
ApprovalStatus2["NoApprovalRequired"] = "NoApprovalRequired";
|
|
415
|
-
return ApprovalStatus2;
|
|
416
|
-
})(ApprovalStatus || {});
|
|
417
|
-
var NotificationCategory = /* @__PURE__ */ ((NotificationCategory2) => {
|
|
418
|
-
NotificationCategory2["NotificationsPanelUpdates"] = "notifications_panel_updates";
|
|
419
|
-
NotificationCategory2["Invitation"] = "invitation";
|
|
420
|
-
NotificationCategory2["NegotiationUpdates"] = "negotiation_updates";
|
|
421
|
-
NotificationCategory2["Approval"] = "approval";
|
|
422
|
-
NotificationCategory2["Other"] = "other";
|
|
423
|
-
NotificationCategory2["AlwaysEnabled"] = "always_enabled";
|
|
424
|
-
return NotificationCategory2;
|
|
425
|
-
})(NotificationCategory || {});
|
|
426
|
-
var RestrictedTo = /* @__PURE__ */ ((RestrictedTo2) => {
|
|
427
|
-
RestrictedTo2["Initiator"] = "initiator";
|
|
428
|
-
RestrictedTo2["Receiver"] = "receiver";
|
|
429
|
-
RestrictedTo2["Moderator"] = "moderator";
|
|
430
|
-
RestrictedTo2["RegularParties"] = "regularParties";
|
|
431
|
-
return RestrictedTo2;
|
|
432
|
-
})(RestrictedTo || {});
|
|
433
|
-
var Status = /* @__PURE__ */ ((Status2) => {
|
|
434
|
-
Status2["Pending"] = "pending";
|
|
435
|
-
Status2["Accepted"] = "accepted";
|
|
436
|
-
Status2["Rejected"] = "rejected";
|
|
437
|
-
Status2["Cancelled"] = "cancelled";
|
|
438
|
-
return Status2;
|
|
439
|
-
})(Status || {});
|
|
440
|
-
var JobStatus = /* @__PURE__ */ ((JobStatus2) => {
|
|
441
|
-
JobStatus2["Failed"] = "failed";
|
|
442
|
-
JobStatus2["Pending"] = "pending";
|
|
443
|
-
return JobStatus2;
|
|
444
|
-
})(JobStatus || {});
|
|
445
|
-
var OrderBy = /* @__PURE__ */ ((OrderBy2) => {
|
|
446
|
-
OrderBy2["ActiveUser"] = "activeUser";
|
|
447
|
-
OrderBy2["Created"] = "created";
|
|
448
|
-
OrderBy2["DocumentType"] = "documentType";
|
|
449
|
-
OrderBy2["Status"] = "status";
|
|
450
|
-
OrderBy2["LastAction"] = "lastAction";
|
|
451
|
-
OrderBy2["LastActionWithFavouritesFirst"] = "lastActionWithFavouritesFirst";
|
|
452
|
-
OrderBy2["MyEntityName"] = "myEntityName";
|
|
453
|
-
OrderBy2["CounterPartyEntityName"] = "counterPartyEntityName";
|
|
454
|
-
OrderBy2["DisplayReferenceId"] = "displayReferenceId";
|
|
455
|
-
OrderBy2["ApproverName"] = "approverName";
|
|
456
|
-
return OrderBy2;
|
|
457
|
-
})(OrderBy || {});
|
|
458
|
-
var OrderDirection = /* @__PURE__ */ ((OrderDirection2) => {
|
|
459
|
-
OrderDirection2["Asc"] = "asc";
|
|
460
|
-
OrderDirection2["Desc"] = "desc";
|
|
461
|
-
return OrderDirection2;
|
|
462
|
-
})(OrderDirection || {});
|
|
463
|
-
var Extension = /* @__PURE__ */ ((Extension2) => {
|
|
464
|
-
Extension2["Docx"] = "docx";
|
|
465
|
-
Extension2["Pdf"] = "pdf";
|
|
466
|
-
return Extension2;
|
|
467
|
-
})(Extension || {});
|
|
468
|
-
var Turn = /* @__PURE__ */ ((Turn2) => {
|
|
469
|
-
Turn2["Our"] = "our";
|
|
470
|
-
Turn2["Counterparty"] = "counterparty";
|
|
471
|
-
return Turn2;
|
|
472
|
-
})(Turn || {});
|
|
473
|
-
var SummaryContext = /* @__PURE__ */ ((SummaryContext2) => {
|
|
474
|
-
SummaryContext2["Approval"] = "approval";
|
|
475
|
-
SummaryContext2["Internal"] = "internal";
|
|
476
|
-
SummaryContext2["External"] = "external";
|
|
477
|
-
SummaryContext2["Moderator"] = "moderator";
|
|
478
|
-
SummaryContext2["Execution"] = "execution";
|
|
479
|
-
SummaryContext2["InternalExecution"] = "internal-execution";
|
|
480
|
-
return SummaryContext2;
|
|
481
|
-
})(SummaryContext || {});
|
|
482
|
-
var NoteType = /* @__PURE__ */ ((NoteType2) => {
|
|
483
|
-
NoteType2["Internal"] = "internal";
|
|
484
|
-
NoteType2["External"] = "external";
|
|
485
|
-
return NoteType2;
|
|
486
|
-
})(NoteType || {});
|
|
487
|
-
var Filter = /* @__PURE__ */ ((Filter2) => {
|
|
488
|
-
Filter2["Document"] = "document";
|
|
489
|
-
Filter2["PartyA"] = "partyA";
|
|
490
|
-
Filter2["PartyB"] = "partyB";
|
|
491
|
-
Filter2["PartyC"] = "partyC";
|
|
492
|
-
Filter2["PartyAny"] = "partyAny";
|
|
493
|
-
Filter2["DisplayReferenceId"] = "displayReferenceId";
|
|
494
|
-
Filter2["ActiveUser"] = "activeUser";
|
|
495
|
-
Filter2["OurTurn"] = "Our turn";
|
|
496
|
-
Filter2["CounterpartyTurn"] = "Counterparty turn";
|
|
497
|
-
Filter2["Publisher"] = "publisher";
|
|
498
|
-
return Filter2;
|
|
499
|
-
})(Filter || {});
|
|
500
|
-
var SearchContext = /* @__PURE__ */ ((SearchContext2) => {
|
|
501
|
-
SearchContext2["Completed"] = "completed";
|
|
502
|
-
SearchContext2["Active"] = "active";
|
|
503
|
-
return SearchContext2;
|
|
504
|
-
})(SearchContext || {});
|
|
505
|
-
|
|
506
289
|
// client/sdk.gen.ts
|
|
507
290
|
var import_client_fetch2 = require("@hey-api/client-fetch");
|
|
508
291
|
|
|
@@ -511,137 +294,107 @@ var import_client_fetch = require("@hey-api/client-fetch");
|
|
|
511
294
|
var client = (0, import_client_fetch.createClient)((0, import_client_fetch.createConfig)());
|
|
512
295
|
|
|
513
296
|
// client/sdk.gen.ts
|
|
514
|
-
var
|
|
515
|
-
return (options
|
|
516
|
-
url: "/api/v1/authPing",
|
|
517
|
-
...options
|
|
518
|
-
});
|
|
519
|
-
};
|
|
520
|
-
var version = (options) => {
|
|
521
|
-
return (options?.client ?? client).get({
|
|
522
|
-
security: [
|
|
523
|
-
{
|
|
524
|
-
name: "Authorization",
|
|
525
|
-
type: "apiKey"
|
|
526
|
-
}
|
|
527
|
-
],
|
|
528
|
-
url: "/api/v1/version",
|
|
529
|
-
...options
|
|
530
|
-
});
|
|
531
|
-
};
|
|
532
|
-
var accountSummary = (options) => {
|
|
533
|
-
return (options?.client ?? client).get({
|
|
297
|
+
var getNegotiationDeltas = (options) => {
|
|
298
|
+
return (options.client ?? client).put({
|
|
534
299
|
security: [
|
|
535
300
|
{
|
|
536
301
|
name: "Authorization",
|
|
537
302
|
type: "apiKey"
|
|
538
303
|
}
|
|
539
304
|
],
|
|
540
|
-
url: "/api/v1/
|
|
541
|
-
...options
|
|
305
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/deltas/calculate",
|
|
306
|
+
...options,
|
|
307
|
+
headers: {
|
|
308
|
+
"Content-Type": "application/json",
|
|
309
|
+
...options?.headers
|
|
310
|
+
}
|
|
542
311
|
});
|
|
543
312
|
};
|
|
544
|
-
var
|
|
545
|
-
return (options
|
|
313
|
+
var getAmendDefaults = (options) => {
|
|
314
|
+
return (options.client ?? client).get({
|
|
546
315
|
security: [
|
|
547
316
|
{
|
|
548
317
|
name: "Authorization",
|
|
549
318
|
type: "apiKey"
|
|
550
319
|
}
|
|
551
320
|
],
|
|
552
|
-
url: "/api/v1/
|
|
321
|
+
url: "/api/v1/documents/{documentId}/schemas/{version}/amendDefaults",
|
|
553
322
|
...options
|
|
554
323
|
});
|
|
555
324
|
};
|
|
556
|
-
var
|
|
557
|
-
return (options
|
|
325
|
+
var negotiationRenderTemplate = (options) => {
|
|
326
|
+
return (options.client ?? client).get({
|
|
558
327
|
security: [
|
|
559
328
|
{
|
|
560
329
|
name: "Authorization",
|
|
561
330
|
type: "apiKey"
|
|
562
331
|
}
|
|
563
332
|
],
|
|
564
|
-
url: "/api/v1/
|
|
333
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/preview",
|
|
565
334
|
...options
|
|
566
335
|
});
|
|
567
336
|
};
|
|
568
|
-
var
|
|
569
|
-
return (options.client ?? client).
|
|
337
|
+
var cancelNegotiationsJobCount = (options) => {
|
|
338
|
+
return (options.client ?? client).get({
|
|
570
339
|
security: [
|
|
571
340
|
{
|
|
572
341
|
name: "Authorization",
|
|
573
342
|
type: "apiKey"
|
|
574
343
|
}
|
|
575
344
|
],
|
|
576
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
345
|
+
url: "/api/v1/subAccounts/{subAccountId}/cancelNegotiationJobCount",
|
|
577
346
|
...options
|
|
578
347
|
});
|
|
579
348
|
};
|
|
580
|
-
var
|
|
581
|
-
return (options.client ?? client).
|
|
582
|
-
security: [
|
|
583
|
-
{
|
|
584
|
-
name: "Authorization",
|
|
585
|
-
type: "apiKey"
|
|
586
|
-
}
|
|
587
|
-
],
|
|
588
|
-
url: "/api/v1/negotiations/{negotiationId}/muteNotifications",
|
|
589
|
-
...options,
|
|
590
|
-
headers: {
|
|
591
|
-
"Content-Type": "application/json",
|
|
592
|
-
...options?.headers
|
|
593
|
-
}
|
|
594
|
-
});
|
|
595
|
-
};
|
|
596
|
-
var getProfile = (options) => {
|
|
597
|
-
return (options?.client ?? client).get({
|
|
349
|
+
var auditTrailForSubAccountAsJson = (options) => {
|
|
350
|
+
return (options.client ?? client).get({
|
|
598
351
|
security: [
|
|
599
352
|
{
|
|
600
353
|
name: "Authorization",
|
|
601
354
|
type: "apiKey"
|
|
602
355
|
}
|
|
603
356
|
],
|
|
604
|
-
url: "/api/v1/
|
|
357
|
+
url: "/api/v1/subAccounts/{subAccountId}/audit_trail/json",
|
|
605
358
|
...options
|
|
606
359
|
});
|
|
607
360
|
};
|
|
608
|
-
var
|
|
609
|
-
return (options
|
|
361
|
+
var getDocumentSchema = (options) => {
|
|
362
|
+
return (options.client ?? client).get({
|
|
610
363
|
security: [
|
|
611
364
|
{
|
|
612
365
|
name: "Authorization",
|
|
613
366
|
type: "apiKey"
|
|
614
367
|
}
|
|
615
368
|
],
|
|
616
|
-
url: "/api/v1/
|
|
369
|
+
url: "/api/v1/documents/{documentId}/schemas/{version}",
|
|
617
370
|
...options
|
|
618
371
|
});
|
|
619
372
|
};
|
|
620
|
-
var
|
|
621
|
-
return (options.client ?? client).
|
|
373
|
+
var auditTrailForAccountAsJson = (options) => {
|
|
374
|
+
return (options.client ?? client).get({
|
|
622
375
|
security: [
|
|
623
376
|
{
|
|
624
377
|
name: "Authorization",
|
|
625
378
|
type: "apiKey"
|
|
626
379
|
}
|
|
627
380
|
],
|
|
628
|
-
url: "/api/v1/account/
|
|
381
|
+
url: "/api/v1/account/audit_trail/json",
|
|
629
382
|
...options
|
|
630
383
|
});
|
|
631
384
|
};
|
|
632
|
-
var
|
|
633
|
-
return (options.client ?? client).
|
|
385
|
+
var sendBulkSetToCounterpartiesInitial = (options) => {
|
|
386
|
+
return (options.client ?? client).put({
|
|
634
387
|
security: [
|
|
635
388
|
{
|
|
636
389
|
name: "Authorization",
|
|
637
390
|
type: "apiKey"
|
|
638
391
|
}
|
|
639
392
|
],
|
|
640
|
-
url: "/api/v1/
|
|
393
|
+
url: "/api/v1/bulkSets/{bulkSetId}/sendToCounterparty/initial",
|
|
641
394
|
...options
|
|
642
395
|
});
|
|
643
396
|
};
|
|
644
|
-
var
|
|
397
|
+
var getWatchers = (options) => {
|
|
645
398
|
return (options.client ?? client).get({
|
|
646
399
|
security: [
|
|
647
400
|
{
|
|
@@ -649,23 +402,27 @@ var getUsersForPicker = (options) => {
|
|
|
649
402
|
type: "apiKey"
|
|
650
403
|
}
|
|
651
404
|
],
|
|
652
|
-
url: "/api/v1/
|
|
405
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/watchers",
|
|
653
406
|
...options
|
|
654
407
|
});
|
|
655
408
|
};
|
|
656
|
-
var
|
|
657
|
-
return (options
|
|
409
|
+
var addWatchers = (options) => {
|
|
410
|
+
return (options.client ?? client).post({
|
|
658
411
|
security: [
|
|
659
412
|
{
|
|
660
413
|
name: "Authorization",
|
|
661
414
|
type: "apiKey"
|
|
662
415
|
}
|
|
663
416
|
],
|
|
664
|
-
url: "/api/v1/
|
|
665
|
-
...options
|
|
417
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/watchers",
|
|
418
|
+
...options,
|
|
419
|
+
headers: {
|
|
420
|
+
"Content-Type": "application/json",
|
|
421
|
+
...options?.headers
|
|
422
|
+
}
|
|
666
423
|
});
|
|
667
424
|
};
|
|
668
|
-
var
|
|
425
|
+
var getUserStatistics = (options) => {
|
|
669
426
|
return (options.client ?? client).get({
|
|
670
427
|
security: [
|
|
671
428
|
{
|
|
@@ -673,31 +430,35 @@ var getCompanyByEntityId = (options) => {
|
|
|
673
430
|
type: "apiKey"
|
|
674
431
|
}
|
|
675
432
|
],
|
|
676
|
-
url: "/api/
|
|
433
|
+
url: "/api/v2/subAccounts/{subAccountId}/statistics/users/{userId}",
|
|
677
434
|
...options
|
|
678
435
|
});
|
|
679
436
|
};
|
|
680
|
-
var
|
|
681
|
-
return (options.client ?? client).
|
|
437
|
+
var revertToAmending = (options) => {
|
|
438
|
+
return (options.client ?? client).put({
|
|
682
439
|
security: [
|
|
683
440
|
{
|
|
684
441
|
name: "Authorization",
|
|
685
442
|
type: "apiKey"
|
|
686
443
|
}
|
|
687
444
|
],
|
|
688
|
-
url: "/api/v1/
|
|
689
|
-
...options
|
|
445
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/revertToAmending",
|
|
446
|
+
...options,
|
|
447
|
+
headers: {
|
|
448
|
+
"Content-Type": "application/json",
|
|
449
|
+
...options?.headers
|
|
450
|
+
}
|
|
690
451
|
});
|
|
691
452
|
};
|
|
692
|
-
var
|
|
693
|
-
return (options.client ?? client).
|
|
453
|
+
var setReceiverEntity = (options) => {
|
|
454
|
+
return (options.client ?? client).put({
|
|
694
455
|
security: [
|
|
695
456
|
{
|
|
696
457
|
name: "Authorization",
|
|
697
458
|
type: "apiKey"
|
|
698
459
|
}
|
|
699
460
|
],
|
|
700
|
-
url: "/api/v1/
|
|
461
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/entities",
|
|
701
462
|
...options,
|
|
702
463
|
headers: {
|
|
703
464
|
"Content-Type": "application/json",
|
|
@@ -705,27 +466,31 @@ var validateEntities = (options) => {
|
|
|
705
466
|
}
|
|
706
467
|
});
|
|
707
468
|
};
|
|
708
|
-
var
|
|
709
|
-
return (options.client ?? client).
|
|
469
|
+
var markCommentEventsAsViewed = (options) => {
|
|
470
|
+
return (options.client ?? client).put({
|
|
710
471
|
security: [
|
|
711
472
|
{
|
|
712
473
|
name: "Authorization",
|
|
713
474
|
type: "apiKey"
|
|
714
475
|
}
|
|
715
476
|
],
|
|
716
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
717
|
-
...options
|
|
477
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/comments/markAsRead",
|
|
478
|
+
...options,
|
|
479
|
+
headers: {
|
|
480
|
+
"Content-Type": "application/json",
|
|
481
|
+
...options?.headers
|
|
482
|
+
}
|
|
718
483
|
});
|
|
719
484
|
};
|
|
720
|
-
var
|
|
721
|
-
return (options.client ?? client).
|
|
485
|
+
var presetSetFinalApproval = (options) => {
|
|
486
|
+
return (options.client ?? client).put({
|
|
722
487
|
security: [
|
|
723
488
|
{
|
|
724
489
|
name: "Authorization",
|
|
725
490
|
type: "apiKey"
|
|
726
491
|
}
|
|
727
492
|
],
|
|
728
|
-
url: "/api/v1/
|
|
493
|
+
url: "/api/v1/presets/{presetId}/approvals/document",
|
|
729
494
|
...options,
|
|
730
495
|
headers: {
|
|
731
496
|
"Content-Type": "application/json",
|
|
@@ -733,19 +498,13 @@ var createPreset = (options) => {
|
|
|
733
498
|
}
|
|
734
499
|
});
|
|
735
500
|
};
|
|
736
|
-
var
|
|
737
|
-
return (options
|
|
738
|
-
|
|
739
|
-
{
|
|
740
|
-
name: "Authorization",
|
|
741
|
-
type: "apiKey"
|
|
742
|
-
}
|
|
743
|
-
],
|
|
744
|
-
url: "/api/v1/presets/{presetId}",
|
|
501
|
+
var authPing = (options) => {
|
|
502
|
+
return (options?.client ?? client).get({
|
|
503
|
+
url: "/api/v1/authPing",
|
|
745
504
|
...options
|
|
746
505
|
});
|
|
747
506
|
};
|
|
748
|
-
var
|
|
507
|
+
var listAllPresetsForSubAccountV1 = (options) => {
|
|
749
508
|
return (options.client ?? client).get({
|
|
750
509
|
security: [
|
|
751
510
|
{
|
|
@@ -753,19 +512,19 @@ var getPreset = (options) => {
|
|
|
753
512
|
type: "apiKey"
|
|
754
513
|
}
|
|
755
514
|
],
|
|
756
|
-
url: "/api/v1/
|
|
515
|
+
url: "/api/v1/subAccounts/{subAccountId}/presets",
|
|
757
516
|
...options
|
|
758
517
|
});
|
|
759
518
|
};
|
|
760
|
-
var
|
|
761
|
-
return (options.client ?? client).
|
|
519
|
+
var createPreset = (options) => {
|
|
520
|
+
return (options.client ?? client).post({
|
|
762
521
|
security: [
|
|
763
522
|
{
|
|
764
523
|
name: "Authorization",
|
|
765
524
|
type: "apiKey"
|
|
766
525
|
}
|
|
767
526
|
],
|
|
768
|
-
url: "/api/v1/
|
|
527
|
+
url: "/api/v1/subAccounts/{subAccountId}/presets",
|
|
769
528
|
...options,
|
|
770
529
|
headers: {
|
|
771
530
|
"Content-Type": "application/json",
|
|
@@ -805,19 +564,7 @@ var presetSetMultipleNestedAnswers = (options) => {
|
|
|
805
564
|
}
|
|
806
565
|
});
|
|
807
566
|
};
|
|
808
|
-
var
|
|
809
|
-
return (options.client ?? client).get({
|
|
810
|
-
security: [
|
|
811
|
-
{
|
|
812
|
-
name: "Authorization",
|
|
813
|
-
type: "apiKey"
|
|
814
|
-
}
|
|
815
|
-
],
|
|
816
|
-
url: "/api/v1/presets/{presetId}/answers/nested/{nestedAnswersId}",
|
|
817
|
-
...options
|
|
818
|
-
});
|
|
819
|
-
};
|
|
820
|
-
var presetSetNestedAnswers = (options) => {
|
|
567
|
+
var overrideApproveFinalDocument = (options) => {
|
|
821
568
|
return (options.client ?? client).put({
|
|
822
569
|
security: [
|
|
823
570
|
{
|
|
@@ -825,7 +572,7 @@ var presetSetNestedAnswers = (options) => {
|
|
|
825
572
|
type: "apiKey"
|
|
826
573
|
}
|
|
827
574
|
],
|
|
828
|
-
url: "/api/v1/
|
|
575
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document/approve/override",
|
|
829
576
|
...options,
|
|
830
577
|
headers: {
|
|
831
578
|
"Content-Type": "application/json",
|
|
@@ -833,31 +580,31 @@ var presetSetNestedAnswers = (options) => {
|
|
|
833
580
|
}
|
|
834
581
|
});
|
|
835
582
|
};
|
|
836
|
-
var
|
|
837
|
-
return (options.client ?? client).
|
|
583
|
+
var deleteEntity = (options) => {
|
|
584
|
+
return (options.client ?? client).delete({
|
|
838
585
|
security: [
|
|
839
586
|
{
|
|
840
587
|
name: "Authorization",
|
|
841
588
|
type: "apiKey"
|
|
842
589
|
}
|
|
843
590
|
],
|
|
844
|
-
url: "/api/v1/
|
|
591
|
+
url: "/api/v1/account/entity/{entityId}",
|
|
845
592
|
...options
|
|
846
593
|
});
|
|
847
594
|
};
|
|
848
|
-
var
|
|
849
|
-
return (options
|
|
595
|
+
var getSecurityContext = (options) => {
|
|
596
|
+
return (options?.client ?? client).get({
|
|
850
597
|
security: [
|
|
851
598
|
{
|
|
852
599
|
name: "Authorization",
|
|
853
600
|
type: "apiKey"
|
|
854
601
|
}
|
|
855
602
|
],
|
|
856
|
-
url: "/api/v1/
|
|
603
|
+
url: "/api/v1/user/context",
|
|
857
604
|
...options
|
|
858
605
|
});
|
|
859
606
|
};
|
|
860
|
-
var
|
|
607
|
+
var updateSelectedElections = (options) => {
|
|
861
608
|
return (options.client ?? client).put({
|
|
862
609
|
security: [
|
|
863
610
|
{
|
|
@@ -865,7 +612,7 @@ var updateMetadata = (options) => {
|
|
|
865
612
|
type: "apiKey"
|
|
866
613
|
}
|
|
867
614
|
],
|
|
868
|
-
url: "/api/v1/
|
|
615
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/elections",
|
|
869
616
|
...options,
|
|
870
617
|
headers: {
|
|
871
618
|
"Content-Type": "application/json",
|
|
@@ -873,7 +620,7 @@ var updateMetadata = (options) => {
|
|
|
873
620
|
}
|
|
874
621
|
});
|
|
875
622
|
};
|
|
876
|
-
var
|
|
623
|
+
var auditTrailForAccountAsExcel = (options) => {
|
|
877
624
|
return (options.client ?? client).get({
|
|
878
625
|
security: [
|
|
879
626
|
{
|
|
@@ -881,35 +628,43 @@ var downloadPreset = (options) => {
|
|
|
881
628
|
type: "apiKey"
|
|
882
629
|
}
|
|
883
630
|
],
|
|
884
|
-
url: "/api/v1/
|
|
631
|
+
url: "/api/v1/account/audit_trail/xlsx",
|
|
885
632
|
...options
|
|
886
633
|
});
|
|
887
634
|
};
|
|
888
|
-
var
|
|
889
|
-
return (options.client ?? client).
|
|
635
|
+
var presetEditAnswers = (options) => {
|
|
636
|
+
return (options.client ?? client).put({
|
|
890
637
|
security: [
|
|
891
638
|
{
|
|
892
639
|
name: "Authorization",
|
|
893
640
|
type: "apiKey"
|
|
894
641
|
}
|
|
895
642
|
],
|
|
896
|
-
url: "/api/
|
|
897
|
-
...options
|
|
643
|
+
url: "/api/v1/presets/{presetId}/answers",
|
|
644
|
+
...options,
|
|
645
|
+
headers: {
|
|
646
|
+
"Content-Type": "application/json",
|
|
647
|
+
...options?.headers
|
|
648
|
+
}
|
|
898
649
|
});
|
|
899
650
|
};
|
|
900
|
-
var
|
|
901
|
-
return (options.client ?? client).
|
|
651
|
+
var deleteComment = (options) => {
|
|
652
|
+
return (options.client ?? client).delete({
|
|
902
653
|
security: [
|
|
903
654
|
{
|
|
904
655
|
name: "Authorization",
|
|
905
656
|
type: "apiKey"
|
|
906
657
|
}
|
|
907
658
|
],
|
|
908
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
909
|
-
...options
|
|
659
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/{channel}/comments/{eventId}",
|
|
660
|
+
...options,
|
|
661
|
+
headers: {
|
|
662
|
+
"Content-Type": "application/json",
|
|
663
|
+
...options?.headers
|
|
664
|
+
}
|
|
910
665
|
});
|
|
911
666
|
};
|
|
912
|
-
var
|
|
667
|
+
var updateComment = (options) => {
|
|
913
668
|
return (options.client ?? client).put({
|
|
914
669
|
security: [
|
|
915
670
|
{
|
|
@@ -917,23 +672,27 @@ var presetSendForApproval = (options) => {
|
|
|
917
672
|
type: "apiKey"
|
|
918
673
|
}
|
|
919
674
|
],
|
|
920
|
-
url: "/api/v1/
|
|
921
|
-
...options
|
|
675
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/{channel}/comments/{eventId}",
|
|
676
|
+
...options,
|
|
677
|
+
headers: {
|
|
678
|
+
"Content-Type": "application/json",
|
|
679
|
+
...options?.headers
|
|
680
|
+
}
|
|
922
681
|
});
|
|
923
682
|
};
|
|
924
|
-
var
|
|
925
|
-
return (options.client ?? client).
|
|
683
|
+
var deleteGeneralCoverNote = (options) => {
|
|
684
|
+
return (options.client ?? client).delete({
|
|
926
685
|
security: [
|
|
927
686
|
{
|
|
928
687
|
name: "Authorization",
|
|
929
688
|
type: "apiKey"
|
|
930
689
|
}
|
|
931
690
|
],
|
|
932
|
-
url: "/api/v1/
|
|
691
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/coverNote",
|
|
933
692
|
...options
|
|
934
693
|
});
|
|
935
694
|
};
|
|
936
|
-
var
|
|
695
|
+
var setGeneralCoverNote = (options) => {
|
|
937
696
|
return (options.client ?? client).put({
|
|
938
697
|
security: [
|
|
939
698
|
{
|
|
@@ -941,7 +700,7 @@ var presetSetElectionApproval = (options) => {
|
|
|
941
700
|
type: "apiKey"
|
|
942
701
|
}
|
|
943
702
|
],
|
|
944
|
-
url: "/api/v1/
|
|
703
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/coverNote",
|
|
945
704
|
...options,
|
|
946
705
|
headers: {
|
|
947
706
|
"Content-Type": "application/json",
|
|
@@ -949,47 +708,47 @@ var presetSetElectionApproval = (options) => {
|
|
|
949
708
|
}
|
|
950
709
|
});
|
|
951
710
|
};
|
|
952
|
-
var
|
|
953
|
-
return (options
|
|
711
|
+
var publisherSummaries = (options) => {
|
|
712
|
+
return (options?.client ?? client).get({
|
|
954
713
|
security: [
|
|
955
714
|
{
|
|
956
715
|
name: "Authorization",
|
|
957
716
|
type: "apiKey"
|
|
958
717
|
}
|
|
959
718
|
],
|
|
960
|
-
url: "/api/v1/
|
|
961
|
-
...options
|
|
962
|
-
headers: {
|
|
963
|
-
"Content-Type": "application/json",
|
|
964
|
-
...options?.headers
|
|
965
|
-
}
|
|
719
|
+
url: "/api/v1/documents/publishers/summaries",
|
|
720
|
+
...options
|
|
966
721
|
});
|
|
967
722
|
};
|
|
968
|
-
var
|
|
969
|
-
return (options.client ?? client).
|
|
723
|
+
var validateEntities = (options) => {
|
|
724
|
+
return (options.client ?? client).post({
|
|
970
725
|
security: [
|
|
971
726
|
{
|
|
972
727
|
name: "Authorization",
|
|
973
728
|
type: "apiKey"
|
|
974
729
|
}
|
|
975
730
|
],
|
|
976
|
-
url: "/api/v1/
|
|
977
|
-
...options
|
|
731
|
+
url: "/api/v1/entity/validate",
|
|
732
|
+
...options,
|
|
733
|
+
headers: {
|
|
734
|
+
"Content-Type": "application/json",
|
|
735
|
+
...options?.headers
|
|
736
|
+
}
|
|
978
737
|
});
|
|
979
738
|
};
|
|
980
|
-
var
|
|
981
|
-
return (options.client ?? client).
|
|
739
|
+
var grantAllNegotiationsAccess = (options) => {
|
|
740
|
+
return (options.client ?? client).put({
|
|
982
741
|
security: [
|
|
983
742
|
{
|
|
984
743
|
name: "Authorization",
|
|
985
744
|
type: "apiKey"
|
|
986
745
|
}
|
|
987
746
|
],
|
|
988
|
-
url: "/api/v1/
|
|
747
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/relationships/{relationshipId}/negotiations/all",
|
|
989
748
|
...options
|
|
990
749
|
});
|
|
991
750
|
};
|
|
992
|
-
var
|
|
751
|
+
var getNegotiationESignStatus = (options) => {
|
|
993
752
|
return (options.client ?? client).get({
|
|
994
753
|
security: [
|
|
995
754
|
{
|
|
@@ -997,11 +756,11 @@ var listNegotiations = (options) => {
|
|
|
997
756
|
type: "apiKey"
|
|
998
757
|
}
|
|
999
758
|
],
|
|
1000
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations",
|
|
759
|
+
url: "/api/v1/docusign/status/subAccounts/{subAccountId}/negotiations/{negotiationId}",
|
|
1001
760
|
...options
|
|
1002
761
|
});
|
|
1003
762
|
};
|
|
1004
|
-
var
|
|
763
|
+
var unsubscribe = (options) => {
|
|
1005
764
|
return (options.client ?? client).post({
|
|
1006
765
|
security: [
|
|
1007
766
|
{
|
|
@@ -1009,7 +768,7 @@ var createNegotiation = (options) => {
|
|
|
1009
768
|
type: "apiKey"
|
|
1010
769
|
}
|
|
1011
770
|
],
|
|
1012
|
-
url: "/api/v1/
|
|
771
|
+
url: "/api/v1/negotiations/{negotiationId}/muteNotifications",
|
|
1013
772
|
...options,
|
|
1014
773
|
headers: {
|
|
1015
774
|
"Content-Type": "application/json",
|
|
@@ -1017,7 +776,7 @@ var createNegotiation = (options) => {
|
|
|
1017
776
|
}
|
|
1018
777
|
});
|
|
1019
778
|
};
|
|
1020
|
-
var
|
|
779
|
+
var overrideRejectFinalDocument = (options) => {
|
|
1021
780
|
return (options.client ?? client).put({
|
|
1022
781
|
security: [
|
|
1023
782
|
{
|
|
@@ -1025,7 +784,7 @@ var setFinalApproval = (options) => {
|
|
|
1025
784
|
type: "apiKey"
|
|
1026
785
|
}
|
|
1027
786
|
],
|
|
1028
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document",
|
|
787
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document/reject/override",
|
|
1029
788
|
...options,
|
|
1030
789
|
headers: {
|
|
1031
790
|
"Content-Type": "application/json",
|
|
@@ -1033,19 +792,19 @@ var setFinalApproval = (options) => {
|
|
|
1033
792
|
}
|
|
1034
793
|
});
|
|
1035
794
|
};
|
|
1036
|
-
var
|
|
1037
|
-
return (options
|
|
795
|
+
var version = (options) => {
|
|
796
|
+
return (options?.client ?? client).get({
|
|
1038
797
|
security: [
|
|
1039
798
|
{
|
|
1040
799
|
name: "Authorization",
|
|
1041
800
|
type: "apiKey"
|
|
1042
801
|
}
|
|
1043
802
|
],
|
|
1044
|
-
url: "/api/v1/
|
|
803
|
+
url: "/api/v1/version",
|
|
1045
804
|
...options
|
|
1046
805
|
});
|
|
1047
806
|
};
|
|
1048
|
-
var
|
|
807
|
+
var updateExtractionFeedback = (options) => {
|
|
1049
808
|
return (options.client ?? client).put({
|
|
1050
809
|
security: [
|
|
1051
810
|
{
|
|
@@ -1053,11 +812,15 @@ var upgradeSchema = (options) => {
|
|
|
1053
812
|
type: "apiKey"
|
|
1054
813
|
}
|
|
1055
814
|
],
|
|
1056
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1057
|
-
...options
|
|
815
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/feedback",
|
|
816
|
+
...options,
|
|
817
|
+
headers: {
|
|
818
|
+
"Content-Type": "application/json",
|
|
819
|
+
...options?.headers
|
|
820
|
+
}
|
|
1058
821
|
});
|
|
1059
822
|
};
|
|
1060
|
-
var
|
|
823
|
+
var getLatestDocumentSchema = (options) => {
|
|
1061
824
|
return (options.client ?? client).get({
|
|
1062
825
|
security: [
|
|
1063
826
|
{
|
|
@@ -1065,11 +828,11 @@ var breakingChanges = (options) => {
|
|
|
1065
828
|
type: "apiKey"
|
|
1066
829
|
}
|
|
1067
830
|
],
|
|
1068
|
-
url: "/api/v1/
|
|
831
|
+
url: "/api/v1/documents/{documentId}/latest_schema",
|
|
1069
832
|
...options
|
|
1070
833
|
});
|
|
1071
834
|
};
|
|
1072
|
-
var
|
|
835
|
+
var getPreviousMajorVersionsNestedAnswerIds = (options) => {
|
|
1073
836
|
return (options.client ?? client).get({
|
|
1074
837
|
security: [
|
|
1075
838
|
{
|
|
@@ -1077,23 +840,27 @@ var getAccessibleNegotiation = (options) => {
|
|
|
1077
840
|
type: "apiKey"
|
|
1078
841
|
}
|
|
1079
842
|
],
|
|
1080
|
-
url: "/api/v1/negotiations/{negotiationId}",
|
|
843
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/elections/{electionId}/previousAnswers",
|
|
1081
844
|
...options
|
|
1082
845
|
});
|
|
1083
846
|
};
|
|
1084
|
-
var
|
|
1085
|
-
return (options.client ?? client).
|
|
847
|
+
var addElectionRejection = (options) => {
|
|
848
|
+
return (options.client ?? client).put({
|
|
1086
849
|
security: [
|
|
1087
850
|
{
|
|
1088
851
|
name: "Authorization",
|
|
1089
852
|
type: "apiKey"
|
|
1090
853
|
}
|
|
1091
854
|
],
|
|
1092
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}",
|
|
1093
|
-
...options
|
|
855
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/elections/{electionId}/reject",
|
|
856
|
+
...options,
|
|
857
|
+
headers: {
|
|
858
|
+
"Content-Type": "application/json",
|
|
859
|
+
...options?.headers
|
|
860
|
+
}
|
|
1094
861
|
});
|
|
1095
862
|
};
|
|
1096
|
-
var
|
|
863
|
+
var listPresets = (options) => {
|
|
1097
864
|
return (options.client ?? client).get({
|
|
1098
865
|
security: [
|
|
1099
866
|
{
|
|
@@ -1101,11 +868,11 @@ var getExecutedNegotiationSummary = (options) => {
|
|
|
1101
868
|
type: "apiKey"
|
|
1102
869
|
}
|
|
1103
870
|
],
|
|
1104
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
871
|
+
url: "/api/v1/subAccounts/{subAccountId}/documents/{documentId}/presets",
|
|
1105
872
|
...options
|
|
1106
873
|
});
|
|
1107
874
|
};
|
|
1108
|
-
var
|
|
875
|
+
var getTimeline = (options) => {
|
|
1109
876
|
return (options.client ?? client).get({
|
|
1110
877
|
security: [
|
|
1111
878
|
{
|
|
@@ -1113,59 +880,55 @@ var getAsCdm = (options) => {
|
|
|
1113
880
|
type: "apiKey"
|
|
1114
881
|
}
|
|
1115
882
|
],
|
|
1116
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
883
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline",
|
|
1117
884
|
...options
|
|
1118
885
|
});
|
|
1119
886
|
};
|
|
1120
|
-
var
|
|
1121
|
-
return (options.client ?? client).
|
|
887
|
+
var markEventsAsViewed = (options) => {
|
|
888
|
+
return (options.client ?? client).post({
|
|
1122
889
|
security: [
|
|
1123
890
|
{
|
|
1124
891
|
name: "Authorization",
|
|
1125
892
|
type: "apiKey"
|
|
1126
893
|
}
|
|
1127
894
|
],
|
|
1128
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
895
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline",
|
|
1129
896
|
...options
|
|
1130
897
|
});
|
|
1131
898
|
};
|
|
1132
|
-
var
|
|
1133
|
-
return (options.client ?? client).
|
|
899
|
+
var negotiationForkHistory = (options) => {
|
|
900
|
+
return (options.client ?? client).get({
|
|
1134
901
|
security: [
|
|
1135
902
|
{
|
|
1136
903
|
name: "Authorization",
|
|
1137
904
|
type: "apiKey"
|
|
1138
905
|
}
|
|
1139
906
|
],
|
|
1140
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1141
|
-
...options
|
|
1142
|
-
headers: {
|
|
1143
|
-
"Content-Type": "application/json",
|
|
1144
|
-
...options?.headers
|
|
1145
|
-
}
|
|
907
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/restatementHistory",
|
|
908
|
+
...options
|
|
1146
909
|
});
|
|
1147
910
|
};
|
|
1148
|
-
var
|
|
1149
|
-
return (options
|
|
911
|
+
var listEntities = (options) => {
|
|
912
|
+
return (options?.client ?? client).get({
|
|
1150
913
|
security: [
|
|
1151
914
|
{
|
|
1152
915
|
name: "Authorization",
|
|
1153
916
|
type: "apiKey"
|
|
1154
917
|
}
|
|
1155
918
|
],
|
|
1156
|
-
url: "/api/v1/
|
|
919
|
+
url: "/api/v1/account/entities",
|
|
1157
920
|
...options
|
|
1158
921
|
});
|
|
1159
922
|
};
|
|
1160
|
-
var
|
|
1161
|
-
return (options.client ?? client).
|
|
923
|
+
var assignEntity = (options) => {
|
|
924
|
+
return (options.client ?? client).put({
|
|
1162
925
|
security: [
|
|
1163
926
|
{
|
|
1164
927
|
name: "Authorization",
|
|
1165
928
|
type: "apiKey"
|
|
1166
929
|
}
|
|
1167
930
|
],
|
|
1168
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
931
|
+
url: "/api/v1/subAccounts/{subAccountId}/entity",
|
|
1169
932
|
...options,
|
|
1170
933
|
headers: {
|
|
1171
934
|
"Content-Type": "application/json",
|
|
@@ -1173,43 +936,39 @@ var downloadActiveNegotiationsReportAsExcel = (options) => {
|
|
|
1173
936
|
}
|
|
1174
937
|
});
|
|
1175
938
|
};
|
|
1176
|
-
var
|
|
1177
|
-
return (options.client ?? client).
|
|
1178
|
-
security: [
|
|
1179
|
-
{
|
|
1180
|
-
name: "Authorization",
|
|
1181
|
-
type: "apiKey"
|
|
1182
|
-
}
|
|
1183
|
-
],
|
|
1184
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extension/{extension}",
|
|
1185
|
-
...options
|
|
1186
|
-
});
|
|
1187
|
-
};
|
|
1188
|
-
var downloadPreExecutionCounterpartyNegotiation = (options) => {
|
|
1189
|
-
return (options.client ?? client).get({
|
|
939
|
+
var setFinalApproval = (options) => {
|
|
940
|
+
return (options.client ?? client).put({
|
|
1190
941
|
security: [
|
|
1191
942
|
{
|
|
1192
943
|
name: "Authorization",
|
|
1193
944
|
type: "apiKey"
|
|
1194
945
|
}
|
|
1195
946
|
],
|
|
1196
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1197
|
-
...options
|
|
947
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document",
|
|
948
|
+
...options,
|
|
949
|
+
headers: {
|
|
950
|
+
"Content-Type": "application/json",
|
|
951
|
+
...options?.headers
|
|
952
|
+
}
|
|
1198
953
|
});
|
|
1199
954
|
};
|
|
1200
|
-
var
|
|
1201
|
-
return (options.client ?? client).
|
|
955
|
+
var setElectionApproval = (options) => {
|
|
956
|
+
return (options.client ?? client).put({
|
|
1202
957
|
security: [
|
|
1203
958
|
{
|
|
1204
959
|
name: "Authorization",
|
|
1205
960
|
type: "apiKey"
|
|
1206
961
|
}
|
|
1207
962
|
],
|
|
1208
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1209
|
-
...options
|
|
963
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/elections/{electionId}",
|
|
964
|
+
...options,
|
|
965
|
+
headers: {
|
|
966
|
+
"Content-Type": "application/json",
|
|
967
|
+
...options?.headers
|
|
968
|
+
}
|
|
1210
969
|
});
|
|
1211
970
|
};
|
|
1212
|
-
var
|
|
971
|
+
var downloadDashboardReportAsExcel = (options) => {
|
|
1213
972
|
return (options.client ?? client).get({
|
|
1214
973
|
security: [
|
|
1215
974
|
{
|
|
@@ -1217,11 +976,11 @@ var getSignedExecutedVersion = (options) => {
|
|
|
1217
976
|
type: "apiKey"
|
|
1218
977
|
}
|
|
1219
978
|
],
|
|
1220
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/
|
|
979
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/xlsx",
|
|
1221
980
|
...options
|
|
1222
981
|
});
|
|
1223
982
|
};
|
|
1224
|
-
var
|
|
983
|
+
var moveEntity = (options) => {
|
|
1225
984
|
return (options.client ?? client).put({
|
|
1226
985
|
security: [
|
|
1227
986
|
{
|
|
@@ -1229,51 +988,55 @@ var setSignedExecutedVersion = (options) => {
|
|
|
1229
988
|
type: "apiKey"
|
|
1230
989
|
}
|
|
1231
990
|
],
|
|
1232
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
991
|
+
url: "/api/v1/subAccounts/{subAccountId}/entity/{entityId}/move",
|
|
1233
992
|
...options,
|
|
1234
993
|
headers: {
|
|
1235
|
-
"Content-Type": "application/
|
|
994
|
+
"Content-Type": "application/json",
|
|
1236
995
|
...options?.headers
|
|
1237
996
|
}
|
|
1238
997
|
});
|
|
1239
998
|
};
|
|
1240
|
-
var
|
|
1241
|
-
return (options.client ?? client).
|
|
999
|
+
var deleteApprovalComment = (options) => {
|
|
1000
|
+
return (options.client ?? client).delete({
|
|
1242
1001
|
security: [
|
|
1243
1002
|
{
|
|
1244
1003
|
name: "Authorization",
|
|
1245
1004
|
type: "apiKey"
|
|
1246
1005
|
}
|
|
1247
1006
|
],
|
|
1248
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1007
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/comment/{approvalCommentId}",
|
|
1249
1008
|
...options
|
|
1250
1009
|
});
|
|
1251
1010
|
};
|
|
1252
|
-
var
|
|
1253
|
-
return (options.client ?? client).
|
|
1011
|
+
var editApprovalComment = (options) => {
|
|
1012
|
+
return (options.client ?? client).put({
|
|
1254
1013
|
security: [
|
|
1255
1014
|
{
|
|
1256
1015
|
name: "Authorization",
|
|
1257
1016
|
type: "apiKey"
|
|
1258
1017
|
}
|
|
1259
1018
|
],
|
|
1260
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1261
|
-
...options
|
|
1019
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/comment/{approvalCommentId}",
|
|
1020
|
+
...options,
|
|
1021
|
+
headers: {
|
|
1022
|
+
"Content-Type": "application/json",
|
|
1023
|
+
...options?.headers
|
|
1024
|
+
}
|
|
1262
1025
|
});
|
|
1263
1026
|
};
|
|
1264
|
-
var
|
|
1265
|
-
return (options.client ?? client).
|
|
1027
|
+
var deleteExternalAttachment = (options) => {
|
|
1028
|
+
return (options.client ?? client).delete({
|
|
1266
1029
|
security: [
|
|
1267
1030
|
{
|
|
1268
1031
|
name: "Authorization",
|
|
1269
1032
|
type: "apiKey"
|
|
1270
1033
|
}
|
|
1271
1034
|
],
|
|
1272
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1035
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/attachment/{fileName}",
|
|
1273
1036
|
...options
|
|
1274
1037
|
});
|
|
1275
1038
|
};
|
|
1276
|
-
var
|
|
1039
|
+
var getExternalAttachment = (options) => {
|
|
1277
1040
|
return (options.client ?? client).get({
|
|
1278
1041
|
security: [
|
|
1279
1042
|
{
|
|
@@ -1281,11 +1044,11 @@ var createAuditTrailPdf = (options) => {
|
|
|
1281
1044
|
type: "apiKey"
|
|
1282
1045
|
}
|
|
1283
1046
|
],
|
|
1284
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1047
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/attachment/{fileName}",
|
|
1285
1048
|
...options
|
|
1286
1049
|
});
|
|
1287
1050
|
};
|
|
1288
|
-
var
|
|
1051
|
+
var listPotentialNegotiationAdvisors = (options) => {
|
|
1289
1052
|
return (options.client ?? client).get({
|
|
1290
1053
|
security: [
|
|
1291
1054
|
{
|
|
@@ -1293,11 +1056,11 @@ var createAuditTrailJson = (options) => {
|
|
|
1293
1056
|
type: "apiKey"
|
|
1294
1057
|
}
|
|
1295
1058
|
],
|
|
1296
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1059
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/negotiations/{negotiationId}/potentialAdvisors",
|
|
1297
1060
|
...options
|
|
1298
1061
|
});
|
|
1299
1062
|
};
|
|
1300
|
-
var
|
|
1063
|
+
var getAccessibleNegotiation = (options) => {
|
|
1301
1064
|
return (options.client ?? client).get({
|
|
1302
1065
|
security: [
|
|
1303
1066
|
{
|
|
@@ -1305,35 +1068,35 @@ var createSigningPack = (options) => {
|
|
|
1305
1068
|
type: "apiKey"
|
|
1306
1069
|
}
|
|
1307
1070
|
],
|
|
1308
|
-
url: "/api/v1/
|
|
1071
|
+
url: "/api/v1/negotiations/{negotiationId}",
|
|
1309
1072
|
...options
|
|
1310
1073
|
});
|
|
1311
1074
|
};
|
|
1312
|
-
var
|
|
1313
|
-
return (options.client ?? client).
|
|
1075
|
+
var forkNegotiation = (options) => {
|
|
1076
|
+
return (options.client ?? client).post({
|
|
1314
1077
|
security: [
|
|
1315
1078
|
{
|
|
1316
1079
|
name: "Authorization",
|
|
1317
1080
|
type: "apiKey"
|
|
1318
1081
|
}
|
|
1319
1082
|
],
|
|
1320
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1083
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/restate",
|
|
1321
1084
|
...options
|
|
1322
1085
|
});
|
|
1323
1086
|
};
|
|
1324
|
-
var
|
|
1325
|
-
return (options.client ?? client).
|
|
1087
|
+
var acceptAllCounterpartyPositions = (options) => {
|
|
1088
|
+
return (options.client ?? client).put({
|
|
1326
1089
|
security: [
|
|
1327
1090
|
{
|
|
1328
1091
|
name: "Authorization",
|
|
1329
1092
|
type: "apiKey"
|
|
1330
1093
|
}
|
|
1331
1094
|
],
|
|
1332
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1095
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/acceptCpPosition/{partyId}",
|
|
1333
1096
|
...options
|
|
1334
1097
|
});
|
|
1335
1098
|
};
|
|
1336
|
-
var
|
|
1099
|
+
var negotiationGetDocumentSchema = (options) => {
|
|
1337
1100
|
return (options.client ?? client).get({
|
|
1338
1101
|
security: [
|
|
1339
1102
|
{
|
|
@@ -1341,35 +1104,43 @@ var getSignedSignaturePagePdf = (options) => {
|
|
|
1341
1104
|
type: "apiKey"
|
|
1342
1105
|
}
|
|
1343
1106
|
],
|
|
1344
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1107
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/schema",
|
|
1345
1108
|
...options
|
|
1346
1109
|
});
|
|
1347
1110
|
};
|
|
1348
|
-
var
|
|
1349
|
-
return (options.client ?? client).
|
|
1111
|
+
var updateGroupName = (options) => {
|
|
1112
|
+
return (options.client ?? client).put({
|
|
1350
1113
|
security: [
|
|
1351
1114
|
{
|
|
1352
1115
|
name: "Authorization",
|
|
1353
1116
|
type: "apiKey"
|
|
1354
1117
|
}
|
|
1355
1118
|
],
|
|
1356
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1357
|
-
...options
|
|
1119
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/{negotiationGroupId}",
|
|
1120
|
+
...options,
|
|
1121
|
+
headers: {
|
|
1122
|
+
"Content-Type": "application/json",
|
|
1123
|
+
...options?.headers
|
|
1124
|
+
}
|
|
1358
1125
|
});
|
|
1359
1126
|
};
|
|
1360
|
-
var
|
|
1361
|
-
return (options.client ?? client).
|
|
1127
|
+
var changeSigningMode = (options) => {
|
|
1128
|
+
return (options.client ?? client).put({
|
|
1362
1129
|
security: [
|
|
1363
1130
|
{
|
|
1364
1131
|
name: "Authorization",
|
|
1365
1132
|
type: "apiKey"
|
|
1366
1133
|
}
|
|
1367
1134
|
],
|
|
1368
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1369
|
-
...options
|
|
1135
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signingMode",
|
|
1136
|
+
...options,
|
|
1137
|
+
headers: {
|
|
1138
|
+
"Content-Type": "application/json",
|
|
1139
|
+
...options?.headers
|
|
1140
|
+
}
|
|
1370
1141
|
});
|
|
1371
1142
|
};
|
|
1372
|
-
var
|
|
1143
|
+
var sendToCounterparty = (options) => {
|
|
1373
1144
|
return (options.client ?? client).put({
|
|
1374
1145
|
security: [
|
|
1375
1146
|
{
|
|
@@ -1377,39 +1148,39 @@ var setSignedSignaturePageForParty = (options) => {
|
|
|
1377
1148
|
type: "apiKey"
|
|
1378
1149
|
}
|
|
1379
1150
|
],
|
|
1380
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1151
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/sendToCounterparty",
|
|
1381
1152
|
...options,
|
|
1382
1153
|
headers: {
|
|
1383
|
-
"Content-Type": "application/
|
|
1154
|
+
"Content-Type": "application/json",
|
|
1384
1155
|
...options?.headers
|
|
1385
1156
|
}
|
|
1386
1157
|
});
|
|
1387
1158
|
};
|
|
1388
|
-
var
|
|
1389
|
-
return (options.client ?? client).
|
|
1159
|
+
var voidESignEnvelopeForNegotiation = (options) => {
|
|
1160
|
+
return (options.client ?? client).put({
|
|
1390
1161
|
security: [
|
|
1391
1162
|
{
|
|
1392
1163
|
name: "Authorization",
|
|
1393
1164
|
type: "apiKey"
|
|
1394
1165
|
}
|
|
1395
1166
|
],
|
|
1396
|
-
url: "/api/v1/
|
|
1167
|
+
url: "/api/v1/esign/{subAccountId}/negotiations/{negotiationId}/cancelSession",
|
|
1397
1168
|
...options
|
|
1398
1169
|
});
|
|
1399
1170
|
};
|
|
1400
|
-
var
|
|
1401
|
-
return (options.client ?? client).
|
|
1171
|
+
var deleteDocumentDraftingNote = (options) => {
|
|
1172
|
+
return (options.client ?? client).delete({
|
|
1402
1173
|
security: [
|
|
1403
1174
|
{
|
|
1404
1175
|
name: "Authorization",
|
|
1405
1176
|
type: "apiKey"
|
|
1406
1177
|
}
|
|
1407
1178
|
],
|
|
1408
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1179
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNote/noteType/{noteType}",
|
|
1409
1180
|
...options
|
|
1410
1181
|
});
|
|
1411
1182
|
};
|
|
1412
|
-
var
|
|
1183
|
+
var updateDocumentDraftingNote = (options) => {
|
|
1413
1184
|
return (options.client ?? client).put({
|
|
1414
1185
|
security: [
|
|
1415
1186
|
{
|
|
@@ -1417,67 +1188,72 @@ var setAuxiliaryDocument = (options) => {
|
|
|
1417
1188
|
type: "apiKey"
|
|
1418
1189
|
}
|
|
1419
1190
|
],
|
|
1420
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1421
|
-
...options
|
|
1422
|
-
headers: {
|
|
1423
|
-
"Content-Type": "application/pdf",
|
|
1424
|
-
...options?.headers
|
|
1425
|
-
}
|
|
1191
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNote/noteType/{noteType}",
|
|
1192
|
+
...options
|
|
1426
1193
|
});
|
|
1427
1194
|
};
|
|
1428
|
-
var
|
|
1429
|
-
return (options.client ?? client).
|
|
1195
|
+
var setBulkSetAttachments = (options) => {
|
|
1196
|
+
return (options.client ?? client).post({
|
|
1197
|
+
...import_client_fetch2.formDataBodySerializer,
|
|
1430
1198
|
security: [
|
|
1431
1199
|
{
|
|
1432
1200
|
name: "Authorization",
|
|
1433
1201
|
type: "apiKey"
|
|
1434
1202
|
}
|
|
1435
1203
|
],
|
|
1436
|
-
url: "/api/v1/
|
|
1437
|
-
...options
|
|
1204
|
+
url: "/api/v1/bulkSets/{bulkSetId}/attachment",
|
|
1205
|
+
...options,
|
|
1206
|
+
headers: {
|
|
1207
|
+
"Content-Type": null,
|
|
1208
|
+
...options?.headers
|
|
1209
|
+
}
|
|
1438
1210
|
});
|
|
1439
1211
|
};
|
|
1440
|
-
var
|
|
1441
|
-
return (options.client ?? client).
|
|
1212
|
+
var addElectionApproval = (options) => {
|
|
1213
|
+
return (options.client ?? client).put({
|
|
1442
1214
|
security: [
|
|
1443
1215
|
{
|
|
1444
1216
|
name: "Authorization",
|
|
1445
1217
|
type: "apiKey"
|
|
1446
1218
|
}
|
|
1447
1219
|
],
|
|
1448
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1449
|
-
...options
|
|
1220
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/elections/{electionId}/approve",
|
|
1221
|
+
...options,
|
|
1222
|
+
headers: {
|
|
1223
|
+
"Content-Type": "application/json",
|
|
1224
|
+
...options?.headers
|
|
1225
|
+
}
|
|
1450
1226
|
});
|
|
1451
1227
|
};
|
|
1452
|
-
var
|
|
1453
|
-
return (options.client ?? client).
|
|
1228
|
+
var rejectFinalDocument = (options) => {
|
|
1229
|
+
return (options.client ?? client).put({
|
|
1454
1230
|
security: [
|
|
1455
1231
|
{
|
|
1456
1232
|
name: "Authorization",
|
|
1457
1233
|
type: "apiKey"
|
|
1458
1234
|
}
|
|
1459
1235
|
],
|
|
1460
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1461
|
-
...options
|
|
1236
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document/reject",
|
|
1237
|
+
...options,
|
|
1238
|
+
headers: {
|
|
1239
|
+
"Content-Type": "application/json",
|
|
1240
|
+
...options?.headers
|
|
1241
|
+
}
|
|
1462
1242
|
});
|
|
1463
1243
|
};
|
|
1464
|
-
var
|
|
1465
|
-
return (options.client ?? client).
|
|
1244
|
+
var generateAndMaybeSendEnvelope = (options) => {
|
|
1245
|
+
return (options.client ?? client).get({
|
|
1466
1246
|
security: [
|
|
1467
1247
|
{
|
|
1468
1248
|
name: "Authorization",
|
|
1469
1249
|
type: "apiKey"
|
|
1470
1250
|
}
|
|
1471
1251
|
],
|
|
1472
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1473
|
-
...options
|
|
1474
|
-
headers: {
|
|
1475
|
-
"Content-Type": "application/pdf",
|
|
1476
|
-
...options?.headers
|
|
1477
|
-
}
|
|
1252
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signWithDocuSign",
|
|
1253
|
+
...options
|
|
1478
1254
|
});
|
|
1479
1255
|
};
|
|
1480
|
-
var
|
|
1256
|
+
var getElectionAnswer = (options) => {
|
|
1481
1257
|
return (options.client ?? client).get({
|
|
1482
1258
|
security: [
|
|
1483
1259
|
{
|
|
@@ -1485,23 +1261,23 @@ var getAnnotatedOfflineNegotiatedDocument = (options) => {
|
|
|
1485
1261
|
type: "apiKey"
|
|
1486
1262
|
}
|
|
1487
1263
|
],
|
|
1488
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1264
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/elections/{electionId}",
|
|
1489
1265
|
...options
|
|
1490
1266
|
});
|
|
1491
1267
|
};
|
|
1492
|
-
var
|
|
1493
|
-
return (options.client ?? client).
|
|
1268
|
+
var presetSendForApproval = (options) => {
|
|
1269
|
+
return (options.client ?? client).put({
|
|
1494
1270
|
security: [
|
|
1495
1271
|
{
|
|
1496
1272
|
name: "Authorization",
|
|
1497
1273
|
type: "apiKey"
|
|
1498
1274
|
}
|
|
1499
1275
|
],
|
|
1500
|
-
url: "/api/v1/
|
|
1276
|
+
url: "/api/v1/presets/{presetId}/approvals/sendForApproval",
|
|
1501
1277
|
...options
|
|
1502
1278
|
});
|
|
1503
1279
|
};
|
|
1504
|
-
var
|
|
1280
|
+
var createAuditTrailJson = (options) => {
|
|
1505
1281
|
return (options.client ?? client).get({
|
|
1506
1282
|
security: [
|
|
1507
1283
|
{
|
|
@@ -1509,23 +1285,27 @@ var checkOfflineNegotiatedDocument = (options) => {
|
|
|
1509
1285
|
type: "apiKey"
|
|
1510
1286
|
}
|
|
1511
1287
|
],
|
|
1512
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1288
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/audit_trail/json",
|
|
1513
1289
|
...options
|
|
1514
1290
|
});
|
|
1515
1291
|
};
|
|
1516
|
-
var
|
|
1517
|
-
return (options.client ?? client).
|
|
1292
|
+
var updateNegotiationsToMatch = (options) => {
|
|
1293
|
+
return (options.client ?? client).put({
|
|
1518
1294
|
security: [
|
|
1519
1295
|
{
|
|
1520
1296
|
name: "Authorization",
|
|
1521
1297
|
type: "apiKey"
|
|
1522
1298
|
}
|
|
1523
1299
|
],
|
|
1524
|
-
url: "/api/v1/
|
|
1525
|
-
...options
|
|
1300
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/deltas/apply",
|
|
1301
|
+
...options,
|
|
1302
|
+
headers: {
|
|
1303
|
+
"Content-Type": "application/json",
|
|
1304
|
+
...options?.headers
|
|
1305
|
+
}
|
|
1526
1306
|
});
|
|
1527
1307
|
};
|
|
1528
|
-
var
|
|
1308
|
+
var getApprovalHistory = (options) => {
|
|
1529
1309
|
return (options.client ?? client).get({
|
|
1530
1310
|
security: [
|
|
1531
1311
|
{
|
|
@@ -1533,11 +1313,11 @@ var listDocumentsWithPagination = (options) => {
|
|
|
1533
1313
|
type: "apiKey"
|
|
1534
1314
|
}
|
|
1535
1315
|
],
|
|
1536
|
-
url: "/api/v1/
|
|
1316
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/history",
|
|
1537
1317
|
...options
|
|
1538
1318
|
});
|
|
1539
1319
|
};
|
|
1540
|
-
var
|
|
1320
|
+
var bulkSetsJobCount = (options) => {
|
|
1541
1321
|
return (options.client ?? client).get({
|
|
1542
1322
|
security: [
|
|
1543
1323
|
{
|
|
@@ -1545,47 +1325,55 @@ var listDocumentsVersionsSummary = (options) => {
|
|
|
1545
1325
|
type: "apiKey"
|
|
1546
1326
|
}
|
|
1547
1327
|
],
|
|
1548
|
-
url: "/api/v1/
|
|
1328
|
+
url: "/api/v1/subAccounts/{subAccountId}/bulkSets/count",
|
|
1549
1329
|
...options
|
|
1550
1330
|
});
|
|
1551
1331
|
};
|
|
1552
|
-
var
|
|
1553
|
-
return (options.client ?? client).
|
|
1332
|
+
var editDefaultAnswers = (options) => {
|
|
1333
|
+
return (options.client ?? client).put({
|
|
1554
1334
|
security: [
|
|
1555
1335
|
{
|
|
1556
1336
|
name: "Authorization",
|
|
1557
1337
|
type: "apiKey"
|
|
1558
1338
|
}
|
|
1559
1339
|
],
|
|
1560
|
-
url: "/api/v1/
|
|
1561
|
-
...options
|
|
1340
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/defaults",
|
|
1341
|
+
...options,
|
|
1342
|
+
headers: {
|
|
1343
|
+
"Content-Type": "application/json",
|
|
1344
|
+
...options?.headers
|
|
1345
|
+
}
|
|
1562
1346
|
});
|
|
1563
1347
|
};
|
|
1564
|
-
var
|
|
1565
|
-
return (options
|
|
1348
|
+
var getSubscribedPublishers = (options) => {
|
|
1349
|
+
return (options?.client ?? client).get({
|
|
1566
1350
|
security: [
|
|
1567
1351
|
{
|
|
1568
1352
|
name: "Authorization",
|
|
1569
1353
|
type: "apiKey"
|
|
1570
1354
|
}
|
|
1571
1355
|
],
|
|
1572
|
-
url: "/api/v1/documents/
|
|
1356
|
+
url: "/api/v1/documents/publishers/subscribed",
|
|
1573
1357
|
...options
|
|
1574
1358
|
});
|
|
1575
1359
|
};
|
|
1576
|
-
var
|
|
1577
|
-
return (options.client ?? client).
|
|
1360
|
+
var sendGroupToCounterparty = (options) => {
|
|
1361
|
+
return (options.client ?? client).put({
|
|
1578
1362
|
security: [
|
|
1579
1363
|
{
|
|
1580
1364
|
name: "Authorization",
|
|
1581
1365
|
type: "apiKey"
|
|
1582
1366
|
}
|
|
1583
1367
|
],
|
|
1584
|
-
url: "/api/v1/
|
|
1585
|
-
...options
|
|
1368
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/{negotiationGroupId}/sendToCounterparty",
|
|
1369
|
+
...options,
|
|
1370
|
+
headers: {
|
|
1371
|
+
"Content-Type": "application/json",
|
|
1372
|
+
...options?.headers
|
|
1373
|
+
}
|
|
1586
1374
|
});
|
|
1587
1375
|
};
|
|
1588
|
-
var
|
|
1376
|
+
var breakingChanges = (options) => {
|
|
1589
1377
|
return (options.client ?? client).get({
|
|
1590
1378
|
security: [
|
|
1591
1379
|
{
|
|
@@ -1593,11 +1381,11 @@ var documentRenderTemplate = (options) => {
|
|
|
1593
1381
|
type: "apiKey"
|
|
1594
1382
|
}
|
|
1595
1383
|
],
|
|
1596
|
-
url: "/api/v1/
|
|
1384
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/breaking_changes",
|
|
1597
1385
|
...options
|
|
1598
1386
|
});
|
|
1599
1387
|
};
|
|
1600
|
-
var
|
|
1388
|
+
var getOtherPartyAnswers = (options) => {
|
|
1601
1389
|
return (options.client ?? client).get({
|
|
1602
1390
|
security: [
|
|
1603
1391
|
{
|
|
@@ -1605,35 +1393,43 @@ var getAmendDefaults = (options) => {
|
|
|
1605
1393
|
type: "apiKey"
|
|
1606
1394
|
}
|
|
1607
1395
|
],
|
|
1608
|
-
url: "/api/v1/
|
|
1396
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/parties/{counterpartyId}/versions/{version}",
|
|
1609
1397
|
...options
|
|
1610
1398
|
});
|
|
1611
1399
|
};
|
|
1612
|
-
var
|
|
1613
|
-
return (options.client ?? client).
|
|
1400
|
+
var overrideElectionRejection = (options) => {
|
|
1401
|
+
return (options.client ?? client).put({
|
|
1614
1402
|
security: [
|
|
1615
1403
|
{
|
|
1616
1404
|
name: "Authorization",
|
|
1617
1405
|
type: "apiKey"
|
|
1618
1406
|
}
|
|
1619
1407
|
],
|
|
1620
|
-
url: "/api/v1/
|
|
1621
|
-
...options
|
|
1408
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/elections/{electionId}/reject/override",
|
|
1409
|
+
...options,
|
|
1410
|
+
headers: {
|
|
1411
|
+
"Content-Type": "application/json",
|
|
1412
|
+
...options?.headers
|
|
1413
|
+
}
|
|
1622
1414
|
});
|
|
1623
1415
|
};
|
|
1624
|
-
var
|
|
1625
|
-
return (options.client ?? client).
|
|
1416
|
+
var overrideElectionApproval = (options) => {
|
|
1417
|
+
return (options.client ?? client).put({
|
|
1626
1418
|
security: [
|
|
1627
1419
|
{
|
|
1628
1420
|
name: "Authorization",
|
|
1629
1421
|
type: "apiKey"
|
|
1630
1422
|
}
|
|
1631
1423
|
],
|
|
1632
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1633
|
-
...options
|
|
1424
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/elections/{electionId}/approve/override",
|
|
1425
|
+
...options,
|
|
1426
|
+
headers: {
|
|
1427
|
+
"Content-Type": "application/json",
|
|
1428
|
+
...options?.headers
|
|
1429
|
+
}
|
|
1634
1430
|
});
|
|
1635
1431
|
};
|
|
1636
|
-
var
|
|
1432
|
+
var getAllVersions = (options) => {
|
|
1637
1433
|
return (options.client ?? client).get({
|
|
1638
1434
|
security: [
|
|
1639
1435
|
{
|
|
@@ -1641,11 +1437,11 @@ var negotiationForkHistory = (options) => {
|
|
|
1641
1437
|
type: "apiKey"
|
|
1642
1438
|
}
|
|
1643
1439
|
],
|
|
1644
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1440
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/parties/{partyId}/versions/all",
|
|
1645
1441
|
...options
|
|
1646
1442
|
});
|
|
1647
1443
|
};
|
|
1648
|
-
var
|
|
1444
|
+
var listPotentialPresetAdvisors = (options) => {
|
|
1649
1445
|
return (options.client ?? client).get({
|
|
1650
1446
|
security: [
|
|
1651
1447
|
{
|
|
@@ -1653,59 +1449,55 @@ var getOriginalAnswersForForkNegotiation = (options) => {
|
|
|
1653
1449
|
type: "apiKey"
|
|
1654
1450
|
}
|
|
1655
1451
|
],
|
|
1656
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1452
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/presets/{presetId}/potentialAdvisors",
|
|
1657
1453
|
...options
|
|
1658
1454
|
});
|
|
1659
1455
|
};
|
|
1660
|
-
var
|
|
1661
|
-
return (options.client ?? client).
|
|
1456
|
+
var getAsCdm = (options) => {
|
|
1457
|
+
return (options.client ?? client).get({
|
|
1662
1458
|
security: [
|
|
1663
1459
|
{
|
|
1664
1460
|
name: "Authorization",
|
|
1665
1461
|
type: "apiKey"
|
|
1666
1462
|
}
|
|
1667
1463
|
],
|
|
1668
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1464
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/cdm",
|
|
1669
1465
|
...options
|
|
1670
1466
|
});
|
|
1671
1467
|
};
|
|
1672
|
-
var
|
|
1673
|
-
return (options.client ?? client).
|
|
1468
|
+
var getApprovalRound = (options) => {
|
|
1469
|
+
return (options.client ?? client).get({
|
|
1674
1470
|
security: [
|
|
1675
1471
|
{
|
|
1676
1472
|
name: "Authorization",
|
|
1677
1473
|
type: "apiKey"
|
|
1678
1474
|
}
|
|
1679
1475
|
],
|
|
1680
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1681
|
-
...options
|
|
1682
|
-
headers: {
|
|
1683
|
-
"Content-Type": "application/json",
|
|
1684
|
-
...options?.headers
|
|
1685
|
-
}
|
|
1476
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/{roundId}",
|
|
1477
|
+
...options
|
|
1686
1478
|
});
|
|
1687
1479
|
};
|
|
1688
|
-
var
|
|
1689
|
-
return (options.client ?? client).
|
|
1480
|
+
var getPreviousActiveUsers = (options) => {
|
|
1481
|
+
return (options.client ?? client).get({
|
|
1690
1482
|
security: [
|
|
1691
1483
|
{
|
|
1692
1484
|
name: "Authorization",
|
|
1693
1485
|
type: "apiKey"
|
|
1694
1486
|
}
|
|
1695
1487
|
],
|
|
1696
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1488
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/previousActiveUsers",
|
|
1697
1489
|
...options
|
|
1698
1490
|
});
|
|
1699
1491
|
};
|
|
1700
|
-
var
|
|
1701
|
-
return (options.client ?? client).
|
|
1492
|
+
var revokePresetsAccess = (options) => {
|
|
1493
|
+
return (options.client ?? client).delete({
|
|
1702
1494
|
security: [
|
|
1703
1495
|
{
|
|
1704
1496
|
name: "Authorization",
|
|
1705
1497
|
type: "apiKey"
|
|
1706
1498
|
}
|
|
1707
1499
|
],
|
|
1708
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1500
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/relationships/{relationshipId}/presets",
|
|
1709
1501
|
...options,
|
|
1710
1502
|
headers: {
|
|
1711
1503
|
"Content-Type": "application/json",
|
|
@@ -1713,15 +1505,15 @@ var editAnswers = (options) => {
|
|
|
1713
1505
|
}
|
|
1714
1506
|
});
|
|
1715
1507
|
};
|
|
1716
|
-
var
|
|
1717
|
-
return (options.client ?? client).
|
|
1508
|
+
var grantPresetsAccess = (options) => {
|
|
1509
|
+
return (options.client ?? client).post({
|
|
1718
1510
|
security: [
|
|
1719
1511
|
{
|
|
1720
1512
|
name: "Authorization",
|
|
1721
1513
|
type: "apiKey"
|
|
1722
1514
|
}
|
|
1723
1515
|
],
|
|
1724
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1516
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/relationships/{relationshipId}/presets",
|
|
1725
1517
|
...options,
|
|
1726
1518
|
headers: {
|
|
1727
1519
|
"Content-Type": "application/json",
|
|
@@ -1729,43 +1521,47 @@ var editDefaultAnswers = (options) => {
|
|
|
1729
1521
|
}
|
|
1730
1522
|
});
|
|
1731
1523
|
};
|
|
1732
|
-
var
|
|
1733
|
-
return (options.client ?? client).
|
|
1524
|
+
var notifyOfDraft = (options) => {
|
|
1525
|
+
return (options.client ?? client).post({
|
|
1734
1526
|
security: [
|
|
1735
1527
|
{
|
|
1736
1528
|
name: "Authorization",
|
|
1737
1529
|
type: "apiKey"
|
|
1738
1530
|
}
|
|
1739
1531
|
],
|
|
1740
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1532
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/notifyOfDraft",
|
|
1741
1533
|
...options
|
|
1742
1534
|
});
|
|
1743
1535
|
};
|
|
1744
|
-
var
|
|
1745
|
-
return (options.client ?? client).
|
|
1536
|
+
var removeWatchers = (options) => {
|
|
1537
|
+
return (options.client ?? client).post({
|
|
1746
1538
|
security: [
|
|
1747
1539
|
{
|
|
1748
1540
|
name: "Authorization",
|
|
1749
1541
|
type: "apiKey"
|
|
1750
1542
|
}
|
|
1751
1543
|
],
|
|
1752
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1753
|
-
...options
|
|
1544
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/removeWatchers",
|
|
1545
|
+
...options,
|
|
1546
|
+
headers: {
|
|
1547
|
+
"Content-Type": "application/json",
|
|
1548
|
+
...options?.headers
|
|
1549
|
+
}
|
|
1754
1550
|
});
|
|
1755
1551
|
};
|
|
1756
|
-
var
|
|
1757
|
-
return (options.client ?? client).
|
|
1552
|
+
var getNegotiation = (options) => {
|
|
1553
|
+
return (options.client ?? client).get({
|
|
1758
1554
|
security: [
|
|
1759
1555
|
{
|
|
1760
1556
|
name: "Authorization",
|
|
1761
1557
|
type: "apiKey"
|
|
1762
1558
|
}
|
|
1763
1559
|
],
|
|
1764
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}
|
|
1560
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}",
|
|
1765
1561
|
...options
|
|
1766
1562
|
});
|
|
1767
1563
|
};
|
|
1768
|
-
var
|
|
1564
|
+
var updateMetadata = (options) => {
|
|
1769
1565
|
return (options.client ?? client).put({
|
|
1770
1566
|
security: [
|
|
1771
1567
|
{
|
|
@@ -1773,59 +1569,71 @@ var acceptAllPositionsFromPreviousVersion = (options) => {
|
|
|
1773
1569
|
type: "apiKey"
|
|
1774
1570
|
}
|
|
1775
1571
|
],
|
|
1776
|
-
url: "/api/v1/
|
|
1777
|
-
...options
|
|
1572
|
+
url: "/api/v1/presets/{presetId}/metadata",
|
|
1573
|
+
...options,
|
|
1574
|
+
headers: {
|
|
1575
|
+
"Content-Type": "application/json",
|
|
1576
|
+
...options?.headers
|
|
1577
|
+
}
|
|
1778
1578
|
});
|
|
1779
1579
|
};
|
|
1780
|
-
var
|
|
1781
|
-
return (options.client ?? client).
|
|
1580
|
+
var getDownloadExecutedNegotiationsAsExcel = (options) => {
|
|
1581
|
+
return (options.client ?? client).get({
|
|
1782
1582
|
security: [
|
|
1783
1583
|
{
|
|
1784
1584
|
name: "Authorization",
|
|
1785
1585
|
type: "apiKey"
|
|
1786
1586
|
}
|
|
1787
1587
|
],
|
|
1788
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1588
|
+
url: "/api/v1/subAccounts/{subAccountId}/executed_negotiations/xlsx",
|
|
1789
1589
|
...options
|
|
1790
1590
|
});
|
|
1791
1591
|
};
|
|
1792
|
-
var
|
|
1793
|
-
return (options.client ?? client).
|
|
1592
|
+
var downloadExecutedNegotiationsAsExcel = (options) => {
|
|
1593
|
+
return (options.client ?? client).post({
|
|
1794
1594
|
security: [
|
|
1795
1595
|
{
|
|
1796
1596
|
name: "Authorization",
|
|
1797
1597
|
type: "apiKey"
|
|
1798
1598
|
}
|
|
1799
1599
|
],
|
|
1800
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1801
|
-
...options
|
|
1600
|
+
url: "/api/v1/subAccounts/{subAccountId}/executed_negotiations/xlsx",
|
|
1601
|
+
...options,
|
|
1602
|
+
headers: {
|
|
1603
|
+
"Content-Type": "application/json",
|
|
1604
|
+
...options?.headers
|
|
1605
|
+
}
|
|
1802
1606
|
});
|
|
1803
1607
|
};
|
|
1804
|
-
var
|
|
1805
|
-
return (options.client ?? client).
|
|
1608
|
+
var deleteSignedSignaturePageForParty = (options) => {
|
|
1609
|
+
return (options.client ?? client).delete({
|
|
1806
1610
|
security: [
|
|
1807
1611
|
{
|
|
1808
1612
|
name: "Authorization",
|
|
1809
1613
|
type: "apiKey"
|
|
1810
1614
|
}
|
|
1811
1615
|
],
|
|
1812
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1616
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signature/{pageId}/signed/pdf",
|
|
1813
1617
|
...options
|
|
1814
1618
|
});
|
|
1815
1619
|
};
|
|
1816
|
-
var
|
|
1817
|
-
return (options.client ?? client).
|
|
1620
|
+
var setSignedSignaturePageForParty = (options) => {
|
|
1621
|
+
return (options.client ?? client).put({
|
|
1818
1622
|
security: [
|
|
1819
1623
|
{
|
|
1820
1624
|
name: "Authorization",
|
|
1821
1625
|
type: "apiKey"
|
|
1822
1626
|
}
|
|
1823
1627
|
],
|
|
1824
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1825
|
-
...options
|
|
1628
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signature/{pageId}/signed/pdf",
|
|
1629
|
+
...options,
|
|
1630
|
+
headers: {
|
|
1631
|
+
"Content-Type": "application/pdf",
|
|
1632
|
+
...options?.headers
|
|
1633
|
+
}
|
|
1826
1634
|
});
|
|
1827
1635
|
};
|
|
1828
|
-
var
|
|
1636
|
+
var suggestGroupName = (options) => {
|
|
1829
1637
|
return (options.client ?? client).get({
|
|
1830
1638
|
security: [
|
|
1831
1639
|
{
|
|
@@ -1833,23 +1641,27 @@ var getOtherPartyAnswers = (options) => {
|
|
|
1833
1641
|
type: "apiKey"
|
|
1834
1642
|
}
|
|
1835
1643
|
],
|
|
1836
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1644
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/nameSuggestions",
|
|
1837
1645
|
...options
|
|
1838
1646
|
});
|
|
1839
1647
|
};
|
|
1840
|
-
var
|
|
1841
|
-
return (options.client ?? client).
|
|
1648
|
+
var markActivityEventsAsViewed = (options) => {
|
|
1649
|
+
return (options.client ?? client).put({
|
|
1842
1650
|
security: [
|
|
1843
1651
|
{
|
|
1844
1652
|
name: "Authorization",
|
|
1845
1653
|
type: "apiKey"
|
|
1846
1654
|
}
|
|
1847
1655
|
],
|
|
1848
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1849
|
-
...options
|
|
1656
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/activities/markAsRead",
|
|
1657
|
+
...options,
|
|
1658
|
+
headers: {
|
|
1659
|
+
"Content-Type": "application/json",
|
|
1660
|
+
...options?.headers
|
|
1661
|
+
}
|
|
1850
1662
|
});
|
|
1851
1663
|
};
|
|
1852
|
-
var
|
|
1664
|
+
var cancelExtraction = (options) => {
|
|
1853
1665
|
return (options.client ?? client).put({
|
|
1854
1666
|
security: [
|
|
1855
1667
|
{
|
|
@@ -1857,19 +1669,19 @@ var acceptCounterpartyPosition = (options) => {
|
|
|
1857
1669
|
type: "apiKey"
|
|
1858
1670
|
}
|
|
1859
1671
|
],
|
|
1860
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1672
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/cancel",
|
|
1861
1673
|
...options
|
|
1862
1674
|
});
|
|
1863
1675
|
};
|
|
1864
|
-
var
|
|
1865
|
-
return (options.client ?? client).
|
|
1676
|
+
var editAnswers = (options) => {
|
|
1677
|
+
return (options.client ?? client).put({
|
|
1866
1678
|
security: [
|
|
1867
1679
|
{
|
|
1868
1680
|
name: "Authorization",
|
|
1869
1681
|
type: "apiKey"
|
|
1870
1682
|
}
|
|
1871
1683
|
],
|
|
1872
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers
|
|
1684
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers",
|
|
1873
1685
|
...options,
|
|
1874
1686
|
headers: {
|
|
1875
1687
|
"Content-Type": "application/json",
|
|
@@ -1877,23 +1689,19 @@ var getMultipleNestedAnswers = (options) => {
|
|
|
1877
1689
|
}
|
|
1878
1690
|
});
|
|
1879
1691
|
};
|
|
1880
|
-
var
|
|
1881
|
-
return (options.client ?? client).
|
|
1692
|
+
var getComments = (options) => {
|
|
1693
|
+
return (options.client ?? client).get({
|
|
1882
1694
|
security: [
|
|
1883
1695
|
{
|
|
1884
1696
|
name: "Authorization",
|
|
1885
1697
|
type: "apiKey"
|
|
1886
1698
|
}
|
|
1887
1699
|
],
|
|
1888
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1889
|
-
...options
|
|
1890
|
-
headers: {
|
|
1891
|
-
"Content-Type": "application/json",
|
|
1892
|
-
...options?.headers
|
|
1893
|
-
}
|
|
1700
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/comments",
|
|
1701
|
+
...options
|
|
1894
1702
|
});
|
|
1895
1703
|
};
|
|
1896
|
-
var
|
|
1704
|
+
var getDraftingNotesDocument = (options) => {
|
|
1897
1705
|
return (options.client ?? client).get({
|
|
1898
1706
|
security: [
|
|
1899
1707
|
{
|
|
@@ -1901,11 +1709,11 @@ var getNestedAnswers = (options) => {
|
|
|
1901
1709
|
type: "apiKey"
|
|
1902
1710
|
}
|
|
1903
1711
|
],
|
|
1904
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1712
|
+
url: "/api/v1/subAccounts/{subAccountId}/draftingNotes",
|
|
1905
1713
|
...options
|
|
1906
1714
|
});
|
|
1907
1715
|
};
|
|
1908
|
-
var
|
|
1716
|
+
var acceptAllPositionsFromFork = (options) => {
|
|
1909
1717
|
return (options.client ?? client).put({
|
|
1910
1718
|
security: [
|
|
1911
1719
|
{
|
|
@@ -1913,51 +1721,47 @@ var setNestedAnswers = (options) => {
|
|
|
1913
1721
|
type: "apiKey"
|
|
1914
1722
|
}
|
|
1915
1723
|
],
|
|
1916
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1917
|
-
...options
|
|
1918
|
-
headers: {
|
|
1919
|
-
"Content-Type": "application/json",
|
|
1920
|
-
...options?.headers
|
|
1921
|
-
}
|
|
1724
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/acceptOriginalPosition/{forkedNegotiationId}",
|
|
1725
|
+
...options
|
|
1922
1726
|
});
|
|
1923
1727
|
};
|
|
1924
|
-
var
|
|
1925
|
-
return (options.client ?? client).
|
|
1728
|
+
var acceptAllPresetPositions = (options) => {
|
|
1729
|
+
return (options.client ?? client).put({
|
|
1926
1730
|
security: [
|
|
1927
1731
|
{
|
|
1928
1732
|
name: "Authorization",
|
|
1929
1733
|
type: "apiKey"
|
|
1930
1734
|
}
|
|
1931
1735
|
],
|
|
1932
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1736
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/acceptPresetPosition",
|
|
1933
1737
|
...options
|
|
1934
1738
|
});
|
|
1935
1739
|
};
|
|
1936
|
-
var
|
|
1937
|
-
return (options.client ?? client).
|
|
1740
|
+
var sendChaserEmail = (options) => {
|
|
1741
|
+
return (options.client ?? client).post({
|
|
1938
1742
|
security: [
|
|
1939
1743
|
{
|
|
1940
1744
|
name: "Authorization",
|
|
1941
1745
|
type: "apiKey"
|
|
1942
1746
|
}
|
|
1943
1747
|
],
|
|
1944
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1748
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/sendChaserEmail",
|
|
1945
1749
|
...options
|
|
1946
1750
|
});
|
|
1947
1751
|
};
|
|
1948
|
-
var
|
|
1949
|
-
return (options.client ?? client).
|
|
1752
|
+
var createSigningPack = (options) => {
|
|
1753
|
+
return (options.client ?? client).get({
|
|
1950
1754
|
security: [
|
|
1951
1755
|
{
|
|
1952
1756
|
name: "Authorization",
|
|
1953
1757
|
type: "apiKey"
|
|
1954
1758
|
}
|
|
1955
1759
|
],
|
|
1956
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1760
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signingPack",
|
|
1957
1761
|
...options
|
|
1958
1762
|
});
|
|
1959
1763
|
};
|
|
1960
|
-
var
|
|
1764
|
+
var getGroupNames = (options) => {
|
|
1961
1765
|
return (options.client ?? client).get({
|
|
1962
1766
|
security: [
|
|
1963
1767
|
{
|
|
@@ -1965,35 +1769,39 @@ var initialAnswers = (options) => {
|
|
|
1965
1769
|
type: "apiKey"
|
|
1966
1770
|
}
|
|
1967
1771
|
],
|
|
1968
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1772
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups",
|
|
1969
1773
|
...options
|
|
1970
1774
|
});
|
|
1971
1775
|
};
|
|
1972
|
-
var
|
|
1973
|
-
return (options.client ?? client).
|
|
1776
|
+
var createGroup = (options) => {
|
|
1777
|
+
return (options.client ?? client).post({
|
|
1974
1778
|
security: [
|
|
1975
1779
|
{
|
|
1976
1780
|
name: "Authorization",
|
|
1977
1781
|
type: "apiKey"
|
|
1978
1782
|
}
|
|
1979
1783
|
],
|
|
1980
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1981
|
-
...options
|
|
1784
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups",
|
|
1785
|
+
...options,
|
|
1786
|
+
headers: {
|
|
1787
|
+
"Content-Type": "application/json",
|
|
1788
|
+
...options?.headers
|
|
1789
|
+
}
|
|
1982
1790
|
});
|
|
1983
1791
|
};
|
|
1984
|
-
var
|
|
1985
|
-
return (options.client ?? client).
|
|
1792
|
+
var getNegotiationFilesSummary = (options) => {
|
|
1793
|
+
return (options.client ?? client).get({
|
|
1986
1794
|
security: [
|
|
1987
1795
|
{
|
|
1988
1796
|
name: "Authorization",
|
|
1989
1797
|
type: "apiKey"
|
|
1990
1798
|
}
|
|
1991
1799
|
],
|
|
1992
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1800
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/negotiationFiles/summary",
|
|
1993
1801
|
...options
|
|
1994
1802
|
});
|
|
1995
1803
|
};
|
|
1996
|
-
var
|
|
1804
|
+
var getUsers = (options) => {
|
|
1997
1805
|
return (options.client ?? client).get({
|
|
1998
1806
|
security: [
|
|
1999
1807
|
{
|
|
@@ -2001,11 +1809,23 @@ var getPreviousActiveUsers = (options) => {
|
|
|
2001
1809
|
type: "apiKey"
|
|
2002
1810
|
}
|
|
2003
1811
|
],
|
|
2004
|
-
url: "/api/v1/
|
|
1812
|
+
url: "/api/v1/subaccount/{subAccountId}/users",
|
|
2005
1813
|
...options
|
|
2006
1814
|
});
|
|
2007
1815
|
};
|
|
2008
|
-
var
|
|
1816
|
+
var getSettings = (options) => {
|
|
1817
|
+
return (options?.client ?? client).get({
|
|
1818
|
+
security: [
|
|
1819
|
+
{
|
|
1820
|
+
name: "Authorization",
|
|
1821
|
+
type: "apiKey"
|
|
1822
|
+
}
|
|
1823
|
+
],
|
|
1824
|
+
url: "/api/v1/account/settings",
|
|
1825
|
+
...options
|
|
1826
|
+
});
|
|
1827
|
+
};
|
|
1828
|
+
var confirm = (options) => {
|
|
2009
1829
|
return (options.client ?? client).put({
|
|
2010
1830
|
security: [
|
|
2011
1831
|
{
|
|
@@ -2013,27 +1833,23 @@ var setCounterparties = (options) => {
|
|
|
2013
1833
|
type: "apiKey"
|
|
2014
1834
|
}
|
|
2015
1835
|
],
|
|
2016
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2017
|
-
...options
|
|
2018
|
-
headers: {
|
|
2019
|
-
"Content-Type": "application/json",
|
|
2020
|
-
...options?.headers
|
|
2021
|
-
}
|
|
1836
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/confirm",
|
|
1837
|
+
...options
|
|
2022
1838
|
});
|
|
2023
1839
|
};
|
|
2024
|
-
var
|
|
2025
|
-
return (options.client ?? client).
|
|
1840
|
+
var sendDocumentApprovalReminder = (options) => {
|
|
1841
|
+
return (options.client ?? client).put({
|
|
2026
1842
|
security: [
|
|
2027
1843
|
{
|
|
2028
1844
|
name: "Authorization",
|
|
2029
1845
|
type: "apiKey"
|
|
2030
1846
|
}
|
|
2031
1847
|
],
|
|
2032
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1848
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document/reminder",
|
|
2033
1849
|
...options
|
|
2034
1850
|
});
|
|
2035
1851
|
};
|
|
2036
|
-
var
|
|
1852
|
+
var getStatistics = (options) => {
|
|
2037
1853
|
return (options.client ?? client).get({
|
|
2038
1854
|
security: [
|
|
2039
1855
|
{
|
|
@@ -2041,109 +1857,119 @@ var getExternalAttachment = (options) => {
|
|
|
2041
1857
|
type: "apiKey"
|
|
2042
1858
|
}
|
|
2043
1859
|
],
|
|
2044
|
-
url: "/api/
|
|
1860
|
+
url: "/api/v2/subAccounts/{subAccountId}/statistics",
|
|
2045
1861
|
...options
|
|
2046
1862
|
});
|
|
2047
1863
|
};
|
|
2048
|
-
var
|
|
2049
|
-
return (options.client ?? client).
|
|
1864
|
+
var presetSwapParties = (options) => {
|
|
1865
|
+
return (options.client ?? client).put({
|
|
2050
1866
|
security: [
|
|
2051
1867
|
{
|
|
2052
1868
|
name: "Authorization",
|
|
2053
1869
|
type: "apiKey"
|
|
2054
1870
|
}
|
|
2055
1871
|
],
|
|
2056
|
-
url: "/api/v1/
|
|
1872
|
+
url: "/api/v1/presets/{presetId}/swapParties",
|
|
2057
1873
|
...options
|
|
2058
1874
|
});
|
|
2059
1875
|
};
|
|
2060
|
-
var
|
|
2061
|
-
return (options.client ?? client).
|
|
2062
|
-
...import_client_fetch2.formDataBodySerializer,
|
|
1876
|
+
var approveFinalDocument = (options) => {
|
|
1877
|
+
return (options.client ?? client).put({
|
|
2063
1878
|
security: [
|
|
2064
1879
|
{
|
|
2065
1880
|
name: "Authorization",
|
|
2066
1881
|
type: "apiKey"
|
|
2067
1882
|
}
|
|
2068
1883
|
],
|
|
2069
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1884
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/document/approve",
|
|
2070
1885
|
...options,
|
|
2071
1886
|
headers: {
|
|
2072
|
-
"Content-Type":
|
|
1887
|
+
"Content-Type": "application/json",
|
|
2073
1888
|
...options?.headers
|
|
2074
1889
|
}
|
|
2075
1890
|
});
|
|
2076
1891
|
};
|
|
2077
|
-
var
|
|
2078
|
-
return (options.client ?? client).
|
|
1892
|
+
var resetUserAnswers = (options) => {
|
|
1893
|
+
return (options.client ?? client).post({
|
|
2079
1894
|
security: [
|
|
2080
1895
|
{
|
|
2081
1896
|
name: "Authorization",
|
|
2082
1897
|
type: "apiKey"
|
|
2083
1898
|
}
|
|
2084
1899
|
],
|
|
2085
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1900
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/resetAnswers",
|
|
2086
1901
|
...options,
|
|
2087
1902
|
headers: {
|
|
2088
|
-
"Content-Type": "application/
|
|
1903
|
+
"Content-Type": "application/json",
|
|
2089
1904
|
...options?.headers
|
|
2090
1905
|
}
|
|
2091
1906
|
});
|
|
2092
1907
|
};
|
|
2093
|
-
var
|
|
2094
|
-
return (options.client ?? client).
|
|
1908
|
+
var getMajorVersions = (options) => {
|
|
1909
|
+
return (options.client ?? client).get({
|
|
2095
1910
|
security: [
|
|
2096
1911
|
{
|
|
2097
1912
|
name: "Authorization",
|
|
2098
1913
|
type: "apiKey"
|
|
2099
1914
|
}
|
|
2100
1915
|
],
|
|
2101
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1916
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/parties/{partyId}/versions",
|
|
2102
1917
|
...options
|
|
2103
1918
|
});
|
|
2104
1919
|
};
|
|
2105
|
-
var
|
|
2106
|
-
return (options.client ?? client).
|
|
1920
|
+
var updateUserAnswers = (options) => {
|
|
1921
|
+
return (options.client ?? client).put({
|
|
2107
1922
|
security: [
|
|
2108
1923
|
{
|
|
2109
1924
|
name: "Authorization",
|
|
2110
1925
|
type: "apiKey"
|
|
2111
1926
|
}
|
|
2112
1927
|
],
|
|
2113
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1928
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/answers",
|
|
1929
|
+
...options,
|
|
1930
|
+
headers: {
|
|
1931
|
+
"Content-Type": "application/json",
|
|
1932
|
+
...options?.headers
|
|
1933
|
+
}
|
|
1934
|
+
});
|
|
1935
|
+
};
|
|
1936
|
+
var deleteDocumentElectionDraftingNote = (options) => {
|
|
1937
|
+
return (options.client ?? client).delete({
|
|
1938
|
+
security: [
|
|
1939
|
+
{
|
|
1940
|
+
name: "Authorization",
|
|
1941
|
+
type: "apiKey"
|
|
1942
|
+
}
|
|
1943
|
+
],
|
|
1944
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNote/elections/{electionId}/noteType/{noteType}",
|
|
2114
1945
|
...options
|
|
2115
1946
|
});
|
|
2116
1947
|
};
|
|
2117
|
-
var
|
|
2118
|
-
return (options.client ?? client).
|
|
1948
|
+
var updateDocumentElectionDraftingNote = (options) => {
|
|
1949
|
+
return (options.client ?? client).put({
|
|
2119
1950
|
security: [
|
|
2120
1951
|
{
|
|
2121
1952
|
name: "Authorization",
|
|
2122
1953
|
type: "apiKey"
|
|
2123
1954
|
}
|
|
2124
1955
|
],
|
|
2125
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1956
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNote/elections/{electionId}/noteType/{noteType}",
|
|
2126
1957
|
...options
|
|
2127
1958
|
});
|
|
2128
1959
|
};
|
|
2129
|
-
var
|
|
2130
|
-
return (options.client ?? client).
|
|
2131
|
-
...import_client_fetch2.formDataBodySerializer,
|
|
1960
|
+
var assignToMe = (options) => {
|
|
1961
|
+
return (options.client ?? client).put({
|
|
2132
1962
|
security: [
|
|
2133
1963
|
{
|
|
2134
1964
|
name: "Authorization",
|
|
2135
1965
|
type: "apiKey"
|
|
2136
1966
|
}
|
|
2137
1967
|
],
|
|
2138
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2139
|
-
...options
|
|
2140
|
-
headers: {
|
|
2141
|
-
"Content-Type": null,
|
|
2142
|
-
...options?.headers
|
|
2143
|
-
}
|
|
1968
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/owner/myself",
|
|
1969
|
+
...options
|
|
2144
1970
|
});
|
|
2145
1971
|
};
|
|
2146
|
-
var
|
|
1972
|
+
var updateGroupMembers = (options) => {
|
|
2147
1973
|
return (options.client ?? client).put({
|
|
2148
1974
|
security: [
|
|
2149
1975
|
{
|
|
@@ -2151,75 +1977,63 @@ var setExecutionAttachment = (options) => {
|
|
|
2151
1977
|
type: "apiKey"
|
|
2152
1978
|
}
|
|
2153
1979
|
],
|
|
2154
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
1980
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/{negotiationGroupId}/members",
|
|
2155
1981
|
...options,
|
|
2156
1982
|
headers: {
|
|
2157
|
-
"Content-Type": "application/
|
|
1983
|
+
"Content-Type": "application/json",
|
|
2158
1984
|
...options?.headers
|
|
2159
1985
|
}
|
|
2160
1986
|
});
|
|
2161
1987
|
};
|
|
2162
|
-
var
|
|
2163
|
-
return (options.client ?? client).
|
|
1988
|
+
var getSignedSignaturePagePdf = (options) => {
|
|
1989
|
+
return (options.client ?? client).get({
|
|
2164
1990
|
security: [
|
|
2165
1991
|
{
|
|
2166
1992
|
name: "Authorization",
|
|
2167
1993
|
type: "apiKey"
|
|
2168
1994
|
}
|
|
2169
1995
|
],
|
|
2170
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
1996
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signature/{sigPageId}/signed/pdf",
|
|
2171
1997
|
...options
|
|
2172
1998
|
});
|
|
2173
1999
|
};
|
|
2174
|
-
var
|
|
2175
|
-
return (options.client ?? client).
|
|
2000
|
+
var presetGetDocumentSchema = (options) => {
|
|
2001
|
+
return (options.client ?? client).get({
|
|
2176
2002
|
security: [
|
|
2177
2003
|
{
|
|
2178
2004
|
name: "Authorization",
|
|
2179
2005
|
type: "apiKey"
|
|
2180
2006
|
}
|
|
2181
2007
|
],
|
|
2182
|
-
url: "/api/v1/
|
|
2183
|
-
...options
|
|
2184
|
-
headers: {
|
|
2185
|
-
"Content-Type": "application/json",
|
|
2186
|
-
...options?.headers
|
|
2187
|
-
}
|
|
2008
|
+
url: "/api/v1/presets/{presetId}/schema",
|
|
2009
|
+
...options
|
|
2188
2010
|
});
|
|
2189
2011
|
};
|
|
2190
|
-
var
|
|
2191
|
-
return (options
|
|
2012
|
+
var listSubAccounts = (options) => {
|
|
2013
|
+
return (options?.client ?? client).get({
|
|
2192
2014
|
security: [
|
|
2193
2015
|
{
|
|
2194
2016
|
name: "Authorization",
|
|
2195
2017
|
type: "apiKey"
|
|
2196
2018
|
}
|
|
2197
2019
|
],
|
|
2198
|
-
url: "/api/v1/subAccounts
|
|
2199
|
-
...options
|
|
2200
|
-
headers: {
|
|
2201
|
-
"Content-Type": "application/json",
|
|
2202
|
-
...options?.headers
|
|
2203
|
-
}
|
|
2020
|
+
url: "/api/v1/subAccounts",
|
|
2021
|
+
...options
|
|
2204
2022
|
});
|
|
2205
2023
|
};
|
|
2206
|
-
var
|
|
2207
|
-
return (options.client ?? client).
|
|
2024
|
+
var documentsFilter = (options) => {
|
|
2025
|
+
return (options.client ?? client).get({
|
|
2208
2026
|
security: [
|
|
2209
2027
|
{
|
|
2210
2028
|
name: "Authorization",
|
|
2211
2029
|
type: "apiKey"
|
|
2212
2030
|
}
|
|
2213
2031
|
],
|
|
2214
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2215
|
-
...options
|
|
2216
|
-
headers: {
|
|
2217
|
-
"Content-Type": "application/json",
|
|
2218
|
-
...options?.headers
|
|
2219
|
-
}
|
|
2032
|
+
url: "/api/v1/subAccounts/{subAccountId}/documents/filters/{filter}",
|
|
2033
|
+
...options
|
|
2220
2034
|
});
|
|
2221
2035
|
};
|
|
2222
|
-
var
|
|
2036
|
+
var markAsOffline = (options) => {
|
|
2223
2037
|
return (options.client ?? client).put({
|
|
2224
2038
|
security: [
|
|
2225
2039
|
{
|
|
@@ -2227,75 +2041,59 @@ var swapParties = (options) => {
|
|
|
2227
2041
|
type: "apiKey"
|
|
2228
2042
|
}
|
|
2229
2043
|
],
|
|
2230
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2044
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/markAsOffline",
|
|
2231
2045
|
...options
|
|
2232
2046
|
});
|
|
2233
2047
|
};
|
|
2234
|
-
var
|
|
2235
|
-
return (options.client ?? client).
|
|
2048
|
+
var checkSignedSignaturePagePdf = (options) => {
|
|
2049
|
+
return (options.client ?? client).get({
|
|
2236
2050
|
security: [
|
|
2237
2051
|
{
|
|
2238
2052
|
name: "Authorization",
|
|
2239
2053
|
type: "apiKey"
|
|
2240
2054
|
}
|
|
2241
2055
|
],
|
|
2242
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2243
|
-
...options
|
|
2244
|
-
headers: {
|
|
2245
|
-
"Content-Type": "application/json",
|
|
2246
|
-
...options?.headers
|
|
2247
|
-
}
|
|
2056
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signature/signed/pdf/exists",
|
|
2057
|
+
...options
|
|
2248
2058
|
});
|
|
2249
2059
|
};
|
|
2250
|
-
var
|
|
2251
|
-
return (options.client ?? client).
|
|
2060
|
+
var getAnnotatedOfflineNegotiatedDocument = (options) => {
|
|
2061
|
+
return (options.client ?? client).get({
|
|
2252
2062
|
security: [
|
|
2253
2063
|
{
|
|
2254
2064
|
name: "Authorization",
|
|
2255
2065
|
type: "apiKey"
|
|
2256
2066
|
}
|
|
2257
2067
|
],
|
|
2258
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2259
|
-
...options
|
|
2260
|
-
headers: {
|
|
2261
|
-
"Content-Type": "application/json",
|
|
2262
|
-
...options?.headers
|
|
2263
|
-
}
|
|
2068
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/offline_negotiated_document/annotated",
|
|
2069
|
+
...options
|
|
2264
2070
|
});
|
|
2265
2071
|
};
|
|
2266
|
-
var
|
|
2267
|
-
return (options.client ?? client).
|
|
2072
|
+
var deleteAuxiliaryDocument = (options) => {
|
|
2073
|
+
return (options.client ?? client).delete({
|
|
2268
2074
|
security: [
|
|
2269
2075
|
{
|
|
2270
2076
|
name: "Authorization",
|
|
2271
2077
|
type: "apiKey"
|
|
2272
2078
|
}
|
|
2273
2079
|
],
|
|
2274
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2275
|
-
...options
|
|
2276
|
-
headers: {
|
|
2277
|
-
"Content-Type": "application/json",
|
|
2278
|
-
...options?.headers
|
|
2279
|
-
}
|
|
2080
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/auxiliary_document",
|
|
2081
|
+
...options
|
|
2280
2082
|
});
|
|
2281
2083
|
};
|
|
2282
|
-
var
|
|
2283
|
-
return (options.client ?? client).
|
|
2084
|
+
var getAuxiliaryDocument = (options) => {
|
|
2085
|
+
return (options.client ?? client).get({
|
|
2284
2086
|
security: [
|
|
2285
2087
|
{
|
|
2286
2088
|
name: "Authorization",
|
|
2287
2089
|
type: "apiKey"
|
|
2288
2090
|
}
|
|
2289
2091
|
],
|
|
2290
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2291
|
-
...options
|
|
2292
|
-
headers: {
|
|
2293
|
-
"Content-Type": "application/json",
|
|
2294
|
-
...options?.headers
|
|
2295
|
-
}
|
|
2092
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/auxiliary_document",
|
|
2093
|
+
...options
|
|
2296
2094
|
});
|
|
2297
2095
|
};
|
|
2298
|
-
var
|
|
2096
|
+
var setAuxiliaryDocument = (options) => {
|
|
2299
2097
|
return (options.client ?? client).put({
|
|
2300
2098
|
security: [
|
|
2301
2099
|
{
|
|
@@ -2303,27 +2101,27 @@ var sendToCounterparty = (options) => {
|
|
|
2303
2101
|
type: "apiKey"
|
|
2304
2102
|
}
|
|
2305
2103
|
],
|
|
2306
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2104
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/auxiliary_document",
|
|
2307
2105
|
...options,
|
|
2308
2106
|
headers: {
|
|
2309
|
-
"Content-Type": "application/
|
|
2107
|
+
"Content-Type": "application/pdf",
|
|
2310
2108
|
...options?.headers
|
|
2311
2109
|
}
|
|
2312
2110
|
});
|
|
2313
2111
|
};
|
|
2314
|
-
var
|
|
2315
|
-
return (options.client ?? client).
|
|
2112
|
+
var downloadPreExecutionCounterpartyNegotiation = (options) => {
|
|
2113
|
+
return (options.client ?? client).get({
|
|
2316
2114
|
security: [
|
|
2317
2115
|
{
|
|
2318
2116
|
name: "Authorization",
|
|
2319
2117
|
type: "apiKey"
|
|
2320
2118
|
}
|
|
2321
2119
|
],
|
|
2322
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2120
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/parties/{counterpartyId}/extension/{extension}",
|
|
2323
2121
|
...options
|
|
2324
2122
|
});
|
|
2325
2123
|
};
|
|
2326
|
-
var
|
|
2124
|
+
var cancel = (options) => {
|
|
2327
2125
|
return (options.client ?? client).put({
|
|
2328
2126
|
security: [
|
|
2329
2127
|
{
|
|
@@ -2331,7 +2129,7 @@ var setGeneralCoverNote = (options) => {
|
|
|
2331
2129
|
type: "apiKey"
|
|
2332
2130
|
}
|
|
2333
2131
|
],
|
|
2334
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2132
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/cancel",
|
|
2335
2133
|
...options,
|
|
2336
2134
|
headers: {
|
|
2337
2135
|
"Content-Type": "application/json",
|
|
@@ -2339,15 +2137,15 @@ var setGeneralCoverNote = (options) => {
|
|
|
2339
2137
|
}
|
|
2340
2138
|
});
|
|
2341
2139
|
};
|
|
2342
|
-
var
|
|
2343
|
-
return (options.client ?? client).
|
|
2140
|
+
var revokeNegotiationsAccess = (options) => {
|
|
2141
|
+
return (options.client ?? client).delete({
|
|
2344
2142
|
security: [
|
|
2345
2143
|
{
|
|
2346
2144
|
name: "Authorization",
|
|
2347
2145
|
type: "apiKey"
|
|
2348
2146
|
}
|
|
2349
2147
|
],
|
|
2350
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2148
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/relationships/{relationshipId}/negotiations",
|
|
2351
2149
|
...options,
|
|
2352
2150
|
headers: {
|
|
2353
2151
|
"Content-Type": "application/json",
|
|
@@ -2355,15 +2153,15 @@ var negotiationSendForApproval = (options) => {
|
|
|
2355
2153
|
}
|
|
2356
2154
|
});
|
|
2357
2155
|
};
|
|
2358
|
-
var
|
|
2359
|
-
return (options.client ?? client).
|
|
2156
|
+
var grantNegotiationsAccess = (options) => {
|
|
2157
|
+
return (options.client ?? client).post({
|
|
2360
2158
|
security: [
|
|
2361
2159
|
{
|
|
2362
2160
|
name: "Authorization",
|
|
2363
2161
|
type: "apiKey"
|
|
2364
2162
|
}
|
|
2365
2163
|
],
|
|
2366
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2164
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/relationships/{relationshipId}/negotiations",
|
|
2367
2165
|
...options,
|
|
2368
2166
|
headers: {
|
|
2369
2167
|
"Content-Type": "application/json",
|
|
@@ -2371,95 +2169,103 @@ var changeSigningMode = (options) => {
|
|
|
2371
2169
|
}
|
|
2372
2170
|
});
|
|
2373
2171
|
};
|
|
2374
|
-
var
|
|
2375
|
-
return (options.client ?? client).
|
|
2172
|
+
var listDocuments = (options) => {
|
|
2173
|
+
return (options.client ?? client).get({
|
|
2376
2174
|
security: [
|
|
2377
2175
|
{
|
|
2378
2176
|
name: "Authorization",
|
|
2379
2177
|
type: "apiKey"
|
|
2380
2178
|
}
|
|
2381
2179
|
],
|
|
2382
|
-
url: "/api/v1/
|
|
2383
|
-
...options
|
|
2384
|
-
headers: {
|
|
2385
|
-
"Content-Type": "application/json",
|
|
2386
|
-
...options?.headers
|
|
2387
|
-
}
|
|
2180
|
+
url: "/api/v1/documents",
|
|
2181
|
+
...options
|
|
2388
2182
|
});
|
|
2389
2183
|
};
|
|
2390
|
-
var
|
|
2391
|
-
return (options.client ?? client).
|
|
2184
|
+
var getPartyAnswers = (options) => {
|
|
2185
|
+
return (options.client ?? client).get({
|
|
2392
2186
|
security: [
|
|
2393
2187
|
{
|
|
2394
2188
|
name: "Authorization",
|
|
2395
2189
|
type: "apiKey"
|
|
2396
2190
|
}
|
|
2397
2191
|
],
|
|
2398
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2192
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/versions/{version}",
|
|
2399
2193
|
...options
|
|
2400
2194
|
});
|
|
2401
2195
|
};
|
|
2402
|
-
var
|
|
2403
|
-
return (options.client ?? client).
|
|
2196
|
+
var getNegotiationsGroup = (options) => {
|
|
2197
|
+
return (options.client ?? client).get({
|
|
2404
2198
|
security: [
|
|
2405
2199
|
{
|
|
2406
2200
|
name: "Authorization",
|
|
2407
2201
|
type: "apiKey"
|
|
2408
2202
|
}
|
|
2409
2203
|
],
|
|
2410
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2204
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiationGroups/{negotiationGroupId}/negotiations",
|
|
2411
2205
|
...options
|
|
2412
2206
|
});
|
|
2413
2207
|
};
|
|
2414
|
-
var
|
|
2415
|
-
return (options.client ?? client).
|
|
2208
|
+
var deletePreset = (options) => {
|
|
2209
|
+
return (options.client ?? client).delete({
|
|
2416
2210
|
security: [
|
|
2417
2211
|
{
|
|
2418
2212
|
name: "Authorization",
|
|
2419
2213
|
type: "apiKey"
|
|
2420
2214
|
}
|
|
2421
2215
|
],
|
|
2422
|
-
url: "/api/v1/
|
|
2423
|
-
...options
|
|
2424
|
-
headers: {
|
|
2425
|
-
"Content-Type": "application/json",
|
|
2426
|
-
...options?.headers
|
|
2427
|
-
}
|
|
2216
|
+
url: "/api/v1/presets/{presetId}",
|
|
2217
|
+
...options
|
|
2428
2218
|
});
|
|
2429
2219
|
};
|
|
2430
|
-
var
|
|
2431
|
-
return (options.client ?? client).
|
|
2220
|
+
var getPreset = (options) => {
|
|
2221
|
+
return (options.client ?? client).get({
|
|
2432
2222
|
security: [
|
|
2433
2223
|
{
|
|
2434
2224
|
name: "Authorization",
|
|
2435
2225
|
type: "apiKey"
|
|
2436
2226
|
}
|
|
2437
2227
|
],
|
|
2438
|
-
url: "/api/v1/
|
|
2439
|
-
...options
|
|
2440
|
-
headers: {
|
|
2441
|
-
"Content-Type": "application/json",
|
|
2442
|
-
...options?.headers
|
|
2443
|
-
}
|
|
2228
|
+
url: "/api/v1/presets/{presetId}",
|
|
2229
|
+
...options
|
|
2444
2230
|
});
|
|
2445
2231
|
};
|
|
2446
|
-
var
|
|
2447
|
-
return (options.client ?? client).
|
|
2232
|
+
var createPresetAuditTrailJson = (options) => {
|
|
2233
|
+
return (options.client ?? client).get({
|
|
2448
2234
|
security: [
|
|
2449
2235
|
{
|
|
2450
2236
|
name: "Authorization",
|
|
2451
2237
|
type: "apiKey"
|
|
2452
2238
|
}
|
|
2453
2239
|
],
|
|
2454
|
-
url: "/api/v1/
|
|
2455
|
-
...options
|
|
2456
|
-
headers: {
|
|
2457
|
-
"Content-Type": "application/json",
|
|
2458
|
-
...options?.headers
|
|
2459
|
-
}
|
|
2240
|
+
url: "/api/v1/presets/{presetId}/audit_trail/json",
|
|
2241
|
+
...options
|
|
2460
2242
|
});
|
|
2461
2243
|
};
|
|
2462
|
-
var
|
|
2244
|
+
var consentCodeCallback = (options) => {
|
|
2245
|
+
return (options?.client ?? client).get({
|
|
2246
|
+
security: [
|
|
2247
|
+
{
|
|
2248
|
+
name: "Authorization",
|
|
2249
|
+
type: "apiKey"
|
|
2250
|
+
}
|
|
2251
|
+
],
|
|
2252
|
+
url: "/api/v1/docusign/redirectCodeCallback",
|
|
2253
|
+
...options
|
|
2254
|
+
});
|
|
2255
|
+
};
|
|
2256
|
+
var getOfflineNegotiatedDocumentAnnotations = (options) => {
|
|
2257
|
+
return (options.client ?? client).get({
|
|
2258
|
+
security: [
|
|
2259
|
+
{
|
|
2260
|
+
name: "Authorization",
|
|
2261
|
+
type: "apiKey"
|
|
2262
|
+
}
|
|
2263
|
+
],
|
|
2264
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/offline_negotiated_document/annotations",
|
|
2265
|
+
...options
|
|
2266
|
+
});
|
|
2267
|
+
};
|
|
2268
|
+
var acceptAllCustodianTemplatePositions = (options) => {
|
|
2463
2269
|
return (options.client ?? client).put({
|
|
2464
2270
|
security: [
|
|
2465
2271
|
{
|
|
@@ -2467,15 +2273,23 @@ var overrideElectionRejection = (options) => {
|
|
|
2467
2273
|
type: "apiKey"
|
|
2468
2274
|
}
|
|
2469
2275
|
],
|
|
2470
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2471
|
-
...options
|
|
2472
|
-
headers: {
|
|
2473
|
-
"Content-Type": "application/json",
|
|
2474
|
-
...options?.headers
|
|
2475
|
-
}
|
|
2276
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/acceptCustodianTemplatePosition",
|
|
2277
|
+
...options
|
|
2476
2278
|
});
|
|
2477
2279
|
};
|
|
2478
|
-
var
|
|
2280
|
+
var accountSummary = (options) => {
|
|
2281
|
+
return (options?.client ?? client).get({
|
|
2282
|
+
security: [
|
|
2283
|
+
{
|
|
2284
|
+
name: "Authorization",
|
|
2285
|
+
type: "apiKey"
|
|
2286
|
+
}
|
|
2287
|
+
],
|
|
2288
|
+
url: "/api/v1/account",
|
|
2289
|
+
...options
|
|
2290
|
+
});
|
|
2291
|
+
};
|
|
2292
|
+
var getApprovalComments = (options) => {
|
|
2479
2293
|
return (options.client ?? client).get({
|
|
2480
2294
|
security: [
|
|
2481
2295
|
{
|
|
@@ -2483,11 +2297,11 @@ var getApprovalHistory = (options) => {
|
|
|
2483
2297
|
type: "apiKey"
|
|
2484
2298
|
}
|
|
2485
2299
|
],
|
|
2486
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/
|
|
2300
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/comments/all",
|
|
2487
2301
|
...options
|
|
2488
2302
|
});
|
|
2489
2303
|
};
|
|
2490
|
-
var
|
|
2304
|
+
var listAdvisorsForWorkspace = (options) => {
|
|
2491
2305
|
return (options.client ?? client).get({
|
|
2492
2306
|
security: [
|
|
2493
2307
|
{
|
|
@@ -2495,39 +2309,35 @@ var getApprovalRound = (options) => {
|
|
|
2495
2309
|
type: "apiKey"
|
|
2496
2310
|
}
|
|
2497
2311
|
],
|
|
2498
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2312
|
+
url: "/api/v1/advisor/subAccounts/{subAccountId}/listAdvisors",
|
|
2499
2313
|
...options
|
|
2500
2314
|
});
|
|
2501
2315
|
};
|
|
2502
|
-
var
|
|
2503
|
-
return (options.client ?? client).
|
|
2316
|
+
var checkOfflineNegotiatedDocument = (options) => {
|
|
2317
|
+
return (options.client ?? client).get({
|
|
2504
2318
|
security: [
|
|
2505
2319
|
{
|
|
2506
2320
|
name: "Authorization",
|
|
2507
2321
|
type: "apiKey"
|
|
2508
2322
|
}
|
|
2509
2323
|
],
|
|
2510
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2511
|
-
...options
|
|
2512
|
-
headers: {
|
|
2513
|
-
"Content-Type": "application/json",
|
|
2514
|
-
...options?.headers
|
|
2515
|
-
}
|
|
2324
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/offline_negotiated_document/exists",
|
|
2325
|
+
...options
|
|
2516
2326
|
});
|
|
2517
2327
|
};
|
|
2518
|
-
var
|
|
2519
|
-
return (options.client ?? client).
|
|
2328
|
+
var downloadPreset = (options) => {
|
|
2329
|
+
return (options.client ?? client).get({
|
|
2520
2330
|
security: [
|
|
2521
2331
|
{
|
|
2522
2332
|
name: "Authorization",
|
|
2523
2333
|
type: "apiKey"
|
|
2524
2334
|
}
|
|
2525
2335
|
],
|
|
2526
|
-
url: "/api/v1/
|
|
2336
|
+
url: "/api/v1/presets/{presetId}/extension/{extension}",
|
|
2527
2337
|
...options
|
|
2528
2338
|
});
|
|
2529
2339
|
};
|
|
2530
|
-
var
|
|
2340
|
+
var assignUser = (options) => {
|
|
2531
2341
|
return (options.client ?? client).put({
|
|
2532
2342
|
security: [
|
|
2533
2343
|
{
|
|
@@ -2535,15 +2345,11 @@ var editApprovalComment = (options) => {
|
|
|
2535
2345
|
type: "apiKey"
|
|
2536
2346
|
}
|
|
2537
2347
|
],
|
|
2538
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2539
|
-
...options
|
|
2540
|
-
headers: {
|
|
2541
|
-
"Content-Type": "application/json",
|
|
2542
|
-
...options?.headers
|
|
2543
|
-
}
|
|
2348
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/owner/{userId}",
|
|
2349
|
+
...options
|
|
2544
2350
|
});
|
|
2545
2351
|
};
|
|
2546
|
-
var
|
|
2352
|
+
var getAllNegotiationCommentsForSubAccount = (options) => {
|
|
2547
2353
|
return (options.client ?? client).get({
|
|
2548
2354
|
security: [
|
|
2549
2355
|
{
|
|
@@ -2551,27 +2357,23 @@ var getApprovalComments = (options) => {
|
|
|
2551
2357
|
type: "apiKey"
|
|
2552
2358
|
}
|
|
2553
2359
|
],
|
|
2554
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2360
|
+
url: "/api/v1/subAccounts/{subAccountId}/comments/xlsx",
|
|
2555
2361
|
...options
|
|
2556
2362
|
});
|
|
2557
2363
|
};
|
|
2558
|
-
var
|
|
2559
|
-
return (options.client ?? client).
|
|
2364
|
+
var getExtractionResults = (options) => {
|
|
2365
|
+
return (options.client ?? client).get({
|
|
2560
2366
|
security: [
|
|
2561
2367
|
{
|
|
2562
2368
|
name: "Authorization",
|
|
2563
2369
|
type: "apiKey"
|
|
2564
2370
|
}
|
|
2565
2371
|
],
|
|
2566
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2567
|
-
...options
|
|
2568
|
-
headers: {
|
|
2569
|
-
"Content-Type": "application/json",
|
|
2570
|
-
...options?.headers
|
|
2571
|
-
}
|
|
2372
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/getResults",
|
|
2373
|
+
...options
|
|
2572
2374
|
});
|
|
2573
2375
|
};
|
|
2574
|
-
var
|
|
2376
|
+
var applyExtractedAnswers = (options) => {
|
|
2575
2377
|
return (options.client ?? client).put({
|
|
2576
2378
|
security: [
|
|
2577
2379
|
{
|
|
@@ -2579,27 +2381,23 @@ var sendToCounterpartyInitial = (options) => {
|
|
|
2579
2381
|
type: "apiKey"
|
|
2580
2382
|
}
|
|
2581
2383
|
],
|
|
2582
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2583
|
-
...options
|
|
2584
|
-
headers: {
|
|
2585
|
-
"Content-Type": "application/json",
|
|
2586
|
-
...options?.headers
|
|
2587
|
-
}
|
|
2384
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/apply",
|
|
2385
|
+
...options
|
|
2588
2386
|
});
|
|
2589
2387
|
};
|
|
2590
|
-
var
|
|
2591
|
-
return (options.client ?? client).
|
|
2388
|
+
var getOriginalAnswersForForkNegotiation = (options) => {
|
|
2389
|
+
return (options.client ?? client).get({
|
|
2592
2390
|
security: [
|
|
2593
2391
|
{
|
|
2594
2392
|
name: "Authorization",
|
|
2595
2393
|
type: "apiKey"
|
|
2596
2394
|
}
|
|
2597
2395
|
],
|
|
2598
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{
|
|
2396
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{forkedNegotiationId}/originalAnswers",
|
|
2599
2397
|
...options
|
|
2600
2398
|
});
|
|
2601
2399
|
};
|
|
2602
|
-
var
|
|
2400
|
+
var markAsFinal = (options) => {
|
|
2603
2401
|
return (options.client ?? client).put({
|
|
2604
2402
|
security: [
|
|
2605
2403
|
{
|
|
@@ -2607,51 +2405,43 @@ var confirm = (options) => {
|
|
|
2607
2405
|
type: "apiKey"
|
|
2608
2406
|
}
|
|
2609
2407
|
],
|
|
2610
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2408
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/markAsFinal",
|
|
2611
2409
|
...options
|
|
2612
2410
|
});
|
|
2613
2411
|
};
|
|
2614
|
-
var
|
|
2615
|
-
return (options.client ?? client).
|
|
2412
|
+
var getPreviousMajorVersionsNestedAnswerElections = (options) => {
|
|
2413
|
+
return (options.client ?? client).get({
|
|
2616
2414
|
security: [
|
|
2617
2415
|
{
|
|
2618
2416
|
name: "Authorization",
|
|
2619
2417
|
type: "apiKey"
|
|
2620
2418
|
}
|
|
2621
2419
|
],
|
|
2622
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2623
|
-
...options
|
|
2624
|
-
headers: {
|
|
2625
|
-
"Content-Type": "application/json",
|
|
2626
|
-
...options?.headers
|
|
2627
|
-
}
|
|
2420
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/nested/{nestedAnswersId}/previousElections",
|
|
2421
|
+
...options
|
|
2628
2422
|
});
|
|
2629
2423
|
};
|
|
2630
|
-
var
|
|
2631
|
-
return (options.client ?? client).
|
|
2424
|
+
var listNegotiations = (options) => {
|
|
2425
|
+
return (options.client ?? client).get({
|
|
2632
2426
|
security: [
|
|
2633
2427
|
{
|
|
2634
2428
|
name: "Authorization",
|
|
2635
2429
|
type: "apiKey"
|
|
2636
2430
|
}
|
|
2637
2431
|
],
|
|
2638
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2639
|
-
...options
|
|
2640
|
-
headers: {
|
|
2641
|
-
"Content-Type": "application/json",
|
|
2642
|
-
...options?.headers
|
|
2643
|
-
}
|
|
2432
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations",
|
|
2433
|
+
...options
|
|
2644
2434
|
});
|
|
2645
2435
|
};
|
|
2646
|
-
var
|
|
2647
|
-
return (options.client ?? client).
|
|
2436
|
+
var createNegotiation = (options) => {
|
|
2437
|
+
return (options.client ?? client).post({
|
|
2648
2438
|
security: [
|
|
2649
2439
|
{
|
|
2650
2440
|
name: "Authorization",
|
|
2651
2441
|
type: "apiKey"
|
|
2652
2442
|
}
|
|
2653
2443
|
],
|
|
2654
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations
|
|
2444
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations",
|
|
2655
2445
|
...options,
|
|
2656
2446
|
headers: {
|
|
2657
2447
|
"Content-Type": "application/json",
|
|
@@ -2659,19 +2449,19 @@ var retract = (options) => {
|
|
|
2659
2449
|
}
|
|
2660
2450
|
});
|
|
2661
2451
|
};
|
|
2662
|
-
var
|
|
2663
|
-
return (options.client ?? client).
|
|
2452
|
+
var presetGetNestedAnswers = (options) => {
|
|
2453
|
+
return (options.client ?? client).get({
|
|
2664
2454
|
security: [
|
|
2665
2455
|
{
|
|
2666
2456
|
name: "Authorization",
|
|
2667
2457
|
type: "apiKey"
|
|
2668
2458
|
}
|
|
2669
2459
|
],
|
|
2670
|
-
url: "/api/v1/
|
|
2460
|
+
url: "/api/v1/presets/{presetId}/answers/nested/{nestedAnswersId}",
|
|
2671
2461
|
...options
|
|
2672
2462
|
});
|
|
2673
2463
|
};
|
|
2674
|
-
var
|
|
2464
|
+
var presetSetNestedAnswers = (options) => {
|
|
2675
2465
|
return (options.client ?? client).put({
|
|
2676
2466
|
security: [
|
|
2677
2467
|
{
|
|
@@ -2679,7 +2469,7 @@ var revertToAmending = (options) => {
|
|
|
2679
2469
|
type: "apiKey"
|
|
2680
2470
|
}
|
|
2681
2471
|
],
|
|
2682
|
-
url: "/api/v1/
|
|
2472
|
+
url: "/api/v1/presets/{presetId}/answers/nested/{nestedAnswersId}",
|
|
2683
2473
|
...options,
|
|
2684
2474
|
headers: {
|
|
2685
2475
|
"Content-Type": "application/json",
|
|
@@ -2687,7 +2477,7 @@ var revertToAmending = (options) => {
|
|
|
2687
2477
|
}
|
|
2688
2478
|
});
|
|
2689
2479
|
};
|
|
2690
|
-
var
|
|
2480
|
+
var createPresetAuditTrailXlsx = (options) => {
|
|
2691
2481
|
return (options.client ?? client).get({
|
|
2692
2482
|
security: [
|
|
2693
2483
|
{
|
|
@@ -2695,35 +2485,35 @@ var getComments = (options) => {
|
|
|
2695
2485
|
type: "apiKey"
|
|
2696
2486
|
}
|
|
2697
2487
|
],
|
|
2698
|
-
url: "/api/v1/
|
|
2488
|
+
url: "/api/v1/presets/{presetId}/audit_trail/xlsx",
|
|
2699
2489
|
...options
|
|
2700
2490
|
});
|
|
2701
2491
|
};
|
|
2702
|
-
var
|
|
2703
|
-
return (options.client ?? client).
|
|
2492
|
+
var clonePreset = (options) => {
|
|
2493
|
+
return (options.client ?? client).post({
|
|
2704
2494
|
security: [
|
|
2705
2495
|
{
|
|
2706
2496
|
name: "Authorization",
|
|
2707
2497
|
type: "apiKey"
|
|
2708
2498
|
}
|
|
2709
2499
|
],
|
|
2710
|
-
url: "/api/v1/
|
|
2500
|
+
url: "/api/v1/presets/{presetId}/clone",
|
|
2711
2501
|
...options
|
|
2712
2502
|
});
|
|
2713
2503
|
};
|
|
2714
|
-
var
|
|
2715
|
-
return (options
|
|
2504
|
+
var obtainConsent = (options) => {
|
|
2505
|
+
return (options?.client ?? client).get({
|
|
2716
2506
|
security: [
|
|
2717
2507
|
{
|
|
2718
2508
|
name: "Authorization",
|
|
2719
2509
|
type: "apiKey"
|
|
2720
2510
|
}
|
|
2721
2511
|
],
|
|
2722
|
-
url: "/api/v1/
|
|
2512
|
+
url: "/api/v1/docusign/connect",
|
|
2723
2513
|
...options
|
|
2724
2514
|
});
|
|
2725
2515
|
};
|
|
2726
|
-
var
|
|
2516
|
+
var checkAuxiliaryDocument = (options) => {
|
|
2727
2517
|
return (options.client ?? client).get({
|
|
2728
2518
|
security: [
|
|
2729
2519
|
{
|
|
@@ -2731,11 +2521,11 @@ var getChannelTimeline = (options) => {
|
|
|
2731
2521
|
type: "apiKey"
|
|
2732
2522
|
}
|
|
2733
2523
|
],
|
|
2734
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2524
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/auxiliary_document/exists",
|
|
2735
2525
|
...options
|
|
2736
2526
|
});
|
|
2737
2527
|
};
|
|
2738
|
-
var
|
|
2528
|
+
var listDocumentsWithPagination = (options) => {
|
|
2739
2529
|
return (options.client ?? client).get({
|
|
2740
2530
|
security: [
|
|
2741
2531
|
{
|
|
@@ -2743,31 +2533,31 @@ var getTimeline = (options) => {
|
|
|
2743
2533
|
type: "apiKey"
|
|
2744
2534
|
}
|
|
2745
2535
|
],
|
|
2746
|
-
url: "/api/v1/
|
|
2536
|
+
url: "/api/v1/documentsWithPaging",
|
|
2747
2537
|
...options
|
|
2748
2538
|
});
|
|
2749
2539
|
};
|
|
2750
|
-
var
|
|
2751
|
-
return (options
|
|
2540
|
+
var emailPreferences = (options) => {
|
|
2541
|
+
return (options?.client ?? client).get({
|
|
2752
2542
|
security: [
|
|
2753
2543
|
{
|
|
2754
2544
|
name: "Authorization",
|
|
2755
2545
|
type: "apiKey"
|
|
2756
2546
|
}
|
|
2757
2547
|
],
|
|
2758
|
-
url: "/api/v1/
|
|
2548
|
+
url: "/api/v1/emailPreferences",
|
|
2759
2549
|
...options
|
|
2760
2550
|
});
|
|
2761
2551
|
};
|
|
2762
|
-
var
|
|
2763
|
-
return (options.client ?? client).
|
|
2552
|
+
var patchEmailPreferences = (options) => {
|
|
2553
|
+
return (options.client ?? client).patch({
|
|
2764
2554
|
security: [
|
|
2765
2555
|
{
|
|
2766
2556
|
name: "Authorization",
|
|
2767
2557
|
type: "apiKey"
|
|
2768
2558
|
}
|
|
2769
2559
|
],
|
|
2770
|
-
url: "/api/v1/
|
|
2560
|
+
url: "/api/v1/emailPreferences",
|
|
2771
2561
|
...options,
|
|
2772
2562
|
headers: {
|
|
2773
2563
|
"Content-Type": "application/json",
|
|
@@ -2775,7 +2565,7 @@ var markActivityEventsAsViewed = (options) => {
|
|
|
2775
2565
|
}
|
|
2776
2566
|
});
|
|
2777
2567
|
};
|
|
2778
|
-
var
|
|
2568
|
+
var confirmExecutionVersion = (options) => {
|
|
2779
2569
|
return (options.client ?? client).put({
|
|
2780
2570
|
security: [
|
|
2781
2571
|
{
|
|
@@ -2783,63 +2573,52 @@ var markCommentEventsAsViewed = (options) => {
|
|
|
2783
2573
|
type: "apiKey"
|
|
2784
2574
|
}
|
|
2785
2575
|
],
|
|
2786
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2787
|
-
...options
|
|
2788
|
-
headers: {
|
|
2789
|
-
"Content-Type": "application/json",
|
|
2790
|
-
...options?.headers
|
|
2791
|
-
}
|
|
2576
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/confirmExecutionVersion",
|
|
2577
|
+
...options
|
|
2792
2578
|
});
|
|
2793
2579
|
};
|
|
2794
|
-
var
|
|
2795
|
-
return (options.client ?? client).
|
|
2580
|
+
var listAllPresetsForSubAccountV2 = (options) => {
|
|
2581
|
+
return (options.client ?? client).get({
|
|
2796
2582
|
security: [
|
|
2797
2583
|
{
|
|
2798
2584
|
name: "Authorization",
|
|
2799
2585
|
type: "apiKey"
|
|
2800
2586
|
}
|
|
2801
2587
|
],
|
|
2802
|
-
url: "/api/
|
|
2803
|
-
...options
|
|
2804
|
-
headers: {
|
|
2805
|
-
"Content-Type": "application/json",
|
|
2806
|
-
...options?.headers
|
|
2807
|
-
}
|
|
2588
|
+
url: "/api/v2/subAccounts/{subAccountId}/presets",
|
|
2589
|
+
...options
|
|
2808
2590
|
});
|
|
2809
2591
|
};
|
|
2810
|
-
var
|
|
2811
|
-
return (options.client ?? client).
|
|
2592
|
+
var listExternalAttachments = (options) => {
|
|
2593
|
+
return (options.client ?? client).get({
|
|
2812
2594
|
security: [
|
|
2813
2595
|
{
|
|
2814
2596
|
name: "Authorization",
|
|
2815
2597
|
type: "apiKey"
|
|
2816
2598
|
}
|
|
2817
2599
|
],
|
|
2818
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2819
|
-
...options
|
|
2820
|
-
headers: {
|
|
2821
|
-
"Content-Type": "application/json",
|
|
2822
|
-
...options?.headers
|
|
2823
|
-
}
|
|
2600
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/attachment",
|
|
2601
|
+
...options
|
|
2824
2602
|
});
|
|
2825
2603
|
};
|
|
2826
|
-
var
|
|
2827
|
-
return (options.client ?? client).
|
|
2604
|
+
var setExternalAttachments = (options) => {
|
|
2605
|
+
return (options.client ?? client).post({
|
|
2606
|
+
...import_client_fetch2.formDataBodySerializer,
|
|
2828
2607
|
security: [
|
|
2829
2608
|
{
|
|
2830
2609
|
name: "Authorization",
|
|
2831
2610
|
type: "apiKey"
|
|
2832
2611
|
}
|
|
2833
2612
|
],
|
|
2834
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2613
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/attachment",
|
|
2835
2614
|
...options,
|
|
2836
2615
|
headers: {
|
|
2837
|
-
"Content-Type":
|
|
2616
|
+
"Content-Type": null,
|
|
2838
2617
|
...options?.headers
|
|
2839
2618
|
}
|
|
2840
2619
|
});
|
|
2841
2620
|
};
|
|
2842
|
-
var
|
|
2621
|
+
var setExternalAttachment = (options) => {
|
|
2843
2622
|
return (options.client ?? client).put({
|
|
2844
2623
|
security: [
|
|
2845
2624
|
{
|
|
@@ -2847,15 +2626,15 @@ var updateComment = (options) => {
|
|
|
2847
2626
|
type: "apiKey"
|
|
2848
2627
|
}
|
|
2849
2628
|
],
|
|
2850
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
2629
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/attachment",
|
|
2851
2630
|
...options,
|
|
2852
2631
|
headers: {
|
|
2853
|
-
"Content-Type": "application/
|
|
2632
|
+
"Content-Type": "application/octet-stream",
|
|
2854
2633
|
...options?.headers
|
|
2855
2634
|
}
|
|
2856
2635
|
});
|
|
2857
2636
|
};
|
|
2858
|
-
var
|
|
2637
|
+
var auditTrailForSubAccountAsExcel = (options) => {
|
|
2859
2638
|
return (options.client ?? client).get({
|
|
2860
2639
|
security: [
|
|
2861
2640
|
{
|
|
@@ -2863,19 +2642,19 @@ var getSubAccount = (options) => {
|
|
|
2863
2642
|
type: "apiKey"
|
|
2864
2643
|
}
|
|
2865
2644
|
],
|
|
2866
|
-
url: "/api/v1/subAccounts/{subAccountId}",
|
|
2645
|
+
url: "/api/v1/subAccounts/{subAccountId}/audit_trail/xlsx",
|
|
2867
2646
|
...options
|
|
2868
2647
|
});
|
|
2869
2648
|
};
|
|
2870
|
-
var
|
|
2871
|
-
return (options.client ?? client).
|
|
2649
|
+
var validateDraftReceiverEmails = (options) => {
|
|
2650
|
+
return (options.client ?? client).post({
|
|
2872
2651
|
security: [
|
|
2873
2652
|
{
|
|
2874
2653
|
name: "Authorization",
|
|
2875
2654
|
type: "apiKey"
|
|
2876
2655
|
}
|
|
2877
2656
|
],
|
|
2878
|
-
url: "/api/v1/subAccounts/{subAccountId}",
|
|
2657
|
+
url: "/api/v1/subAccounts/{subAccountId}/bulkSets/validateEmails",
|
|
2879
2658
|
...options,
|
|
2880
2659
|
headers: {
|
|
2881
2660
|
"Content-Type": "application/json",
|
|
@@ -2883,31 +2662,7 @@ var updateSubAccount = (options) => {
|
|
|
2883
2662
|
}
|
|
2884
2663
|
});
|
|
2885
2664
|
};
|
|
2886
|
-
var
|
|
2887
|
-
return (options?.client ?? client).get({
|
|
2888
|
-
security: [
|
|
2889
|
-
{
|
|
2890
|
-
name: "Authorization",
|
|
2891
|
-
type: "apiKey"
|
|
2892
|
-
}
|
|
2893
|
-
],
|
|
2894
|
-
url: "/api/v1/subAccounts",
|
|
2895
|
-
...options
|
|
2896
|
-
});
|
|
2897
|
-
};
|
|
2898
|
-
var getLegacyStatistics = (options) => {
|
|
2899
|
-
return (options.client ?? client).get({
|
|
2900
|
-
security: [
|
|
2901
|
-
{
|
|
2902
|
-
name: "Authorization",
|
|
2903
|
-
type: "apiKey"
|
|
2904
|
-
}
|
|
2905
|
-
],
|
|
2906
|
-
url: "/api/v1/subAccounts/{subAccountId}/statistics",
|
|
2907
|
-
...options
|
|
2908
|
-
});
|
|
2909
|
-
};
|
|
2910
|
-
var getStatistics = (options) => {
|
|
2665
|
+
var downloadPostExecutionPack = (options) => {
|
|
2911
2666
|
return (options.client ?? client).get({
|
|
2912
2667
|
security: [
|
|
2913
2668
|
{
|
|
@@ -2915,35 +2670,39 @@ var getStatistics = (options) => {
|
|
|
2915
2670
|
type: "apiKey"
|
|
2916
2671
|
}
|
|
2917
2672
|
],
|
|
2918
|
-
url: "/api/
|
|
2673
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/postExecutionPack",
|
|
2919
2674
|
...options
|
|
2920
2675
|
});
|
|
2921
2676
|
};
|
|
2922
|
-
var
|
|
2923
|
-
return (options.client ?? client).
|
|
2677
|
+
var markApprovalCommentsAsViewed = (options) => {
|
|
2678
|
+
return (options.client ?? client).put({
|
|
2924
2679
|
security: [
|
|
2925
2680
|
{
|
|
2926
2681
|
name: "Authorization",
|
|
2927
2682
|
type: "apiKey"
|
|
2928
2683
|
}
|
|
2929
2684
|
],
|
|
2930
|
-
url: "/api/
|
|
2931
|
-
...options
|
|
2685
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/comments/markAsRead",
|
|
2686
|
+
...options,
|
|
2687
|
+
headers: {
|
|
2688
|
+
"Content-Type": "application/json",
|
|
2689
|
+
...options?.headers
|
|
2690
|
+
}
|
|
2932
2691
|
});
|
|
2933
2692
|
};
|
|
2934
|
-
var
|
|
2935
|
-
return (options.client ?? client).
|
|
2693
|
+
var acceptCounterpartyPosition = (options) => {
|
|
2694
|
+
return (options.client ?? client).put({
|
|
2936
2695
|
security: [
|
|
2937
2696
|
{
|
|
2938
2697
|
name: "Authorization",
|
|
2939
2698
|
type: "apiKey"
|
|
2940
2699
|
}
|
|
2941
2700
|
],
|
|
2942
|
-
url: "/api/
|
|
2701
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/elections/{electionId}/acceptCpPosition/{partyId}",
|
|
2943
2702
|
...options
|
|
2944
2703
|
});
|
|
2945
2704
|
};
|
|
2946
|
-
var
|
|
2705
|
+
var cancelNegotiations = (options) => {
|
|
2947
2706
|
return (options.client ?? client).put({
|
|
2948
2707
|
security: [
|
|
2949
2708
|
{
|
|
@@ -2951,7 +2710,7 @@ var assignEntity = (options) => {
|
|
|
2951
2710
|
type: "apiKey"
|
|
2952
2711
|
}
|
|
2953
2712
|
],
|
|
2954
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2713
|
+
url: "/api/v1/subAccounts/{subAccountId}/cancelNegotiations",
|
|
2955
2714
|
...options,
|
|
2956
2715
|
headers: {
|
|
2957
2716
|
"Content-Type": "application/json",
|
|
@@ -2959,35 +2718,31 @@ var assignEntity = (options) => {
|
|
|
2959
2718
|
}
|
|
2960
2719
|
});
|
|
2961
2720
|
};
|
|
2962
|
-
var
|
|
2963
|
-
return (options.client ?? client).
|
|
2721
|
+
var getNegotiationDraftingNotes = (options) => {
|
|
2722
|
+
return (options.client ?? client).get({
|
|
2964
2723
|
security: [
|
|
2965
2724
|
{
|
|
2966
2725
|
name: "Authorization",
|
|
2967
2726
|
type: "apiKey"
|
|
2968
2727
|
}
|
|
2969
2728
|
],
|
|
2970
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2971
|
-
...options
|
|
2972
|
-
headers: {
|
|
2973
|
-
"Content-Type": "application/json",
|
|
2974
|
-
...options?.headers
|
|
2975
|
-
}
|
|
2729
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/negotiationDraftingNotes",
|
|
2730
|
+
...options
|
|
2976
2731
|
});
|
|
2977
2732
|
};
|
|
2978
|
-
var
|
|
2979
|
-
return (options
|
|
2733
|
+
var auditTrailFilters = (options) => {
|
|
2734
|
+
return (options?.client ?? client).get({
|
|
2980
2735
|
security: [
|
|
2981
2736
|
{
|
|
2982
2737
|
name: "Authorization",
|
|
2983
2738
|
type: "apiKey"
|
|
2984
2739
|
}
|
|
2985
2740
|
],
|
|
2986
|
-
url: "/api/v1/
|
|
2741
|
+
url: "/api/v1/account/audit_trail/filters",
|
|
2987
2742
|
...options
|
|
2988
2743
|
});
|
|
2989
2744
|
};
|
|
2990
|
-
var
|
|
2745
|
+
var getCommentSummary = (options) => {
|
|
2991
2746
|
return (options.client ?? client).get({
|
|
2992
2747
|
security: [
|
|
2993
2748
|
{
|
|
@@ -2995,23 +2750,23 @@ var auditTrailForSubAccountAsExcel = (options) => {
|
|
|
2995
2750
|
type: "apiKey"
|
|
2996
2751
|
}
|
|
2997
2752
|
],
|
|
2998
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2753
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/commentSummary",
|
|
2999
2754
|
...options
|
|
3000
2755
|
});
|
|
3001
2756
|
};
|
|
3002
|
-
var
|
|
3003
|
-
return (options
|
|
2757
|
+
var deleteExecutionAttachment = (options) => {
|
|
2758
|
+
return (options.client ?? client).delete({
|
|
3004
2759
|
security: [
|
|
3005
2760
|
{
|
|
3006
2761
|
name: "Authorization",
|
|
3007
2762
|
type: "apiKey"
|
|
3008
2763
|
}
|
|
3009
2764
|
],
|
|
3010
|
-
url: "/api/v1/
|
|
2765
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment/{fileName}",
|
|
3011
2766
|
...options
|
|
3012
2767
|
});
|
|
3013
2768
|
};
|
|
3014
|
-
var
|
|
2769
|
+
var getExecutionAttachment = (options) => {
|
|
3015
2770
|
return (options.client ?? client).get({
|
|
3016
2771
|
security: [
|
|
3017
2772
|
{
|
|
@@ -3019,11 +2774,11 @@ var auditTrailForAccountAsJson = (options) => {
|
|
|
3019
2774
|
type: "apiKey"
|
|
3020
2775
|
}
|
|
3021
2776
|
],
|
|
3022
|
-
url: "/api/v1/
|
|
2777
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment/{fileName}",
|
|
3023
2778
|
...options
|
|
3024
2779
|
});
|
|
3025
2780
|
};
|
|
3026
|
-
var
|
|
2781
|
+
var getUsersForPicker = (options) => {
|
|
3027
2782
|
return (options.client ?? client).get({
|
|
3028
2783
|
security: [
|
|
3029
2784
|
{
|
|
@@ -3031,31 +2786,35 @@ var auditTrailForAccountAsExcel = (options) => {
|
|
|
3031
2786
|
type: "apiKey"
|
|
3032
2787
|
}
|
|
3033
2788
|
],
|
|
3034
|
-
url: "/api/v1/
|
|
2789
|
+
url: "/api/v1/subaccount/{subAccountId}/usersForPicker",
|
|
3035
2790
|
...options
|
|
3036
2791
|
});
|
|
3037
2792
|
};
|
|
3038
|
-
var
|
|
3039
|
-
return (options
|
|
2793
|
+
var getMultipleNestedAnswers = (options) => {
|
|
2794
|
+
return (options.client ?? client).post({
|
|
3040
2795
|
security: [
|
|
3041
2796
|
{
|
|
3042
2797
|
name: "Authorization",
|
|
3043
2798
|
type: "apiKey"
|
|
3044
2799
|
}
|
|
3045
2800
|
],
|
|
3046
|
-
url: "/api/v1/
|
|
3047
|
-
...options
|
|
2801
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/nested/bulk",
|
|
2802
|
+
...options,
|
|
2803
|
+
headers: {
|
|
2804
|
+
"Content-Type": "application/json",
|
|
2805
|
+
...options?.headers
|
|
2806
|
+
}
|
|
3048
2807
|
});
|
|
3049
2808
|
};
|
|
3050
|
-
var
|
|
3051
|
-
return (options.client ?? client).
|
|
2809
|
+
var setMultipleNestedAnswers = (options) => {
|
|
2810
|
+
return (options.client ?? client).put({
|
|
3052
2811
|
security: [
|
|
3053
2812
|
{
|
|
3054
2813
|
name: "Authorization",
|
|
3055
2814
|
type: "apiKey"
|
|
3056
2815
|
}
|
|
3057
2816
|
],
|
|
3058
|
-
url: "/api/v1/
|
|
2817
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/nested/bulk",
|
|
3059
2818
|
...options,
|
|
3060
2819
|
headers: {
|
|
3061
2820
|
"Content-Type": "application/json",
|
|
@@ -3063,19 +2822,19 @@ var patchEmailPreferences = (options) => {
|
|
|
3063
2822
|
}
|
|
3064
2823
|
});
|
|
3065
2824
|
};
|
|
3066
|
-
var
|
|
3067
|
-
return (options.client ?? client).
|
|
2825
|
+
var deleteBulkSetAttachment = (options) => {
|
|
2826
|
+
return (options.client ?? client).delete({
|
|
3068
2827
|
security: [
|
|
3069
2828
|
{
|
|
3070
2829
|
name: "Authorization",
|
|
3071
2830
|
type: "apiKey"
|
|
3072
2831
|
}
|
|
3073
2832
|
],
|
|
3074
|
-
url: "/api/v1/
|
|
2833
|
+
url: "/api/v1/bulkSets/{bulkSetId}/attachment/{fileName}",
|
|
3075
2834
|
...options
|
|
3076
2835
|
});
|
|
3077
2836
|
};
|
|
3078
|
-
var
|
|
2837
|
+
var getBulkSetAttachment = (options) => {
|
|
3079
2838
|
return (options.client ?? client).get({
|
|
3080
2839
|
security: [
|
|
3081
2840
|
{
|
|
@@ -3083,23 +2842,23 @@ var listPotentialPresetAdvisors = (options) => {
|
|
|
3083
2842
|
type: "apiKey"
|
|
3084
2843
|
}
|
|
3085
2844
|
],
|
|
3086
|
-
url: "/api/v1/
|
|
2845
|
+
url: "/api/v1/bulkSets/{bulkSetId}/attachment/{fileName}",
|
|
3087
2846
|
...options
|
|
3088
2847
|
});
|
|
3089
2848
|
};
|
|
3090
|
-
var
|
|
3091
|
-
return (options
|
|
2849
|
+
var getDocument = (options) => {
|
|
2850
|
+
return (options.client ?? client).get({
|
|
3092
2851
|
security: [
|
|
3093
2852
|
{
|
|
3094
2853
|
name: "Authorization",
|
|
3095
2854
|
type: "apiKey"
|
|
3096
2855
|
}
|
|
3097
2856
|
],
|
|
3098
|
-
url: "/api/v1/
|
|
2857
|
+
url: "/api/v1/documents/{documentId}",
|
|
3099
2858
|
...options
|
|
3100
2859
|
});
|
|
3101
2860
|
};
|
|
3102
|
-
var
|
|
2861
|
+
var listBulkSets = (options) => {
|
|
3103
2862
|
return (options.client ?? client).get({
|
|
3104
2863
|
security: [
|
|
3105
2864
|
{
|
|
@@ -3107,19 +2866,19 @@ var listAdvisorsForWorkspace = (options) => {
|
|
|
3107
2866
|
type: "apiKey"
|
|
3108
2867
|
}
|
|
3109
2868
|
],
|
|
3110
|
-
url: "/api/v1/
|
|
2869
|
+
url: "/api/v1/subAccounts/{subAccountId}/bulkSets",
|
|
3111
2870
|
...options
|
|
3112
2871
|
});
|
|
3113
2872
|
};
|
|
3114
|
-
var
|
|
3115
|
-
return (options.client ?? client).
|
|
2873
|
+
var createBulkSet = (options) => {
|
|
2874
|
+
return (options.client ?? client).post({
|
|
3116
2875
|
security: [
|
|
3117
2876
|
{
|
|
3118
2877
|
name: "Authorization",
|
|
3119
2878
|
type: "apiKey"
|
|
3120
2879
|
}
|
|
3121
2880
|
],
|
|
3122
|
-
url: "/api/v1/
|
|
2881
|
+
url: "/api/v1/subAccounts/{subAccountId}/bulkSets",
|
|
3123
2882
|
...options,
|
|
3124
2883
|
headers: {
|
|
3125
2884
|
"Content-Type": "application/json",
|
|
@@ -3127,7 +2886,7 @@ var revokeNegotiationsAccess = (options) => {
|
|
|
3127
2886
|
}
|
|
3128
2887
|
});
|
|
3129
2888
|
};
|
|
3130
|
-
var
|
|
2889
|
+
var addApprovalComment = (options) => {
|
|
3131
2890
|
return (options.client ?? client).post({
|
|
3132
2891
|
security: [
|
|
3133
2892
|
{
|
|
@@ -3135,7 +2894,7 @@ var grantNegotiationsAccess = (options) => {
|
|
|
3135
2894
|
type: "apiKey"
|
|
3136
2895
|
}
|
|
3137
2896
|
],
|
|
3138
|
-
url: "/api/v1/
|
|
2897
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/comment",
|
|
3139
2898
|
...options,
|
|
3140
2899
|
headers: {
|
|
3141
2900
|
"Content-Type": "application/json",
|
|
@@ -3143,7 +2902,7 @@ var grantNegotiationsAccess = (options) => {
|
|
|
3143
2902
|
}
|
|
3144
2903
|
});
|
|
3145
2904
|
};
|
|
3146
|
-
var
|
|
2905
|
+
var scheduleExtraction = (options) => {
|
|
3147
2906
|
return (options.client ?? client).put({
|
|
3148
2907
|
security: [
|
|
3149
2908
|
{
|
|
@@ -3151,35 +2910,43 @@ var grantAllNegotiationsAccess = (options) => {
|
|
|
3151
2910
|
type: "apiKey"
|
|
3152
2911
|
}
|
|
3153
2912
|
],
|
|
3154
|
-
url: "/api/v1/
|
|
2913
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extraction/start",
|
|
3155
2914
|
...options
|
|
3156
2915
|
});
|
|
3157
2916
|
};
|
|
3158
|
-
var
|
|
3159
|
-
return (options.client ?? client).
|
|
2917
|
+
var negotiationsFilter = (options) => {
|
|
2918
|
+
return (options.client ?? client).get({
|
|
3160
2919
|
security: [
|
|
3161
2920
|
{
|
|
3162
2921
|
name: "Authorization",
|
|
3163
2922
|
type: "apiKey"
|
|
3164
2923
|
}
|
|
3165
2924
|
],
|
|
3166
|
-
url: "/api/v1/
|
|
3167
|
-
...options
|
|
3168
|
-
headers: {
|
|
3169
|
-
"Content-Type": "application/json",
|
|
3170
|
-
...options?.headers
|
|
3171
|
-
}
|
|
2925
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/filters/{filter}",
|
|
2926
|
+
...options
|
|
3172
2927
|
});
|
|
3173
2928
|
};
|
|
3174
|
-
var
|
|
3175
|
-
return (options.client ?? client).
|
|
2929
|
+
var createAuditTrailXlsx = (options) => {
|
|
2930
|
+
return (options.client ?? client).get({
|
|
3176
2931
|
security: [
|
|
3177
2932
|
{
|
|
3178
2933
|
name: "Authorization",
|
|
3179
2934
|
type: "apiKey"
|
|
3180
2935
|
}
|
|
3181
2936
|
],
|
|
3182
|
-
url: "/api/v1/
|
|
2937
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/audit_trail/xlsx",
|
|
2938
|
+
...options
|
|
2939
|
+
});
|
|
2940
|
+
};
|
|
2941
|
+
var setPreset = (options) => {
|
|
2942
|
+
return (options.client ?? client).put({
|
|
2943
|
+
security: [
|
|
2944
|
+
{
|
|
2945
|
+
name: "Authorization",
|
|
2946
|
+
type: "apiKey"
|
|
2947
|
+
}
|
|
2948
|
+
],
|
|
2949
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/preset",
|
|
3183
2950
|
...options,
|
|
3184
2951
|
headers: {
|
|
3185
2952
|
"Content-Type": "application/json",
|
|
@@ -3187,7 +2954,7 @@ var grantPresetsAccess = (options) => {
|
|
|
3187
2954
|
}
|
|
3188
2955
|
});
|
|
3189
2956
|
};
|
|
3190
|
-
var
|
|
2957
|
+
var usersWithNegotiationAccess = (options) => {
|
|
3191
2958
|
return (options.client ?? client).get({
|
|
3192
2959
|
security: [
|
|
3193
2960
|
{
|
|
@@ -3195,27 +2962,35 @@ var getGroupNames = (options) => {
|
|
|
3195
2962
|
type: "apiKey"
|
|
3196
2963
|
}
|
|
3197
2964
|
],
|
|
3198
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
2965
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/users",
|
|
3199
2966
|
...options
|
|
3200
2967
|
});
|
|
3201
2968
|
};
|
|
3202
|
-
var
|
|
3203
|
-
return (options.client ?? client).
|
|
2969
|
+
var getStatisticsOverview = (options) => {
|
|
2970
|
+
return (options.client ?? client).get({
|
|
3204
2971
|
security: [
|
|
3205
2972
|
{
|
|
3206
2973
|
name: "Authorization",
|
|
3207
2974
|
type: "apiKey"
|
|
3208
2975
|
}
|
|
3209
2976
|
],
|
|
3210
|
-
url: "/api/
|
|
3211
|
-
...options
|
|
3212
|
-
headers: {
|
|
3213
|
-
"Content-Type": "application/json",
|
|
3214
|
-
...options?.headers
|
|
3215
|
-
}
|
|
2977
|
+
url: "/api/v2/subAccounts/{subAccountId}/statisticsOverview",
|
|
2978
|
+
...options
|
|
3216
2979
|
});
|
|
3217
2980
|
};
|
|
3218
|
-
var
|
|
2981
|
+
var getSubAccount = (options) => {
|
|
2982
|
+
return (options.client ?? client).get({
|
|
2983
|
+
security: [
|
|
2984
|
+
{
|
|
2985
|
+
name: "Authorization",
|
|
2986
|
+
type: "apiKey"
|
|
2987
|
+
}
|
|
2988
|
+
],
|
|
2989
|
+
url: "/api/v1/subAccounts/{subAccountId}",
|
|
2990
|
+
...options
|
|
2991
|
+
});
|
|
2992
|
+
};
|
|
2993
|
+
var updateSubAccount = (options) => {
|
|
3219
2994
|
return (options.client ?? client).put({
|
|
3220
2995
|
security: [
|
|
3221
2996
|
{
|
|
@@ -3223,7 +2998,7 @@ var updateGroupName = (options) => {
|
|
|
3223
2998
|
type: "apiKey"
|
|
3224
2999
|
}
|
|
3225
3000
|
],
|
|
3226
|
-
url: "/api/v1/subAccounts/{subAccountId}
|
|
3001
|
+
url: "/api/v1/subAccounts/{subAccountId}",
|
|
3227
3002
|
...options,
|
|
3228
3003
|
headers: {
|
|
3229
3004
|
"Content-Type": "application/json",
|
|
@@ -3231,7 +3006,7 @@ var updateGroupName = (options) => {
|
|
|
3231
3006
|
}
|
|
3232
3007
|
});
|
|
3233
3008
|
};
|
|
3234
|
-
var
|
|
3009
|
+
var setOwnerEntity = (options) => {
|
|
3235
3010
|
return (options.client ?? client).put({
|
|
3236
3011
|
security: [
|
|
3237
3012
|
{
|
|
@@ -3239,7 +3014,7 @@ var getNegotiationDeltas = (options) => {
|
|
|
3239
3014
|
type: "apiKey"
|
|
3240
3015
|
}
|
|
3241
3016
|
],
|
|
3242
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3017
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/owner",
|
|
3243
3018
|
...options,
|
|
3244
3019
|
headers: {
|
|
3245
3020
|
"Content-Type": "application/json",
|
|
@@ -3247,7 +3022,7 @@ var getNegotiationDeltas = (options) => {
|
|
|
3247
3022
|
}
|
|
3248
3023
|
});
|
|
3249
3024
|
};
|
|
3250
|
-
var
|
|
3025
|
+
var negotiationSendForApproval = (options) => {
|
|
3251
3026
|
return (options.client ?? client).put({
|
|
3252
3027
|
security: [
|
|
3253
3028
|
{
|
|
@@ -3255,7 +3030,7 @@ var updateNegotiationsToMatch = (options) => {
|
|
|
3255
3030
|
type: "apiKey"
|
|
3256
3031
|
}
|
|
3257
3032
|
],
|
|
3258
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3033
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/sendForApproval",
|
|
3259
3034
|
...options,
|
|
3260
3035
|
headers: {
|
|
3261
3036
|
"Content-Type": "application/json",
|
|
@@ -3263,7 +3038,7 @@ var updateNegotiationsToMatch = (options) => {
|
|
|
3263
3038
|
}
|
|
3264
3039
|
});
|
|
3265
3040
|
};
|
|
3266
|
-
var
|
|
3041
|
+
var searchEntity = (options) => {
|
|
3267
3042
|
return (options.client ?? client).get({
|
|
3268
3043
|
security: [
|
|
3269
3044
|
{
|
|
@@ -3271,11 +3046,23 @@ var suggestGroupName = (options) => {
|
|
|
3271
3046
|
type: "apiKey"
|
|
3272
3047
|
}
|
|
3273
3048
|
],
|
|
3274
|
-
url: "/api/v1/
|
|
3049
|
+
url: "/api/v1/entity",
|
|
3275
3050
|
...options
|
|
3276
3051
|
});
|
|
3277
3052
|
};
|
|
3278
|
-
var
|
|
3053
|
+
var listDocumentsVersionsSummary = (options) => {
|
|
3054
|
+
return (options.client ?? client).get({
|
|
3055
|
+
security: [
|
|
3056
|
+
{
|
|
3057
|
+
name: "Authorization",
|
|
3058
|
+
type: "apiKey"
|
|
3059
|
+
}
|
|
3060
|
+
],
|
|
3061
|
+
url: "/api/v1/documents/versions",
|
|
3062
|
+
...options
|
|
3063
|
+
});
|
|
3064
|
+
};
|
|
3065
|
+
var retract = (options) => {
|
|
3279
3066
|
return (options.client ?? client).put({
|
|
3280
3067
|
security: [
|
|
3281
3068
|
{
|
|
@@ -3283,7 +3070,7 @@ var updateGroupMembers = (options) => {
|
|
|
3283
3070
|
type: "apiKey"
|
|
3284
3071
|
}
|
|
3285
3072
|
],
|
|
3286
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3073
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/retract",
|
|
3287
3074
|
...options,
|
|
3288
3075
|
headers: {
|
|
3289
3076
|
"Content-Type": "application/json",
|
|
@@ -3291,35 +3078,31 @@ var updateGroupMembers = (options) => {
|
|
|
3291
3078
|
}
|
|
3292
3079
|
});
|
|
3293
3080
|
};
|
|
3294
|
-
var
|
|
3295
|
-
return (options.client ?? client).
|
|
3081
|
+
var acceptAllPositionsFromPreviousVersion = (options) => {
|
|
3082
|
+
return (options.client ?? client).put({
|
|
3296
3083
|
security: [
|
|
3297
3084
|
{
|
|
3298
3085
|
name: "Authorization",
|
|
3299
3086
|
type: "apiKey"
|
|
3300
3087
|
}
|
|
3301
3088
|
],
|
|
3302
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3089
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/acceptPreviousPosition/{version}",
|
|
3303
3090
|
...options
|
|
3304
3091
|
});
|
|
3305
3092
|
};
|
|
3306
|
-
var
|
|
3307
|
-
return (options.client ?? client).
|
|
3093
|
+
var renameExecutionAttachment = (options) => {
|
|
3094
|
+
return (options.client ?? client).patch({
|
|
3308
3095
|
security: [
|
|
3309
3096
|
{
|
|
3310
3097
|
name: "Authorization",
|
|
3311
3098
|
type: "apiKey"
|
|
3312
3099
|
}
|
|
3313
3100
|
],
|
|
3314
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3315
|
-
...options
|
|
3316
|
-
headers: {
|
|
3317
|
-
"Content-Type": "application/json",
|
|
3318
|
-
...options?.headers
|
|
3319
|
-
}
|
|
3101
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment/{oldFileName}",
|
|
3102
|
+
...options
|
|
3320
3103
|
});
|
|
3321
3104
|
};
|
|
3322
|
-
var
|
|
3105
|
+
var getNestedAnswers = (options) => {
|
|
3323
3106
|
return (options.client ?? client).get({
|
|
3324
3107
|
security: [
|
|
3325
3108
|
{
|
|
@@ -3327,19 +3110,19 @@ var listBulkSets = (options) => {
|
|
|
3327
3110
|
type: "apiKey"
|
|
3328
3111
|
}
|
|
3329
3112
|
],
|
|
3330
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3113
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/nested/{nestedAnswersId}",
|
|
3331
3114
|
...options
|
|
3332
3115
|
});
|
|
3333
3116
|
};
|
|
3334
|
-
var
|
|
3335
|
-
return (options.client ?? client).
|
|
3117
|
+
var setNestedAnswers = (options) => {
|
|
3118
|
+
return (options.client ?? client).put({
|
|
3336
3119
|
security: [
|
|
3337
3120
|
{
|
|
3338
3121
|
name: "Authorization",
|
|
3339
3122
|
type: "apiKey"
|
|
3340
3123
|
}
|
|
3341
3124
|
],
|
|
3342
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3125
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/nested/{nestedAnswersId}",
|
|
3343
3126
|
...options,
|
|
3344
3127
|
headers: {
|
|
3345
3128
|
"Content-Type": "application/json",
|
|
@@ -3359,31 +3142,36 @@ var getBulkSet = (options) => {
|
|
|
3359
3142
|
...options
|
|
3360
3143
|
});
|
|
3361
3144
|
};
|
|
3362
|
-
var
|
|
3363
|
-
return (options.client ?? client).
|
|
3145
|
+
var listExecutionAttachments = (options) => {
|
|
3146
|
+
return (options.client ?? client).get({
|
|
3364
3147
|
security: [
|
|
3365
3148
|
{
|
|
3366
3149
|
name: "Authorization",
|
|
3367
3150
|
type: "apiKey"
|
|
3368
3151
|
}
|
|
3369
3152
|
],
|
|
3370
|
-
url: "/api/v1/
|
|
3153
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment",
|
|
3371
3154
|
...options
|
|
3372
3155
|
});
|
|
3373
3156
|
};
|
|
3374
|
-
var
|
|
3375
|
-
return (options.client ?? client).
|
|
3157
|
+
var setExecutionAttachments = (options) => {
|
|
3158
|
+
return (options.client ?? client).post({
|
|
3159
|
+
...import_client_fetch2.formDataBodySerializer,
|
|
3376
3160
|
security: [
|
|
3377
3161
|
{
|
|
3378
3162
|
name: "Authorization",
|
|
3379
3163
|
type: "apiKey"
|
|
3380
3164
|
}
|
|
3381
3165
|
],
|
|
3382
|
-
url: "/api/v1/
|
|
3383
|
-
...options
|
|
3166
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment",
|
|
3167
|
+
...options,
|
|
3168
|
+
headers: {
|
|
3169
|
+
"Content-Type": null,
|
|
3170
|
+
...options?.headers
|
|
3171
|
+
}
|
|
3384
3172
|
});
|
|
3385
3173
|
};
|
|
3386
|
-
var
|
|
3174
|
+
var setExecutionAttachment = (options) => {
|
|
3387
3175
|
return (options.client ?? client).put({
|
|
3388
3176
|
security: [
|
|
3389
3177
|
{
|
|
@@ -3391,15 +3179,15 @@ var updateCoverNote = (options) => {
|
|
|
3391
3179
|
type: "apiKey"
|
|
3392
3180
|
}
|
|
3393
3181
|
],
|
|
3394
|
-
url: "/api/v1/
|
|
3182
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment",
|
|
3395
3183
|
...options,
|
|
3396
3184
|
headers: {
|
|
3397
|
-
"Content-Type": "application/
|
|
3185
|
+
"Content-Type": "application/pdf",
|
|
3398
3186
|
...options?.headers
|
|
3399
3187
|
}
|
|
3400
3188
|
});
|
|
3401
3189
|
};
|
|
3402
|
-
var
|
|
3190
|
+
var checkSignedExecutedVersion = (options) => {
|
|
3403
3191
|
return (options.client ?? client).get({
|
|
3404
3192
|
security: [
|
|
3405
3193
|
{
|
|
@@ -3407,11 +3195,11 @@ var bulkSetsJobCount = (options) => {
|
|
|
3407
3195
|
type: "apiKey"
|
|
3408
3196
|
}
|
|
3409
3197
|
],
|
|
3410
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3198
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executed_version/exists",
|
|
3411
3199
|
...options
|
|
3412
3200
|
});
|
|
3413
3201
|
};
|
|
3414
|
-
var
|
|
3202
|
+
var getDownloadActiveNegotiationsReportAsExcel = (options) => {
|
|
3415
3203
|
return (options.client ?? client).get({
|
|
3416
3204
|
security: [
|
|
3417
3205
|
{
|
|
@@ -3419,52 +3207,55 @@ var cancelNegotiationsJobCount = (options) => {
|
|
|
3419
3207
|
type: "apiKey"
|
|
3420
3208
|
}
|
|
3421
3209
|
],
|
|
3422
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3210
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/analytics/xlsx",
|
|
3423
3211
|
...options
|
|
3424
3212
|
});
|
|
3425
3213
|
};
|
|
3426
|
-
var
|
|
3427
|
-
return (options.client ?? client).
|
|
3214
|
+
var downloadActiveNegotiationsReportAsExcel = (options) => {
|
|
3215
|
+
return (options.client ?? client).post({
|
|
3428
3216
|
security: [
|
|
3429
3217
|
{
|
|
3430
3218
|
name: "Authorization",
|
|
3431
3219
|
type: "apiKey"
|
|
3432
3220
|
}
|
|
3433
3221
|
],
|
|
3434
|
-
url: "/api/v1/
|
|
3435
|
-
...options
|
|
3222
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/analytics/xlsx",
|
|
3223
|
+
...options,
|
|
3224
|
+
headers: {
|
|
3225
|
+
"Content-Type": "application/json",
|
|
3226
|
+
...options?.headers
|
|
3227
|
+
}
|
|
3436
3228
|
});
|
|
3437
3229
|
};
|
|
3438
|
-
var
|
|
3439
|
-
return (options.client ?? client).
|
|
3440
|
-
...import_client_fetch2.formDataBodySerializer,
|
|
3230
|
+
var setCounterparties = (options) => {
|
|
3231
|
+
return (options.client ?? client).put({
|
|
3441
3232
|
security: [
|
|
3442
3233
|
{
|
|
3443
3234
|
name: "Authorization",
|
|
3444
3235
|
type: "apiKey"
|
|
3445
3236
|
}
|
|
3446
3237
|
],
|
|
3447
|
-
url: "/api/v1/
|
|
3238
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/counterparties",
|
|
3448
3239
|
...options,
|
|
3449
3240
|
headers: {
|
|
3450
|
-
"Content-Type":
|
|
3241
|
+
"Content-Type": "application/json",
|
|
3451
3242
|
...options?.headers
|
|
3452
3243
|
}
|
|
3453
3244
|
});
|
|
3454
3245
|
};
|
|
3455
|
-
var
|
|
3456
|
-
return (options.client ?? client).
|
|
3246
|
+
var getLegacyStatistics = (options) => {
|
|
3247
|
+
return (options.client ?? client).get({
|
|
3457
3248
|
security: [
|
|
3458
3249
|
{
|
|
3459
3250
|
name: "Authorization",
|
|
3460
3251
|
type: "apiKey"
|
|
3461
3252
|
}
|
|
3462
3253
|
],
|
|
3463
|
-
url: "/api/v1/
|
|
3254
|
+
url: "/api/v1/subAccounts/{subAccountId}/statistics",
|
|
3464
3255
|
...options
|
|
3465
3256
|
});
|
|
3466
3257
|
};
|
|
3467
|
-
var
|
|
3258
|
+
var getChannelTimeline = (options) => {
|
|
3468
3259
|
return (options.client ?? client).get({
|
|
3469
3260
|
security: [
|
|
3470
3261
|
{
|
|
@@ -3472,99 +3263,95 @@ var getBulkSetAttachment = (options) => {
|
|
|
3472
3263
|
type: "apiKey"
|
|
3473
3264
|
}
|
|
3474
3265
|
],
|
|
3475
|
-
url: "/api/v1/
|
|
3266
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/{channel}",
|
|
3476
3267
|
...options
|
|
3477
3268
|
});
|
|
3478
3269
|
};
|
|
3479
|
-
var
|
|
3480
|
-
return (options.client ?? client).
|
|
3270
|
+
var schemaAvailableAsCdm = (options) => {
|
|
3271
|
+
return (options.client ?? client).get({
|
|
3481
3272
|
security: [
|
|
3482
3273
|
{
|
|
3483
3274
|
name: "Authorization",
|
|
3484
3275
|
type: "apiKey"
|
|
3485
3276
|
}
|
|
3486
3277
|
],
|
|
3487
|
-
url: "/api/v1/
|
|
3488
|
-
...options
|
|
3489
|
-
headers: {
|
|
3490
|
-
"Content-Type": "application/json",
|
|
3491
|
-
...options?.headers
|
|
3492
|
-
}
|
|
3278
|
+
url: "/api/v1/documents/{documentId}/schemas/{version}/availableAsCDM",
|
|
3279
|
+
...options
|
|
3493
3280
|
});
|
|
3494
3281
|
};
|
|
3495
|
-
var
|
|
3496
|
-
return (options
|
|
3282
|
+
var revokeWindow = (options) => {
|
|
3283
|
+
return (options?.client ?? client).delete({
|
|
3497
3284
|
security: [
|
|
3498
3285
|
{
|
|
3499
3286
|
name: "Authorization",
|
|
3500
3287
|
type: "apiKey"
|
|
3501
3288
|
}
|
|
3502
3289
|
],
|
|
3503
|
-
url: "/api/v1/
|
|
3290
|
+
url: "/api/v1/supportAccess/window",
|
|
3504
3291
|
...options
|
|
3505
3292
|
});
|
|
3506
3293
|
};
|
|
3507
|
-
var
|
|
3508
|
-
return (options
|
|
3294
|
+
var getWindow = (options) => {
|
|
3295
|
+
return (options?.client ?? client).get({
|
|
3509
3296
|
security: [
|
|
3510
3297
|
{
|
|
3511
3298
|
name: "Authorization",
|
|
3512
3299
|
type: "apiKey"
|
|
3513
3300
|
}
|
|
3514
3301
|
],
|
|
3515
|
-
url: "/api/v1/
|
|
3302
|
+
url: "/api/v1/supportAccess/window",
|
|
3516
3303
|
...options
|
|
3517
3304
|
});
|
|
3518
3305
|
};
|
|
3519
|
-
var
|
|
3520
|
-
return (options
|
|
3306
|
+
var grantWindow = (options) => {
|
|
3307
|
+
return (options?.client ?? client).post({
|
|
3521
3308
|
security: [
|
|
3522
3309
|
{
|
|
3523
3310
|
name: "Authorization",
|
|
3524
3311
|
type: "apiKey"
|
|
3525
3312
|
}
|
|
3526
3313
|
],
|
|
3527
|
-
url: "/api/v1/
|
|
3314
|
+
url: "/api/v1/supportAccess/window",
|
|
3528
3315
|
...options
|
|
3529
3316
|
});
|
|
3530
3317
|
};
|
|
3531
|
-
var
|
|
3532
|
-
return (options
|
|
3318
|
+
var extendWindow = (options) => {
|
|
3319
|
+
return (options?.client ?? client).put({
|
|
3533
3320
|
security: [
|
|
3534
3321
|
{
|
|
3535
3322
|
name: "Authorization",
|
|
3536
3323
|
type: "apiKey"
|
|
3537
3324
|
}
|
|
3538
3325
|
],
|
|
3539
|
-
url: "/api/v1/
|
|
3326
|
+
url: "/api/v1/supportAccess/window",
|
|
3540
3327
|
...options
|
|
3541
3328
|
});
|
|
3542
3329
|
};
|
|
3543
|
-
var
|
|
3544
|
-
return (options.client ?? client).
|
|
3330
|
+
var deleteOfflineNegotiatedDocument = (options) => {
|
|
3331
|
+
return (options.client ?? client).delete({
|
|
3545
3332
|
security: [
|
|
3546
3333
|
{
|
|
3547
3334
|
name: "Authorization",
|
|
3548
3335
|
type: "apiKey"
|
|
3549
3336
|
}
|
|
3550
3337
|
],
|
|
3551
|
-
url: "/api/v1/
|
|
3338
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/offline_negotiated_document",
|
|
3552
3339
|
...options
|
|
3553
3340
|
});
|
|
3554
3341
|
};
|
|
3555
|
-
var
|
|
3556
|
-
return (options.client ?? client).
|
|
3342
|
+
var getOfflineNegotiatedDocument = (options) => {
|
|
3343
|
+
return (options.client ?? client).get({
|
|
3557
3344
|
security: [
|
|
3558
3345
|
{
|
|
3559
3346
|
name: "Authorization",
|
|
3560
3347
|
type: "apiKey"
|
|
3561
3348
|
}
|
|
3562
3349
|
],
|
|
3563
|
-
url: "/api/v1/
|
|
3350
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/offline_negotiated_document",
|
|
3564
3351
|
...options
|
|
3565
3352
|
});
|
|
3566
3353
|
};
|
|
3567
|
-
var
|
|
3354
|
+
var setOfflineNegotiatedDocument = (options) => {
|
|
3568
3355
|
return (options.client ?? client).put({
|
|
3569
3356
|
security: [
|
|
3570
3357
|
{
|
|
@@ -3572,23 +3359,27 @@ var updateDocumentElectionDraftingNote = (options) => {
|
|
|
3572
3359
|
type: "apiKey"
|
|
3573
3360
|
}
|
|
3574
3361
|
],
|
|
3575
|
-
url: "/api/v1/
|
|
3576
|
-
...options
|
|
3362
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/offline_negotiated_document",
|
|
3363
|
+
...options,
|
|
3364
|
+
headers: {
|
|
3365
|
+
"Content-Type": "application/pdf",
|
|
3366
|
+
...options?.headers
|
|
3367
|
+
}
|
|
3577
3368
|
});
|
|
3578
3369
|
};
|
|
3579
|
-
var
|
|
3580
|
-
return (options.client ?? client).
|
|
3370
|
+
var deleteSignedExecutedVersion = (options) => {
|
|
3371
|
+
return (options.client ?? client).delete({
|
|
3581
3372
|
security: [
|
|
3582
3373
|
{
|
|
3583
3374
|
name: "Authorization",
|
|
3584
3375
|
type: "apiKey"
|
|
3585
3376
|
}
|
|
3586
3377
|
],
|
|
3587
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3378
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executed_version",
|
|
3588
3379
|
...options
|
|
3589
3380
|
});
|
|
3590
3381
|
};
|
|
3591
|
-
var
|
|
3382
|
+
var getSignedExecutedVersion = (options) => {
|
|
3592
3383
|
return (options.client ?? client).get({
|
|
3593
3384
|
security: [
|
|
3594
3385
|
{
|
|
@@ -3596,71 +3387,87 @@ var getDraftingNotesDocument = (options) => {
|
|
|
3596
3387
|
type: "apiKey"
|
|
3597
3388
|
}
|
|
3598
3389
|
],
|
|
3599
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3390
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executed_version",
|
|
3600
3391
|
...options
|
|
3601
3392
|
});
|
|
3602
3393
|
};
|
|
3603
|
-
var
|
|
3604
|
-
return (options
|
|
3394
|
+
var setSignedExecutedVersion = (options) => {
|
|
3395
|
+
return (options.client ?? client).put({
|
|
3605
3396
|
security: [
|
|
3606
3397
|
{
|
|
3607
3398
|
name: "Authorization",
|
|
3608
3399
|
type: "apiKey"
|
|
3609
3400
|
}
|
|
3610
3401
|
],
|
|
3611
|
-
url: "/api/v1/
|
|
3612
|
-
...options
|
|
3402
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executed_version",
|
|
3403
|
+
...options,
|
|
3404
|
+
headers: {
|
|
3405
|
+
"Content-Type": "application/pdf",
|
|
3406
|
+
...options?.headers
|
|
3407
|
+
}
|
|
3613
3408
|
});
|
|
3614
3409
|
};
|
|
3615
|
-
var
|
|
3616
|
-
return (options.client ?? client).
|
|
3410
|
+
var deleteCoverNote = (options) => {
|
|
3411
|
+
return (options.client ?? client).delete({
|
|
3617
3412
|
security: [
|
|
3618
3413
|
{
|
|
3619
3414
|
name: "Authorization",
|
|
3620
3415
|
type: "apiKey"
|
|
3621
3416
|
}
|
|
3622
3417
|
],
|
|
3623
|
-
url: "/api/v1/
|
|
3418
|
+
url: "/api/v1/bulkSets/{bulkSetId}/coverNote",
|
|
3624
3419
|
...options
|
|
3625
3420
|
});
|
|
3626
3421
|
};
|
|
3627
|
-
var
|
|
3628
|
-
return (options
|
|
3422
|
+
var updateCoverNote = (options) => {
|
|
3423
|
+
return (options.client ?? client).put({
|
|
3629
3424
|
security: [
|
|
3630
3425
|
{
|
|
3631
3426
|
name: "Authorization",
|
|
3632
3427
|
type: "apiKey"
|
|
3633
3428
|
}
|
|
3634
3429
|
],
|
|
3635
|
-
url: "/api/v1/
|
|
3636
|
-
...options
|
|
3430
|
+
url: "/api/v1/bulkSets/{bulkSetId}/coverNote",
|
|
3431
|
+
...options,
|
|
3432
|
+
headers: {
|
|
3433
|
+
"Content-Type": "application/json",
|
|
3434
|
+
...options?.headers
|
|
3435
|
+
}
|
|
3637
3436
|
});
|
|
3638
3437
|
};
|
|
3639
|
-
var
|
|
3640
|
-
return (options.client ?? client).
|
|
3438
|
+
var sendToCounterpartyInitial = (options) => {
|
|
3439
|
+
return (options.client ?? client).put({
|
|
3641
3440
|
security: [
|
|
3642
3441
|
{
|
|
3643
3442
|
name: "Authorization",
|
|
3644
3443
|
type: "apiKey"
|
|
3645
3444
|
}
|
|
3646
3445
|
],
|
|
3647
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3648
|
-
...options
|
|
3446
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/sendToCounterparty/initial",
|
|
3447
|
+
...options,
|
|
3448
|
+
headers: {
|
|
3449
|
+
"Content-Type": "application/json",
|
|
3450
|
+
...options?.headers
|
|
3451
|
+
}
|
|
3649
3452
|
});
|
|
3650
3453
|
};
|
|
3651
|
-
var
|
|
3652
|
-
return (options.client ?? client).
|
|
3454
|
+
var queueGenerateNegotiationDocumentJob = (options) => {
|
|
3455
|
+
return (options.client ?? client).post({
|
|
3653
3456
|
security: [
|
|
3654
3457
|
{
|
|
3655
3458
|
name: "Authorization",
|
|
3656
3459
|
type: "apiKey"
|
|
3657
3460
|
}
|
|
3658
3461
|
],
|
|
3659
|
-
url: "/api/v1/
|
|
3660
|
-
...options
|
|
3462
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/generateDocument",
|
|
3463
|
+
...options,
|
|
3464
|
+
headers: {
|
|
3465
|
+
"Content-Type": "application/json",
|
|
3466
|
+
...options?.headers
|
|
3467
|
+
}
|
|
3661
3468
|
});
|
|
3662
3469
|
};
|
|
3663
|
-
var
|
|
3470
|
+
var createSignaturePagePdf = (options) => {
|
|
3664
3471
|
return (options.client ?? client).get({
|
|
3665
3472
|
security: [
|
|
3666
3473
|
{
|
|
@@ -3668,23 +3475,23 @@ var usersWithNegotiationAccess = (options) => {
|
|
|
3668
3475
|
type: "apiKey"
|
|
3669
3476
|
}
|
|
3670
3477
|
],
|
|
3671
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3478
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/signature/{pageId}/pdf",
|
|
3672
3479
|
...options
|
|
3673
3480
|
});
|
|
3674
3481
|
};
|
|
3675
|
-
var
|
|
3676
|
-
return (options.client ?? client).
|
|
3482
|
+
var upgradePresetSchema = (options) => {
|
|
3483
|
+
return (options.client ?? client).put({
|
|
3677
3484
|
security: [
|
|
3678
3485
|
{
|
|
3679
3486
|
name: "Authorization",
|
|
3680
3487
|
type: "apiKey"
|
|
3681
3488
|
}
|
|
3682
3489
|
],
|
|
3683
|
-
url: "/api/v1/
|
|
3490
|
+
url: "/api/v1/presets/{presetId}/schema/upgrade",
|
|
3684
3491
|
...options
|
|
3685
3492
|
});
|
|
3686
3493
|
};
|
|
3687
|
-
var
|
|
3494
|
+
var documentRenderTemplate = (options) => {
|
|
3688
3495
|
return (options.client ?? client).get({
|
|
3689
3496
|
security: [
|
|
3690
3497
|
{
|
|
@@ -3692,23 +3499,23 @@ var presetRenderTemplate = (options) => {
|
|
|
3692
3499
|
type: "apiKey"
|
|
3693
3500
|
}
|
|
3694
3501
|
],
|
|
3695
|
-
url: "/api/v1/
|
|
3502
|
+
url: "/api/v1/documents/{documentId}/schemas/{version}/preview",
|
|
3696
3503
|
...options
|
|
3697
3504
|
});
|
|
3698
3505
|
};
|
|
3699
|
-
var
|
|
3700
|
-
return (options
|
|
3506
|
+
var getAccountRelationshipSummaries = (options) => {
|
|
3507
|
+
return (options?.client ?? client).get({
|
|
3701
3508
|
security: [
|
|
3702
3509
|
{
|
|
3703
3510
|
name: "Authorization",
|
|
3704
3511
|
type: "apiKey"
|
|
3705
3512
|
}
|
|
3706
3513
|
],
|
|
3707
|
-
url: "/api/v1/
|
|
3514
|
+
url: "/api/v1/advisor/accounts/relationships/summary",
|
|
3708
3515
|
...options
|
|
3709
3516
|
});
|
|
3710
3517
|
};
|
|
3711
|
-
var
|
|
3518
|
+
var presetRenderTemplate = (options) => {
|
|
3712
3519
|
return (options.client ?? client).get({
|
|
3713
3520
|
security: [
|
|
3714
3521
|
{
|
|
@@ -3716,11 +3523,11 @@ var getWatchers = (options) => {
|
|
|
3716
3523
|
type: "apiKey"
|
|
3717
3524
|
}
|
|
3718
3525
|
],
|
|
3719
|
-
url: "/api/v1/
|
|
3526
|
+
url: "/api/v1/presets/{presetId}/preview",
|
|
3720
3527
|
...options
|
|
3721
3528
|
});
|
|
3722
3529
|
};
|
|
3723
|
-
var
|
|
3530
|
+
var addComment = (options) => {
|
|
3724
3531
|
return (options.client ?? client).post({
|
|
3725
3532
|
security: [
|
|
3726
3533
|
{
|
|
@@ -3728,7 +3535,7 @@ var addWatchers = (options) => {
|
|
|
3728
3535
|
type: "apiKey"
|
|
3729
3536
|
}
|
|
3730
3537
|
],
|
|
3731
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3538
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/{channel}/comments",
|
|
3732
3539
|
...options,
|
|
3733
3540
|
headers: {
|
|
3734
3541
|
"Content-Type": "application/json",
|
|
@@ -3736,15 +3543,15 @@ var addWatchers = (options) => {
|
|
|
3736
3543
|
}
|
|
3737
3544
|
});
|
|
3738
3545
|
};
|
|
3739
|
-
var
|
|
3740
|
-
return (options.client ?? client).
|
|
3546
|
+
var presetSetElectionApproval = (options) => {
|
|
3547
|
+
return (options.client ?? client).put({
|
|
3741
3548
|
security: [
|
|
3742
3549
|
{
|
|
3743
3550
|
name: "Authorization",
|
|
3744
3551
|
type: "apiKey"
|
|
3745
3552
|
}
|
|
3746
3553
|
],
|
|
3747
|
-
url: "/api/v1/
|
|
3554
|
+
url: "/api/v1/presets/{presetId}/approvals/elections/{electionId}",
|
|
3748
3555
|
...options,
|
|
3749
3556
|
headers: {
|
|
3750
3557
|
"Content-Type": "application/json",
|
|
@@ -3752,43 +3559,47 @@ var removeWatchers = (options) => {
|
|
|
3752
3559
|
}
|
|
3753
3560
|
});
|
|
3754
3561
|
};
|
|
3755
|
-
var
|
|
3756
|
-
return (options
|
|
3562
|
+
var getSsoConfig = (options) => {
|
|
3563
|
+
return (options?.client ?? client).get({
|
|
3757
3564
|
security: [
|
|
3758
3565
|
{
|
|
3759
3566
|
name: "Authorization",
|
|
3760
3567
|
type: "apiKey"
|
|
3761
3568
|
}
|
|
3762
3569
|
],
|
|
3763
|
-
url: "/api/v1/
|
|
3570
|
+
url: "/api/v1/account/sso",
|
|
3764
3571
|
...options
|
|
3765
3572
|
});
|
|
3766
3573
|
};
|
|
3767
|
-
var
|
|
3768
|
-
return (options.client ?? client).
|
|
3574
|
+
var updateCustomFields = (options) => {
|
|
3575
|
+
return (options.client ?? client).put({
|
|
3769
3576
|
security: [
|
|
3770
3577
|
{
|
|
3771
3578
|
name: "Authorization",
|
|
3772
3579
|
type: "apiKey"
|
|
3773
3580
|
}
|
|
3774
3581
|
],
|
|
3775
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3776
|
-
...options
|
|
3582
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/customFields",
|
|
3583
|
+
...options,
|
|
3584
|
+
headers: {
|
|
3585
|
+
"Content-Type": "application/json",
|
|
3586
|
+
...options?.headers
|
|
3587
|
+
}
|
|
3777
3588
|
});
|
|
3778
3589
|
};
|
|
3779
|
-
var
|
|
3780
|
-
return (options.client ?? client).
|
|
3590
|
+
var sendElectionApprovalReminder = (options) => {
|
|
3591
|
+
return (options.client ?? client).put({
|
|
3781
3592
|
security: [
|
|
3782
3593
|
{
|
|
3783
3594
|
name: "Authorization",
|
|
3784
3595
|
type: "apiKey"
|
|
3785
3596
|
}
|
|
3786
3597
|
],
|
|
3787
|
-
url: "/api/v1/
|
|
3598
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/approvals/elections/{electionId}/reminder",
|
|
3788
3599
|
...options
|
|
3789
3600
|
});
|
|
3790
3601
|
};
|
|
3791
|
-
var
|
|
3602
|
+
var getExecutedNegotiationSummary = (options) => {
|
|
3792
3603
|
return (options.client ?? client).get({
|
|
3793
3604
|
security: [
|
|
3794
3605
|
{
|
|
@@ -3796,59 +3607,59 @@ var documentsFilter = (options) => {
|
|
|
3796
3607
|
type: "apiKey"
|
|
3797
3608
|
}
|
|
3798
3609
|
],
|
|
3799
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3610
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/metadata",
|
|
3800
3611
|
...options
|
|
3801
3612
|
});
|
|
3802
3613
|
};
|
|
3803
|
-
var
|
|
3804
|
-
return (options
|
|
3614
|
+
var swapParties = (options) => {
|
|
3615
|
+
return (options.client ?? client).put({
|
|
3805
3616
|
security: [
|
|
3806
3617
|
{
|
|
3807
3618
|
name: "Authorization",
|
|
3808
3619
|
type: "apiKey"
|
|
3809
3620
|
}
|
|
3810
3621
|
],
|
|
3811
|
-
url: "/api/v1/
|
|
3622
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/swapParties",
|
|
3812
3623
|
...options
|
|
3813
3624
|
});
|
|
3814
3625
|
};
|
|
3815
|
-
var
|
|
3816
|
-
return (options
|
|
3626
|
+
var acceptNestedAnswersCounterpartyPosition = (options) => {
|
|
3627
|
+
return (options.client ?? client).put({
|
|
3817
3628
|
security: [
|
|
3818
3629
|
{
|
|
3819
3630
|
name: "Authorization",
|
|
3820
3631
|
type: "apiKey"
|
|
3821
3632
|
}
|
|
3822
3633
|
],
|
|
3823
|
-
url: "/api/v1/
|
|
3634
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/answers/nested/{nestedAnswersId}/acceptCpPosition/{partyId}",
|
|
3824
3635
|
...options
|
|
3825
3636
|
});
|
|
3826
3637
|
};
|
|
3827
|
-
var
|
|
3828
|
-
return (options
|
|
3638
|
+
var upgradeSchema = (options) => {
|
|
3639
|
+
return (options.client ?? client).put({
|
|
3829
3640
|
security: [
|
|
3830
3641
|
{
|
|
3831
3642
|
name: "Authorization",
|
|
3832
3643
|
type: "apiKey"
|
|
3833
3644
|
}
|
|
3834
3645
|
],
|
|
3835
|
-
url: "/api/v1/
|
|
3646
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/upgrade",
|
|
3836
3647
|
...options
|
|
3837
3648
|
});
|
|
3838
3649
|
};
|
|
3839
|
-
var
|
|
3840
|
-
return (options
|
|
3650
|
+
var updateAttachDocx = (options) => {
|
|
3651
|
+
return (options.client ?? client).put({
|
|
3841
3652
|
security: [
|
|
3842
3653
|
{
|
|
3843
3654
|
name: "Authorization",
|
|
3844
3655
|
type: "apiKey"
|
|
3845
3656
|
}
|
|
3846
3657
|
],
|
|
3847
|
-
url: "/api/v1/
|
|
3658
|
+
url: "/api/v1/bulkSets/{bulkSetId}/updateAttachDocx",
|
|
3848
3659
|
...options
|
|
3849
3660
|
});
|
|
3850
3661
|
};
|
|
3851
|
-
var
|
|
3662
|
+
var getCompanyByEntityId = (options) => {
|
|
3852
3663
|
return (options.client ?? client).get({
|
|
3853
3664
|
security: [
|
|
3854
3665
|
{
|
|
@@ -3856,87 +3667,71 @@ var getExtractionResults = (options) => {
|
|
|
3856
3667
|
type: "apiKey"
|
|
3857
3668
|
}
|
|
3858
3669
|
],
|
|
3859
|
-
url: "/api/v1/
|
|
3670
|
+
url: "/api/v1/entity/{entityId}",
|
|
3860
3671
|
...options
|
|
3861
3672
|
});
|
|
3862
3673
|
};
|
|
3863
|
-
var
|
|
3864
|
-
return (options.client ?? client).
|
|
3674
|
+
var deleteDraftingNotesDocument = (options) => {
|
|
3675
|
+
return (options.client ?? client).delete({
|
|
3865
3676
|
security: [
|
|
3866
3677
|
{
|
|
3867
3678
|
name: "Authorization",
|
|
3868
3679
|
type: "apiKey"
|
|
3869
3680
|
}
|
|
3870
3681
|
],
|
|
3871
|
-
url: "/api/v1/
|
|
3682
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNotes",
|
|
3872
3683
|
...options
|
|
3873
3684
|
});
|
|
3874
3685
|
};
|
|
3875
|
-
var
|
|
3876
|
-
return (options.client ?? client).
|
|
3686
|
+
var getDraftingNotes = (options) => {
|
|
3687
|
+
return (options.client ?? client).get({
|
|
3877
3688
|
security: [
|
|
3878
3689
|
{
|
|
3879
3690
|
name: "Authorization",
|
|
3880
3691
|
type: "apiKey"
|
|
3881
3692
|
}
|
|
3882
3693
|
],
|
|
3883
|
-
url: "/api/v1/
|
|
3884
|
-
...options
|
|
3885
|
-
headers: {
|
|
3886
|
-
"Content-Type": "application/json",
|
|
3887
|
-
...options?.headers
|
|
3888
|
-
}
|
|
3694
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNotes",
|
|
3695
|
+
...options
|
|
3889
3696
|
});
|
|
3890
3697
|
};
|
|
3891
|
-
var
|
|
3892
|
-
return (options.client ?? client).
|
|
3698
|
+
var updateDraftingNotes = (options) => {
|
|
3699
|
+
return (options.client ?? client).post({
|
|
3893
3700
|
security: [
|
|
3894
3701
|
{
|
|
3895
3702
|
name: "Authorization",
|
|
3896
3703
|
type: "apiKey"
|
|
3897
3704
|
}
|
|
3898
3705
|
],
|
|
3899
|
-
url: "/api/v1/
|
|
3900
|
-
...options
|
|
3901
|
-
headers: {
|
|
3902
|
-
"Content-Type": "application/json",
|
|
3903
|
-
...options?.headers
|
|
3904
|
-
}
|
|
3706
|
+
url: "/api/v1/documents/{documentId}/subAccounts/{subAccountId}/draftingNotes",
|
|
3707
|
+
...options
|
|
3905
3708
|
});
|
|
3906
3709
|
};
|
|
3907
|
-
var
|
|
3908
|
-
return (options.client ?? client).
|
|
3710
|
+
var createAuditTrailPdf = (options) => {
|
|
3711
|
+
return (options.client ?? client).get({
|
|
3909
3712
|
security: [
|
|
3910
3713
|
{
|
|
3911
3714
|
name: "Authorization",
|
|
3912
3715
|
type: "apiKey"
|
|
3913
3716
|
}
|
|
3914
3717
|
],
|
|
3915
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3916
|
-
...options
|
|
3917
|
-
headers: {
|
|
3918
|
-
"Content-Type": "application/json",
|
|
3919
|
-
...options?.headers
|
|
3920
|
-
}
|
|
3718
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/audit_trail/pdf",
|
|
3719
|
+
...options
|
|
3921
3720
|
});
|
|
3922
3721
|
};
|
|
3923
|
-
var
|
|
3924
|
-
return (options.client ?? client).
|
|
3722
|
+
var listRecentExtractions = (options) => {
|
|
3723
|
+
return (options.client ?? client).get({
|
|
3925
3724
|
security: [
|
|
3926
3725
|
{
|
|
3927
3726
|
name: "Authorization",
|
|
3928
3727
|
type: "apiKey"
|
|
3929
3728
|
}
|
|
3930
3729
|
],
|
|
3931
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3932
|
-
...options
|
|
3933
|
-
headers: {
|
|
3934
|
-
"Content-Type": "application/json",
|
|
3935
|
-
...options?.headers
|
|
3936
|
-
}
|
|
3730
|
+
url: "/api/v1/subAccounts/{subAccountId}/extraction/recent",
|
|
3731
|
+
...options
|
|
3937
3732
|
});
|
|
3938
3733
|
};
|
|
3939
|
-
var
|
|
3734
|
+
var initialAnswers = (options) => {
|
|
3940
3735
|
return (options.client ?? client).get({
|
|
3941
3736
|
security: [
|
|
3942
3737
|
{
|
|
@@ -3944,63 +3739,48 @@ var listRecentExtractions = (options) => {
|
|
|
3944
3739
|
type: "apiKey"
|
|
3945
3740
|
}
|
|
3946
3741
|
],
|
|
3947
|
-
url: "/api/v1/subAccounts/{subAccountId}/
|
|
3742
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/initialAnswers",
|
|
3948
3743
|
...options
|
|
3949
3744
|
});
|
|
3950
3745
|
};
|
|
3951
|
-
var
|
|
3952
|
-
return (options.client ?? client).
|
|
3746
|
+
var downloadNegotiation = (options) => {
|
|
3747
|
+
return (options.client ?? client).get({
|
|
3953
3748
|
security: [
|
|
3954
3749
|
{
|
|
3955
3750
|
name: "Authorization",
|
|
3956
3751
|
type: "apiKey"
|
|
3957
3752
|
}
|
|
3958
3753
|
],
|
|
3959
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3754
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/extension/{extension}",
|
|
3960
3755
|
...options
|
|
3961
3756
|
});
|
|
3962
3757
|
};
|
|
3963
|
-
var
|
|
3964
|
-
return (options.client ?? client).
|
|
3758
|
+
var getTimelineActivity = (options) => {
|
|
3759
|
+
return (options.client ?? client).get({
|
|
3965
3760
|
security: [
|
|
3966
3761
|
{
|
|
3967
3762
|
name: "Authorization",
|
|
3968
3763
|
type: "apiKey"
|
|
3969
3764
|
}
|
|
3970
3765
|
],
|
|
3971
|
-
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/
|
|
3766
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/timeline/activities",
|
|
3767
|
+
...options
|
|
3768
|
+
});
|
|
3769
|
+
};
|
|
3770
|
+
var getProfile = (options) => {
|
|
3771
|
+
return (options?.client ?? client).get({
|
|
3772
|
+
security: [
|
|
3773
|
+
{
|
|
3774
|
+
name: "Authorization",
|
|
3775
|
+
type: "apiKey"
|
|
3776
|
+
}
|
|
3777
|
+
],
|
|
3778
|
+
url: "/api/v1/user/profile",
|
|
3972
3779
|
...options
|
|
3973
3780
|
});
|
|
3974
3781
|
};
|
|
3975
3782
|
// Annotate the CommonJS export names for ESM import in node:
|
|
3976
3783
|
0 && (module.exports = {
|
|
3977
|
-
Access,
|
|
3978
|
-
ApprovalStatus,
|
|
3979
|
-
Availability,
|
|
3980
|
-
CdmAvailability,
|
|
3981
|
-
Channel,
|
|
3982
|
-
DocumentApprovalState,
|
|
3983
|
-
ElectionApprovalState,
|
|
3984
|
-
Extension,
|
|
3985
|
-
ExternalDocumentApprovalState,
|
|
3986
|
-
ExtractionResultType,
|
|
3987
|
-
Filter,
|
|
3988
|
-
Health,
|
|
3989
|
-
JobStatus,
|
|
3990
|
-
NoteType,
|
|
3991
|
-
NotificationCategory,
|
|
3992
|
-
OrderBy,
|
|
3993
|
-
OrderDirection,
|
|
3994
|
-
PartyThatCanUploadExecutedVersion,
|
|
3995
|
-
Position,
|
|
3996
|
-
RestrictedTo,
|
|
3997
|
-
SearchContext,
|
|
3998
|
-
State,
|
|
3999
|
-
Status,
|
|
4000
|
-
SummaryContext,
|
|
4001
|
-
Turn,
|
|
4002
|
-
Type,
|
|
4003
|
-
WorkflowType,
|
|
4004
3784
|
acceptAllCounterpartyPositions,
|
|
4005
3785
|
acceptAllCustodianTemplatePositions,
|
|
4006
3786
|
acceptAllPositionsFromFork,
|
|
@@ -4141,6 +3921,7 @@ var applyExtractedAnswers = (options) => {
|
|
|
4141
3921
|
getStatistics,
|
|
4142
3922
|
getStatisticsOverview,
|
|
4143
3923
|
getSubAccount,
|
|
3924
|
+
getSubscribedPublishers,
|
|
4144
3925
|
getTimeline,
|
|
4145
3926
|
getTimelineActivity,
|
|
4146
3927
|
getUserStatistics,
|
|
@@ -4199,6 +3980,7 @@ var applyExtractedAnswers = (options) => {
|
|
|
4199
3980
|
presetSetMultipleNestedAnswers,
|
|
4200
3981
|
presetSetNestedAnswers,
|
|
4201
3982
|
presetSwapParties,
|
|
3983
|
+
publisherSummaries,
|
|
4202
3984
|
queueGenerateNegotiationDocumentJob,
|
|
4203
3985
|
rejectFinalDocument,
|
|
4204
3986
|
removeWatchers,
|