@createiq/backend 1.0.80 → 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.
- package/client/types.gen.ts +5 -2
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/client/types.gen.ts
CHANGED
|
@@ -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
|
};
|
|
@@ -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
|
};
|
|
@@ -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
|
};
|
|
@@ -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
package/swagger.json.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
af7895d1982cac03970f759575456b981324438d57dec123a5e6a5af963dac80
|