@createiq/backend 1.0.79 → 1.0.81

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.
@@ -476,7 +476,7 @@ export type MarkEventAsReadRequestDto = {
476
476
  eventIds: Array<string>;
477
477
  };
478
478
 
479
- export type NegotiationFilter = 'documentType' | 'userId' | 'displayReferenceId' | 'documentPublisherId' | 'turn' | 'accessibleToAdvisor' | 'isTriparty' | 'isOffline' | 'state' | 'status' | 'bulkSetIds' | 'forkedToOrFrom' | 'isForkedOrFork' | 'olderThanPeriod' | 'missingApprovers' | 'partyA' | 'partyB' | 'partyC' | 'partyAny' | 'approvalType' | 'approverUserId' | 'advisorRelationshipId';
479
+ export type NegotiationFilter = 'documentType' | 'userId' | 'displayReferenceId' | 'documentPublisherId' | 'turn' | 'accessibleToAdvisor' | 'isTriparty' | 'isOffline' | 'state' | 'status' | 'bulkSetIds' | 'forkedToOrFrom' | 'isForkedOrFork' | 'olderThanPeriod' | 'missingApprovers' | 'partyA' | 'partyB' | 'partyC' | 'partyAny' | 'approvalType' | 'approverUserId' | 'advisorRelationshipId' | 'fund';
480
480
 
481
481
  export type NegotiationFilesSummaryDto = {
482
482
  signatureFiles: Array<NegotiationFileDto_SignatureFileDto>;
@@ -1734,6 +1734,7 @@ export type NegotiationSearchDto = {
1734
1734
  documentType: Array<string>;
1735
1735
  partyA: Array<string>;
1736
1736
  approverUserId?: string;
1737
+ fund: Array<string>;
1737
1738
  excludedUiStates: Array<NegotiationUIState>;
1738
1739
  partyAny: Array<string>;
1739
1740
  };
@@ -2783,7 +2784,7 @@ export type PendingOrActiveAdvisorDto = {
2783
2784
  };
2784
2785
 
2785
2786
  export type ComponentAnswerDto_BaseColumnLabelDto = {
2786
- column: 'name' | 'lei' | 'fund_identifier';
2787
+ name: 'name' | 'lei' | 'fund_identifier';
2787
2788
  label: string;
2788
2789
  };
2789
2790
 
@@ -5725,6 +5726,7 @@ export type generateNegotiationsReportData = {
5725
5726
  * Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
5726
5727
  */
5727
5728
  missingApprovers?: boolean;
5729
+ fund: Array<string>;
5728
5730
  };
5729
5731
  url: '/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}';
5730
5732
  };
