@sovity.de/edc-client 7.0.0 → 7.1.1
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.
|
@@ -737,6 +737,11 @@ export declare interface EdcClientOptions {
|
|
|
737
737
|
configOverrides?: Partial<ConfigurationParameters>;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
+
export declare interface EditAssetMetadataRequest {
|
|
741
|
+
assetId: string;
|
|
742
|
+
uiAssetEditMetadataRequest?: UiAssetEditMetadataRequest;
|
|
743
|
+
}
|
|
744
|
+
|
|
740
745
|
/**
|
|
741
746
|
*
|
|
742
747
|
*/
|
|
@@ -1070,6 +1075,11 @@ export declare function instanceOfUiAsset(value: object): boolean;
|
|
|
1070
1075
|
*/
|
|
1071
1076
|
export declare function instanceOfUiAssetCreateRequest(value: object): boolean;
|
|
1072
1077
|
|
|
1078
|
+
/**
|
|
1079
|
+
* Check if a given object implements the UiAssetEditMetadataRequest interface.
|
|
1080
|
+
*/
|
|
1081
|
+
export declare function instanceOfUiAssetEditMetadataRequest(value: object): boolean;
|
|
1082
|
+
|
|
1073
1083
|
/**
|
|
1074
1084
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
1075
1085
|
*/
|
|
@@ -1594,6 +1604,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1594
1604
|
* Delete a Policy Definition
|
|
1595
1605
|
*/
|
|
1596
1606
|
deletePolicyDefinition(requestParameters: DeletePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1607
|
+
/**
|
|
1608
|
+
* Updates an Asset\'s metadata
|
|
1609
|
+
*/
|
|
1610
|
+
editAssetMetadataRaw(requestParameters: EditAssetMetadataRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
1611
|
+
/**
|
|
1612
|
+
* Updates an Asset\'s metadata
|
|
1613
|
+
*/
|
|
1614
|
+
editAssetMetadata(requestParameters: EditAssetMetadataRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1597
1615
|
/**
|
|
1598
1616
|
* Collect all data for Asset Page
|
|
1599
1617
|
*/
|
|
@@ -1735,11 +1753,23 @@ export declare interface UiAsset {
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
language?: string;
|
|
1737
1755
|
/**
|
|
1738
|
-
* Asset Description
|
|
1756
|
+
* Asset Description. Supports markdown.
|
|
1739
1757
|
* @type {string}
|
|
1740
1758
|
* @memberof UiAsset
|
|
1741
1759
|
*/
|
|
1742
1760
|
description?: string;
|
|
1761
|
+
/**
|
|
1762
|
+
* Asset Description Short Text generated from description. Contains no markdown.
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof UiAsset
|
|
1765
|
+
*/
|
|
1766
|
+
descriptionShortText?: string;
|
|
1767
|
+
/**
|
|
1768
|
+
* Flag that indicates whether this asset is created by this connector.
|
|
1769
|
+
* @type {boolean}
|
|
1770
|
+
* @memberof UiAsset
|
|
1771
|
+
*/
|
|
1772
|
+
isOwnConnector: boolean;
|
|
1743
1773
|
/**
|
|
1744
1774
|
* Asset Homepage
|
|
1745
1775
|
* @type {string}
|
|
@@ -2014,6 +2044,136 @@ export declare function UiAssetCreateRequestFromJSONTyped(json: any, ignoreDiscr
|
|
|
2014
2044
|
|
|
2015
2045
|
export declare function UiAssetCreateRequestToJSON(value?: UiAssetCreateRequest | null): any;
|
|
2016
2046
|
|
|
2047
|
+
/**
|
|
2048
|
+
* Data for editing an asset.
|
|
2049
|
+
* @export
|
|
2050
|
+
* @interface UiAssetEditMetadataRequest
|
|
2051
|
+
*/
|
|
2052
|
+
export declare interface UiAssetEditMetadataRequest {
|
|
2053
|
+
/**
|
|
2054
|
+
* Asset Title
|
|
2055
|
+
* @type {string}
|
|
2056
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2057
|
+
*/
|
|
2058
|
+
title?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* Asset Language
|
|
2061
|
+
* @type {string}
|
|
2062
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2063
|
+
*/
|
|
2064
|
+
language?: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* Asset Description
|
|
2067
|
+
* @type {string}
|
|
2068
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2069
|
+
*/
|
|
2070
|
+
description?: string;
|
|
2071
|
+
/**
|
|
2072
|
+
* Asset Homepage
|
|
2073
|
+
* @type {string}
|
|
2074
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2075
|
+
*/
|
|
2076
|
+
publisherHomepage?: string;
|
|
2077
|
+
/**
|
|
2078
|
+
* License URL
|
|
2079
|
+
* @type {string}
|
|
2080
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2081
|
+
*/
|
|
2082
|
+
licenseUrl?: string;
|
|
2083
|
+
/**
|
|
2084
|
+
* Version
|
|
2085
|
+
* @type {string}
|
|
2086
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2087
|
+
*/
|
|
2088
|
+
version?: string;
|
|
2089
|
+
/**
|
|
2090
|
+
* Asset Keywords
|
|
2091
|
+
* @type {Array<string>}
|
|
2092
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2093
|
+
*/
|
|
2094
|
+
keywords?: Array<string>;
|
|
2095
|
+
/**
|
|
2096
|
+
* Asset MediaType
|
|
2097
|
+
* @type {string}
|
|
2098
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2099
|
+
*/
|
|
2100
|
+
mediaType?: string;
|
|
2101
|
+
/**
|
|
2102
|
+
* Landing Page URL
|
|
2103
|
+
* @type {string}
|
|
2104
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2105
|
+
*/
|
|
2106
|
+
landingPageUrl?: string;
|
|
2107
|
+
/**
|
|
2108
|
+
* Data Category
|
|
2109
|
+
* @type {string}
|
|
2110
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2111
|
+
*/
|
|
2112
|
+
dataCategory?: string;
|
|
2113
|
+
/**
|
|
2114
|
+
* Data Subcategory
|
|
2115
|
+
* @type {string}
|
|
2116
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2117
|
+
*/
|
|
2118
|
+
dataSubcategory?: string;
|
|
2119
|
+
/**
|
|
2120
|
+
* Data Model
|
|
2121
|
+
* @type {string}
|
|
2122
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2123
|
+
*/
|
|
2124
|
+
dataModel?: string;
|
|
2125
|
+
/**
|
|
2126
|
+
* Geo-Reference Method
|
|
2127
|
+
* @type {string}
|
|
2128
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2129
|
+
*/
|
|
2130
|
+
geoReferenceMethod?: string;
|
|
2131
|
+
/**
|
|
2132
|
+
* Transport Mode
|
|
2133
|
+
* @type {string}
|
|
2134
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2135
|
+
*/
|
|
2136
|
+
transportMode?: string;
|
|
2137
|
+
/**
|
|
2138
|
+
* Custom Asset Properties (that are strings)
|
|
2139
|
+
* @type {{ [key: string]: string; }}
|
|
2140
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2141
|
+
*/
|
|
2142
|
+
additionalProperties?: {
|
|
2143
|
+
[key: string]: string;
|
|
2144
|
+
};
|
|
2145
|
+
/**
|
|
2146
|
+
* Custom Asset Properties (that are not strings but other JSON values)
|
|
2147
|
+
* @type {{ [key: string]: string; }}
|
|
2148
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2149
|
+
*/
|
|
2150
|
+
additionalJsonProperties?: {
|
|
2151
|
+
[key: string]: string;
|
|
2152
|
+
};
|
|
2153
|
+
/**
|
|
2154
|
+
* Private Asset Properties (that are strings)
|
|
2155
|
+
* @type {{ [key: string]: string; }}
|
|
2156
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2157
|
+
*/
|
|
2158
|
+
privateProperties?: {
|
|
2159
|
+
[key: string]: string;
|
|
2160
|
+
};
|
|
2161
|
+
/**
|
|
2162
|
+
* Private Asset Properties (that are not strings but other JSON values)
|
|
2163
|
+
* @type {{ [key: string]: string; }}
|
|
2164
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2165
|
+
*/
|
|
2166
|
+
privateJsonProperties?: {
|
|
2167
|
+
[key: string]: string;
|
|
2168
|
+
};
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
export declare function UiAssetEditMetadataRequestFromJSON(json: any): UiAssetEditMetadataRequest;
|
|
2172
|
+
|
|
2173
|
+
export declare function UiAssetEditMetadataRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetEditMetadataRequest;
|
|
2174
|
+
|
|
2175
|
+
export declare function UiAssetEditMetadataRequestToJSON(value?: UiAssetEditMetadataRequest | null): any;
|
|
2176
|
+
|
|
2017
2177
|
export declare function UiAssetFromJSON(json: any): UiAsset;
|
|
2018
2178
|
|
|
2019
2179
|
export declare function UiAssetFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAsset;
|