@geolens/sdk 1.13.0 → 1.13.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.
|
@@ -2738,6 +2738,12 @@ export type DatasetMeta = {
|
|
|
2738
2738
|
* License
|
|
2739
2739
|
*/
|
|
2740
2740
|
license?: string | null;
|
|
2741
|
+
/**
|
|
2742
|
+
* Attribution
|
|
2743
|
+
*
|
|
2744
|
+
* Credit line displayed with the data. Null clears it; the ingest tail seeds it from a manifest's metadata.attribution.
|
|
2745
|
+
*/
|
|
2746
|
+
attribution?: string | null;
|
|
2741
2747
|
/**
|
|
2742
2748
|
* Source Organization
|
|
2743
2749
|
*/
|
|
@@ -3176,6 +3182,12 @@ export type DatasetResponse = {
|
|
|
3176
3182
|
* License
|
|
3177
3183
|
*/
|
|
3178
3184
|
license?: string | null;
|
|
3185
|
+
/**
|
|
3186
|
+
* Attribution
|
|
3187
|
+
*
|
|
3188
|
+
* Credit line the source's terms require to be displayed wherever the data is rendered. Shown verbatim in the map viewer's attribution control.
|
|
3189
|
+
*/
|
|
3190
|
+
attribution?: string | null;
|
|
3179
3191
|
/**
|
|
3180
3192
|
* Source Organization
|
|
3181
3193
|
*/
|
|
@@ -5639,6 +5651,10 @@ export type MapLayerResponse = {
|
|
|
5639
5651
|
* Dataset Status
|
|
5640
5652
|
*/
|
|
5641
5653
|
dataset_status?: string | null;
|
|
5654
|
+
/**
|
|
5655
|
+
* Dataset Attribution
|
|
5656
|
+
*/
|
|
5657
|
+
dataset_attribution?: string | null;
|
|
5642
5658
|
};
|
|
5643
5659
|
/**
|
|
5644
5660
|
* MapListResponse
|
|
@@ -8661,6 +8677,10 @@ export type SharedLayerResponse = {
|
|
|
8661
8677
|
* Tile Version
|
|
8662
8678
|
*/
|
|
8663
8679
|
tile_version?: number | null;
|
|
8680
|
+
/**
|
|
8681
|
+
* Dataset Attribution
|
|
8682
|
+
*/
|
|
8683
|
+
dataset_attribution?: string | null;
|
|
8664
8684
|
};
|
|
8665
8685
|
/**
|
|
8666
8686
|
* SharedMapResponse
|