@createiq/backend 1.0.20 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -332,7 +332,7 @@ var updateSelectedElections = (options) => {
332
332
  }
333
333
  });
334
334
  };
335
- var auditTrailForAccountAsExcel = (options) => {
335
+ var generateAuditTrailForAccountAsExcel = (options) => {
336
336
  return (options.client ?? client).get({
337
337
  security: [
338
338
  {
@@ -620,6 +620,22 @@ var negotiationForkHistory = (options) => {
620
620
  ...options
621
621
  });
622
622
  };
623
+ var moveEntity = (options) => {
624
+ return (options.client ?? client).put({
625
+ security: [
626
+ {
627
+ name: "Authorization",
628
+ type: "apiKey"
629
+ }
630
+ ],
631
+ url: "/api/v1/subAccounts/{subAccountId}/entity/{entityId}/move",
632
+ ...options,
633
+ headers: {
634
+ "Content-Type": "application/json",
635
+ ...options?.headers
636
+ }
637
+ });
638
+ };
623
639
  var listEntities = (options) => {
624
640
  return (options?.client ?? client).get({
625
641
  security: [
@@ -680,34 +696,6 @@ var setElectionApproval = (options) => {
680
696
  }
681
697
  });
682
698
  };
683
- var downloadDashboardReportAsExcel = (options) => {
684
- return (options.client ?? client).get({
685
- security: [
686
- {
687
- name: "Authorization",
688
- type: "apiKey"
689
- }
690
- ],
691
- url: "/api/v1/subAccounts/{subAccountId}/negotiations/xlsx",
692
- ...options
693
- });
694
- };
695
- var moveEntity = (options) => {
696
- return (options.client ?? client).put({
697
- security: [
698
- {
699
- name: "Authorization",
700
- type: "apiKey"
701
- }
702
- ],
703
- url: "/api/v1/subAccounts/{subAccountId}/entity/{entityId}/move",
704
- ...options,
705
- headers: {
706
- "Content-Type": "application/json",
707
- ...options?.headers
708
- }
709
- });
710
- };
711
699
  var deleteApprovalComment = (options) => {
712
700
  return (options.client ?? client).delete({
713
701
  security: [
@@ -784,6 +772,18 @@ var getAccessibleNegotiation = (options) => {
784
772
  ...options
785
773
  });
786
774
  };
775
+ var generateNegotiationsReport = (options) => {
776
+ return (options.client ?? client).get({
777
+ security: [
778
+ {
779
+ name: "Authorization",
780
+ type: "apiKey"
781
+ }
782
+ ],
783
+ url: "/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}",
784
+ ...options
785
+ });
786
+ };
787
787
  var forkNegotiation = (options) => {
788
788
  return (options.client ?? client).post({
789
789
  security: [
@@ -1317,7 +1317,7 @@ var getDownloadExecutedNegotiationsAsExcel = (options) => {
1317
1317
  ...options
1318
1318
  });
1319
1319
  };
1320
- var downloadExecutedNegotiationsAsExcel = (options) => {
1320
+ var generateExecutedNegotiationsReportAsExcel = (options) => {
1321
1321
  return (options.client ?? client).post({
1322
1322
  security: [
1323
1323
  {
@@ -2101,7 +2101,7 @@ var assignUser = (options) => {
2101
2101
  ...options
2102
2102
  });
2103
2103
  };
2104
- var getAllNegotiationCommentsForSubAccount = (options) => {
2104
+ var generateCommentsReport = (options) => {
2105
2105
  return (options.client ?? client).get({
2106
2106
  security: [
2107
2107
  {
@@ -2386,7 +2386,7 @@ var setExternalAttachment = (options) => {
2386
2386
  }
2387
2387
  });
2388
2388
  };
2389
- var auditTrailForSubAccountAsExcel = (options) => {
2389
+ var generateAuditTrailForSubAccountAsExcel = (options) => {
2390
2390
  return (options.client ?? client).get({
2391
2391
  security: [
2392
2392
  {
@@ -2991,7 +2991,7 @@ var getDownloadActiveNegotiationsReportAsExcel = (options) => {
2991
2991
  ...options
2992
2992
  });
2993
2993
  };
2994
- var downloadActiveNegotiationsReportAsExcel = (options) => {
2994
+ var generateActiveNegotiationsReportAsExcel = (options) => {
2995
2995
  return (options.client ?? client).post({
2996
2996
  security: [
2997
2997
  {
@@ -3579,9 +3579,7 @@ export {
3579
3579
  assignToMe,
3580
3580
  assignUser,
3581
3581
  auditTrailFilters,
3582
- auditTrailForAccountAsExcel,
3583
3582
  auditTrailForAccountAsJson,
3584
- auditTrailForSubAccountAsExcel,
3585
3583
  auditTrailForSubAccountAsJson,
3586
3584
  authPing,
3587
3585
  breakingChanges,
@@ -3630,9 +3628,6 @@ export {
3630
3628
  deleteSignedSignaturePageForParty,
3631
3629
  documentRenderTemplate,
3632
3630
  documentsFilter,
3633
- downloadActiveNegotiationsReportAsExcel,
3634
- downloadDashboardReportAsExcel,
3635
- downloadExecutedNegotiationsAsExcel,
3636
3631
  downloadNegotiation,
3637
3632
  downloadPostExecutionPack,
3638
3633
  downloadPreExecutionCounterpartyNegotiation,
@@ -3644,10 +3639,15 @@ export {
3644
3639
  extendWindow,
3645
3640
  fixApprovalRules,
3646
3641
  forkNegotiation,
3642
+ generateActiveNegotiationsReportAsExcel,
3647
3643
  generateAndMaybeSendEnvelope,
3644
+ generateAuditTrailForAccountAsExcel,
3645
+ generateAuditTrailForSubAccountAsExcel,
3646
+ generateCommentsReport,
3647
+ generateExecutedNegotiationsReportAsExcel,
3648
+ generateNegotiationsReport,
3648
3649
  getAccessibleNegotiation,
3649
3650
  getAccountRelationshipSummaries,
3650
- getAllNegotiationCommentsForSubAccount,
3651
3651
  getAllVersions,
3652
3652
  getAmendDefaults,
3653
3653
  getAnnotatedOfflineNegotiatedDocument,