@geolens/sdk 1.13.1 → 1.14.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.
|
@@ -985,32 +985,26 @@ export type AuditLogResponse = {
|
|
|
985
985
|
};
|
|
986
986
|
/**
|
|
987
987
|
* BackfillResponse
|
|
988
|
+
*
|
|
989
|
+
* Acknowledgement that a backfill run was queued (fix(#1542)).
|
|
990
|
+
*
|
|
991
|
+
* The run itself happens on the job queue, so this carries no counts — a full
|
|
992
|
+
* regenerate takes minutes and used to hold the HTTP request open past the
|
|
993
|
+
* 600s edge timeout. Poll ``GET /jobs/{job_id}`` for the run's status.
|
|
988
994
|
*/
|
|
989
995
|
export type BackfillResponse = {
|
|
990
996
|
/**
|
|
991
|
-
*
|
|
992
|
-
*
|
|
993
|
-
* Number of records processed in this backfill batch.
|
|
994
|
-
*/
|
|
995
|
-
processed: number;
|
|
996
|
-
/**
|
|
997
|
-
* Created
|
|
998
|
-
*
|
|
999
|
-
* Number of new embeddings created.
|
|
1000
|
-
*/
|
|
1001
|
-
created: number;
|
|
1002
|
-
/**
|
|
1003
|
-
* Skipped
|
|
997
|
+
* Job Id
|
|
1004
998
|
*
|
|
1005
|
-
*
|
|
999
|
+
* Identifier of the queued backfill job; poll /jobs/{job_id}.
|
|
1006
1000
|
*/
|
|
1007
|
-
|
|
1001
|
+
job_id: string;
|
|
1008
1002
|
/**
|
|
1009
|
-
*
|
|
1003
|
+
* Status
|
|
1010
1004
|
*
|
|
1011
|
-
*
|
|
1005
|
+
* Job status at enqueue time ('pending').
|
|
1012
1006
|
*/
|
|
1013
|
-
|
|
1007
|
+
status: string;
|
|
1014
1008
|
};
|
|
1015
1009
|
/**
|
|
1016
1010
|
* BasemapConfig
|
|
@@ -1210,6 +1204,12 @@ export type BrandingResponse = {
|
|
|
1210
1204
|
* Whether to show the 'Powered by GeoLens' label in public and shared footers. Badge-removal writes are restricted controls.
|
|
1211
1205
|
*/
|
|
1212
1206
|
show_badge: boolean;
|
|
1207
|
+
/**
|
|
1208
|
+
* Privacy Url
|
|
1209
|
+
*
|
|
1210
|
+
* Operator-configured privacy-policy URL shown on the login and register pages, or null when unset (no link is shown). Must be an absolute http(s) URL with no embedded credentials; a query string or fragment is allowed and preserved as-is.
|
|
1211
|
+
*/
|
|
1212
|
+
privacy_url?: string | null;
|
|
1213
1213
|
};
|
|
1214
1214
|
/**
|
|
1215
1215
|
* BulkDeleteItem
|
|
@@ -4140,15 +4140,21 @@ export type EmbeddingStatsResponse = {
|
|
|
4140
4140
|
/**
|
|
4141
4141
|
* Embedded Records
|
|
4142
4142
|
*
|
|
4143
|
-
* Number of records
|
|
4143
|
+
* Number of records with an embedding for the ACTIVE embedding model — the only vectors semantic search can use.
|
|
4144
4144
|
*/
|
|
4145
4145
|
embedded_records: number;
|
|
4146
4146
|
/**
|
|
4147
4147
|
* Missing Records
|
|
4148
4148
|
*
|
|
4149
|
-
* Number of records
|
|
4149
|
+
* Number of records without an active-model embedding (total_records - embedded_records).
|
|
4150
4150
|
*/
|
|
4151
4151
|
missing_records: number;
|
|
4152
|
+
/**
|
|
4153
|
+
* Stale Records
|
|
4154
|
+
*
|
|
4155
|
+
* Subset of missing_records whose only stored embeddings belong to other models. Regenerating all embeddings clears these; generating missing ones does not.
|
|
4156
|
+
*/
|
|
4157
|
+
stale_records: number;
|
|
4152
4158
|
/**
|
|
4153
4159
|
* Coverage Percent
|
|
4154
4160
|
*
|
|
@@ -4671,6 +4677,10 @@ export type JobStatusResponse = {
|
|
|
4671
4677
|
* Rows Processed
|
|
4672
4678
|
*/
|
|
4673
4679
|
rows_processed?: number | null;
|
|
4680
|
+
/**
|
|
4681
|
+
* Rows Failed
|
|
4682
|
+
*/
|
|
4683
|
+
rows_failed?: number | null;
|
|
4674
4684
|
/**
|
|
4675
4685
|
* Archive Failed
|
|
4676
4686
|
*/
|
|
@@ -9899,7 +9909,7 @@ export type TileConfigResponse = {
|
|
|
9899
9909
|
/**
|
|
9900
9910
|
* Public App Url
|
|
9901
9911
|
*
|
|
9902
|
-
*
|
|
9912
|
+
* Explicitly configured PUBLIC_APP_URL, or null when unset. Never derived from PUBLIC_API_URL or from the request, because a share or embed URL built on a derived value points at a host that does not serve the app.
|
|
9903
9913
|
*/
|
|
9904
9914
|
public_app_url?: string | null;
|
|
9905
9915
|
/**
|
|
@@ -11146,6 +11156,10 @@ export type TriggerBackfillAdminBackfillEmbeddingsPostErrors = {
|
|
|
11146
11156
|
* Not found
|
|
11147
11157
|
*/
|
|
11148
11158
|
404: ProblemDetail;
|
|
11159
|
+
/**
|
|
11160
|
+
* Conflict — resource state prevents the operation
|
|
11161
|
+
*/
|
|
11162
|
+
409: ProblemDetail;
|
|
11149
11163
|
/**
|
|
11150
11164
|
* Validation error
|
|
11151
11165
|
*/
|
|
@@ -11159,11 +11173,7 @@ export type TriggerBackfillAdminBackfillEmbeddingsPostErrors = {
|
|
|
11159
11173
|
*/
|
|
11160
11174
|
500: ProblemDetail;
|
|
11161
11175
|
/**
|
|
11162
|
-
*
|
|
11163
|
-
*/
|
|
11164
|
-
502: ProblemDetail;
|
|
11165
|
-
/**
|
|
11166
|
-
* Service unavailable — the database could not serve the request
|
|
11176
|
+
* Service unavailable — the background job queue could not be reached
|
|
11167
11177
|
*/
|
|
11168
11178
|
503: ProblemDetail;
|
|
11169
11179
|
};
|
|
@@ -13089,6 +13099,14 @@ export type CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses =
|
|
|
13089
13099
|
export type CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponse = CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses[keyof CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses];
|
|
13090
13100
|
export type LoginAuthLoginPostData = {
|
|
13091
13101
|
body: BodyLoginAuthLoginPost;
|
|
13102
|
+
headers?: {
|
|
13103
|
+
/**
|
|
13104
|
+
* X-Geolens-Auth-Mode
|
|
13105
|
+
*
|
|
13106
|
+
* Browser session-transport negotiation. Send `cookie` to carry the refresh token in an httpOnly `geolens_refresh` cookie, paired with a script-readable `geolens_csrf` cookie, and receive a null `refresh_token` in the response body. When the header is absent (the default) the refresh token is returned in the response body, which is the contract every non-browser caller uses.
|
|
13107
|
+
*/
|
|
13108
|
+
'X-GeoLens-Auth-Mode'?: string | null;
|
|
13109
|
+
};
|
|
13092
13110
|
path?: never;
|
|
13093
13111
|
query?: never;
|
|
13094
13112
|
url: '/auth/login';
|
|
@@ -13140,6 +13158,14 @@ export type LogoutAuthLogoutPostData = {
|
|
|
13140
13158
|
* Body
|
|
13141
13159
|
*/
|
|
13142
13160
|
body?: RefreshRequest | null;
|
|
13161
|
+
headers?: {
|
|
13162
|
+
/**
|
|
13163
|
+
* X-Csrf-Token
|
|
13164
|
+
*
|
|
13165
|
+
* Double-submit CSRF token, enforced only when the refresh cookie is what authenticates the call. Echo the value of the `geolens_csrf` cookie issued alongside the refresh cookie. Callers presenting a refresh token in the request body do not send it.
|
|
13166
|
+
*/
|
|
13167
|
+
'X-CSRF-Token'?: string | null;
|
|
13168
|
+
};
|
|
13143
13169
|
path?: never;
|
|
13144
13170
|
query?: never;
|
|
13145
13171
|
url: '/auth/logout/';
|
|
@@ -13483,6 +13509,20 @@ export type RefreshAuthRefreshPostData = {
|
|
|
13483
13509
|
* Body
|
|
13484
13510
|
*/
|
|
13485
13511
|
body?: RefreshRequest | null;
|
|
13512
|
+
headers?: {
|
|
13513
|
+
/**
|
|
13514
|
+
* X-Geolens-Auth-Mode
|
|
13515
|
+
*
|
|
13516
|
+
* Browser session-transport negotiation. Send `cookie` to carry the refresh token in an httpOnly `geolens_refresh` cookie, paired with a script-readable `geolens_csrf` cookie, and receive a null `refresh_token` in the response body. When the header is absent (the default) the refresh token is returned in the response body, which is the contract every non-browser caller uses.
|
|
13517
|
+
*/
|
|
13518
|
+
'X-GeoLens-Auth-Mode'?: string | null;
|
|
13519
|
+
/**
|
|
13520
|
+
* X-Csrf-Token
|
|
13521
|
+
*
|
|
13522
|
+
* Double-submit CSRF token, enforced only when the refresh cookie is what authenticates the call. Echo the value of the `geolens_csrf` cookie issued alongside the refresh cookie. Callers presenting a refresh token in the request body do not send it.
|
|
13523
|
+
*/
|
|
13524
|
+
'X-CSRF-Token'?: string | null;
|
|
13525
|
+
};
|
|
13486
13526
|
path?: never;
|
|
13487
13527
|
query?: never;
|
|
13488
13528
|
url: '/auth/refresh/';
|
|
@@ -14169,6 +14209,10 @@ export type ListCollectionsCollectionsGetErrors = {
|
|
|
14169
14209
|
* Bad request — invalid query parameters or payload
|
|
14170
14210
|
*/
|
|
14171
14211
|
400: ProblemDetail;
|
|
14212
|
+
/**
|
|
14213
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14214
|
+
*/
|
|
14215
|
+
401: ProblemDetail;
|
|
14172
14216
|
/**
|
|
14173
14217
|
* Not found
|
|
14174
14218
|
*/
|
|
@@ -14205,6 +14249,10 @@ export type GetCollectionMetadataCollectionsDatasetsGetErrors = {
|
|
|
14205
14249
|
* Bad request — invalid query parameters or payload
|
|
14206
14250
|
*/
|
|
14207
14251
|
400: ProblemDetail;
|
|
14252
|
+
/**
|
|
14253
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14254
|
+
*/
|
|
14255
|
+
401: ProblemDetail;
|
|
14208
14256
|
/**
|
|
14209
14257
|
* Not found
|
|
14210
14258
|
*/
|
|
@@ -14361,6 +14409,10 @@ export type CollectionItemsCollectionsDatasetsItemsGetErrors = {
|
|
|
14361
14409
|
* Bad request — invalid query parameters or payload
|
|
14362
14410
|
*/
|
|
14363
14411
|
400: ProblemDetail;
|
|
14412
|
+
/**
|
|
14413
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14414
|
+
*/
|
|
14415
|
+
401: ProblemDetail;
|
|
14364
14416
|
/**
|
|
14365
14417
|
* Not found
|
|
14366
14418
|
*/
|
|
@@ -14402,6 +14454,10 @@ export type GetCollectionItemCollectionsDatasetsItemsRecordIdGetErrors = {
|
|
|
14402
14454
|
* Bad request — invalid query parameters or payload
|
|
14403
14455
|
*/
|
|
14404
14456
|
400: ProblemDetail;
|
|
14457
|
+
/**
|
|
14458
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14459
|
+
*/
|
|
14460
|
+
401: ProblemDetail;
|
|
14405
14461
|
/**
|
|
14406
14462
|
* Not found
|
|
14407
14463
|
*/
|
|
@@ -14553,6 +14609,10 @@ export type GetDatasetCollectionCollectionsDatasetIdGetErrors = {
|
|
|
14553
14609
|
* Bad request — invalid query parameters or payload
|
|
14554
14610
|
*/
|
|
14555
14611
|
400: ProblemDetail;
|
|
14612
|
+
/**
|
|
14613
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14614
|
+
*/
|
|
14615
|
+
401: ProblemDetail;
|
|
14556
14616
|
/**
|
|
14557
14617
|
* Not found
|
|
14558
14618
|
*/
|
|
@@ -14635,6 +14695,10 @@ export type GetCollectionItemsCollectionsDatasetIdItemsGetErrors = {
|
|
|
14635
14695
|
* Bad request — invalid query parameters or payload
|
|
14636
14696
|
*/
|
|
14637
14697
|
400: ProblemDetail;
|
|
14698
|
+
/**
|
|
14699
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14700
|
+
*/
|
|
14701
|
+
401: ProblemDetail;
|
|
14638
14702
|
/**
|
|
14639
14703
|
* Not found
|
|
14640
14704
|
*/
|
|
@@ -14751,6 +14815,10 @@ export type GetCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGetErrors
|
|
|
14751
14815
|
* Bad request — invalid query parameters or payload
|
|
14752
14816
|
*/
|
|
14753
14817
|
400: ProblemDetail;
|
|
14818
|
+
/**
|
|
14819
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
14820
|
+
*/
|
|
14821
|
+
401: ProblemDetail;
|
|
14754
14822
|
/**
|
|
14755
14823
|
* Not found
|
|
14756
14824
|
*/
|
|
@@ -15282,6 +15350,10 @@ export type GetDcatUs3CatalogDatasetsDcatUs30GetErrors = {
|
|
|
15282
15350
|
* Bad request — invalid query parameters or payload
|
|
15283
15351
|
*/
|
|
15284
15352
|
400: ProblemDetail;
|
|
15353
|
+
/**
|
|
15354
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
15355
|
+
*/
|
|
15356
|
+
401: ProblemDetail;
|
|
15285
15357
|
/**
|
|
15286
15358
|
* Not found
|
|
15287
15359
|
*/
|
|
@@ -15317,6 +15389,10 @@ export type ValidateDcatUs3CatalogDatasetsDcatUs30ValidationGetErrors = {
|
|
|
15317
15389
|
* Bad request — invalid query parameters or payload
|
|
15318
15390
|
*/
|
|
15319
15391
|
400: ProblemDetail;
|
|
15392
|
+
/**
|
|
15393
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
15394
|
+
*/
|
|
15395
|
+
401: ProblemDetail;
|
|
15320
15396
|
/**
|
|
15321
15397
|
* Not found
|
|
15322
15398
|
*/
|
|
@@ -15365,6 +15441,10 @@ export type GetDcatCatalogDatasetsDcatGetErrors = {
|
|
|
15365
15441
|
* Bad request — invalid query parameters or payload
|
|
15366
15442
|
*/
|
|
15367
15443
|
400: ProblemDetail;
|
|
15444
|
+
/**
|
|
15445
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
15446
|
+
*/
|
|
15447
|
+
401: ProblemDetail;
|
|
15368
15448
|
/**
|
|
15369
15449
|
* Not found
|
|
15370
15450
|
*/
|
|
@@ -15400,6 +15480,10 @@ export type ValidateDcat3CatalogDatasetsDcatValidationGetErrors = {
|
|
|
15400
15480
|
* Bad request — invalid query parameters or payload
|
|
15401
15481
|
*/
|
|
15402
15482
|
400: ProblemDetail;
|
|
15483
|
+
/**
|
|
15484
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
15485
|
+
*/
|
|
15486
|
+
401: ProblemDetail;
|
|
15403
15487
|
/**
|
|
15404
15488
|
* Not found
|
|
15405
15489
|
*/
|
|
@@ -15448,6 +15532,10 @@ export type GetGeodcatApCatalogDatasetsGeodcatApGetErrors = {
|
|
|
15448
15532
|
* Bad request — invalid query parameters or payload
|
|
15449
15533
|
*/
|
|
15450
15534
|
400: ProblemDetail;
|
|
15535
|
+
/**
|
|
15536
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
15537
|
+
*/
|
|
15538
|
+
401: ProblemDetail;
|
|
15451
15539
|
/**
|
|
15452
15540
|
* Not found
|
|
15453
15541
|
*/
|
|
@@ -15483,6 +15571,10 @@ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetErrors = {
|
|
|
15483
15571
|
* Bad request — invalid query parameters or payload
|
|
15484
15572
|
*/
|
|
15485
15573
|
400: ProblemDetail;
|
|
15574
|
+
/**
|
|
15575
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
15576
|
+
*/
|
|
15577
|
+
401: ProblemDetail;
|
|
15486
15578
|
/**
|
|
15487
15579
|
* Not found
|
|
15488
15580
|
*/
|
|
@@ -16237,6 +16329,10 @@ export type GetDcatUs3RecordDatasetsDatasetIdDcatUs30GetErrors = {
|
|
|
16237
16329
|
* Bad request — invalid query parameters or payload
|
|
16238
16330
|
*/
|
|
16239
16331
|
400: ProblemDetail;
|
|
16332
|
+
/**
|
|
16333
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
16334
|
+
*/
|
|
16335
|
+
401: ProblemDetail;
|
|
16240
16336
|
/**
|
|
16241
16337
|
* Not found
|
|
16242
16338
|
*/
|
|
@@ -16277,6 +16373,10 @@ export type ValidateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGetErrors =
|
|
|
16277
16373
|
* Bad request — invalid query parameters or payload
|
|
16278
16374
|
*/
|
|
16279
16375
|
400: ProblemDetail;
|
|
16376
|
+
/**
|
|
16377
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
16378
|
+
*/
|
|
16379
|
+
401: ProblemDetail;
|
|
16280
16380
|
/**
|
|
16281
16381
|
* Not found
|
|
16282
16382
|
*/
|
|
@@ -16317,6 +16417,10 @@ export type GetDcatRecordDatasetsDatasetIdDcatGetErrors = {
|
|
|
16317
16417
|
* Bad request — invalid query parameters or payload
|
|
16318
16418
|
*/
|
|
16319
16419
|
400: ProblemDetail;
|
|
16420
|
+
/**
|
|
16421
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
16422
|
+
*/
|
|
16423
|
+
401: ProblemDetail;
|
|
16320
16424
|
/**
|
|
16321
16425
|
* Not found
|
|
16322
16426
|
*/
|
|
@@ -16357,6 +16461,10 @@ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetErrors = {
|
|
|
16357
16461
|
* Bad request — invalid query parameters or payload
|
|
16358
16462
|
*/
|
|
16359
16463
|
400: ProblemDetail;
|
|
16464
|
+
/**
|
|
16465
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
16466
|
+
*/
|
|
16467
|
+
401: ProblemDetail;
|
|
16360
16468
|
/**
|
|
16361
16469
|
* Not found
|
|
16362
16470
|
*/
|
|
@@ -16397,6 +16505,10 @@ export type DownloadCogDatasetsDatasetIdDownloadCogGetErrors = {
|
|
|
16397
16505
|
* Bad request — invalid query parameters or payload
|
|
16398
16506
|
*/
|
|
16399
16507
|
400: ProblemDetail;
|
|
16508
|
+
/**
|
|
16509
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
16510
|
+
*/
|
|
16511
|
+
401: ProblemDetail;
|
|
16400
16512
|
/**
|
|
16401
16513
|
* Forbidden — caller lacks access to this resource
|
|
16402
16514
|
*/
|
|
@@ -16468,6 +16580,10 @@ export type ExportDatasetEndpointDatasetsDatasetIdExportGetErrors = {
|
|
|
16468
16580
|
* Bad request — invalid query parameters or payload
|
|
16469
16581
|
*/
|
|
16470
16582
|
400: ProblemDetail;
|
|
16583
|
+
/**
|
|
16584
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
16585
|
+
*/
|
|
16586
|
+
401: ProblemDetail;
|
|
16471
16587
|
/**
|
|
16472
16588
|
* Forbidden — caller lacks access to this resource
|
|
16473
16589
|
*/
|
|
@@ -17301,6 +17417,10 @@ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetErrors = {
|
|
|
17301
17417
|
* Bad request — invalid query parameters or payload
|
|
17302
17418
|
*/
|
|
17303
17419
|
400: ProblemDetail;
|
|
17420
|
+
/**
|
|
17421
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
17422
|
+
*/
|
|
17423
|
+
401: ProblemDetail;
|
|
17304
17424
|
/**
|
|
17305
17425
|
* Not found
|
|
17306
17426
|
*/
|
|
@@ -17341,6 +17461,10 @@ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetErrors
|
|
|
17341
17461
|
* Bad request — invalid query parameters or payload
|
|
17342
17462
|
*/
|
|
17343
17463
|
400: ProblemDetail;
|
|
17464
|
+
/**
|
|
17465
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
17466
|
+
*/
|
|
17467
|
+
401: ProblemDetail;
|
|
17344
17468
|
/**
|
|
17345
17469
|
* Not found
|
|
17346
17470
|
*/
|
|
@@ -23167,6 +23291,10 @@ export type SearchDatasetsEndpointSearchDatasetsGetErrors = {
|
|
|
23167
23291
|
* Bad request — invalid query parameters or payload
|
|
23168
23292
|
*/
|
|
23169
23293
|
400: ProblemDetail;
|
|
23294
|
+
/**
|
|
23295
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
23296
|
+
*/
|
|
23297
|
+
401: ProblemDetail;
|
|
23170
23298
|
/**
|
|
23171
23299
|
* Validation Error
|
|
23172
23300
|
*/
|
|
@@ -23266,6 +23394,10 @@ export type SearchFacetsEndpointSearchFacetsGetData = {
|
|
|
23266
23394
|
url: '/search/facets/';
|
|
23267
23395
|
};
|
|
23268
23396
|
export type SearchFacetsEndpointSearchFacetsGetErrors = {
|
|
23397
|
+
/**
|
|
23398
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
23399
|
+
*/
|
|
23400
|
+
401: ProblemDetail;
|
|
23269
23401
|
/**
|
|
23270
23402
|
* Validation Error
|
|
23271
23403
|
*/
|
|
@@ -24791,6 +24923,10 @@ export type LandingPageStacGetErrors = {
|
|
|
24791
24923
|
* Bad request — invalid standards parameters
|
|
24792
24924
|
*/
|
|
24793
24925
|
400: ProblemDetail;
|
|
24926
|
+
/**
|
|
24927
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
24928
|
+
*/
|
|
24929
|
+
401: ProblemDetail;
|
|
24794
24930
|
/**
|
|
24795
24931
|
* Too many requests — retry after the advertised interval
|
|
24796
24932
|
*/
|
|
@@ -24823,6 +24959,10 @@ export type GetCollectionsStacCollectionsGetErrors = {
|
|
|
24823
24959
|
* Bad request — invalid standards parameters
|
|
24824
24960
|
*/
|
|
24825
24961
|
400: ProblemDetail;
|
|
24962
|
+
/**
|
|
24963
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
24964
|
+
*/
|
|
24965
|
+
401: ProblemDetail;
|
|
24826
24966
|
/**
|
|
24827
24967
|
* Too many requests — retry after the advertised interval
|
|
24828
24968
|
*/
|
|
@@ -24860,6 +25000,10 @@ export type GetCollectionStacCollectionsCollectionIdGetErrors = {
|
|
|
24860
25000
|
* Bad request — invalid standards parameters
|
|
24861
25001
|
*/
|
|
24862
25002
|
400: ProblemDetail;
|
|
25003
|
+
/**
|
|
25004
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25005
|
+
*/
|
|
25006
|
+
401: ProblemDetail;
|
|
24863
25007
|
/**
|
|
24864
25008
|
* Not found
|
|
24865
25009
|
*/
|
|
@@ -24926,6 +25070,10 @@ export type GetCollectionItemsStacCollectionsCollectionIdItemsGetErrors = {
|
|
|
24926
25070
|
* Bad request — invalid query parameters or payload
|
|
24927
25071
|
*/
|
|
24928
25072
|
400: ProblemDetail;
|
|
25073
|
+
/**
|
|
25074
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25075
|
+
*/
|
|
25076
|
+
401: ProblemDetail;
|
|
24929
25077
|
/**
|
|
24930
25078
|
* Not found
|
|
24931
25079
|
*/
|
|
@@ -24971,6 +25119,10 @@ export type GetCollectionItemStacCollectionsCollectionIdItemsItemIdGetErrors = {
|
|
|
24971
25119
|
* Bad request — invalid standards parameters
|
|
24972
25120
|
*/
|
|
24973
25121
|
400: ProblemDetail;
|
|
25122
|
+
/**
|
|
25123
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25124
|
+
*/
|
|
25125
|
+
401: ProblemDetail;
|
|
24974
25126
|
/**
|
|
24975
25127
|
* Not found
|
|
24976
25128
|
*/
|
|
@@ -25040,6 +25192,10 @@ export type GetItemStacItemsItemIdGetErrors = {
|
|
|
25040
25192
|
* Bad request — invalid standards parameters
|
|
25041
25193
|
*/
|
|
25042
25194
|
400: ProblemDetail;
|
|
25195
|
+
/**
|
|
25196
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25197
|
+
*/
|
|
25198
|
+
401: ProblemDetail;
|
|
25043
25199
|
/**
|
|
25044
25200
|
* Not found
|
|
25045
25201
|
*/
|
|
@@ -25119,6 +25275,10 @@ export type SearchGetStacSearchGetErrors = {
|
|
|
25119
25275
|
* Bad request — invalid query parameters or payload
|
|
25120
25276
|
*/
|
|
25121
25277
|
400: ProblemDetail;
|
|
25278
|
+
/**
|
|
25279
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25280
|
+
*/
|
|
25281
|
+
401: ProblemDetail;
|
|
25122
25282
|
/**
|
|
25123
25283
|
* Not found
|
|
25124
25284
|
*/
|
|
@@ -25155,6 +25315,10 @@ export type SearchPostStacSearchPostErrors = {
|
|
|
25155
25315
|
* Bad request — invalid query parameters or payload
|
|
25156
25316
|
*/
|
|
25157
25317
|
400: ProblemDetail;
|
|
25318
|
+
/**
|
|
25319
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25320
|
+
*/
|
|
25321
|
+
401: ProblemDetail;
|
|
25158
25322
|
/**
|
|
25159
25323
|
* Not found
|
|
25160
25324
|
*/
|
|
@@ -25233,6 +25397,10 @@ export type ClusterTileEndpointTilesClustersTablePathZxyPbfGetErrors = {
|
|
|
25233
25397
|
* Bad request — invalid query parameters or payload
|
|
25234
25398
|
*/
|
|
25235
25399
|
400: ProblemDetail;
|
|
25400
|
+
/**
|
|
25401
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25402
|
+
*/
|
|
25403
|
+
401: ProblemDetail;
|
|
25236
25404
|
/**
|
|
25237
25405
|
* Not found
|
|
25238
25406
|
*/
|
|
@@ -25324,6 +25492,10 @@ export type RasterTileProxyTilesRasterProxyDatasetIdZxyFmtGetErrors = {
|
|
|
25324
25492
|
* Bad request — invalid query parameters or payload
|
|
25325
25493
|
*/
|
|
25326
25494
|
400: ProblemDetail;
|
|
25495
|
+
/**
|
|
25496
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25497
|
+
*/
|
|
25498
|
+
401: ProblemDetail;
|
|
25327
25499
|
/**
|
|
25328
25500
|
* Not found
|
|
25329
25501
|
*/
|
|
@@ -25364,6 +25536,10 @@ export type GetTileTokenTilesTokenDatasetIdGetErrors = {
|
|
|
25364
25536
|
* Bad request — invalid query parameters or payload
|
|
25365
25537
|
*/
|
|
25366
25538
|
400: ProblemDetail;
|
|
25539
|
+
/**
|
|
25540
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25541
|
+
*/
|
|
25542
|
+
401: ProblemDetail;
|
|
25367
25543
|
/**
|
|
25368
25544
|
* Not found
|
|
25369
25545
|
*/
|
|
@@ -25408,6 +25584,10 @@ export type GetTileTokensBatchTilesTokensPostErrors = {
|
|
|
25408
25584
|
* Bad request — invalid query parameters or payload
|
|
25409
25585
|
*/
|
|
25410
25586
|
400: ProblemDetail;
|
|
25587
|
+
/**
|
|
25588
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25589
|
+
*/
|
|
25590
|
+
401: ProblemDetail;
|
|
25411
25591
|
/**
|
|
25412
25592
|
* Not found
|
|
25413
25593
|
*/
|
|
@@ -25478,6 +25658,10 @@ export type TileEndpointTilesTablePathZxyPbfGetErrors = {
|
|
|
25478
25658
|
* Bad request — invalid query parameters or payload
|
|
25479
25659
|
*/
|
|
25480
25660
|
400: ProblemDetail;
|
|
25661
|
+
/**
|
|
25662
|
+
* Unauthenticated — a credential was supplied and could not be resolved (expired, revoked, or malformed). Sending no credential at all is not an error on these operations; they answer anonymously with the public subset. Neither is sending an unresolvable credential alongside a capability that authorizes the request on its own — a valid X-Embed-Token or a valid signed tile template (sig, exp, scope). Those are served and the unrelated credential is ignored.
|
|
25663
|
+
*/
|
|
25664
|
+
401: ProblemDetail;
|
|
25481
25665
|
/**
|
|
25482
25666
|
* Not found
|
|
25483
25667
|
*/
|