@@ -8702,7 +8704,7 @@ export type listNegotiationsData = {
8702
8704
  path: {
8703
8705
  subAccountId: string;
8704
8706
  };
8705
- query?: {
8707
+ query: {
8706
8708
  /**
8707
8709
  * Filter by negotiation state
8708
8710
  */
@@ -8859,6 +8861,7 @@ export type listNegotiationsData = {
8859
8861
  * Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
8860
8862
  */
8861
8863
  missingApprovers?: boolean;
8864
+ fund: Array<string>;
8862
8865
  };
8863
8866
  url: '/api/v1/subAccounts/{subAccountId}/negotiations';
8864
8867
  };
package/dist/index.d.cts CHANGED
@@ -413,7 +413,7 @@ type AddOptionalCommentDto = {
413
413
  type MarkEventAsReadRequestDto = {
414
414
  eventIds: Array<string>;
415
415
  };
416
- type NegotiationFilter = 'documentType' | 'userId' | 'displayReferenceId' | 'documentPublisherId' | 'turn' | 'accessibleToAdvisor' | 'isTriparty' | 'isOffline' | 'state' | 'status' | 'bulkSetIds' | 'forkedToOrFrom' | 'isForkedOrFork' | 'olderThanPeriod' | 'missingApprovers' | 'partyA' | 'partyB' | 'partyC' | 'partyAny' | 'approvalType' | 'approverUserId' | 'advisorRelationshipId';
416
+ type NegotiationFilter = 'documentType' | 'userId' | 'displayReferenceId' | 'documentPublisherId' | 'turn' | 'accessibleToAdvisor' | 'isTriparty' | 'isOffline' | 'state' | 'status' | 'bulkSetIds' | 'forkedToOrFrom' | 'isForkedOrFork' | 'olderThanPeriod' | 'missingApprovers' | 'partyA' | 'partyB' | 'partyC' | 'partyAny' | 'approvalType' | 'approverUserId' | 'advisorRelationshipId' | 'fund';
417
417
  type NegotiationFilesSummaryDto = {
418
418
  signatureFiles: Array<NegotiationFileDto_SignatureFileDto>;
419
419
  auxiliaryDocument: NegotiationFileDto_AuxiliaryDocumentDto;
@@ -1514,6 +1514,7 @@ type NegotiationSearchDto = {
1514
1514
  documentType: Array<string>;
1515
1515
  partyA: Array<string>;
1516
1516
  approverUserId?: string;
1517
+ fund: Array<string>;
1517
1518
  excludedUiStates: Array<NegotiationUIState>;
1518
1519
  partyAny: Array<string>;
1519
1520
  };
@@ -2403,7 +2404,7 @@ type PendingOrActiveAdvisorDto = {
2403
2404
  clientSubAccounts: Array<string>;
2404
2405
  };
2405
2406
  type ComponentAnswerDto_BaseColumnLabelDto = {
2406
- column: 'name' | 'lei' | 'fund_identifier';
2407
+ name: 'name' | 'lei' | 'fund_identifier';
2407
2408
  label: string;
2408
2409
  };
2409
2410
  type NegotiationGroupIdAndNameDto = {
@@ -4980,6 +4981,7 @@ type generateNegotiationsReportData = {
4980
4981
  * Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
4981
4982
  */
4982
4983
  missingApprovers?: boolean;
4984
+ fund: Array<string>;
4983
4985
  };
4984
4986
  url: '/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}';
4985
4987
  };
@@ -7564,7 +7566,7 @@ type listNegotiationsData = {
7564
7566
  path: {
7565
7567
  subAccountId: string;
7566
7568
  };
7567
- query?: {
7569
+ query: {
7568
7570
  /**
7569
7571
  * Filter by negotiation state
7570
7572
  */
@@ -7721,6 +7723,7 @@ type listNegotiationsData = {
7721
7723
  * Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
7722
7724
  */
7723
7725
  missingApprovers?: boolean;
7726
+ fund: Array<string>;
7724
7727
  };
7725
7728
  url: '/api/v1/subAccounts/{subAccountId}/negotiations';
7726
7729
  };
package/dist/index.d.ts CHANGED
@@ -413,7 +413,7 @@ type AddOptionalCommentDto = {
413
413
  type MarkEventAsReadRequestDto = {
414
414
  eventIds: Array<string>;
415
415
  };
416
- type NegotiationFilter = 'documentType' | 'userId' | 'displayReferenceId' | 'documentPublisherId' | 'turn' | 'accessibleToAdvisor' | 'isTriparty' | 'isOffline' | 'state' | 'status' | 'bulkSetIds' | 'forkedToOrFrom' | 'isForkedOrFork' | 'olderThanPeriod' | 'missingApprovers' | 'partyA' | 'partyB' | 'partyC' | 'partyAny' | 'approvalType' | 'approverUserId' | 'advisorRelationshipId';
416
+ type NegotiationFilter = 'documentType' | 'userId' | 'displayReferenceId' | 'documentPublisherId' | 'turn' | 'accessibleToAdvisor' | 'isTriparty' | 'isOffline' | 'state' | 'status' | 'bulkSetIds' | 'forkedToOrFrom' | 'isForkedOrFork' | 'olderThanPeriod' | 'missingApprovers' | 'partyA' | 'partyB' | 'partyC' | 'partyAny' | 'approvalType' | 'approverUserId' | 'advisorRelationshipId' | 'fund';
417
417
  type NegotiationFilesSummaryDto = {
418
418
  signatureFiles: Array<NegotiationFileDto_SignatureFileDto>;
419
419
  auxiliaryDocument: NegotiationFileDto_AuxiliaryDocumentDto;
@@ -1514,6 +1514,7 @@ type NegotiationSearchDto = {
1514
1514
  documentType: Array<string>;
1515
1515
  partyA: Array<string>;
1516
1516
  approverUserId?: string;
1517
+ fund: Array<string>;
1517
1518
  excludedUiStates: Array<NegotiationUIState>;
1518
1519
  partyAny: Array<string>;
1519
1520
  };
@@ -2403,7 +2404,7 @@ type PendingOrActiveAdvisorDto = {
2403
2404
  clientSubAccounts: Array<string>;
2404
2405
  };
2405
2406
  type ComponentAnswerDto_BaseColumnLabelDto = {
2406
- column: 'name' | 'lei' | 'fund_identifier';
2407
+ name: 'name' | 'lei' | 'fund_identifier';
2407
2408
  label: string;
2408
2409
  };
2409
2410
  type NegotiationGroupIdAndNameDto = {
@@ -4980,6 +4981,7 @@ type generateNegotiationsReportData = {
4980
4981
  * Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
4981
4982
  */
4982
4983
  missingApprovers?: boolean;
4984
+ fund: Array<string>;
4983
4985
  };
4984
4986
  url: '/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}';
4985
4987
  };
@@ -7564,7 +7566,7 @@ type listNegotiationsData = {
7564
7566
  path: {
7565
7567
  subAccountId: string;
7566
7568
  };
7567
- query?: {
7569
+ query: {
7568
7570
  /**
7569
7571
  * Filter by negotiation state
7570
7572
  */
@@ -7721,6 +7723,7 @@ type listNegotiationsData = {
7721
7723
  * Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
7722
7724
  */
7723
7725
  missingApprovers?: boolean;
7726
+ fund: Array<string>;
7724
7727
  };
7725
7728
  url: '/api/v1/subAccounts/{subAccountId}/negotiations';
7726
7729
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createiq/backend",
3
- "version": "1.0.79",
3
+ "version": "1.0.81",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/index.cjs",
@@ -1 +1 @@
1
- c0342f3898f946cbe513b5ce98a954d75dbfd9c1945dafa023c3d92a7c75b7b1
1
+ af7895d1982cac03970f759575456b981324438d57dec123a5e6a5af963dac80