@createiq/backend 1.0.80 → 1.0.82
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 +6 -2
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -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
|
};
|
|
@@ -2141,6 +2142,7 @@ export type ComponentAnswerDto_FundListEntityDto = {
|
|
|
2141
2142
|
accept?: boolean;
|
|
2142
2143
|
lei?: string;
|
|
2143
2144
|
fundIdentifier?: string;
|
|
2145
|
+
parentEntityId?: string;
|
|
2144
2146
|
additionalFields?: ComponentAnswerDto_AdditionalFieldsDto;
|
|
2145
2147
|
};
|
|
2146
2148
|
|
|
@@ -5725,6 +5727,7 @@ export type generateNegotiationsReportData = {
|
|
|
5725
5727
|
* Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
|
|
5726
5728
|
*/
|
|
5727
5729
|
missingApprovers?: boolean;
|
|
5730
|
+
fund: Array<string>;
|
|
5728
5731
|
};
|
|
5729
5732
|
url: '/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}';
|
|
5730
5733
|
};
|
|
@@ -8702,7 +8705,7 @@ export type listNegotiationsData = {
|
|
|
8702
8705
|
path: {
|
|
8703
8706
|
subAccountId: string;
|
|
8704
8707
|
};
|
|
8705
|
-
query
|
|
8708
|
+
query: {
|
|
8706
8709
|
/**
|
|
8707
8710
|
* Filter by negotiation state
|
|
8708
8711
|
*/
|
|
@@ -8859,6 +8862,7 @@ export type listNegotiationsData = {
|
|
|
8859
8862
|
* Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
|
|
8860
8863
|
*/
|
|
8861
8864
|
missingApprovers?: boolean;
|
|
8865
|
+
fund: Array<string>;
|
|
8862
8866
|
};
|
|
8863
8867
|
url: '/api/v1/subAccounts/{subAccountId}/negotiations';
|
|
8864
8868
|
};
|
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
|
};
|
|
@@ -1856,6 +1857,7 @@ type ComponentAnswerDto_FundListEntityDto = {
|
|
|
1856
1857
|
accept?: boolean;
|
|
1857
1858
|
lei?: string;
|
|
1858
1859
|
fundIdentifier?: string;
|
|
1860
|
+
parentEntityId?: string;
|
|
1859
1861
|
additionalFields?: ComponentAnswerDto_AdditionalFieldsDto;
|
|
1860
1862
|
};
|
|
1861
1863
|
type ToggleFavouriteConfirmedTemplateDto = {
|
|
@@ -4980,6 +4982,7 @@ type generateNegotiationsReportData = {
|
|
|
4980
4982
|
* Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
|
|
4981
4983
|
*/
|
|
4982
4984
|
missingApprovers?: boolean;
|
|
4985
|
+
fund: Array<string>;
|
|
4983
4986
|
};
|
|
4984
4987
|
url: '/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}';
|
|
4985
4988
|
};
|
|
@@ -7564,7 +7567,7 @@ type listNegotiationsData = {
|
|
|
7564
7567
|
path: {
|
|
7565
7568
|
subAccountId: string;
|
|
7566
7569
|
};
|
|
7567
|
-
query
|
|
7570
|
+
query: {
|
|
7568
7571
|
/**
|
|
7569
7572
|
* Filter by negotiation state
|
|
7570
7573
|
*/
|
|
@@ -7721,6 +7724,7 @@ type listNegotiationsData = {
|
|
|
7721
7724
|
* Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
|
|
7722
7725
|
*/
|
|
7723
7726
|
missingApprovers?: boolean;
|
|
7727
|
+
fund: Array<string>;
|
|
7724
7728
|
};
|
|
7725
7729
|
url: '/api/v1/subAccounts/{subAccountId}/negotiations';
|
|
7726
7730
|
};
|
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
|
};
|
|
@@ -1856,6 +1857,7 @@ type ComponentAnswerDto_FundListEntityDto = {
|
|
|
1856
1857
|
accept?: boolean;
|
|
1857
1858
|
lei?: string;
|
|
1858
1859
|
fundIdentifier?: string;
|
|
1860
|
+
parentEntityId?: string;
|
|
1859
1861
|
additionalFields?: ComponentAnswerDto_AdditionalFieldsDto;
|
|
1860
1862
|
};
|
|
1861
1863
|
type ToggleFavouriteConfirmedTemplateDto = {
|
|
@@ -4980,6 +4982,7 @@ type generateNegotiationsReportData = {
|
|
|
4980
4982
|
* Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
|
|
4981
4983
|
*/
|
|
4982
4984
|
missingApprovers?: boolean;
|
|
4985
|
+
fund: Array<string>;
|
|
4983
4986
|
};
|
|
4984
4987
|
url: '/api/v1/subAccounts/{subAccountId}/negotiations/report/{fileType}';
|
|
4985
4988
|
};
|
|
@@ -7564,7 +7567,7 @@ type listNegotiationsData = {
|
|
|
7564
7567
|
path: {
|
|
7565
7568
|
subAccountId: string;
|
|
7566
7569
|
};
|
|
7567
|
-
query
|
|
7570
|
+
query: {
|
|
7568
7571
|
/**
|
|
7569
7572
|
* Filter by negotiation state
|
|
7570
7573
|
*/
|
|
@@ -7721,6 +7724,7 @@ type listNegotiationsData = {
|
|
|
7721
7724
|
* Return only negotiations with missing approvers if missingApprovers is true, or only negotiations without missing approvers if it is false
|
|
7722
7725
|
*/
|
|
7723
7726
|
missingApprovers?: boolean;
|
|
7727
|
+
fund: Array<string>;
|
|
7724
7728
|
};
|
|
7725
7729
|
url: '/api/v1/subAccounts/{subAccountId}/negotiations';
|
|
7726
7730
|
};
|
package/package.json
CHANGED
package/swagger.json.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
66eaade22b5c2451c27521d2919623f216bfe17be671f4315b72eb3c7ddbe011
|