@geolens/sdk 1.12.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
|
|
@@ -9948,9 +9968,9 @@ export type TokenResponse = {
|
|
|
9948
9968
|
/**
|
|
9949
9969
|
* Refresh Token
|
|
9950
9970
|
*
|
|
9951
|
-
* Opaque token used to obtain a new access token
|
|
9971
|
+
* Opaque token used to obtain a new access token. Always present for programmatic callers (CLI, SDKs, CI). Null when the caller opted into the browser cookie flow with 'X-GeoLens-Auth-Mode: cookie', in which case the token is delivered as an httpOnly cookie instead (GH-1302).
|
|
9952
9972
|
*/
|
|
9953
|
-
refresh_token: string;
|
|
9973
|
+
refresh_token: string | null;
|
|
9954
9974
|
/**
|
|
9955
9975
|
* Token Type
|
|
9956
9976
|
*/
|
|
@@ -13116,7 +13136,10 @@ export type LoginAuthLoginPostResponses = {
|
|
|
13116
13136
|
};
|
|
13117
13137
|
export type LoginAuthLoginPostResponse = LoginAuthLoginPostResponses[keyof LoginAuthLoginPostResponses];
|
|
13118
13138
|
export type LogoutAuthLogoutPostData = {
|
|
13119
|
-
|
|
13139
|
+
/**
|
|
13140
|
+
* Body
|
|
13141
|
+
*/
|
|
13142
|
+
body?: RefreshRequest | null;
|
|
13120
13143
|
path?: never;
|
|
13121
13144
|
query?: never;
|
|
13122
13145
|
url: '/auth/logout/';
|
|
@@ -13456,7 +13479,10 @@ export type OauthLoginAuthOauthProviderSlugLoginGetErrors = {
|
|
|
13456
13479
|
};
|
|
13457
13480
|
export type OauthLoginAuthOauthProviderSlugLoginGetError = OauthLoginAuthOauthProviderSlugLoginGetErrors[keyof OauthLoginAuthOauthProviderSlugLoginGetErrors];
|
|
13458
13481
|
export type RefreshAuthRefreshPostData = {
|
|
13459
|
-
|
|
13482
|
+
/**
|
|
13483
|
+
* Body
|
|
13484
|
+
*/
|
|
13485
|
+
body?: RefreshRequest | null;
|
|
13460
13486
|
path?: never;
|
|
13461
13487
|
query?: never;
|
|
13462
13488
|
url: '/auth/refresh/';
|
|
@@ -13676,7 +13702,7 @@ export type ListCollectionsEndpointCatalogCollectionsGetErrors = {
|
|
|
13676
13702
|
*/
|
|
13677
13703
|
401: ProblemDetail;
|
|
13678
13704
|
/**
|
|
13679
|
-
* Forbidden — caller lacks
|
|
13705
|
+
* Forbidden — caller lacks access to this resource
|
|
13680
13706
|
*/
|
|
13681
13707
|
403: ProblemDetail;
|
|
13682
13708
|
/**
|
|
@@ -13842,7 +13868,7 @@ export type GetCollectionEndpointCatalogCollectionsCollectionIdGetErrors = {
|
|
|
13842
13868
|
*/
|
|
13843
13869
|
401: ProblemDetail;
|
|
13844
13870
|
/**
|
|
13845
|
-
* Forbidden — caller lacks
|
|
13871
|
+
* Forbidden — caller lacks access to this resource
|
|
13846
13872
|
*/
|
|
13847
13873
|
403: ProblemDetail;
|
|
13848
13874
|
/**
|
|
@@ -13965,7 +13991,7 @@ export type GetCollectionDatasetsEndpointCatalogCollectionsCollectionIdDatasetsG
|
|
|
13965
13991
|
*/
|
|
13966
13992
|
401: ProblemDetail;
|
|
13967
13993
|
/**
|
|
13968
|
-
* Forbidden — caller lacks
|
|
13994
|
+
* Forbidden — caller lacks access to this resource
|
|
13969
13995
|
*/
|
|
13970
13996
|
403: ProblemDetail;
|
|
13971
13997
|
/**
|
|
@@ -15092,7 +15118,7 @@ export type ListAllDatasetsDatasetsGetErrors = {
|
|
|
15092
15118
|
*/
|
|
15093
15119
|
401: ProblemDetail;
|
|
15094
15120
|
/**
|
|
15095
|
-
* Forbidden — caller lacks
|
|
15121
|
+
* Forbidden — caller lacks access to this resource
|
|
15096
15122
|
*/
|
|
15097
15123
|
403: ProblemDetail;
|
|
15098
15124
|
/**
|
|
@@ -15849,7 +15875,7 @@ export type ListAttributesEndpointDatasetsDatasetIdAttributesGetErrors = {
|
|
|
15849
15875
|
*/
|
|
15850
15876
|
401: ProblemDetail;
|
|
15851
15877
|
/**
|
|
15852
|
-
* Forbidden — caller lacks
|
|
15878
|
+
* Forbidden — caller lacks access to this resource
|
|
15853
15879
|
*/
|
|
15854
15880
|
403: ProblemDetail;
|
|
15855
15881
|
/**
|
|
@@ -15910,7 +15936,7 @@ export type GetAttributeEndpointDatasetsDatasetIdAttributesAttributeIdGetErrors
|
|
|
15910
15936
|
*/
|
|
15911
15937
|
401: ProblemDetail;
|
|
15912
15938
|
/**
|
|
15913
|
-
* Forbidden — caller lacks
|
|
15939
|
+
* Forbidden — caller lacks access to this resource
|
|
15914
15940
|
*/
|
|
15915
15941
|
403: ProblemDetail;
|
|
15916
15942
|
/**
|
|
@@ -16093,7 +16119,7 @@ export type GetColumnStatsEndpointDatasetsDatasetIdColumnsColumnNameStatsGetErro
|
|
|
16093
16119
|
*/
|
|
16094
16120
|
401: ProblemDetail;
|
|
16095
16121
|
/**
|
|
16096
|
-
* Forbidden — caller lacks
|
|
16122
|
+
* Forbidden — caller lacks access to this resource
|
|
16097
16123
|
*/
|
|
16098
16124
|
403: ProblemDetail;
|
|
16099
16125
|
/**
|
|
@@ -16159,7 +16185,7 @@ export type GetColumnValuesDatasetsDatasetIdColumnsColumnNameValuesGetErrors = {
|
|
|
16159
16185
|
*/
|
|
16160
16186
|
401: ProblemDetail;
|
|
16161
16187
|
/**
|
|
16162
|
-
* Forbidden — caller lacks
|
|
16188
|
+
* Forbidden — caller lacks access to this resource
|
|
16163
16189
|
*/
|
|
16164
16190
|
403: ProblemDetail;
|
|
16165
16191
|
/**
|
|
@@ -17223,7 +17249,7 @@ export type GetFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelations
|
|
|
17223
17249
|
*/
|
|
17224
17250
|
401: ProblemDetail;
|
|
17225
17251
|
/**
|
|
17226
|
-
* Forbidden — caller lacks
|
|
17252
|
+
* Forbidden — caller lacks access to this resource
|
|
17227
17253
|
*/
|
|
17228
17254
|
403: ProblemDetail;
|
|
17229
17255
|
/**
|
|
@@ -17435,7 +17461,7 @@ export type DatasetMapsDatasetsDatasetIdMapsGetErrors = {
|
|
|
17435
17461
|
*/
|
|
17436
17462
|
401: ProblemDetail;
|
|
17437
17463
|
/**
|
|
17438
|
-
* Forbidden — caller lacks
|
|
17464
|
+
* Forbidden — caller lacks access to this resource
|
|
17439
17465
|
*/
|
|
17440
17466
|
403: ProblemDetail;
|
|
17441
17467
|
/**
|
|
@@ -17681,7 +17707,7 @@ export type ListRelatedDatasetsDatasetsDatasetIdRelatedGetErrors = {
|
|
|
17681
17707
|
*/
|
|
17682
17708
|
401: ProblemDetail;
|
|
17683
17709
|
/**
|
|
17684
|
-
* Forbidden — caller lacks
|
|
17710
|
+
* Forbidden — caller lacks access to this resource
|
|
17685
17711
|
*/
|
|
17686
17712
|
403: ProblemDetail;
|
|
17687
17713
|
/**
|
|
@@ -17751,7 +17777,7 @@ export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetErrors = {
|
|
|
17751
17777
|
*/
|
|
17752
17778
|
401: ProblemDetail;
|
|
17753
17779
|
/**
|
|
17754
|
-
* Forbidden — caller lacks
|
|
17780
|
+
* Forbidden — caller lacks access to this resource
|
|
17755
17781
|
*/
|
|
17756
17782
|
403: ProblemDetail;
|
|
17757
17783
|
/**
|
|
@@ -18255,7 +18281,7 @@ export type GetDatasetRowsEndpointDatasetsDatasetIdRowsGetErrors = {
|
|
|
18255
18281
|
*/
|
|
18256
18282
|
401: ProblemDetail;
|
|
18257
18283
|
/**
|
|
18258
|
-
* Forbidden — caller lacks
|
|
18284
|
+
* Forbidden — caller lacks access to this resource
|
|
18259
18285
|
*/
|
|
18260
18286
|
403: ProblemDetail;
|
|
18261
18287
|
/**
|
|
@@ -18556,7 +18582,7 @@ export type GetDatasetVersionsEndpointDatasetsDatasetIdVersionsGetErrors = {
|
|
|
18556
18582
|
*/
|
|
18557
18583
|
401: ProblemDetail;
|
|
18558
18584
|
/**
|
|
18559
|
-
* Forbidden — caller lacks
|
|
18585
|
+
* Forbidden — caller lacks access to this resource
|
|
18560
18586
|
*/
|
|
18561
18587
|
403: ProblemDetail;
|
|
18562
18588
|
/**
|
|
@@ -18613,7 +18639,7 @@ export type ListVrtSourcesDatasetsDatasetIdVrtSourcesGetErrors = {
|
|
|
18613
18639
|
*/
|
|
18614
18640
|
401: ProblemDetail;
|
|
18615
18641
|
/**
|
|
18616
|
-
* Forbidden — caller lacks
|
|
18642
|
+
* Forbidden — caller lacks access to this resource
|
|
18617
18643
|
*/
|
|
18618
18644
|
403: ProblemDetail;
|
|
18619
18645
|
/**
|
|
@@ -18689,7 +18715,7 @@ export type ListVrtGenerationsDatasetsDatasetIdVrtGenerationsGetErrors = {
|
|
|
18689
18715
|
*/
|
|
18690
18716
|
401: ProblemDetail;
|
|
18691
18717
|
/**
|
|
18692
|
-
* Forbidden — caller lacks
|
|
18718
|
+
* Forbidden — caller lacks access to this resource
|
|
18693
18719
|
*/
|
|
18694
18720
|
403: ProblemDetail;
|
|
18695
18721
|
/**
|
|
@@ -18803,7 +18829,7 @@ export type GetVrtStatusDatasetsDatasetIdVrtStatusGetErrors = {
|
|
|
18803
18829
|
*/
|
|
18804
18830
|
401: ProblemDetail;
|
|
18805
18831
|
/**
|
|
18806
|
-
* Forbidden — caller lacks
|
|
18832
|
+
* Forbidden — caller lacks access to this resource
|
|
18807
18833
|
*/
|
|
18808
18834
|
403: ProblemDetail;
|
|
18809
18835
|
/**
|
|
@@ -19334,7 +19360,7 @@ export type GetUploadConfigIngestUploadConfigGetErrors = {
|
|
|
19334
19360
|
*/
|
|
19335
19361
|
401: ProblemDetail;
|
|
19336
19362
|
/**
|
|
19337
|
-
* Forbidden — caller lacks
|
|
19363
|
+
* Forbidden — caller lacks access to this resource
|
|
19338
19364
|
*/
|
|
19339
19365
|
403: ProblemDetail;
|
|
19340
19366
|
/**
|
|
@@ -20272,7 +20298,7 @@ export type ListMapsEndpointMapsGetErrors = {
|
|
|
20272
20298
|
*/
|
|
20273
20299
|
401: ProblemDetail;
|
|
20274
20300
|
/**
|
|
20275
|
-
* Forbidden — caller lacks
|
|
20301
|
+
* Forbidden — caller lacks access to this resource
|
|
20276
20302
|
*/
|
|
20277
20303
|
403: ProblemDetail;
|
|
20278
20304
|
/**
|
|
@@ -20485,7 +20511,7 @@ export type GetMapIconAssetEndpointMapsIconsIconIdAssetGetErrors = {
|
|
|
20485
20511
|
*/
|
|
20486
20512
|
401: ProblemDetail;
|
|
20487
20513
|
/**
|
|
20488
|
-
* Forbidden — caller lacks
|
|
20514
|
+
* Forbidden — caller lacks access to this resource
|
|
20489
20515
|
*/
|
|
20490
20516
|
403: ProblemDetail;
|
|
20491
20517
|
/**
|
|
@@ -20601,7 +20627,7 @@ export type GetSharedMapEndpointMapsSharedTokenGetErrors = {
|
|
|
20601
20627
|
*/
|
|
20602
20628
|
401: ProblemDetail;
|
|
20603
20629
|
/**
|
|
20604
|
-
* Forbidden — caller lacks
|
|
20630
|
+
* Forbidden — caller lacks access to this resource
|
|
20605
20631
|
*/
|
|
20606
20632
|
403: ProblemDetail;
|
|
20607
20633
|
/**
|
|
@@ -20649,25 +20675,13 @@ export type GetGeolensSpriteIndexEndpointMapsSpritesGeolensJsonGetData = {
|
|
|
20649
20675
|
};
|
|
20650
20676
|
export type GetGeolensSpriteIndexEndpointMapsSpritesGeolensJsonGetErrors = {
|
|
20651
20677
|
/**
|
|
20652
|
-
* Bad request — invalid payload
|
|
20678
|
+
* Bad request — invalid query parameters or payload
|
|
20653
20679
|
*/
|
|
20654
20680
|
400: ProblemDetail;
|
|
20655
|
-
/**
|
|
20656
|
-
* Unauthorized — missing or invalid credentials
|
|
20657
|
-
*/
|
|
20658
|
-
401: ProblemDetail;
|
|
20659
|
-
/**
|
|
20660
|
-
* Forbidden — caller lacks write access
|
|
20661
|
-
*/
|
|
20662
|
-
403: ProblemDetail;
|
|
20663
20681
|
/**
|
|
20664
20682
|
* Not found
|
|
20665
20683
|
*/
|
|
20666
20684
|
404: ProblemDetail;
|
|
20667
|
-
/**
|
|
20668
|
-
* Conflict — resource state prevents the operation
|
|
20669
|
-
*/
|
|
20670
|
-
409: ProblemDetail;
|
|
20671
20685
|
/**
|
|
20672
20686
|
* Validation error
|
|
20673
20687
|
*/
|
|
@@ -20694,7 +20708,7 @@ export type GetGeolensSpriteIndexEndpointMapsSpritesGeolensJsonGetResponses = {
|
|
|
20694
20708
|
*/
|
|
20695
20709
|
200: {
|
|
20696
20710
|
[key: string]: {
|
|
20697
|
-
[key: string]: number | number;
|
|
20711
|
+
[key: string]: number | number | boolean;
|
|
20698
20712
|
};
|
|
20699
20713
|
};
|
|
20700
20714
|
};
|
|
@@ -20707,25 +20721,13 @@ export type GetGeolensSpritePngEndpointMapsSpritesGeolensPngGetData = {
|
|
|
20707
20721
|
};
|
|
20708
20722
|
export type GetGeolensSpritePngEndpointMapsSpritesGeolensPngGetErrors = {
|
|
20709
20723
|
/**
|
|
20710
|
-
* Bad request — invalid payload
|
|
20724
|
+
* Bad request — invalid query parameters or payload
|
|
20711
20725
|
*/
|
|
20712
20726
|
400: ProblemDetail;
|
|
20713
|
-
/**
|
|
20714
|
-
* Unauthorized — missing or invalid credentials
|
|
20715
|
-
*/
|
|
20716
|
-
401: ProblemDetail;
|
|
20717
|
-
/**
|
|
20718
|
-
* Forbidden — caller lacks write access
|
|
20719
|
-
*/
|
|
20720
|
-
403: ProblemDetail;
|
|
20721
20727
|
/**
|
|
20722
20728
|
* Not found
|
|
20723
20729
|
*/
|
|
20724
20730
|
404: ProblemDetail;
|
|
20725
|
-
/**
|
|
20726
|
-
* Conflict — resource state prevents the operation
|
|
20727
|
-
*/
|
|
20728
|
-
409: ProblemDetail;
|
|
20729
20731
|
/**
|
|
20730
20732
|
* Validation error
|
|
20731
20733
|
*/
|
|
@@ -20828,7 +20830,7 @@ export type GetMapEndpointMapsMapIdGetErrors = {
|
|
|
20828
20830
|
*/
|
|
20829
20831
|
401: ProblemDetail;
|
|
20830
20832
|
/**
|
|
20831
|
-
* Forbidden — caller lacks
|
|
20833
|
+
* Forbidden — caller lacks access to this resource
|
|
20832
20834
|
*/
|
|
20833
20835
|
403: ProblemDetail;
|
|
20834
20836
|
/**
|
|
@@ -20942,7 +20944,7 @@ export type GetMapAccessEndpointMapsMapIdAccessGetErrors = {
|
|
|
20942
20944
|
*/
|
|
20943
20945
|
401: ProblemDetail;
|
|
20944
20946
|
/**
|
|
20945
|
-
* Forbidden — caller lacks
|
|
20947
|
+
* Forbidden — caller lacks access to this resource
|
|
20946
20948
|
*/
|
|
20947
20949
|
403: ProblemDetail;
|
|
20948
20950
|
/**
|
|
@@ -21590,7 +21592,7 @@ export type GetOgImageMapsMapIdOgImageGetErrors = {
|
|
|
21590
21592
|
*/
|
|
21591
21593
|
401: ProblemDetail;
|
|
21592
21594
|
/**
|
|
21593
|
-
* Forbidden — caller lacks
|
|
21595
|
+
* Forbidden — caller lacks access to this resource
|
|
21594
21596
|
*/
|
|
21595
21597
|
403: ProblemDetail;
|
|
21596
21598
|
/**
|
|
@@ -21940,7 +21942,7 @@ export type ExportMapStyleEndpointMapsMapIdStyleJsonGetErrors = {
|
|
|
21940
21942
|
*/
|
|
21941
21943
|
401: ProblemDetail;
|
|
21942
21944
|
/**
|
|
21943
|
-
* Forbidden — caller lacks
|
|
21945
|
+
* Forbidden — caller lacks access to this resource
|
|
21944
21946
|
*/
|
|
21945
21947
|
403: ProblemDetail;
|
|
21946
21948
|
/**
|
|
@@ -21996,7 +21998,7 @@ export type GetThumbnailMapsMapIdThumbnailGetErrors = {
|
|
|
21996
21998
|
*/
|
|
21997
21999
|
401: ProblemDetail;
|
|
21998
22000
|
/**
|
|
21999
|
-
* Forbidden — caller lacks
|
|
22001
|
+
* Forbidden — caller lacks access to this resource
|
|
22000
22002
|
*/
|
|
22001
22003
|
403: ProblemDetail;
|
|
22002
22004
|
/**
|
|
@@ -22227,7 +22229,7 @@ export type ListContactsEndpointRecordsRecordIdContactsGetErrors = {
|
|
|
22227
22229
|
*/
|
|
22228
22230
|
401: ProblemDetail;
|
|
22229
22231
|
/**
|
|
22230
|
-
* Forbidden — caller lacks
|
|
22232
|
+
* Forbidden — caller lacks access to this resource
|
|
22231
22233
|
*/
|
|
22232
22234
|
403: ProblemDetail;
|
|
22233
22235
|
/**
|
|
@@ -22472,7 +22474,7 @@ export type ListDistributionsEndpointRecordsRecordIdDistributionsGetErrors = {
|
|
|
22472
22474
|
*/
|
|
22473
22475
|
401: ProblemDetail;
|
|
22474
22476
|
/**
|
|
22475
|
-
* Forbidden — caller lacks
|
|
22477
|
+
* Forbidden — caller lacks access to this resource
|
|
22476
22478
|
*/
|
|
22477
22479
|
403: ProblemDetail;
|
|
22478
22480
|
/**
|
|
@@ -22729,7 +22731,7 @@ export type ListKeywordsEndpointRecordsRecordIdKeywordsGetErrors = {
|
|
|
22729
22731
|
*/
|
|
22730
22732
|
401: ProblemDetail;
|
|
22731
22733
|
/**
|
|
22732
|
-
* Forbidden — caller lacks
|
|
22734
|
+
* Forbidden — caller lacks access to this resource
|
|
22733
22735
|
*/
|
|
22734
22736
|
403: ProblemDetail;
|
|
22735
22737
|
/**
|
|
@@ -22904,7 +22906,7 @@ export type ListTranslationsEndpointRecordsRecordIdTranslationsGetErrors = {
|
|
|
22904
22906
|
*/
|
|
22905
22907
|
401: ProblemDetail;
|
|
22906
22908
|
/**
|
|
22907
|
-
* Forbidden — caller lacks
|
|
22909
|
+
* Forbidden — caller lacks access to this resource
|
|
22908
22910
|
*/
|
|
22909
22911
|
403: ProblemDetail;
|
|
22910
22912
|
/**
|
|
@@ -24906,6 +24908,8 @@ export type GetCollectionItemsStacCollectionsCollectionIdItemsGetData = {
|
|
|
24906
24908
|
datetime?: string | null;
|
|
24907
24909
|
/**
|
|
24908
24910
|
* Limit
|
|
24911
|
+
*
|
|
24912
|
+
* Maximum number of items returned. Values above 200 are clamped to 200, per the STAC Item Search spec's clamp-don't-reject recommendation.
|
|
24909
24913
|
*/
|
|
24910
24914
|
limit?: number;
|
|
24911
24915
|
/**
|