@geolens/sdk 1.13.0 → 1.14.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.
|
@@ -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
|
|
@@ -2738,6 +2732,12 @@ export type DatasetMeta = {
|
|
|
2738
2732
|
* License
|
|
2739
2733
|
*/
|
|
2740
2734
|
license?: string | null;
|
|
2735
|
+
/**
|
|
2736
|
+
* Attribution
|
|
2737
|
+
*
|
|
2738
|
+
* Credit line displayed with the data. Null clears it; the ingest tail seeds it from a manifest's metadata.attribution.
|
|
2739
|
+
*/
|
|
2740
|
+
attribution?: string | null;
|
|
2741
2741
|
/**
|
|
2742
2742
|
* Source Organization
|
|
2743
2743
|
*/
|
|
@@ -3176,6 +3176,12 @@ export type DatasetResponse = {
|
|
|
3176
3176
|
* License
|
|
3177
3177
|
*/
|
|
3178
3178
|
license?: string | null;
|
|
3179
|
+
/**
|
|
3180
|
+
* Attribution
|
|
3181
|
+
*
|
|
3182
|
+
* Credit line the source's terms require to be displayed wherever the data is rendered. Shown verbatim in the map viewer's attribution control.
|
|
3183
|
+
*/
|
|
3184
|
+
attribution?: string | null;
|
|
3179
3185
|
/**
|
|
3180
3186
|
* Source Organization
|
|
3181
3187
|
*/
|
|
@@ -4128,15 +4134,21 @@ export type EmbeddingStatsResponse = {
|
|
|
4128
4134
|
/**
|
|
4129
4135
|
* Embedded Records
|
|
4130
4136
|
*
|
|
4131
|
-
* Number of records
|
|
4137
|
+
* Number of records with an embedding for the ACTIVE embedding model — the only vectors semantic search can use.
|
|
4132
4138
|
*/
|
|
4133
4139
|
embedded_records: number;
|
|
4134
4140
|
/**
|
|
4135
4141
|
* Missing Records
|
|
4136
4142
|
*
|
|
4137
|
-
* Number of records
|
|
4143
|
+
* Number of records without an active-model embedding (total_records - embedded_records).
|
|
4138
4144
|
*/
|
|
4139
4145
|
missing_records: number;
|
|
4146
|
+
/**
|
|
4147
|
+
* Stale Records
|
|
4148
|
+
*
|
|
4149
|
+
* Subset of missing_records whose only stored embeddings belong to other models. Regenerating all embeddings clears these; generating missing ones does not.
|
|
4150
|
+
*/
|
|
4151
|
+
stale_records: number;
|
|
4140
4152
|
/**
|
|
4141
4153
|
* Coverage Percent
|
|
4142
4154
|
*
|
|
@@ -4659,6 +4671,10 @@ export type JobStatusResponse = {
|
|
|
4659
4671
|
* Rows Processed
|
|
4660
4672
|
*/
|
|
4661
4673
|
rows_processed?: number | null;
|
|
4674
|
+
/**
|
|
4675
|
+
* Rows Failed
|
|
4676
|
+
*/
|
|
4677
|
+
rows_failed?: number | null;
|
|
4662
4678
|
/**
|
|
4663
4679
|
* Archive Failed
|
|
4664
4680
|
*/
|
|
@@ -5639,6 +5655,10 @@ export type MapLayerResponse = {
|
|
|
5639
5655
|
* Dataset Status
|
|
5640
5656
|
*/
|
|
5641
5657
|
dataset_status?: string | null;
|
|
5658
|
+
/**
|
|
5659
|
+
* Dataset Attribution
|
|
5660
|
+
*/
|
|
5661
|
+
dataset_attribution?: string | null;
|
|
5642
5662
|
};
|
|
5643
5663
|
/**
|
|
5644
5664
|
* MapListResponse
|
|
@@ -8661,6 +8681,10 @@ export type SharedLayerResponse = {
|
|
|
8661
8681
|
* Tile Version
|
|
8662
8682
|
*/
|
|
8663
8683
|
tile_version?: number | null;
|
|
8684
|
+
/**
|
|
8685
|
+
* Dataset Attribution
|
|
8686
|
+
*/
|
|
8687
|
+
dataset_attribution?: string | null;
|
|
8664
8688
|
};
|
|
8665
8689
|
/**
|
|
8666
8690
|
* SharedMapResponse
|
|
@@ -9879,7 +9903,7 @@ export type TileConfigResponse = {
|
|
|
9879
9903
|
/**
|
|
9880
9904
|
* Public App Url
|
|
9881
9905
|
*
|
|
9882
|
-
*
|
|
9906
|
+
* 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.
|
|
9883
9907
|
*/
|
|
9884
9908
|
public_app_url?: string | null;
|
|
9885
9909
|
/**
|
|
@@ -11126,6 +11150,10 @@ export type TriggerBackfillAdminBackfillEmbeddingsPostErrors = {
|
|
|
11126
11150
|
* Not found
|
|
11127
11151
|
*/
|
|
11128
11152
|
404: ProblemDetail;
|
|
11153
|
+
/**
|
|
11154
|
+
* Conflict — resource state prevents the operation
|
|
11155
|
+
*/
|
|
11156
|
+
409: ProblemDetail;
|
|
11129
11157
|
/**
|
|
11130
11158
|
* Validation error
|
|
11131
11159
|
*/
|
|
@@ -11139,11 +11167,7 @@ export type TriggerBackfillAdminBackfillEmbeddingsPostErrors = {
|
|
|
11139
11167
|
*/
|
|
11140
11168
|
500: ProblemDetail;
|
|
11141
11169
|
/**
|
|
11142
|
-
*
|
|
11143
|
-
*/
|
|
11144
|
-
502: ProblemDetail;
|
|
11145
|
-
/**
|
|
11146
|
-
* Service unavailable — the database could not serve the request
|
|
11170
|
+
* Service unavailable — the background job queue could not be reached
|
|
11147
11171
|
*/
|
|
11148
11172
|
503: ProblemDetail;
|
|
11149
11173
|
};
|
|
@@ -13069,6 +13093,14 @@ export type CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses =
|
|
|
13069
13093
|
export type CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponse = CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses[keyof CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses];
|
|
13070
13094
|
export type LoginAuthLoginPostData = {
|
|
13071
13095
|
body: BodyLoginAuthLoginPost;
|
|
13096
|
+
headers?: {
|
|
13097
|
+
/**
|
|
13098
|
+
* X-Geolens-Auth-Mode
|
|
13099
|
+
*
|
|
13100
|
+
* 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.
|
|
13101
|
+
*/
|
|
13102
|
+
'X-GeoLens-Auth-Mode'?: string | null;
|
|
13103
|
+
};
|
|
13072
13104
|
path?: never;
|
|
13073
13105
|
query?: never;
|
|
13074
13106
|
url: '/auth/login';
|
|
@@ -13120,6 +13152,14 @@ export type LogoutAuthLogoutPostData = {
|
|
|
13120
13152
|
* Body
|
|
13121
13153
|
*/
|
|
13122
13154
|
body?: RefreshRequest | null;
|
|
13155
|
+
headers?: {
|
|
13156
|
+
/**
|
|
13157
|
+
* X-Csrf-Token
|
|
13158
|
+
*
|
|
13159
|
+
* 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.
|
|
13160
|
+
*/
|
|
13161
|
+
'X-CSRF-Token'?: string | null;
|
|
13162
|
+
};
|
|
13123
13163
|
path?: never;
|
|
13124
13164
|
query?: never;
|
|
13125
13165
|
url: '/auth/logout/';
|
|
@@ -13463,6 +13503,20 @@ export type RefreshAuthRefreshPostData = {
|
|
|
13463
13503
|
* Body
|
|
13464
13504
|
*/
|
|
13465
13505
|
body?: RefreshRequest | null;
|
|
13506
|
+
headers?: {
|
|
13507
|
+
/**
|
|
13508
|
+
* X-Geolens-Auth-Mode
|
|
13509
|
+
*
|
|
13510
|
+
* 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.
|
|
13511
|
+
*/
|
|
13512
|
+
'X-GeoLens-Auth-Mode'?: string | null;
|
|
13513
|
+
/**
|
|
13514
|
+
* X-Csrf-Token
|
|
13515
|
+
*
|
|
13516
|
+
* 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.
|
|
13517
|
+
*/
|
|
13518
|
+
'X-CSRF-Token'?: string | null;
|
|
13519
|
+
};
|
|
13466
13520
|
path?: never;
|
|
13467
13521
|
query?: never;
|
|
13468
13522
|
url: '/auth/refresh/';
|
|
@@ -14149,6 +14203,10 @@ export type ListCollectionsCollectionsGetErrors = {
|
|
|
14149
14203
|
* Bad request — invalid query parameters or payload
|
|
14150
14204
|
*/
|
|
14151
14205
|
400: ProblemDetail;
|
|
14206
|
+
/**
|
|
14207
|
+
* 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.
|
|
14208
|
+
*/
|
|
14209
|
+
401: ProblemDetail;
|
|
14152
14210
|
/**
|
|
14153
14211
|
* Not found
|
|
14154
14212
|
*/
|
|
@@ -14185,6 +14243,10 @@ export type GetCollectionMetadataCollectionsDatasetsGetErrors = {
|
|
|
14185
14243
|
* Bad request — invalid query parameters or payload
|
|
14186
14244
|
*/
|
|
14187
14245
|
400: ProblemDetail;
|
|
14246
|
+
/**
|
|
14247
|
+
* 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.
|
|
14248
|
+
*/
|
|
14249
|
+
401: ProblemDetail;
|
|
14188
14250
|
/**
|
|
14189
14251
|
* Not found
|
|
14190
14252
|
*/
|
|
@@ -14341,6 +14403,10 @@ export type CollectionItemsCollectionsDatasetsItemsGetErrors = {
|
|
|
14341
14403
|
* Bad request — invalid query parameters or payload
|
|
14342
14404
|
*/
|
|
14343
14405
|
400: ProblemDetail;
|
|
14406
|
+
/**
|
|
14407
|
+
* 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.
|
|
14408
|
+
*/
|
|
14409
|
+
401: ProblemDetail;
|
|
14344
14410
|
/**
|
|
14345
14411
|
* Not found
|
|
14346
14412
|
*/
|
|
@@ -14382,6 +14448,10 @@ export type GetCollectionItemCollectionsDatasetsItemsRecordIdGetErrors = {
|
|
|
14382
14448
|
* Bad request — invalid query parameters or payload
|
|
14383
14449
|
*/
|
|
14384
14450
|
400: ProblemDetail;
|
|
14451
|
+
/**
|
|
14452
|
+
* 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.
|
|
14453
|
+
*/
|
|
14454
|
+
401: ProblemDetail;
|
|
14385
14455
|
/**
|
|
14386
14456
|
* Not found
|
|
14387
14457
|
*/
|
|
@@ -14533,6 +14603,10 @@ export type GetDatasetCollectionCollectionsDatasetIdGetErrors = {
|
|
|
14533
14603
|
* Bad request — invalid query parameters or payload
|
|
14534
14604
|
*/
|
|
14535
14605
|
400: ProblemDetail;
|
|
14606
|
+
/**
|
|
14607
|
+
* 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.
|
|
14608
|
+
*/
|
|
14609
|
+
401: ProblemDetail;
|
|
14536
14610
|
/**
|
|
14537
14611
|
* Not found
|
|
14538
14612
|
*/
|
|
@@ -14615,6 +14689,10 @@ export type GetCollectionItemsCollectionsDatasetIdItemsGetErrors = {
|
|
|
14615
14689
|
* Bad request — invalid query parameters or payload
|
|
14616
14690
|
*/
|
|
14617
14691
|
400: ProblemDetail;
|
|
14692
|
+
/**
|
|
14693
|
+
* 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.
|
|
14694
|
+
*/
|
|
14695
|
+
401: ProblemDetail;
|
|
14618
14696
|
/**
|
|
14619
14697
|
* Not found
|
|
14620
14698
|
*/
|
|
@@ -14731,6 +14809,10 @@ export type GetCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGetErrors
|
|
|
14731
14809
|
* Bad request — invalid query parameters or payload
|
|
14732
14810
|
*/
|
|
14733
14811
|
400: ProblemDetail;
|
|
14812
|
+
/**
|
|
14813
|
+
* 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.
|
|
14814
|
+
*/
|
|
14815
|
+
401: ProblemDetail;
|
|
14734
14816
|
/**
|
|
14735
14817
|
* Not found
|
|
14736
14818
|
*/
|
|
@@ -15262,6 +15344,10 @@ export type GetDcatUs3CatalogDatasetsDcatUs30GetErrors = {
|
|
|
15262
15344
|
* Bad request — invalid query parameters or payload
|
|
15263
15345
|
*/
|
|
15264
15346
|
400: ProblemDetail;
|
|
15347
|
+
/**
|
|
15348
|
+
* 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.
|
|
15349
|
+
*/
|
|
15350
|
+
401: ProblemDetail;
|
|
15265
15351
|
/**
|
|
15266
15352
|
* Not found
|
|
15267
15353
|
*/
|
|
@@ -15297,6 +15383,10 @@ export type ValidateDcatUs3CatalogDatasetsDcatUs30ValidationGetErrors = {
|
|
|
15297
15383
|
* Bad request — invalid query parameters or payload
|
|
15298
15384
|
*/
|
|
15299
15385
|
400: ProblemDetail;
|
|
15386
|
+
/**
|
|
15387
|
+
* 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.
|
|
15388
|
+
*/
|
|
15389
|
+
401: ProblemDetail;
|
|
15300
15390
|
/**
|
|
15301
15391
|
* Not found
|
|
15302
15392
|
*/
|
|
@@ -15345,6 +15435,10 @@ export type GetDcatCatalogDatasetsDcatGetErrors = {
|
|
|
15345
15435
|
* Bad request — invalid query parameters or payload
|
|
15346
15436
|
*/
|
|
15347
15437
|
400: ProblemDetail;
|
|
15438
|
+
/**
|
|
15439
|
+
* 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.
|
|
15440
|
+
*/
|
|
15441
|
+
401: ProblemDetail;
|
|
15348
15442
|
/**
|
|
15349
15443
|
* Not found
|
|
15350
15444
|
*/
|
|
@@ -15380,6 +15474,10 @@ export type ValidateDcat3CatalogDatasetsDcatValidationGetErrors = {
|
|
|
15380
15474
|
* Bad request — invalid query parameters or payload
|
|
15381
15475
|
*/
|
|
15382
15476
|
400: ProblemDetail;
|
|
15477
|
+
/**
|
|
15478
|
+
* 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.
|
|
15479
|
+
*/
|
|
15480
|
+
401: ProblemDetail;
|
|
15383
15481
|
/**
|
|
15384
15482
|
* Not found
|
|
15385
15483
|
*/
|
|
@@ -15428,6 +15526,10 @@ export type GetGeodcatApCatalogDatasetsGeodcatApGetErrors = {
|
|
|
15428
15526
|
* Bad request — invalid query parameters or payload
|
|
15429
15527
|
*/
|
|
15430
15528
|
400: ProblemDetail;
|
|
15529
|
+
/**
|
|
15530
|
+
* 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.
|
|
15531
|
+
*/
|
|
15532
|
+
401: ProblemDetail;
|
|
15431
15533
|
/**
|
|
15432
15534
|
* Not found
|
|
15433
15535
|
*/
|
|
@@ -15463,6 +15565,10 @@ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetErrors = {
|
|
|
15463
15565
|
* Bad request — invalid query parameters or payload
|
|
15464
15566
|
*/
|
|
15465
15567
|
400: ProblemDetail;
|
|
15568
|
+
/**
|
|
15569
|
+
* 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.
|
|
15570
|
+
*/
|
|
15571
|
+
401: ProblemDetail;
|
|
15466
15572
|
/**
|
|
15467
15573
|
* Not found
|
|
15468
15574
|
*/
|
|
@@ -16217,6 +16323,10 @@ export type GetDcatUs3RecordDatasetsDatasetIdDcatUs30GetErrors = {
|
|
|
16217
16323
|
* Bad request — invalid query parameters or payload
|
|
16218
16324
|
*/
|
|
16219
16325
|
400: ProblemDetail;
|
|
16326
|
+
/**
|
|
16327
|
+
* 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.
|
|
16328
|
+
*/
|
|
16329
|
+
401: ProblemDetail;
|
|
16220
16330
|
/**
|
|
16221
16331
|
* Not found
|
|
16222
16332
|
*/
|
|
@@ -16257,6 +16367,10 @@ export type ValidateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGetErrors =
|
|
|
16257
16367
|
* Bad request — invalid query parameters or payload
|
|
16258
16368
|
*/
|
|
16259
16369
|
400: ProblemDetail;
|
|
16370
|
+
/**
|
|
16371
|
+
* 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.
|
|
16372
|
+
*/
|
|
16373
|
+
401: ProblemDetail;
|
|
16260
16374
|
/**
|
|
16261
16375
|
* Not found
|
|
16262
16376
|
*/
|
|
@@ -16297,6 +16411,10 @@ export type GetDcatRecordDatasetsDatasetIdDcatGetErrors = {
|
|
|
16297
16411
|
* Bad request — invalid query parameters or payload
|
|
16298
16412
|
*/
|
|
16299
16413
|
400: ProblemDetail;
|
|
16414
|
+
/**
|
|
16415
|
+
* 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.
|
|
16416
|
+
*/
|
|
16417
|
+
401: ProblemDetail;
|
|
16300
16418
|
/**
|
|
16301
16419
|
* Not found
|
|
16302
16420
|
*/
|
|
@@ -16337,6 +16455,10 @@ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetErrors = {
|
|
|
16337
16455
|
* Bad request — invalid query parameters or payload
|
|
16338
16456
|
*/
|
|
16339
16457
|
400: ProblemDetail;
|
|
16458
|
+
/**
|
|
16459
|
+
* 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.
|
|
16460
|
+
*/
|
|
16461
|
+
401: ProblemDetail;
|
|
16340
16462
|
/**
|
|
16341
16463
|
* Not found
|
|
16342
16464
|
*/
|
|
@@ -16377,6 +16499,10 @@ export type DownloadCogDatasetsDatasetIdDownloadCogGetErrors = {
|
|
|
16377
16499
|
* Bad request — invalid query parameters or payload
|
|
16378
16500
|
*/
|
|
16379
16501
|
400: ProblemDetail;
|
|
16502
|
+
/**
|
|
16503
|
+
* 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.
|
|
16504
|
+
*/
|
|
16505
|
+
401: ProblemDetail;
|
|
16380
16506
|
/**
|
|
16381
16507
|
* Forbidden — caller lacks access to this resource
|
|
16382
16508
|
*/
|
|
@@ -16448,6 +16574,10 @@ export type ExportDatasetEndpointDatasetsDatasetIdExportGetErrors = {
|
|
|
16448
16574
|
* Bad request — invalid query parameters or payload
|
|
16449
16575
|
*/
|
|
16450
16576
|
400: ProblemDetail;
|
|
16577
|
+
/**
|
|
16578
|
+
* 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.
|
|
16579
|
+
*/
|
|
16580
|
+
401: ProblemDetail;
|
|
16451
16581
|
/**
|
|
16452
16582
|
* Forbidden — caller lacks access to this resource
|
|
16453
16583
|
*/
|
|
@@ -17281,6 +17411,10 @@ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetErrors = {
|
|
|
17281
17411
|
* Bad request — invalid query parameters or payload
|
|
17282
17412
|
*/
|
|
17283
17413
|
400: ProblemDetail;
|
|
17414
|
+
/**
|
|
17415
|
+
* 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.
|
|
17416
|
+
*/
|
|
17417
|
+
401: ProblemDetail;
|
|
17284
17418
|
/**
|
|
17285
17419
|
* Not found
|
|
17286
17420
|
*/
|
|
@@ -17321,6 +17455,10 @@ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetErrors
|
|
|
17321
17455
|
* Bad request — invalid query parameters or payload
|
|
17322
17456
|
*/
|
|
17323
17457
|
400: ProblemDetail;
|
|
17458
|
+
/**
|
|
17459
|
+
* 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.
|
|
17460
|
+
*/
|
|
17461
|
+
401: ProblemDetail;
|
|
17324
17462
|
/**
|
|
17325
17463
|
* Not found
|
|
17326
17464
|
*/
|
|
@@ -23147,6 +23285,10 @@ export type SearchDatasetsEndpointSearchDatasetsGetErrors = {
|
|
|
23147
23285
|
* Bad request — invalid query parameters or payload
|
|
23148
23286
|
*/
|
|
23149
23287
|
400: ProblemDetail;
|
|
23288
|
+
/**
|
|
23289
|
+
* 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.
|
|
23290
|
+
*/
|
|
23291
|
+
401: ProblemDetail;
|
|
23150
23292
|
/**
|
|
23151
23293
|
* Validation Error
|
|
23152
23294
|
*/
|
|
@@ -23246,6 +23388,10 @@ export type SearchFacetsEndpointSearchFacetsGetData = {
|
|
|
23246
23388
|
url: '/search/facets/';
|
|
23247
23389
|
};
|
|
23248
23390
|
export type SearchFacetsEndpointSearchFacetsGetErrors = {
|
|
23391
|
+
/**
|
|
23392
|
+
* 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.
|
|
23393
|
+
*/
|
|
23394
|
+
401: ProblemDetail;
|
|
23249
23395
|
/**
|
|
23250
23396
|
* Validation Error
|
|
23251
23397
|
*/
|
|
@@ -24771,6 +24917,10 @@ export type LandingPageStacGetErrors = {
|
|
|
24771
24917
|
* Bad request — invalid standards parameters
|
|
24772
24918
|
*/
|
|
24773
24919
|
400: ProblemDetail;
|
|
24920
|
+
/**
|
|
24921
|
+
* 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.
|
|
24922
|
+
*/
|
|
24923
|
+
401: ProblemDetail;
|
|
24774
24924
|
/**
|
|
24775
24925
|
* Too many requests — retry after the advertised interval
|
|
24776
24926
|
*/
|
|
@@ -24803,6 +24953,10 @@ export type GetCollectionsStacCollectionsGetErrors = {
|
|
|
24803
24953
|
* Bad request — invalid standards parameters
|
|
24804
24954
|
*/
|
|
24805
24955
|
400: ProblemDetail;
|
|
24956
|
+
/**
|
|
24957
|
+
* 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.
|
|
24958
|
+
*/
|
|
24959
|
+
401: ProblemDetail;
|
|
24806
24960
|
/**
|
|
24807
24961
|
* Too many requests — retry after the advertised interval
|
|
24808
24962
|
*/
|
|
@@ -24840,6 +24994,10 @@ export type GetCollectionStacCollectionsCollectionIdGetErrors = {
|
|
|
24840
24994
|
* Bad request — invalid standards parameters
|
|
24841
24995
|
*/
|
|
24842
24996
|
400: ProblemDetail;
|
|
24997
|
+
/**
|
|
24998
|
+
* 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.
|
|
24999
|
+
*/
|
|
25000
|
+
401: ProblemDetail;
|
|
24843
25001
|
/**
|
|
24844
25002
|
* Not found
|
|
24845
25003
|
*/
|
|
@@ -24906,6 +25064,10 @@ export type GetCollectionItemsStacCollectionsCollectionIdItemsGetErrors = {
|
|
|
24906
25064
|
* Bad request — invalid query parameters or payload
|
|
24907
25065
|
*/
|
|
24908
25066
|
400: ProblemDetail;
|
|
25067
|
+
/**
|
|
25068
|
+
* 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.
|
|
25069
|
+
*/
|
|
25070
|
+
401: ProblemDetail;
|
|
24909
25071
|
/**
|
|
24910
25072
|
* Not found
|
|
24911
25073
|
*/
|
|
@@ -24951,6 +25113,10 @@ export type GetCollectionItemStacCollectionsCollectionIdItemsItemIdGetErrors = {
|
|
|
24951
25113
|
* Bad request — invalid standards parameters
|
|
24952
25114
|
*/
|
|
24953
25115
|
400: ProblemDetail;
|
|
25116
|
+
/**
|
|
25117
|
+
* 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.
|
|
25118
|
+
*/
|
|
25119
|
+
401: ProblemDetail;
|
|
24954
25120
|
/**
|
|
24955
25121
|
* Not found
|
|
24956
25122
|
*/
|
|
@@ -25020,6 +25186,10 @@ export type GetItemStacItemsItemIdGetErrors = {
|
|
|
25020
25186
|
* Bad request — invalid standards parameters
|
|
25021
25187
|
*/
|
|
25022
25188
|
400: ProblemDetail;
|
|
25189
|
+
/**
|
|
25190
|
+
* 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.
|
|
25191
|
+
*/
|
|
25192
|
+
401: ProblemDetail;
|
|
25023
25193
|
/**
|
|
25024
25194
|
* Not found
|
|
25025
25195
|
*/
|
|
@@ -25099,6 +25269,10 @@ export type SearchGetStacSearchGetErrors = {
|
|
|
25099
25269
|
* Bad request — invalid query parameters or payload
|
|
25100
25270
|
*/
|
|
25101
25271
|
400: ProblemDetail;
|
|
25272
|
+
/**
|
|
25273
|
+
* 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.
|
|
25274
|
+
*/
|
|
25275
|
+
401: ProblemDetail;
|
|
25102
25276
|
/**
|
|
25103
25277
|
* Not found
|
|
25104
25278
|
*/
|
|
@@ -25135,6 +25309,10 @@ export type SearchPostStacSearchPostErrors = {
|
|
|
25135
25309
|
* Bad request — invalid query parameters or payload
|
|
25136
25310
|
*/
|
|
25137
25311
|
400: ProblemDetail;
|
|
25312
|
+
/**
|
|
25313
|
+
* 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.
|
|
25314
|
+
*/
|
|
25315
|
+
401: ProblemDetail;
|
|
25138
25316
|
/**
|
|
25139
25317
|
* Not found
|
|
25140
25318
|
*/
|
|
@@ -25213,6 +25391,10 @@ export type ClusterTileEndpointTilesClustersTablePathZxyPbfGetErrors = {
|
|
|
25213
25391
|
* Bad request — invalid query parameters or payload
|
|
25214
25392
|
*/
|
|
25215
25393
|
400: ProblemDetail;
|
|
25394
|
+
/**
|
|
25395
|
+
* 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.
|
|
25396
|
+
*/
|
|
25397
|
+
401: ProblemDetail;
|
|
25216
25398
|
/**
|
|
25217
25399
|
* Not found
|
|
25218
25400
|
*/
|
|
@@ -25304,6 +25486,10 @@ export type RasterTileProxyTilesRasterProxyDatasetIdZxyFmtGetErrors = {
|
|
|
25304
25486
|
* Bad request — invalid query parameters or payload
|
|
25305
25487
|
*/
|
|
25306
25488
|
400: ProblemDetail;
|
|
25489
|
+
/**
|
|
25490
|
+
* 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.
|
|
25491
|
+
*/
|
|
25492
|
+
401: ProblemDetail;
|
|
25307
25493
|
/**
|
|
25308
25494
|
* Not found
|
|
25309
25495
|
*/
|
|
@@ -25344,6 +25530,10 @@ export type GetTileTokenTilesTokenDatasetIdGetErrors = {
|
|
|
25344
25530
|
* Bad request — invalid query parameters or payload
|
|
25345
25531
|
*/
|
|
25346
25532
|
400: ProblemDetail;
|
|
25533
|
+
/**
|
|
25534
|
+
* 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.
|
|
25535
|
+
*/
|
|
25536
|
+
401: ProblemDetail;
|
|
25347
25537
|
/**
|
|
25348
25538
|
* Not found
|
|
25349
25539
|
*/
|
|
@@ -25388,6 +25578,10 @@ export type GetTileTokensBatchTilesTokensPostErrors = {
|
|
|
25388
25578
|
* Bad request — invalid query parameters or payload
|
|
25389
25579
|
*/
|
|
25390
25580
|
400: ProblemDetail;
|
|
25581
|
+
/**
|
|
25582
|
+
* 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.
|
|
25583
|
+
*/
|
|
25584
|
+
401: ProblemDetail;
|
|
25391
25585
|
/**
|
|
25392
25586
|
* Not found
|
|
25393
25587
|
*/
|
|
@@ -25458,6 +25652,10 @@ export type TileEndpointTilesTablePathZxyPbfGetErrors = {
|
|
|
25458
25652
|
* Bad request — invalid query parameters or payload
|
|
25459
25653
|
*/
|
|
25460
25654
|
400: ProblemDetail;
|
|
25655
|
+
/**
|
|
25656
|
+
* 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.
|
|
25657
|
+
*/
|
|
25658
|
+
401: ProblemDetail;
|
|
25461
25659
|
/**
|
|
25462
25660
|
* Not found
|
|
25463
25661
|
*/
|