@geolens/sdk 1.12.0 → 1.13.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.
|
@@ -9948,9 +9948,9 @@ export type TokenResponse = {
|
|
|
9948
9948
|
/**
|
|
9949
9949
|
* Refresh Token
|
|
9950
9950
|
*
|
|
9951
|
-
* Opaque token used to obtain a new access token
|
|
9951
|
+
* 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
9952
|
*/
|
|
9953
|
-
refresh_token: string;
|
|
9953
|
+
refresh_token: string | null;
|
|
9954
9954
|
/**
|
|
9955
9955
|
* Token Type
|
|
9956
9956
|
*/
|
|
@@ -13116,7 +13116,10 @@ export type LoginAuthLoginPostResponses = {
|
|
|
13116
13116
|
};
|
|
13117
13117
|
export type LoginAuthLoginPostResponse = LoginAuthLoginPostResponses[keyof LoginAuthLoginPostResponses];
|
|
13118
13118
|
export type LogoutAuthLogoutPostData = {
|
|
13119
|
-
|
|
13119
|
+
/**
|
|
13120
|
+
* Body
|
|
13121
|
+
*/
|
|
13122
|
+
body?: RefreshRequest | null;
|
|
13120
13123
|
path?: never;
|
|
13121
13124
|
query?: never;
|
|
13122
13125
|
url: '/auth/logout/';
|
|
@@ -13456,7 +13459,10 @@ export type OauthLoginAuthOauthProviderSlugLoginGetErrors = {
|
|
|
13456
13459
|
};
|
|
13457
13460
|
export type OauthLoginAuthOauthProviderSlugLoginGetError = OauthLoginAuthOauthProviderSlugLoginGetErrors[keyof OauthLoginAuthOauthProviderSlugLoginGetErrors];
|
|
13458
13461
|
export type RefreshAuthRefreshPostData = {
|
|
13459
|
-
|
|
13462
|
+
/**
|
|
13463
|
+
* Body
|
|
13464
|
+
*/
|
|
13465
|
+
body?: RefreshRequest | null;
|
|
13460
13466
|
path?: never;
|
|
13461
13467
|
query?: never;
|
|
13462
13468
|
url: '/auth/refresh/';
|
|
@@ -13676,7 +13682,7 @@ export type ListCollectionsEndpointCatalogCollectionsGetErrors = {
|
|
|
13676
13682
|
*/
|
|
13677
13683
|
401: ProblemDetail;
|
|
13678
13684
|
/**
|
|
13679
|
-
* Forbidden — caller lacks
|
|
13685
|
+
* Forbidden — caller lacks access to this resource
|
|
13680
13686
|
*/
|
|
13681
13687
|
403: ProblemDetail;
|
|
13682
13688
|
/**
|
|
@@ -13842,7 +13848,7 @@ export type GetCollectionEndpointCatalogCollectionsCollectionIdGetErrors = {
|
|
|
13842
13848
|
*/
|
|
13843
13849
|
401: ProblemDetail;
|
|
13844
13850
|
/**
|
|
13845
|
-
* Forbidden — caller lacks
|
|
13851
|
+
* Forbidden — caller lacks access to this resource
|
|
13846
13852
|
*/
|
|
13847
13853
|
403: ProblemDetail;
|
|
13848
13854
|
/**
|
|
@@ -13965,7 +13971,7 @@ export type GetCollectionDatasetsEndpointCatalogCollectionsCollectionIdDatasetsG
|
|
|
13965
13971
|
*/
|
|
13966
13972
|
401: ProblemDetail;
|
|
13967
13973
|
/**
|
|
13968
|
-
* Forbidden — caller lacks
|
|
13974
|
+
* Forbidden — caller lacks access to this resource
|
|
13969
13975
|
*/
|
|
13970
13976
|
403: ProblemDetail;
|
|
13971
13977
|
/**
|
|
@@ -15092,7 +15098,7 @@ export type ListAllDatasetsDatasetsGetErrors = {
|
|
|
15092
15098
|
*/
|
|
15093
15099
|
401: ProblemDetail;
|
|
15094
15100
|
/**
|
|
15095
|
-
* Forbidden — caller lacks
|
|
15101
|
+
* Forbidden — caller lacks access to this resource
|
|
15096
15102
|
*/
|
|
15097
15103
|
403: ProblemDetail;
|
|
15098
15104
|
/**
|
|
@@ -15849,7 +15855,7 @@ export type ListAttributesEndpointDatasetsDatasetIdAttributesGetErrors = {
|
|
|
15849
15855
|
*/
|
|
15850
15856
|
401: ProblemDetail;
|
|
15851
15857
|
/**
|
|
15852
|
-
* Forbidden — caller lacks
|
|
15858
|
+
* Forbidden — caller lacks access to this resource
|
|
15853
15859
|
*/
|
|
15854
15860
|
403: ProblemDetail;
|
|
15855
15861
|
/**
|
|
@@ -15910,7 +15916,7 @@ export type GetAttributeEndpointDatasetsDatasetIdAttributesAttributeIdGetErrors
|
|
|
15910
15916
|
*/
|
|
15911
15917
|
401: ProblemDetail;
|
|
15912
15918
|
/**
|
|
15913
|
-
* Forbidden — caller lacks
|
|
15919
|
+
* Forbidden — caller lacks access to this resource
|
|
15914
15920
|
*/
|
|
15915
15921
|
403: ProblemDetail;
|
|
15916
15922
|
/**
|
|
@@ -16093,7 +16099,7 @@ export type GetColumnStatsEndpointDatasetsDatasetIdColumnsColumnNameStatsGetErro
|
|
|
16093
16099
|
*/
|
|
16094
16100
|
401: ProblemDetail;
|
|
16095
16101
|
/**
|
|
16096
|
-
* Forbidden — caller lacks
|
|
16102
|
+
* Forbidden — caller lacks access to this resource
|
|
16097
16103
|
*/
|
|
16098
16104
|
403: ProblemDetail;
|
|
16099
16105
|
/**
|
|
@@ -16159,7 +16165,7 @@ export type GetColumnValuesDatasetsDatasetIdColumnsColumnNameValuesGetErrors = {
|
|
|
16159
16165
|
*/
|
|
16160
16166
|
401: ProblemDetail;
|
|
16161
16167
|
/**
|
|
16162
|
-
* Forbidden — caller lacks
|
|
16168
|
+
* Forbidden — caller lacks access to this resource
|
|
16163
16169
|
*/
|
|
16164
16170
|
403: ProblemDetail;
|
|
16165
16171
|
/**
|
|
@@ -17223,7 +17229,7 @@ export type GetFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelations
|
|
|
17223
17229
|
*/
|
|
17224
17230
|
401: ProblemDetail;
|
|
17225
17231
|
/**
|
|
17226
|
-
* Forbidden — caller lacks
|
|
17232
|
+
* Forbidden — caller lacks access to this resource
|
|
17227
17233
|
*/
|
|
17228
17234
|
403: ProblemDetail;
|
|
17229
17235
|
/**
|
|
@@ -17435,7 +17441,7 @@ export type DatasetMapsDatasetsDatasetIdMapsGetErrors = {
|
|
|
17435
17441
|
*/
|
|
17436
17442
|
401: ProblemDetail;
|
|
17437
17443
|
/**
|
|
17438
|
-
* Forbidden — caller lacks
|
|
17444
|
+
* Forbidden — caller lacks access to this resource
|
|
17439
17445
|
*/
|
|
17440
17446
|
403: ProblemDetail;
|
|
17441
17447
|
/**
|
|
@@ -17681,7 +17687,7 @@ export type ListRelatedDatasetsDatasetsDatasetIdRelatedGetErrors = {
|
|
|
17681
17687
|
*/
|
|
17682
17688
|
401: ProblemDetail;
|
|
17683
17689
|
/**
|
|
17684
|
-
* Forbidden — caller lacks
|
|
17690
|
+
* Forbidden — caller lacks access to this resource
|
|
17685
17691
|
*/
|
|
17686
17692
|
403: ProblemDetail;
|
|
17687
17693
|
/**
|
|
@@ -17751,7 +17757,7 @@ export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetErrors = {
|
|
|
17751
17757
|
*/
|
|
17752
17758
|
401: ProblemDetail;
|
|
17753
17759
|
/**
|
|
17754
|
-
* Forbidden — caller lacks
|
|
17760
|
+
* Forbidden — caller lacks access to this resource
|
|
17755
17761
|
*/
|
|
17756
17762
|
403: ProblemDetail;
|
|
17757
17763
|
/**
|
|
@@ -18255,7 +18261,7 @@ export type GetDatasetRowsEndpointDatasetsDatasetIdRowsGetErrors = {
|
|
|
18255
18261
|
*/
|
|
18256
18262
|
401: ProblemDetail;
|
|
18257
18263
|
/**
|
|
18258
|
-
* Forbidden — caller lacks
|
|
18264
|
+
* Forbidden — caller lacks access to this resource
|
|
18259
18265
|
*/
|
|
18260
18266
|
403: ProblemDetail;
|
|
18261
18267
|
/**
|
|
@@ -18556,7 +18562,7 @@ export type GetDatasetVersionsEndpointDatasetsDatasetIdVersionsGetErrors = {
|
|
|
18556
18562
|
*/
|
|
18557
18563
|
401: ProblemDetail;
|
|
18558
18564
|
/**
|
|
18559
|
-
* Forbidden — caller lacks
|
|
18565
|
+
* Forbidden — caller lacks access to this resource
|
|
18560
18566
|
*/
|
|
18561
18567
|
403: ProblemDetail;
|
|
18562
18568
|
/**
|
|
@@ -18613,7 +18619,7 @@ export type ListVrtSourcesDatasetsDatasetIdVrtSourcesGetErrors = {
|
|
|
18613
18619
|
*/
|
|
18614
18620
|
401: ProblemDetail;
|
|
18615
18621
|
/**
|
|
18616
|
-
* Forbidden — caller lacks
|
|
18622
|
+
* Forbidden — caller lacks access to this resource
|
|
18617
18623
|
*/
|
|
18618
18624
|
403: ProblemDetail;
|
|
18619
18625
|
/**
|
|
@@ -18689,7 +18695,7 @@ export type ListVrtGenerationsDatasetsDatasetIdVrtGenerationsGetErrors = {
|
|
|
18689
18695
|
*/
|
|
18690
18696
|
401: ProblemDetail;
|
|
18691
18697
|
/**
|
|
18692
|
-
* Forbidden — caller lacks
|
|
18698
|
+
* Forbidden — caller lacks access to this resource
|
|
18693
18699
|
*/
|
|
18694
18700
|
403: ProblemDetail;
|
|
18695
18701
|
/**
|
|
@@ -18803,7 +18809,7 @@ export type GetVrtStatusDatasetsDatasetIdVrtStatusGetErrors = {
|
|
|
18803
18809
|
*/
|
|
18804
18810
|
401: ProblemDetail;
|
|
18805
18811
|
/**
|
|
18806
|
-
* Forbidden — caller lacks
|
|
18812
|
+
* Forbidden — caller lacks access to this resource
|
|
18807
18813
|
*/
|
|
18808
18814
|
403: ProblemDetail;
|
|
18809
18815
|
/**
|
|
@@ -19334,7 +19340,7 @@ export type GetUploadConfigIngestUploadConfigGetErrors = {
|
|
|
19334
19340
|
*/
|
|
19335
19341
|
401: ProblemDetail;
|
|
19336
19342
|
/**
|
|
19337
|
-
* Forbidden — caller lacks
|
|
19343
|
+
* Forbidden — caller lacks access to this resource
|
|
19338
19344
|
*/
|
|
19339
19345
|
403: ProblemDetail;
|
|
19340
19346
|
/**
|
|
@@ -20272,7 +20278,7 @@ export type ListMapsEndpointMapsGetErrors = {
|
|
|
20272
20278
|
*/
|
|
20273
20279
|
401: ProblemDetail;
|
|
20274
20280
|
/**
|
|
20275
|
-
* Forbidden — caller lacks
|
|
20281
|
+
* Forbidden — caller lacks access to this resource
|
|
20276
20282
|
*/
|
|
20277
20283
|
403: ProblemDetail;
|
|
20278
20284
|
/**
|
|
@@ -20485,7 +20491,7 @@ export type GetMapIconAssetEndpointMapsIconsIconIdAssetGetErrors = {
|
|
|
20485
20491
|
*/
|
|
20486
20492
|
401: ProblemDetail;
|
|
20487
20493
|
/**
|
|
20488
|
-
* Forbidden — caller lacks
|
|
20494
|
+
* Forbidden — caller lacks access to this resource
|
|
20489
20495
|
*/
|
|
20490
20496
|
403: ProblemDetail;
|
|
20491
20497
|
/**
|
|
@@ -20601,7 +20607,7 @@ export type GetSharedMapEndpointMapsSharedTokenGetErrors = {
|
|
|
20601
20607
|
*/
|
|
20602
20608
|
401: ProblemDetail;
|
|
20603
20609
|
/**
|
|
20604
|
-
* Forbidden — caller lacks
|
|
20610
|
+
* Forbidden — caller lacks access to this resource
|
|
20605
20611
|
*/
|
|
20606
20612
|
403: ProblemDetail;
|
|
20607
20613
|
/**
|
|
@@ -20649,25 +20655,13 @@ export type GetGeolensSpriteIndexEndpointMapsSpritesGeolensJsonGetData = {
|
|
|
20649
20655
|
};
|
|
20650
20656
|
export type GetGeolensSpriteIndexEndpointMapsSpritesGeolensJsonGetErrors = {
|
|
20651
20657
|
/**
|
|
20652
|
-
* Bad request — invalid payload
|
|
20658
|
+
* Bad request — invalid query parameters or payload
|
|
20653
20659
|
*/
|
|
20654
20660
|
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
20661
|
/**
|
|
20664
20662
|
* Not found
|
|
20665
20663
|
*/
|
|
20666
20664
|
404: ProblemDetail;
|
|
20667
|
-
/**
|
|
20668
|
-
* Conflict — resource state prevents the operation
|
|
20669
|
-
*/
|
|
20670
|
-
409: ProblemDetail;
|
|
20671
20665
|
/**
|
|
20672
20666
|
* Validation error
|
|
20673
20667
|
*/
|
|
@@ -20694,7 +20688,7 @@ export type GetGeolensSpriteIndexEndpointMapsSpritesGeolensJsonGetResponses = {
|
|
|
20694
20688
|
*/
|
|
20695
20689
|
200: {
|
|
20696
20690
|
[key: string]: {
|
|
20697
|
-
[key: string]: number | number;
|
|
20691
|
+
[key: string]: number | number | boolean;
|
|
20698
20692
|
};
|
|
20699
20693
|
};
|
|
20700
20694
|
};
|
|
@@ -20707,25 +20701,13 @@ export type GetGeolensSpritePngEndpointMapsSpritesGeolensPngGetData = {
|
|
|
20707
20701
|
};
|
|
20708
20702
|
export type GetGeolensSpritePngEndpointMapsSpritesGeolensPngGetErrors = {
|
|
20709
20703
|
/**
|
|
20710
|
-
* Bad request — invalid payload
|
|
20704
|
+
* Bad request — invalid query parameters or payload
|
|
20711
20705
|
*/
|
|
20712
20706
|
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
20707
|
/**
|
|
20722
20708
|
* Not found
|
|
20723
20709
|
*/
|
|
20724
20710
|
404: ProblemDetail;
|
|
20725
|
-
/**
|
|
20726
|
-
* Conflict — resource state prevents the operation
|
|
20727
|
-
*/
|
|
20728
|
-
409: ProblemDetail;
|
|
20729
20711
|
/**
|
|
20730
20712
|
* Validation error
|
|
20731
20713
|
*/
|
|
@@ -20828,7 +20810,7 @@ export type GetMapEndpointMapsMapIdGetErrors = {
|
|
|
20828
20810
|
*/
|
|
20829
20811
|
401: ProblemDetail;
|
|
20830
20812
|
/**
|
|
20831
|
-
* Forbidden — caller lacks
|
|
20813
|
+
* Forbidden — caller lacks access to this resource
|
|
20832
20814
|
*/
|
|
20833
20815
|
403: ProblemDetail;
|
|
20834
20816
|
/**
|
|
@@ -20942,7 +20924,7 @@ export type GetMapAccessEndpointMapsMapIdAccessGetErrors = {
|
|
|
20942
20924
|
*/
|
|
20943
20925
|
401: ProblemDetail;
|
|
20944
20926
|
/**
|
|
20945
|
-
* Forbidden — caller lacks
|
|
20927
|
+
* Forbidden — caller lacks access to this resource
|
|
20946
20928
|
*/
|
|
20947
20929
|
403: ProblemDetail;
|
|
20948
20930
|
/**
|
|
@@ -21590,7 +21572,7 @@ export type GetOgImageMapsMapIdOgImageGetErrors = {
|
|
|
21590
21572
|
*/
|
|
21591
21573
|
401: ProblemDetail;
|
|
21592
21574
|
/**
|
|
21593
|
-
* Forbidden — caller lacks
|
|
21575
|
+
* Forbidden — caller lacks access to this resource
|
|
21594
21576
|
*/
|
|
21595
21577
|
403: ProblemDetail;
|
|
21596
21578
|
/**
|
|
@@ -21940,7 +21922,7 @@ export type ExportMapStyleEndpointMapsMapIdStyleJsonGetErrors = {
|
|
|
21940
21922
|
*/
|
|
21941
21923
|
401: ProblemDetail;
|
|
21942
21924
|
/**
|
|
21943
|
-
* Forbidden — caller lacks
|
|
21925
|
+
* Forbidden — caller lacks access to this resource
|
|
21944
21926
|
*/
|
|
21945
21927
|
403: ProblemDetail;
|
|
21946
21928
|
/**
|
|
@@ -21996,7 +21978,7 @@ export type GetThumbnailMapsMapIdThumbnailGetErrors = {
|
|
|
21996
21978
|
*/
|
|
21997
21979
|
401: ProblemDetail;
|
|
21998
21980
|
/**
|
|
21999
|
-
* Forbidden — caller lacks
|
|
21981
|
+
* Forbidden — caller lacks access to this resource
|
|
22000
21982
|
*/
|
|
22001
21983
|
403: ProblemDetail;
|
|
22002
21984
|
/**
|
|
@@ -22227,7 +22209,7 @@ export type ListContactsEndpointRecordsRecordIdContactsGetErrors = {
|
|
|
22227
22209
|
*/
|
|
22228
22210
|
401: ProblemDetail;
|
|
22229
22211
|
/**
|
|
22230
|
-
* Forbidden — caller lacks
|
|
22212
|
+
* Forbidden — caller lacks access to this resource
|
|
22231
22213
|
*/
|
|
22232
22214
|
403: ProblemDetail;
|
|
22233
22215
|
/**
|
|
@@ -22472,7 +22454,7 @@ export type ListDistributionsEndpointRecordsRecordIdDistributionsGetErrors = {
|
|
|
22472
22454
|
*/
|
|
22473
22455
|
401: ProblemDetail;
|
|
22474
22456
|
/**
|
|
22475
|
-
* Forbidden — caller lacks
|
|
22457
|
+
* Forbidden — caller lacks access to this resource
|
|
22476
22458
|
*/
|
|
22477
22459
|
403: ProblemDetail;
|
|
22478
22460
|
/**
|
|
@@ -22729,7 +22711,7 @@ export type ListKeywordsEndpointRecordsRecordIdKeywordsGetErrors = {
|
|
|
22729
22711
|
*/
|
|
22730
22712
|
401: ProblemDetail;
|
|
22731
22713
|
/**
|
|
22732
|
-
* Forbidden — caller lacks
|
|
22714
|
+
* Forbidden — caller lacks access to this resource
|
|
22733
22715
|
*/
|
|
22734
22716
|
403: ProblemDetail;
|
|
22735
22717
|
/**
|
|
@@ -22904,7 +22886,7 @@ export type ListTranslationsEndpointRecordsRecordIdTranslationsGetErrors = {
|
|
|
22904
22886
|
*/
|
|
22905
22887
|
401: ProblemDetail;
|
|
22906
22888
|
/**
|
|
22907
|
-
* Forbidden — caller lacks
|
|
22889
|
+
* Forbidden — caller lacks access to this resource
|
|
22908
22890
|
*/
|
|
22909
22891
|
403: ProblemDetail;
|
|
22910
22892
|
/**
|
|
@@ -24906,6 +24888,8 @@ export type GetCollectionItemsStacCollectionsCollectionIdItemsGetData = {
|
|
|
24906
24888
|
datetime?: string | null;
|
|
24907
24889
|
/**
|
|
24908
24890
|
* Limit
|
|
24891
|
+
*
|
|
24892
|
+
* 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
24893
|
*/
|
|
24910
24894
|
limit?: number;
|
|
24911
24895
|
/**
|