@sovity.de/edc-client 16.0.0 → 16.1.0
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.
|
@@ -3,7 +3,7 @@ export declare interface ApiResponse<T> {
|
|
|
3
3
|
value(): Promise<T>;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
export declare interface
|
|
6
|
+
export declare interface AssetDetailPageRequest {
|
|
7
7
|
assetId: string;
|
|
8
8
|
}
|
|
9
9
|
|
|
@@ -68,137 +68,129 @@ export declare function AssetFilterConstraintToJSON(json: any): AssetFilterConst
|
|
|
68
68
|
export declare function AssetFilterConstraintToJSONTyped(value?: AssetFilterConstraint | null, ignoreDiscriminator?: boolean): any;
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Assets Page Entry
|
|
72
72
|
* @export
|
|
73
|
-
* @interface
|
|
73
|
+
* @interface AssetsPageEntry
|
|
74
74
|
*/
|
|
75
|
-
export declare interface
|
|
75
|
+
export declare interface AssetsPageEntry {
|
|
76
76
|
/**
|
|
77
|
-
*
|
|
78
|
-
* @type {
|
|
79
|
-
* @memberof
|
|
80
|
-
*/
|
|
81
|
-
content: Array<UiAsset>;
|
|
82
|
-
/**
|
|
83
|
-
* Number of items on all pages.
|
|
84
|
-
* @type {number}
|
|
85
|
-
* @memberof AssetListPage
|
|
86
|
-
*/
|
|
87
|
-
totalItems: number;
|
|
88
|
-
/**
|
|
89
|
-
* Index of the last page
|
|
90
|
-
* @type {number}
|
|
91
|
-
* @memberof AssetListPage
|
|
92
|
-
*/
|
|
93
|
-
lastPage: number;
|
|
94
|
-
/**
|
|
95
|
-
* Index of the previous page.
|
|
96
|
-
* @type {number}
|
|
97
|
-
* @memberof AssetListPage
|
|
98
|
-
*/
|
|
99
|
-
previousPage?: number;
|
|
100
|
-
/**
|
|
101
|
-
* Index of the current page
|
|
102
|
-
* @type {number}
|
|
103
|
-
* @memberof AssetListPage
|
|
104
|
-
*/
|
|
105
|
-
currentPage: number;
|
|
106
|
-
/**
|
|
107
|
-
* Index of the next page.
|
|
108
|
-
* @type {number}
|
|
109
|
-
* @memberof AssetListPage
|
|
77
|
+
* Asset ID
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof AssetsPageEntry
|
|
110
80
|
*/
|
|
111
|
-
|
|
81
|
+
assetId: string;
|
|
112
82
|
/**
|
|
113
|
-
*
|
|
114
|
-
* @type {
|
|
115
|
-
* @memberof
|
|
83
|
+
* Asset Title
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof AssetsPageEntry
|
|
116
86
|
*/
|
|
117
|
-
|
|
87
|
+
title: string;
|
|
118
88
|
/**
|
|
119
|
-
*
|
|
120
|
-
* @type {
|
|
121
|
-
* @memberof
|
|
89
|
+
* Asset Description Short Text generated from description. Contains no markdown.
|
|
90
|
+
* @type {string}
|
|
91
|
+
* @memberof AssetsPageEntry
|
|
122
92
|
*/
|
|
123
|
-
|
|
93
|
+
descriptionShortText?: string;
|
|
124
94
|
/**
|
|
125
|
-
*
|
|
126
|
-
* @type {
|
|
127
|
-
* @memberof
|
|
95
|
+
* 'Live' vs 'On Request'
|
|
96
|
+
* @type {DataSourceAvailability}
|
|
97
|
+
* @memberof AssetsPageEntry
|
|
128
98
|
*/
|
|
129
|
-
|
|
99
|
+
dataSourceAvailability: DataSourceAvailability;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export declare function AssetsPageEntryFromJSON(json: any): AssetsPageEntry;
|
|
103
|
+
|
|
104
|
+
export declare function AssetsPageEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetsPageEntry;
|
|
105
|
+
|
|
106
|
+
export declare function AssetsPageEntryToJSON(json: any): AssetsPageEntry;
|
|
107
|
+
|
|
108
|
+
export declare function AssetsPageEntryToJSONTyped(value?: AssetsPageEntry | null, ignoreDiscriminator?: boolean): any;
|
|
109
|
+
|
|
110
|
+
export declare interface AssetsPageOperationRequest {
|
|
111
|
+
assetsPageRequest?: AssetsPageRequest;
|
|
130
112
|
}
|
|
131
113
|
|
|
132
114
|
/**
|
|
133
|
-
* Properties to filter and sort the
|
|
115
|
+
* Properties to filter and sort the assets page
|
|
134
116
|
* @export
|
|
135
|
-
* @interface
|
|
117
|
+
* @interface AssetsPageRequest
|
|
136
118
|
*/
|
|
137
|
-
export declare interface
|
|
119
|
+
export declare interface AssetsPageRequest {
|
|
138
120
|
/**
|
|
139
|
-
*
|
|
140
|
-
* @type {
|
|
141
|
-
* @memberof
|
|
121
|
+
* Pagination
|
|
122
|
+
* @type {PaginationRequest}
|
|
123
|
+
* @memberof AssetsPageRequest
|
|
142
124
|
*/
|
|
143
|
-
|
|
125
|
+
pagination?: PaginationRequest;
|
|
144
126
|
/**
|
|
145
|
-
*
|
|
146
|
-
* @type {
|
|
147
|
-
* @memberof
|
|
148
|
-
*/
|
|
149
|
-
page?: number;
|
|
150
|
-
/**
|
|
151
|
-
* Size of each page. If left out, show all entries
|
|
152
|
-
* @type {number}
|
|
153
|
-
* @memberof AssetListPageFilter
|
|
127
|
+
* Query for filtering. If empty, show all entries
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof AssetsPageRequest
|
|
154
130
|
*/
|
|
155
|
-
|
|
131
|
+
searchText?: string;
|
|
156
132
|
/**
|
|
157
|
-
* Sort List by properties in order of appearance in the array.
|
|
158
|
-
* @type {Array<
|
|
159
|
-
* @memberof
|
|
133
|
+
* Sort List by properties in order of appearance in the array.
|
|
134
|
+
* @type {Array<SortByRequestAssetsPageSortProperty>}
|
|
135
|
+
* @memberof AssetsPageRequest
|
|
160
136
|
*/
|
|
161
|
-
|
|
137
|
+
sortBy?: Array<SortByRequestAssetsPageSortProperty>;
|
|
162
138
|
}
|
|
163
139
|
|
|
164
|
-
export declare function
|
|
140
|
+
export declare function AssetsPageRequestFromJSON(json: any): AssetsPageRequest;
|
|
165
141
|
|
|
166
|
-
export declare function
|
|
142
|
+
export declare function AssetsPageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetsPageRequest;
|
|
167
143
|
|
|
168
|
-
export declare function
|
|
144
|
+
export declare function AssetsPageRequestToJSON(json: any): AssetsPageRequest;
|
|
169
145
|
|
|
170
|
-
export declare function
|
|
146
|
+
export declare function AssetsPageRequestToJSONTyped(value?: AssetsPageRequest | null, ignoreDiscriminator?: boolean): any;
|
|
171
147
|
|
|
172
|
-
|
|
148
|
+
/**
|
|
149
|
+
* Assets Page Result
|
|
150
|
+
* @export
|
|
151
|
+
* @interface AssetsPageResult
|
|
152
|
+
*/
|
|
153
|
+
export declare interface AssetsPageResult {
|
|
154
|
+
/**
|
|
155
|
+
* List of assets
|
|
156
|
+
* @type {Array<AssetsPageEntry>}
|
|
157
|
+
* @memberof AssetsPageResult
|
|
158
|
+
*/
|
|
159
|
+
assets: Array<AssetsPageEntry>;
|
|
160
|
+
/**
|
|
161
|
+
* Pagination Information
|
|
162
|
+
* @type {PaginationResult}
|
|
163
|
+
* @memberof AssetsPageResult
|
|
164
|
+
*/
|
|
165
|
+
pagination: PaginationResult;
|
|
166
|
+
}
|
|
173
167
|
|
|
174
|
-
export declare function
|
|
168
|
+
export declare function AssetsPageResultFromJSON(json: any): AssetsPageResult;
|
|
175
169
|
|
|
176
|
-
export declare
|
|
177
|
-
assetListPageFilter?: AssetListPageFilter;
|
|
178
|
-
}
|
|
170
|
+
export declare function AssetsPageResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetsPageResult;
|
|
179
171
|
|
|
180
|
-
export declare function
|
|
172
|
+
export declare function AssetsPageResultToJSON(json: any): AssetsPageResult;
|
|
181
173
|
|
|
182
|
-
export declare function
|
|
174
|
+
export declare function AssetsPageResultToJSONTyped(value?: AssetsPageResult | null, ignoreDiscriminator?: boolean): any;
|
|
183
175
|
|
|
184
176
|
/**
|
|
185
|
-
* Properties, for which sorting in the
|
|
177
|
+
* Properties, for which sorting in the assets page is enabled
|
|
186
178
|
* @export
|
|
187
179
|
*/
|
|
188
|
-
export declare const
|
|
180
|
+
export declare const AssetsPageSortProperty: {
|
|
189
181
|
readonly Title: "TITLE";
|
|
190
|
-
readonly
|
|
182
|
+
readonly Description: "DESCRIPTION";
|
|
191
183
|
};
|
|
192
184
|
|
|
193
|
-
export declare type
|
|
185
|
+
export declare type AssetsPageSortProperty = (typeof AssetsPageSortProperty)[keyof typeof AssetsPageSortProperty];
|
|
194
186
|
|
|
195
|
-
export declare function
|
|
187
|
+
export declare function AssetsPageSortPropertyFromJSON(json: any): AssetsPageSortProperty;
|
|
196
188
|
|
|
197
|
-
export declare function
|
|
189
|
+
export declare function AssetsPageSortPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetsPageSortProperty;
|
|
198
190
|
|
|
199
|
-
export declare function
|
|
191
|
+
export declare function AssetsPageSortPropertyToJSON(value?: AssetsPageSortProperty | null): any;
|
|
200
192
|
|
|
201
|
-
export declare function
|
|
193
|
+
export declare function AssetsPageSortPropertyToJSONTyped(value: any, ignoreDiscriminator: boolean): AssetsPageSortProperty;
|
|
202
194
|
|
|
203
195
|
/**
|
|
204
196
|
* sovity EDC API Wrapper
|
|
@@ -833,88 +825,6 @@ export declare interface Consume {
|
|
|
833
825
|
contentType: string;
|
|
834
826
|
}
|
|
835
827
|
|
|
836
|
-
/**
|
|
837
|
-
* Contract Agreement for Contract Agreement Page
|
|
838
|
-
* @export
|
|
839
|
-
* @interface ContractAgreementCard
|
|
840
|
-
*/
|
|
841
|
-
export declare interface ContractAgreementCard {
|
|
842
|
-
/**
|
|
843
|
-
* Contract Agreement ID
|
|
844
|
-
* @type {string}
|
|
845
|
-
* @memberof ContractAgreementCard
|
|
846
|
-
*/
|
|
847
|
-
contractAgreementId: string;
|
|
848
|
-
/**
|
|
849
|
-
* Contract Negotiation ID
|
|
850
|
-
* @type {string}
|
|
851
|
-
* @memberof ContractAgreementCard
|
|
852
|
-
*/
|
|
853
|
-
contractNegotiationId: string;
|
|
854
|
-
/**
|
|
855
|
-
* Incoming vs Outgoing
|
|
856
|
-
* @type {ContractAgreementDirection}
|
|
857
|
-
* @memberof ContractAgreementCard
|
|
858
|
-
*/
|
|
859
|
-
direction: ContractAgreementDirection;
|
|
860
|
-
/**
|
|
861
|
-
* Other Connector's Endpoint
|
|
862
|
-
* @type {string}
|
|
863
|
-
* @memberof ContractAgreementCard
|
|
864
|
-
*/
|
|
865
|
-
counterPartyAddress: string;
|
|
866
|
-
/**
|
|
867
|
-
* Other Connector's ID
|
|
868
|
-
* @type {string}
|
|
869
|
-
* @memberof ContractAgreementCard
|
|
870
|
-
*/
|
|
871
|
-
counterPartyId: string;
|
|
872
|
-
/**
|
|
873
|
-
* Contract Agreements Signing Date
|
|
874
|
-
* @type {Date}
|
|
875
|
-
* @memberof ContractAgreementCard
|
|
876
|
-
*/
|
|
877
|
-
contractSigningDate: Date;
|
|
878
|
-
/**
|
|
879
|
-
* Asset details
|
|
880
|
-
* @type {UiAsset}
|
|
881
|
-
* @memberof ContractAgreementCard
|
|
882
|
-
*/
|
|
883
|
-
asset: UiAsset;
|
|
884
|
-
/**
|
|
885
|
-
* Contract Policy
|
|
886
|
-
* @type {UiPolicy}
|
|
887
|
-
* @memberof ContractAgreementCard
|
|
888
|
-
*/
|
|
889
|
-
contractPolicy: UiPolicy;
|
|
890
|
-
/**
|
|
891
|
-
* Contract Agreement's Transfer Processes
|
|
892
|
-
* @type {Array<ContractAgreementTransferProcess>}
|
|
893
|
-
* @memberof ContractAgreementCard
|
|
894
|
-
*/
|
|
895
|
-
transferProcesses: Array<ContractAgreementTransferProcess>;
|
|
896
|
-
/**
|
|
897
|
-
* Contract Agreement's Termination Status
|
|
898
|
-
* @type {ContractTerminationStatus}
|
|
899
|
-
* @memberof ContractAgreementCard
|
|
900
|
-
*/
|
|
901
|
-
terminationStatus: ContractTerminationStatus;
|
|
902
|
-
/**
|
|
903
|
-
* Contract Agreement's Metadata
|
|
904
|
-
* @type {ContractAgreementTerminationInfo}
|
|
905
|
-
* @memberof ContractAgreementCard
|
|
906
|
-
*/
|
|
907
|
-
terminationInformation?: ContractAgreementTerminationInfo;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
export declare function ContractAgreementCardFromJSON(json: any): ContractAgreementCard;
|
|
911
|
-
|
|
912
|
-
export declare function ContractAgreementCardFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementCard;
|
|
913
|
-
|
|
914
|
-
export declare function ContractAgreementCardToJSON(json: any): ContractAgreementCard;
|
|
915
|
-
|
|
916
|
-
export declare function ContractAgreementCardToJSONTyped(value?: ContractAgreementCard | null, ignoreDiscriminator?: boolean): any;
|
|
917
|
-
|
|
918
828
|
/**
|
|
919
829
|
* Whether the contract agreement is incoming or outgoing
|
|
920
830
|
* @export
|
|
@@ -934,50 +844,6 @@ export declare function ContractAgreementDirectionToJSON(value?: ContractAgreeme
|
|
|
934
844
|
|
|
935
845
|
export declare function ContractAgreementDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): ContractAgreementDirection;
|
|
936
846
|
|
|
937
|
-
/**
|
|
938
|
-
* Data as required by the UI's Contract Agreement Page
|
|
939
|
-
* @export
|
|
940
|
-
* @interface ContractAgreementPage
|
|
941
|
-
*/
|
|
942
|
-
export declare interface ContractAgreementPage {
|
|
943
|
-
/**
|
|
944
|
-
* Contract Agreement Cards
|
|
945
|
-
* @type {Array<ContractAgreementCard>}
|
|
946
|
-
* @memberof ContractAgreementPage
|
|
947
|
-
*/
|
|
948
|
-
contractAgreements: Array<ContractAgreementCard>;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
export declare function ContractAgreementPageFromJSON(json: any): ContractAgreementPage;
|
|
952
|
-
|
|
953
|
-
export declare function ContractAgreementPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementPage;
|
|
954
|
-
|
|
955
|
-
/**
|
|
956
|
-
* Filters for querying a Contract Contract Agreement Page
|
|
957
|
-
* @export
|
|
958
|
-
* @interface ContractAgreementPageQuery
|
|
959
|
-
*/
|
|
960
|
-
export declare interface ContractAgreementPageQuery {
|
|
961
|
-
/**
|
|
962
|
-
* Optionally filter the resulting contract agreements by their termination status.
|
|
963
|
-
* @type {ContractTerminationStatus}
|
|
964
|
-
* @memberof ContractAgreementPageQuery
|
|
965
|
-
*/
|
|
966
|
-
terminationStatus?: ContractTerminationStatus;
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
export declare function ContractAgreementPageQueryFromJSON(json: any): ContractAgreementPageQuery;
|
|
970
|
-
|
|
971
|
-
export declare function ContractAgreementPageQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementPageQuery;
|
|
972
|
-
|
|
973
|
-
export declare function ContractAgreementPageQueryToJSON(json: any): ContractAgreementPageQuery;
|
|
974
|
-
|
|
975
|
-
export declare function ContractAgreementPageQueryToJSONTyped(value?: ContractAgreementPageQuery | null, ignoreDiscriminator?: boolean): any;
|
|
976
|
-
|
|
977
|
-
export declare function ContractAgreementPageToJSON(json: any): ContractAgreementPage;
|
|
978
|
-
|
|
979
|
-
export declare function ContractAgreementPageToJSONTyped(value?: ContractAgreementPage | null, ignoreDiscriminator?: boolean): any;
|
|
980
|
-
|
|
981
847
|
/**
|
|
982
848
|
* Contract's agreement metadata
|
|
983
849
|
* @export
|
|
@@ -1019,7 +885,7 @@ export declare function ContractAgreementTerminationInfoToJSON(json: any): Contr
|
|
|
1019
885
|
export declare function ContractAgreementTerminationInfoToJSONTyped(value?: ContractAgreementTerminationInfo | null, ignoreDiscriminator?: boolean): any;
|
|
1020
886
|
|
|
1021
887
|
/**
|
|
1022
|
-
* A Contract Agreement's Transfer Process
|
|
888
|
+
* A Contract Agreement's Transfer Process for the Contract Agreement Details Page
|
|
1023
889
|
* @export
|
|
1024
890
|
* @interface ContractAgreementTransferProcess
|
|
1025
891
|
*/
|
|
@@ -1160,6 +1026,92 @@ export declare function ContractDefinitionRequestToJSON(json: any): ContractDefi
|
|
|
1160
1026
|
|
|
1161
1027
|
export declare function ContractDefinitionRequestToJSONTyped(value?: ContractDefinitionRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1162
1028
|
|
|
1029
|
+
export declare interface ContractDetailPageRequest {
|
|
1030
|
+
contractAgreementId: string;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
/**
|
|
1034
|
+
* Contract Agreement Details Page
|
|
1035
|
+
* @export
|
|
1036
|
+
* @interface ContractDetailPageResult
|
|
1037
|
+
*/
|
|
1038
|
+
export declare interface ContractDetailPageResult {
|
|
1039
|
+
/**
|
|
1040
|
+
* Contract Agreement ID
|
|
1041
|
+
* @type {string}
|
|
1042
|
+
* @memberof ContractDetailPageResult
|
|
1043
|
+
*/
|
|
1044
|
+
contractAgreementId: string;
|
|
1045
|
+
/**
|
|
1046
|
+
* Contract Negotiation ID
|
|
1047
|
+
* @type {string}
|
|
1048
|
+
* @memberof ContractDetailPageResult
|
|
1049
|
+
*/
|
|
1050
|
+
contractNegotiationId: string;
|
|
1051
|
+
/**
|
|
1052
|
+
* Incoming vs Outgoing
|
|
1053
|
+
* @type {ContractAgreementDirection}
|
|
1054
|
+
* @memberof ContractDetailPageResult
|
|
1055
|
+
*/
|
|
1056
|
+
direction: ContractAgreementDirection;
|
|
1057
|
+
/**
|
|
1058
|
+
* Other Connector's Endpoint
|
|
1059
|
+
* @type {string}
|
|
1060
|
+
* @memberof ContractDetailPageResult
|
|
1061
|
+
*/
|
|
1062
|
+
counterPartyAddress: string;
|
|
1063
|
+
/**
|
|
1064
|
+
* Other Connector's ID
|
|
1065
|
+
* @type {string}
|
|
1066
|
+
* @memberof ContractDetailPageResult
|
|
1067
|
+
*/
|
|
1068
|
+
counterPartyId: string;
|
|
1069
|
+
/**
|
|
1070
|
+
* Contract Agreements Signing Date
|
|
1071
|
+
* @type {Date}
|
|
1072
|
+
* @memberof ContractDetailPageResult
|
|
1073
|
+
*/
|
|
1074
|
+
contractSigningDate: Date;
|
|
1075
|
+
/**
|
|
1076
|
+
* Asset details
|
|
1077
|
+
* @type {UiAsset}
|
|
1078
|
+
* @memberof ContractDetailPageResult
|
|
1079
|
+
*/
|
|
1080
|
+
asset: UiAsset;
|
|
1081
|
+
/**
|
|
1082
|
+
* Contract Policy
|
|
1083
|
+
* @type {UiPolicy}
|
|
1084
|
+
* @memberof ContractDetailPageResult
|
|
1085
|
+
*/
|
|
1086
|
+
contractPolicy: UiPolicy;
|
|
1087
|
+
/**
|
|
1088
|
+
* Contract Agreement's Transfer Processes
|
|
1089
|
+
* @type {Array<ContractAgreementTransferProcess>}
|
|
1090
|
+
* @memberof ContractDetailPageResult
|
|
1091
|
+
*/
|
|
1092
|
+
transferProcesses: Array<ContractAgreementTransferProcess>;
|
|
1093
|
+
/**
|
|
1094
|
+
* Contract Agreement's Termination Status
|
|
1095
|
+
* @type {ContractTerminationStatus}
|
|
1096
|
+
* @memberof ContractDetailPageResult
|
|
1097
|
+
*/
|
|
1098
|
+
terminationStatus: ContractTerminationStatus;
|
|
1099
|
+
/**
|
|
1100
|
+
* Contract Agreement's Metadata
|
|
1101
|
+
* @type {ContractAgreementTerminationInfo}
|
|
1102
|
+
* @memberof ContractDetailPageResult
|
|
1103
|
+
*/
|
|
1104
|
+
terminationInformation?: ContractAgreementTerminationInfo;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
export declare function ContractDetailPageResultFromJSON(json: any): ContractDetailPageResult;
|
|
1108
|
+
|
|
1109
|
+
export declare function ContractDetailPageResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractDetailPageResult;
|
|
1110
|
+
|
|
1111
|
+
export declare function ContractDetailPageResultToJSON(json: any): ContractDetailPageResult;
|
|
1112
|
+
|
|
1113
|
+
export declare function ContractDetailPageResultToJSONTyped(value?: ContractDetailPageResult | null, ignoreDiscriminator?: boolean): any;
|
|
1114
|
+
|
|
1163
1115
|
/**
|
|
1164
1116
|
* Data for initiating a Contract Negotiation
|
|
1165
1117
|
* @export
|
|
@@ -1312,6 +1264,169 @@ export declare function ContractNegotiationStateToJSON(json: any): ContractNegot
|
|
|
1312
1264
|
|
|
1313
1265
|
export declare function ContractNegotiationStateToJSONTyped(value?: ContractNegotiationState | null, ignoreDiscriminator?: boolean): any;
|
|
1314
1266
|
|
|
1267
|
+
/**
|
|
1268
|
+
* Contracts Page Entry
|
|
1269
|
+
* @export
|
|
1270
|
+
* @interface ContractsPageEntry
|
|
1271
|
+
*/
|
|
1272
|
+
export declare interface ContractsPageEntry {
|
|
1273
|
+
/**
|
|
1274
|
+
* Contract Agreement ID
|
|
1275
|
+
* @type {string}
|
|
1276
|
+
* @memberof ContractsPageEntry
|
|
1277
|
+
*/
|
|
1278
|
+
contractAgreementId: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* Incoming vs Outgoing
|
|
1281
|
+
* @type {ContractAgreementDirection}
|
|
1282
|
+
* @memberof ContractsPageEntry
|
|
1283
|
+
*/
|
|
1284
|
+
direction: ContractAgreementDirection;
|
|
1285
|
+
/**
|
|
1286
|
+
* Other Connector's ID
|
|
1287
|
+
* @type {string}
|
|
1288
|
+
* @memberof ContractsPageEntry
|
|
1289
|
+
*/
|
|
1290
|
+
counterPartyId: string;
|
|
1291
|
+
/**
|
|
1292
|
+
* Contract Agreements Signing Date
|
|
1293
|
+
* @type {Date}
|
|
1294
|
+
* @memberof ContractsPageEntry
|
|
1295
|
+
*/
|
|
1296
|
+
contractSigningDate: Date;
|
|
1297
|
+
/**
|
|
1298
|
+
* Asset ID
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof ContractsPageEntry
|
|
1301
|
+
*/
|
|
1302
|
+
assetId: string;
|
|
1303
|
+
/**
|
|
1304
|
+
* Asset title
|
|
1305
|
+
* @type {string}
|
|
1306
|
+
* @memberof ContractsPageEntry
|
|
1307
|
+
*/
|
|
1308
|
+
assetTitle: string;
|
|
1309
|
+
/**
|
|
1310
|
+
* Number of transfer processes
|
|
1311
|
+
* @type {number}
|
|
1312
|
+
* @memberof ContractsPageEntry
|
|
1313
|
+
*/
|
|
1314
|
+
transferProcessesCount: number;
|
|
1315
|
+
/**
|
|
1316
|
+
* Contract Agreement's Termination Status
|
|
1317
|
+
* @type {ContractTerminationStatus}
|
|
1318
|
+
* @memberof ContractsPageEntry
|
|
1319
|
+
*/
|
|
1320
|
+
terminationStatus: ContractTerminationStatus;
|
|
1321
|
+
/**
|
|
1322
|
+
* Contract Terminated At
|
|
1323
|
+
* @type {Date}
|
|
1324
|
+
* @memberof ContractsPageEntry
|
|
1325
|
+
*/
|
|
1326
|
+
terminatedAt?: Date;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
export declare function ContractsPageEntryFromJSON(json: any): ContractsPageEntry;
|
|
1330
|
+
|
|
1331
|
+
export declare function ContractsPageEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractsPageEntry;
|
|
1332
|
+
|
|
1333
|
+
export declare function ContractsPageEntryToJSON(json: any): ContractsPageEntry;
|
|
1334
|
+
|
|
1335
|
+
export declare function ContractsPageEntryToJSONTyped(value?: ContractsPageEntry | null, ignoreDiscriminator?: boolean): any;
|
|
1336
|
+
|
|
1337
|
+
export declare interface ContractsPageOperationRequest {
|
|
1338
|
+
contractsPageRequest?: ContractsPageRequest;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
/**
|
|
1342
|
+
* Properties to filter and sort the contracts page
|
|
1343
|
+
* @export
|
|
1344
|
+
* @interface ContractsPageRequest
|
|
1345
|
+
*/
|
|
1346
|
+
export declare interface ContractsPageRequest {
|
|
1347
|
+
/**
|
|
1348
|
+
* Filter for the termination-status of the contract
|
|
1349
|
+
* @type {ContractTerminationStatus}
|
|
1350
|
+
* @memberof ContractsPageRequest
|
|
1351
|
+
*/
|
|
1352
|
+
terminationStatus?: ContractTerminationStatus;
|
|
1353
|
+
/**
|
|
1354
|
+
* Pagination
|
|
1355
|
+
* @type {PaginationRequest}
|
|
1356
|
+
* @memberof ContractsPageRequest
|
|
1357
|
+
*/
|
|
1358
|
+
pagination?: PaginationRequest;
|
|
1359
|
+
/**
|
|
1360
|
+
* Query for filtering. If empty, show all entries
|
|
1361
|
+
* @type {string}
|
|
1362
|
+
* @memberof ContractsPageRequest
|
|
1363
|
+
*/
|
|
1364
|
+
searchText?: string;
|
|
1365
|
+
/**
|
|
1366
|
+
* Sort List by properties in order of appearance in the array.
|
|
1367
|
+
* @type {Array<SortByRequestContractsPageSortProperty>}
|
|
1368
|
+
* @memberof ContractsPageRequest
|
|
1369
|
+
*/
|
|
1370
|
+
sortBy?: Array<SortByRequestContractsPageSortProperty>;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
export declare function ContractsPageRequestFromJSON(json: any): ContractsPageRequest;
|
|
1374
|
+
|
|
1375
|
+
export declare function ContractsPageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractsPageRequest;
|
|
1376
|
+
|
|
1377
|
+
export declare function ContractsPageRequestToJSON(json: any): ContractsPageRequest;
|
|
1378
|
+
|
|
1379
|
+
export declare function ContractsPageRequestToJSONTyped(value?: ContractsPageRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* Contracts Page Result
|
|
1383
|
+
* @export
|
|
1384
|
+
* @interface ContractsPageResult
|
|
1385
|
+
*/
|
|
1386
|
+
export declare interface ContractsPageResult {
|
|
1387
|
+
/**
|
|
1388
|
+
* List of contract agreements
|
|
1389
|
+
* @type {Array<ContractsPageEntry>}
|
|
1390
|
+
* @memberof ContractsPageResult
|
|
1391
|
+
*/
|
|
1392
|
+
contracts: Array<ContractsPageEntry>;
|
|
1393
|
+
/**
|
|
1394
|
+
* Pagination Information
|
|
1395
|
+
* @type {PaginationResult}
|
|
1396
|
+
* @memberof ContractsPageResult
|
|
1397
|
+
*/
|
|
1398
|
+
pagination: PaginationResult;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
export declare function ContractsPageResultFromJSON(json: any): ContractsPageResult;
|
|
1402
|
+
|
|
1403
|
+
export declare function ContractsPageResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractsPageResult;
|
|
1404
|
+
|
|
1405
|
+
export declare function ContractsPageResultToJSON(json: any): ContractsPageResult;
|
|
1406
|
+
|
|
1407
|
+
export declare function ContractsPageResultToJSONTyped(value?: ContractsPageResult | null, ignoreDiscriminator?: boolean): any;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* Properties, for which sorting in the contract agreement list page is enabled
|
|
1411
|
+
* @export
|
|
1412
|
+
*/
|
|
1413
|
+
export declare const ContractsPageSortProperty: {
|
|
1414
|
+
readonly ContractName: "CONTRACT_NAME";
|
|
1415
|
+
readonly SignedAt: "SIGNED_AT";
|
|
1416
|
+
readonly TerminatedAt: "TERMINATED_AT";
|
|
1417
|
+
readonly Transfers: "TRANSFERS";
|
|
1418
|
+
};
|
|
1419
|
+
|
|
1420
|
+
export declare type ContractsPageSortProperty = (typeof ContractsPageSortProperty)[keyof typeof ContractsPageSortProperty];
|
|
1421
|
+
|
|
1422
|
+
export declare function ContractsPageSortPropertyFromJSON(json: any): ContractsPageSortProperty;
|
|
1423
|
+
|
|
1424
|
+
export declare function ContractsPageSortPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractsPageSortProperty;
|
|
1425
|
+
|
|
1426
|
+
export declare function ContractsPageSortPropertyToJSON(value?: ContractsPageSortProperty | null): any;
|
|
1427
|
+
|
|
1428
|
+
export declare function ContractsPageSortPropertyToJSONTyped(value: any, ignoreDiscriminator: boolean): ContractsPageSortProperty;
|
|
1429
|
+
|
|
1315
1430
|
/**
|
|
1316
1431
|
* Whether the contract termination was initiated by this EDC or a counterparty EDC.
|
|
1317
1432
|
* @export
|
|
@@ -1899,14 +2014,6 @@ export declare interface GetCatalogPageDataOffersRequest {
|
|
|
1899
2014
|
connectorEndpoint?: string;
|
|
1900
2015
|
}
|
|
1901
2016
|
|
|
1902
|
-
export declare interface GetContractAgreementCardRequest {
|
|
1903
|
-
contractAgreementId: string;
|
|
1904
|
-
}
|
|
1905
|
-
|
|
1906
|
-
export declare interface GetContractAgreementPageRequest {
|
|
1907
|
-
contractAgreementPageQuery?: ContractAgreementPageQuery;
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
2017
|
export declare interface GetContractNegotiationRequest {
|
|
1911
2018
|
contractNegotiationId: string;
|
|
1912
2019
|
}
|
|
@@ -2103,16 +2210,21 @@ export declare function instanceOfAssetFilterConstraint(value: any): value is As
|
|
|
2103
2210
|
export declare function instanceOfAssetFilterConstraintOperator(value: any): boolean;
|
|
2104
2211
|
|
|
2105
2212
|
/**
|
|
2106
|
-
* Check if a given object implements the
|
|
2213
|
+
* Check if a given object implements the AssetsPageEntry interface.
|
|
2107
2214
|
*/
|
|
2108
|
-
export declare function
|
|
2215
|
+
export declare function instanceOfAssetsPageEntry(value: any): value is AssetsPageEntry;
|
|
2109
2216
|
|
|
2110
2217
|
/**
|
|
2111
|
-
* Check if a given object implements the
|
|
2218
|
+
* Check if a given object implements the AssetsPageRequest interface.
|
|
2112
2219
|
*/
|
|
2113
|
-
export declare function
|
|
2220
|
+
export declare function instanceOfAssetsPageRequest(value: any): value is AssetsPageRequest;
|
|
2114
2221
|
|
|
2115
|
-
|
|
2222
|
+
/**
|
|
2223
|
+
* Check if a given object implements the AssetsPageResult interface.
|
|
2224
|
+
*/
|
|
2225
|
+
export declare function instanceOfAssetsPageResult(value: any): value is AssetsPageResult;
|
|
2226
|
+
|
|
2227
|
+
export declare function instanceOfAssetsPageSortProperty(value: any): boolean;
|
|
2116
2228
|
|
|
2117
2229
|
/**
|
|
2118
2230
|
* Check if a given object implements the BuildInfo interface.
|
|
@@ -2187,23 +2299,8 @@ export declare function instanceOfCatalogSortByDirection(value: any): boolean;
|
|
|
2187
2299
|
*/
|
|
2188
2300
|
export declare function instanceOfConnectorLimits(value: any): value is ConnectorLimits;
|
|
2189
2301
|
|
|
2190
|
-
/**
|
|
2191
|
-
* Check if a given object implements the ContractAgreementCard interface.
|
|
2192
|
-
*/
|
|
2193
|
-
export declare function instanceOfContractAgreementCard(value: any): value is ContractAgreementCard;
|
|
2194
|
-
|
|
2195
2302
|
export declare function instanceOfContractAgreementDirection(value: any): boolean;
|
|
2196
2303
|
|
|
2197
|
-
/**
|
|
2198
|
-
* Check if a given object implements the ContractAgreementPage interface.
|
|
2199
|
-
*/
|
|
2200
|
-
export declare function instanceOfContractAgreementPage(value: any): value is ContractAgreementPage;
|
|
2201
|
-
|
|
2202
|
-
/**
|
|
2203
|
-
* Check if a given object implements the ContractAgreementPageQuery interface.
|
|
2204
|
-
*/
|
|
2205
|
-
export declare function instanceOfContractAgreementPageQuery(value: any): value is ContractAgreementPageQuery;
|
|
2206
|
-
|
|
2207
2304
|
/**
|
|
2208
2305
|
* Check if a given object implements the ContractAgreementTerminationInfo interface.
|
|
2209
2306
|
*/
|
|
@@ -2229,6 +2326,11 @@ export declare function instanceOfContractDefinitionPage(value: any): value is C
|
|
|
2229
2326
|
*/
|
|
2230
2327
|
export declare function instanceOfContractDefinitionRequest(value: any): value is ContractDefinitionRequest;
|
|
2231
2328
|
|
|
2329
|
+
/**
|
|
2330
|
+
* Check if a given object implements the ContractDetailPageResult interface.
|
|
2331
|
+
*/
|
|
2332
|
+
export declare function instanceOfContractDetailPageResult(value: any): value is ContractDetailPageResult;
|
|
2333
|
+
|
|
2232
2334
|
/**
|
|
2233
2335
|
* Check if a given object implements the ContractNegotiationRequest interface.
|
|
2234
2336
|
*/
|
|
@@ -2246,6 +2348,23 @@ export declare function instanceOfContractNegotiationState(value: any): value is
|
|
|
2246
2348
|
*/
|
|
2247
2349
|
export declare function instanceOfContractNegotiationStateResult(value: any): value is ContractNegotiationStateResult;
|
|
2248
2350
|
|
|
2351
|
+
/**
|
|
2352
|
+
* Check if a given object implements the ContractsPageEntry interface.
|
|
2353
|
+
*/
|
|
2354
|
+
export declare function instanceOfContractsPageEntry(value: any): value is ContractsPageEntry;
|
|
2355
|
+
|
|
2356
|
+
/**
|
|
2357
|
+
* Check if a given object implements the ContractsPageRequest interface.
|
|
2358
|
+
*/
|
|
2359
|
+
export declare function instanceOfContractsPageRequest(value: any): value is ContractsPageRequest;
|
|
2360
|
+
|
|
2361
|
+
/**
|
|
2362
|
+
* Check if a given object implements the ContractsPageResult interface.
|
|
2363
|
+
*/
|
|
2364
|
+
export declare function instanceOfContractsPageResult(value: any): value is ContractsPageResult;
|
|
2365
|
+
|
|
2366
|
+
export declare function instanceOfContractsPageSortProperty(value: any): boolean;
|
|
2367
|
+
|
|
2249
2368
|
export declare function instanceOfContractTerminatedBy(value: any): boolean;
|
|
2250
2369
|
|
|
2251
2370
|
/**
|
|
@@ -2328,6 +2447,16 @@ export declare function instanceOfNegotiateAllResult(value: any): value is Negot
|
|
|
2328
2447
|
|
|
2329
2448
|
export declare function instanceOfOperatorDto(value: any): boolean;
|
|
2330
2449
|
|
|
2450
|
+
/**
|
|
2451
|
+
* Check if a given object implements the PaginationRequest interface.
|
|
2452
|
+
*/
|
|
2453
|
+
export declare function instanceOfPaginationRequest(value: any): value is PaginationRequest;
|
|
2454
|
+
|
|
2455
|
+
/**
|
|
2456
|
+
* Check if a given object implements the PaginationResult interface.
|
|
2457
|
+
*/
|
|
2458
|
+
export declare function instanceOfPaginationResult(value: any): value is PaginationResult;
|
|
2459
|
+
|
|
2331
2460
|
/**
|
|
2332
2461
|
* Check if a given object implements the PolicyDefinitionCreateDto interface.
|
|
2333
2462
|
*/
|
|
@@ -2348,10 +2477,17 @@ export declare function instanceOfPolicyDefinitionDto(value: any): value is Poli
|
|
|
2348
2477
|
*/
|
|
2349
2478
|
export declare function instanceOfPolicyDefinitionPage(value: any): value is PolicyDefinitionPage;
|
|
2350
2479
|
|
|
2480
|
+
export declare function instanceOfSortByDirection(value: any): boolean;
|
|
2481
|
+
|
|
2351
2482
|
/**
|
|
2352
|
-
* Check if a given object implements the
|
|
2483
|
+
* Check if a given object implements the SortByRequestAssetsPageSortProperty interface.
|
|
2353
2484
|
*/
|
|
2354
|
-
export declare function
|
|
2485
|
+
export declare function instanceOfSortByRequestAssetsPageSortProperty(value: any): value is SortByRequestAssetsPageSortProperty;
|
|
2486
|
+
|
|
2487
|
+
/**
|
|
2488
|
+
* Check if a given object implements the SortByRequestContractsPageSortProperty interface.
|
|
2489
|
+
*/
|
|
2490
|
+
export declare function instanceOfSortByRequestContractsPageSortProperty(value: any): value is SortByRequestContractsPageSortProperty;
|
|
2355
2491
|
|
|
2356
2492
|
/**
|
|
2357
2493
|
* Check if a given object implements the TransferHistoryEntry interface.
|
|
@@ -2779,6 +2915,98 @@ export declare function OperatorDtoToJSON(value?: OperatorDto | null): any;
|
|
|
2779
2915
|
|
|
2780
2916
|
export declare function OperatorDtoToJSONTyped(value: any, ignoreDiscriminator: boolean): OperatorDto;
|
|
2781
2917
|
|
|
2918
|
+
/**
|
|
2919
|
+
* Specify pagination for list pages
|
|
2920
|
+
* @export
|
|
2921
|
+
* @interface PaginationRequest
|
|
2922
|
+
*/
|
|
2923
|
+
export declare interface PaginationRequest {
|
|
2924
|
+
/**
|
|
2925
|
+
* Page Index. Defaults to 1
|
|
2926
|
+
* @type {number}
|
|
2927
|
+
* @memberof PaginationRequest
|
|
2928
|
+
*/
|
|
2929
|
+
pageOneBased?: number;
|
|
2930
|
+
/**
|
|
2931
|
+
* Size of each page. If left out, show all entries
|
|
2932
|
+
* @type {number}
|
|
2933
|
+
* @memberof PaginationRequest
|
|
2934
|
+
*/
|
|
2935
|
+
pageSize?: number;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
export declare function PaginationRequestFromJSON(json: any): PaginationRequest;
|
|
2939
|
+
|
|
2940
|
+
export declare function PaginationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationRequest;
|
|
2941
|
+
|
|
2942
|
+
export declare function PaginationRequestToJSON(json: any): PaginationRequest;
|
|
2943
|
+
|
|
2944
|
+
export declare function PaginationRequestToJSONTyped(value?: PaginationRequest | null, ignoreDiscriminator?: boolean): any;
|
|
2945
|
+
|
|
2946
|
+
/**
|
|
2947
|
+
* Pagination Info for Table Pages
|
|
2948
|
+
* @export
|
|
2949
|
+
* @interface PaginationResult
|
|
2950
|
+
*/
|
|
2951
|
+
export declare interface PaginationResult {
|
|
2952
|
+
/**
|
|
2953
|
+
* Number of items on all pages.
|
|
2954
|
+
* @type {number}
|
|
2955
|
+
* @memberof PaginationResult
|
|
2956
|
+
*/
|
|
2957
|
+
totalItems: number;
|
|
2958
|
+
/**
|
|
2959
|
+
* Index of the last page. 1 Based
|
|
2960
|
+
* @type {number}
|
|
2961
|
+
* @memberof PaginationResult
|
|
2962
|
+
*/
|
|
2963
|
+
lastPage: number;
|
|
2964
|
+
/**
|
|
2965
|
+
* Index of the previous page. 1 Based
|
|
2966
|
+
* @type {number}
|
|
2967
|
+
* @memberof PaginationResult
|
|
2968
|
+
*/
|
|
2969
|
+
previousPage?: number;
|
|
2970
|
+
/**
|
|
2971
|
+
* Index of the current page. 1 Based
|
|
2972
|
+
* @type {number}
|
|
2973
|
+
* @memberof PaginationResult
|
|
2974
|
+
*/
|
|
2975
|
+
currentPage: number;
|
|
2976
|
+
/**
|
|
2977
|
+
* Index of the next page. 1 Based
|
|
2978
|
+
* @type {number}
|
|
2979
|
+
* @memberof PaginationResult
|
|
2980
|
+
*/
|
|
2981
|
+
nextPage?: number;
|
|
2982
|
+
/**
|
|
2983
|
+
* Index of the item at the start of the current page. 1 Based. 0 if empty page
|
|
2984
|
+
* @type {number}
|
|
2985
|
+
* @memberof PaginationResult
|
|
2986
|
+
*/
|
|
2987
|
+
pageStart: number;
|
|
2988
|
+
/**
|
|
2989
|
+
* Index of the item at the end of the current page. 1 Based. 0 if empty page
|
|
2990
|
+
* @type {number}
|
|
2991
|
+
* @memberof PaginationResult
|
|
2992
|
+
*/
|
|
2993
|
+
pageEnd: number;
|
|
2994
|
+
/**
|
|
2995
|
+
* Size of the current page.
|
|
2996
|
+
* @type {number}
|
|
2997
|
+
* @memberof PaginationResult
|
|
2998
|
+
*/
|
|
2999
|
+
pageSize: number;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
export declare function PaginationResultFromJSON(json: any): PaginationResult;
|
|
3003
|
+
|
|
3004
|
+
export declare function PaginationResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationResult;
|
|
3005
|
+
|
|
3006
|
+
export declare function PaginationResultToJSON(json: any): PaginationResult;
|
|
3007
|
+
|
|
3008
|
+
export declare function PaginationResultToJSONTyped(value?: PaginationResult | null, ignoreDiscriminator?: boolean): any;
|
|
3009
|
+
|
|
2782
3010
|
/**
|
|
2783
3011
|
* Create a Policy Definition
|
|
2784
3012
|
* @export
|
|
@@ -2974,32 +3202,79 @@ declare namespace runtime {
|
|
|
2974
3202
|
}
|
|
2975
3203
|
|
|
2976
3204
|
/**
|
|
2977
|
-
*
|
|
3205
|
+
* Direction of sort in list pages
|
|
2978
3206
|
* @export
|
|
2979
|
-
* @interface TableColumnSortAssetListSortProperty
|
|
2980
3207
|
*/
|
|
2981
|
-
export declare
|
|
3208
|
+
export declare const SortByDirection: {
|
|
3209
|
+
readonly Descending: "DESCENDING";
|
|
3210
|
+
readonly Ascending: "ASCENDING";
|
|
3211
|
+
};
|
|
3212
|
+
|
|
3213
|
+
export declare type SortByDirection = (typeof SortByDirection)[keyof typeof SortByDirection];
|
|
3214
|
+
|
|
3215
|
+
export declare function SortByDirectionFromJSON(json: any): SortByDirection;
|
|
3216
|
+
|
|
3217
|
+
export declare function SortByDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortByDirection;
|
|
3218
|
+
|
|
3219
|
+
export declare function SortByDirectionToJSON(value?: SortByDirection | null): any;
|
|
3220
|
+
|
|
3221
|
+
export declare function SortByDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): SortByDirection;
|
|
3222
|
+
|
|
3223
|
+
/**
|
|
3224
|
+
* Sort a column of list pages by a given property
|
|
3225
|
+
* @export
|
|
3226
|
+
* @interface SortByRequestAssetsPageSortProperty
|
|
3227
|
+
*/
|
|
3228
|
+
export declare interface SortByRequestAssetsPageSortProperty {
|
|
2982
3229
|
/**
|
|
2983
3230
|
* Name of the column to sort for
|
|
2984
|
-
* @type {
|
|
2985
|
-
* @memberof
|
|
3231
|
+
* @type {AssetsPageSortProperty}
|
|
3232
|
+
* @memberof SortByRequestAssetsPageSortProperty
|
|
2986
3233
|
*/
|
|
2987
|
-
|
|
3234
|
+
field: AssetsPageSortProperty;
|
|
2988
3235
|
/**
|
|
2989
|
-
*
|
|
2990
|
-
* @type {
|
|
2991
|
-
* @memberof
|
|
3236
|
+
* sort direction
|
|
3237
|
+
* @type {SortByDirection}
|
|
3238
|
+
* @memberof SortByRequestAssetsPageSortProperty
|
|
2992
3239
|
*/
|
|
2993
|
-
|
|
3240
|
+
direction: SortByDirection;
|
|
2994
3241
|
}
|
|
2995
3242
|
|
|
2996
|
-
export declare function
|
|
3243
|
+
export declare function SortByRequestAssetsPageSortPropertyFromJSON(json: any): SortByRequestAssetsPageSortProperty;
|
|
2997
3244
|
|
|
2998
|
-
export declare function
|
|
3245
|
+
export declare function SortByRequestAssetsPageSortPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortByRequestAssetsPageSortProperty;
|
|
2999
3246
|
|
|
3000
|
-
export declare function
|
|
3247
|
+
export declare function SortByRequestAssetsPageSortPropertyToJSON(json: any): SortByRequestAssetsPageSortProperty;
|
|
3001
3248
|
|
|
3002
|
-
export declare function
|
|
3249
|
+
export declare function SortByRequestAssetsPageSortPropertyToJSONTyped(value?: SortByRequestAssetsPageSortProperty | null, ignoreDiscriminator?: boolean): any;
|
|
3250
|
+
|
|
3251
|
+
/**
|
|
3252
|
+
* Sort a column of list pages by a given property
|
|
3253
|
+
* @export
|
|
3254
|
+
* @interface SortByRequestContractsPageSortProperty
|
|
3255
|
+
*/
|
|
3256
|
+
export declare interface SortByRequestContractsPageSortProperty {
|
|
3257
|
+
/**
|
|
3258
|
+
* Name of the column to sort for
|
|
3259
|
+
* @type {ContractsPageSortProperty}
|
|
3260
|
+
* @memberof SortByRequestContractsPageSortProperty
|
|
3261
|
+
*/
|
|
3262
|
+
field: ContractsPageSortProperty;
|
|
3263
|
+
/**
|
|
3264
|
+
* sort direction
|
|
3265
|
+
* @type {SortByDirection}
|
|
3266
|
+
* @memberof SortByRequestContractsPageSortProperty
|
|
3267
|
+
*/
|
|
3268
|
+
direction: SortByDirection;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
export declare function SortByRequestContractsPageSortPropertyFromJSON(json: any): SortByRequestContractsPageSortProperty;
|
|
3272
|
+
|
|
3273
|
+
export declare function SortByRequestContractsPageSortPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortByRequestContractsPageSortProperty;
|
|
3274
|
+
|
|
3275
|
+
export declare function SortByRequestContractsPageSortPropertyToJSON(json: any): SortByRequestContractsPageSortProperty;
|
|
3276
|
+
|
|
3277
|
+
export declare function SortByRequestContractsPageSortPropertyToJSONTyped(value?: SortByRequestContractsPageSortProperty | null, ignoreDiscriminator?: boolean): any;
|
|
3003
3278
|
|
|
3004
3279
|
export declare interface TerminateContractAgreementRequest {
|
|
3005
3280
|
contractAgreementId: string;
|
|
@@ -3265,19 +3540,19 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
3265
3540
|
/**
|
|
3266
3541
|
* Get details for a specific Asset
|
|
3267
3542
|
*/
|
|
3268
|
-
|
|
3543
|
+
assetDetailPageRaw(requestParameters: AssetDetailPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UiAsset>>;
|
|
3269
3544
|
/**
|
|
3270
3545
|
* Get details for a specific Asset
|
|
3271
3546
|
*/
|
|
3272
|
-
|
|
3547
|
+
assetDetailPage(requestParameters: AssetDetailPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UiAsset>;
|
|
3273
3548
|
/**
|
|
3274
|
-
* Collect all data for
|
|
3549
|
+
* Collect all data for the Assets Page
|
|
3275
3550
|
*/
|
|
3276
|
-
|
|
3551
|
+
assetsPageRaw(requestParameters: AssetsPageOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AssetsPageResult>>;
|
|
3277
3552
|
/**
|
|
3278
|
-
* Collect all data for
|
|
3553
|
+
* Collect all data for the Assets Page
|
|
3279
3554
|
*/
|
|
3280
|
-
|
|
3555
|
+
assetsPage(requestParameters?: AssetsPageOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AssetsPageResult>;
|
|
3281
3556
|
/**
|
|
3282
3557
|
* Get the build version info
|
|
3283
3558
|
*/
|
|
@@ -3318,6 +3593,22 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
3318
3593
|
* Collect all data for the Business Partner Groups List Page
|
|
3319
3594
|
*/
|
|
3320
3595
|
businessPartnerGroupListPage(requestParameters?: BusinessPartnerGroupListPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<BusinessPartnerGroupListPageEntry>>;
|
|
3596
|
+
/**
|
|
3597
|
+
* Get a single contract agreement card by its identifier
|
|
3598
|
+
*/
|
|
3599
|
+
contractDetailPageRaw(requestParameters: ContractDetailPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractDetailPageResult>>;
|
|
3600
|
+
/**
|
|
3601
|
+
* Get a single contract agreement card by its identifier
|
|
3602
|
+
*/
|
|
3603
|
+
contractDetailPage(requestParameters: ContractDetailPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractDetailPageResult>;
|
|
3604
|
+
/**
|
|
3605
|
+
* Collect filtered data for the Contract Agreement Table Page
|
|
3606
|
+
*/
|
|
3607
|
+
contractsPageRaw(requestParameters: ContractsPageOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractsPageResult>>;
|
|
3608
|
+
/**
|
|
3609
|
+
* Collect filtered data for the Contract Agreement Table Page
|
|
3610
|
+
*/
|
|
3611
|
+
contractsPage(requestParameters?: ContractsPageOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractsPageResult>;
|
|
3321
3612
|
/**
|
|
3322
3613
|
* Create a new Asset
|
|
3323
3614
|
*/
|
|
@@ -3450,22 +3741,6 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
3450
3741
|
* Fetch a connector\'s data offers
|
|
3451
3742
|
*/
|
|
3452
3743
|
getCatalogPageDataOffers(requestParameters?: GetCatalogPageDataOffersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiDataOffer>>;
|
|
3453
|
-
/**
|
|
3454
|
-
* Get a single contract agreement card by its identifier
|
|
3455
|
-
*/
|
|
3456
|
-
getContractAgreementCardRaw(requestParameters: GetContractAgreementCardRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementCard>>;
|
|
3457
|
-
/**
|
|
3458
|
-
* Get a single contract agreement card by its identifier
|
|
3459
|
-
*/
|
|
3460
|
-
getContractAgreementCard(requestParameters: GetContractAgreementCardRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementCard>;
|
|
3461
|
-
/**
|
|
3462
|
-
* Collect filtered data for the Contract Agreement Page
|
|
3463
|
-
*/
|
|
3464
|
-
getContractAgreementPageRaw(requestParameters: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementPage>>;
|
|
3465
|
-
/**
|
|
3466
|
-
* Collect filtered data for the Contract Agreement Page
|
|
3467
|
-
*/
|
|
3468
|
-
getContractAgreementPage(requestParameters?: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
3469
3744
|
/**
|
|
3470
3745
|
* Collect all data for Contract Definition Page
|
|
3471
3746
|
* @deprecated
|
|
@@ -5350,6 +5625,14 @@ export declare function UiPolicyToJSONTyped(value?: UiPolicy | null, ignoreDiscr
|
|
|
5350
5625
|
*
|
|
5351
5626
|
*/
|
|
5352
5627
|
export declare class UseCaseApi extends runtime.BaseAPI {
|
|
5628
|
+
/**
|
|
5629
|
+
* List all assets in the connector.
|
|
5630
|
+
*/
|
|
5631
|
+
getAssetsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<UiAsset>>>;
|
|
5632
|
+
/**
|
|
5633
|
+
* List all assets in the connector.
|
|
5634
|
+
*/
|
|
5635
|
+
getAssets(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiAsset>>;
|
|
5353
5636
|
/**
|
|
5354
5637
|
* Fetch contract negotiation states as batch
|
|
5355
5638
|
*/
|