@sovity.de/edc-client 10.0.0 → 10.2.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.
|
@@ -1124,6 +1124,10 @@ export declare interface GetCatalogPageDataOffersRequest {
|
|
|
1124
1124
|
connectorEndpoint?: string;
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
1127
|
+
export declare interface GetContractAgreementCardRequest {
|
|
1128
|
+
contractAgreementId: string;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1127
1131
|
export declare interface GetContractAgreementPageRequest {
|
|
1128
1132
|
contractAgreementPageQuery?: ContractAgreementPageQuery;
|
|
1129
1133
|
}
|
|
@@ -2121,6 +2125,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2121
2125
|
* Fetch a connector\'s data offers
|
|
2122
2126
|
*/
|
|
2123
2127
|
getCatalogPageDataOffers(requestParameters?: GetCatalogPageDataOffersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiDataOffer>>;
|
|
2128
|
+
/**
|
|
2129
|
+
* Get a single contract agreement card by its identifier
|
|
2130
|
+
*/
|
|
2131
|
+
getContractAgreementCardRaw(requestParameters: GetContractAgreementCardRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementCard>>;
|
|
2132
|
+
/**
|
|
2133
|
+
* Get a single contract agreement card by its identifier
|
|
2134
|
+
*/
|
|
2135
|
+
getContractAgreementCard(requestParameters: GetContractAgreementCardRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementCard>;
|
|
2124
2136
|
/**
|
|
2125
2137
|
* Collect filtered data for the Contract Agreement Page
|
|
2126
2138
|
*/
|