@sovity.de/edc-client 7.1.1 → 7.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.
|
@@ -1860,6 +1860,66 @@ export declare interface UiAsset {
|
|
|
1860
1860
|
* @memberof UiAsset
|
|
1861
1861
|
*/
|
|
1862
1862
|
transportMode?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
1865
|
+
* @type {string}
|
|
1866
|
+
* @memberof UiAsset
|
|
1867
|
+
*/
|
|
1868
|
+
sovereignLegalName?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* Geo location
|
|
1871
|
+
* @type {string}
|
|
1872
|
+
* @memberof UiAsset
|
|
1873
|
+
*/
|
|
1874
|
+
geoLocation?: string;
|
|
1875
|
+
/**
|
|
1876
|
+
* Locations by NUTS standard which divides countries into administrative divisions
|
|
1877
|
+
* @type {Array<string>}
|
|
1878
|
+
* @memberof UiAsset
|
|
1879
|
+
*/
|
|
1880
|
+
nutsLocation?: Array<string>;
|
|
1881
|
+
/**
|
|
1882
|
+
* Data sample URLs
|
|
1883
|
+
* @type {Array<string>}
|
|
1884
|
+
* @memberof UiAsset
|
|
1885
|
+
*/
|
|
1886
|
+
dataSampleUrls?: Array<string>;
|
|
1887
|
+
/**
|
|
1888
|
+
* Reference file/schema URLs
|
|
1889
|
+
* @type {Array<string>}
|
|
1890
|
+
* @memberof UiAsset
|
|
1891
|
+
*/
|
|
1892
|
+
referenceFileUrls?: Array<string>;
|
|
1893
|
+
/**
|
|
1894
|
+
* Additional information on reference files/schemas
|
|
1895
|
+
* @type {string}
|
|
1896
|
+
* @memberof UiAsset
|
|
1897
|
+
*/
|
|
1898
|
+
referenceFilesDescription?: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers
|
|
1901
|
+
* @type {string}
|
|
1902
|
+
* @memberof UiAsset
|
|
1903
|
+
*/
|
|
1904
|
+
conditionsForUse?: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* Data update frequency
|
|
1907
|
+
* @type {string}
|
|
1908
|
+
* @memberof UiAsset
|
|
1909
|
+
*/
|
|
1910
|
+
dataUpdateFrequency?: string;
|
|
1911
|
+
/**
|
|
1912
|
+
* Temporal coverage start date
|
|
1913
|
+
* @type {Date}
|
|
1914
|
+
* @memberof UiAsset
|
|
1915
|
+
*/
|
|
1916
|
+
temporalCoverageFrom?: Date;
|
|
1917
|
+
/**
|
|
1918
|
+
* Temporal coverage end date (inclusive)
|
|
1919
|
+
* @type {Date}
|
|
1920
|
+
* @memberof UiAsset
|
|
1921
|
+
*/
|
|
1922
|
+
temporalCoverageToInclusive?: Date;
|
|
1863
1923
|
/**
|
|
1864
1924
|
* Unhandled Asset Properties (that were strings)
|
|
1865
1925
|
* @type {{ [key: string]: string; }}
|
|
@@ -1996,6 +2056,66 @@ export declare interface UiAssetCreateRequest {
|
|
|
1996
2056
|
* @memberof UiAssetCreateRequest
|
|
1997
2057
|
*/
|
|
1998
2058
|
transportMode?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2061
|
+
* @type {string}
|
|
2062
|
+
* @memberof UiAssetCreateRequest
|
|
2063
|
+
*/
|
|
2064
|
+
sovereignLegalName?: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* Geo location
|
|
2067
|
+
* @type {string}
|
|
2068
|
+
* @memberof UiAssetCreateRequest
|
|
2069
|
+
*/
|
|
2070
|
+
geoLocation?: string;
|
|
2071
|
+
/**
|
|
2072
|
+
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2073
|
+
* @type {Array<string>}
|
|
2074
|
+
* @memberof UiAssetCreateRequest
|
|
2075
|
+
*/
|
|
2076
|
+
nutsLocation?: Array<string>;
|
|
2077
|
+
/**
|
|
2078
|
+
* Data sample URLs
|
|
2079
|
+
* @type {Array<string>}
|
|
2080
|
+
* @memberof UiAssetCreateRequest
|
|
2081
|
+
*/
|
|
2082
|
+
dataSampleUrls?: Array<string>;
|
|
2083
|
+
/**
|
|
2084
|
+
* Reference file/schema URLs
|
|
2085
|
+
* @type {Array<string>}
|
|
2086
|
+
* @memberof UiAssetCreateRequest
|
|
2087
|
+
*/
|
|
2088
|
+
referenceFileUrls?: Array<string>;
|
|
2089
|
+
/**
|
|
2090
|
+
* Additional information on reference files/schemas
|
|
2091
|
+
* @type {string}
|
|
2092
|
+
* @memberof UiAssetCreateRequest
|
|
2093
|
+
*/
|
|
2094
|
+
referenceFilesDescription?: string;
|
|
2095
|
+
/**
|
|
2096
|
+
* Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers
|
|
2097
|
+
* @type {string}
|
|
2098
|
+
* @memberof UiAssetCreateRequest
|
|
2099
|
+
*/
|
|
2100
|
+
conditionsForUse?: string;
|
|
2101
|
+
/**
|
|
2102
|
+
* Data update frequency
|
|
2103
|
+
* @type {string}
|
|
2104
|
+
* @memberof UiAssetCreateRequest
|
|
2105
|
+
*/
|
|
2106
|
+
dataUpdateFrequency?: string;
|
|
2107
|
+
/**
|
|
2108
|
+
* Temporal coverage start date
|
|
2109
|
+
* @type {Date}
|
|
2110
|
+
* @memberof UiAssetCreateRequest
|
|
2111
|
+
*/
|
|
2112
|
+
temporalCoverageFrom?: Date;
|
|
2113
|
+
/**
|
|
2114
|
+
* Temporal coverage end date (inclusive)
|
|
2115
|
+
* @type {Date}
|
|
2116
|
+
* @memberof UiAssetCreateRequest
|
|
2117
|
+
*/
|
|
2118
|
+
temporalCoverageToInclusive?: Date;
|
|
1999
2119
|
/**
|
|
2000
2120
|
* Data Address
|
|
2001
2121
|
* @type {{ [key: string]: string; }}
|
|
@@ -2134,6 +2254,66 @@ export declare interface UiAssetEditMetadataRequest {
|
|
|
2134
2254
|
* @memberof UiAssetEditMetadataRequest
|
|
2135
2255
|
*/
|
|
2136
2256
|
transportMode?: string;
|
|
2257
|
+
/**
|
|
2258
|
+
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2259
|
+
* @type {string}
|
|
2260
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2261
|
+
*/
|
|
2262
|
+
sovereignLegalName?: string;
|
|
2263
|
+
/**
|
|
2264
|
+
* Geo location
|
|
2265
|
+
* @type {string}
|
|
2266
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2267
|
+
*/
|
|
2268
|
+
geoLocation?: string;
|
|
2269
|
+
/**
|
|
2270
|
+
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2271
|
+
* @type {Array<string>}
|
|
2272
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2273
|
+
*/
|
|
2274
|
+
nutsLocation?: Array<string>;
|
|
2275
|
+
/**
|
|
2276
|
+
* Data sample URLs
|
|
2277
|
+
* @type {Array<string>}
|
|
2278
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2279
|
+
*/
|
|
2280
|
+
dataSampleUrls?: Array<string>;
|
|
2281
|
+
/**
|
|
2282
|
+
* Reference file/schema URLs
|
|
2283
|
+
* @type {Array<string>}
|
|
2284
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2285
|
+
*/
|
|
2286
|
+
referenceFileUrls?: Array<string>;
|
|
2287
|
+
/**
|
|
2288
|
+
* Additional information on reference files/schemas
|
|
2289
|
+
* @type {string}
|
|
2290
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2291
|
+
*/
|
|
2292
|
+
referenceFilesDescription?: string;
|
|
2293
|
+
/**
|
|
2294
|
+
* Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers
|
|
2295
|
+
* @type {string}
|
|
2296
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2297
|
+
*/
|
|
2298
|
+
conditionsForUse?: string;
|
|
2299
|
+
/**
|
|
2300
|
+
* Data update frequency
|
|
2301
|
+
* @type {string}
|
|
2302
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2303
|
+
*/
|
|
2304
|
+
dataUpdateFrequency?: string;
|
|
2305
|
+
/**
|
|
2306
|
+
* Temporal coverage start date
|
|
2307
|
+
* @type {Date}
|
|
2308
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2309
|
+
*/
|
|
2310
|
+
temporalCoverageFrom?: Date;
|
|
2311
|
+
/**
|
|
2312
|
+
* Temporal coverage end date (inclusive)
|
|
2313
|
+
* @type {Date}
|
|
2314
|
+
* @memberof UiAssetEditMetadataRequest
|
|
2315
|
+
*/
|
|
2316
|
+
temporalCoverageToInclusive?: Date;
|
|
2137
2317
|
/**
|
|
2138
2318
|
* Custom Asset Properties (that are strings)
|
|
2139
2319
|
* @type {{ [key: string]: string; }}
|