@geolens/sdk 1.13.1 → 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
- * Processed
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
- * Number of records skipped because an embedding already existed.
999
+ * Identifier of the queued backfill job; poll /jobs/{job_id}.
1006
1000
  */
1007
- skipped: number;
1001
+ job_id: string;
1008
1002
  /**
1009
- * Errors
1003
+ * Status
1010
1004
  *
1011
- * Number of records that failed during embedding generation.
1005
+ * Job status at enqueue time ('pending').
1012
1006
  */
1013
- errors: number;
1007
+ status: string;
1014
1008
  };
1015
1009
  /**
1016
1010
  * BasemapConfig
@@ -4140,15 +4134,21 @@ export type EmbeddingStatsResponse = {
4140
4134
  /**
4141
4135
  * Embedded Records
4142
4136
  *
4143
- * Number of records that have an embedding stored.
4137
+ * Number of records with an embedding for the ACTIVE embedding model — the only vectors semantic search can use.
4144
4138
  */
4145
4139
  embedded_records: number;
4146
4140
  /**
4147
4141
  * Missing Records
4148
4142
  *
4149
- * Number of records still missing embeddings.
4143
+ * Number of records without an active-model embedding (total_records - embedded_records).
4150
4144
  */
4151
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;
4152
4152
  /**
4153
4153
  * Coverage Percent
4154
4154
  *
@@ -4671,6 +4671,10 @@ export type JobStatusResponse = {
4671
4671
  * Rows Processed
4672
4672
  */
4673
4673
  rows_processed?: number | null;
4674
+ /**
4675
+ * Rows Failed
4676
+ */
4677
+ rows_failed?: number | null;
4674
4678
  /**
4675
4679
  * Archive Failed
4676
4680
  */
@@ -9899,7 +9903,7 @@ export type TileConfigResponse = {
9899
9903
  /**
9900
9904
  * Public App Url
9901
9905
  *
9902
- * Browser-facing app URL used for share links and OAuth redirects.
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.
9903
9907
  */
9904
9908
  public_app_url?: string | null;
9905
9909
  /**
@@ -11146,6 +11150,10 @@ export type TriggerBackfillAdminBackfillEmbeddingsPostErrors = {
11146
11150
  * Not found
11147
11151
  */
11148
11152
  404: ProblemDetail;
11153
+ /**
11154
+ * Conflict — resource state prevents the operation
11155
+ */
11156
+ 409: ProblemDetail;
11149
11157
  /**
11150
11158
  * Validation error
11151
11159
  */
@@ -11159,11 +11167,7 @@ export type TriggerBackfillAdminBackfillEmbeddingsPostErrors = {
11159
11167
  */
11160
11168
  500: ProblemDetail;
11161
11169
  /**
11162
- * Bad gatewayan upstream provider failed
11163
- */
11164
- 502: ProblemDetail;
11165
- /**
11166
- * Service unavailable — the database could not serve the request
11170
+ * Service unavailablethe background job queue could not be reached
11167
11171
  */
11168
11172
  503: ProblemDetail;
11169
11173
  };
@@ -13089,6 +13093,14 @@ export type CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses =
13089
13093
  export type CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponse = CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses[keyof CreateDownloadTokenEndpointAuthDownloadTokenDatasetIdPostResponses];
13090
13094
  export type LoginAuthLoginPostData = {
13091
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
+ };
13092
13104
  path?: never;
13093
13105
  query?: never;
13094
13106
  url: '/auth/login';
@@ -13140,6 +13152,14 @@ export type LogoutAuthLogoutPostData = {
13140
13152
  * Body
13141
13153
  */
13142
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
+ };
13143
13163
  path?: never;
13144
13164
  query?: never;
13145
13165
  url: '/auth/logout/';
@@ -13483,6 +13503,20 @@ export type RefreshAuthRefreshPostData = {
13483
13503
  * Body
13484
13504
  */
13485
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
+ };
13486
13520
  path?: never;
13487
13521
  query?: never;
13488
13522
  url: '/auth/refresh/';
@@ -14169,6 +14203,10 @@ export type ListCollectionsCollectionsGetErrors = {
14169
14203
  * Bad request — invalid query parameters or payload
14170
14204
  */
14171
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;
14172
14210
  /**
14173
14211
  * Not found
14174
14212
  */
@@ -14205,6 +14243,10 @@ export type GetCollectionMetadataCollectionsDatasetsGetErrors = {
14205
14243
  * Bad request — invalid query parameters or payload
14206
14244
  */
14207
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;
14208
14250
  /**
14209
14251
  * Not found
14210
14252
  */
@@ -14361,6 +14403,10 @@ export type CollectionItemsCollectionsDatasetsItemsGetErrors = {
14361
14403
  * Bad request — invalid query parameters or payload
14362
14404
  */
14363
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;
14364
14410
  /**
14365
14411
  * Not found
14366
14412
  */
@@ -14402,6 +14448,10 @@ export type GetCollectionItemCollectionsDatasetsItemsRecordIdGetErrors = {
14402
14448
  * Bad request — invalid query parameters or payload
14403
14449
  */
14404
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;
14405
14455
  /**
14406
14456
  * Not found
14407
14457
  */
@@ -14553,6 +14603,10 @@ export type GetDatasetCollectionCollectionsDatasetIdGetErrors = {
14553
14603
  * Bad request — invalid query parameters or payload
14554
14604
  */
14555
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;
14556
14610
  /**
14557
14611
  * Not found
14558
14612
  */
@@ -14635,6 +14689,10 @@ export type GetCollectionItemsCollectionsDatasetIdItemsGetErrors = {
14635
14689
  * Bad request — invalid query parameters or payload
14636
14690
  */
14637
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;
14638
14696
  /**
14639
14697
  * Not found
14640
14698
  */
@@ -14751,6 +14809,10 @@ export type GetCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGetErrors
14751
14809
  * Bad request — invalid query parameters or payload
14752
14810
  */
14753
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;
14754
14816
  /**
14755
14817
  * Not found
14756
14818
  */
@@ -15282,6 +15344,10 @@ export type GetDcatUs3CatalogDatasetsDcatUs30GetErrors = {
15282
15344
  * Bad request — invalid query parameters or payload
15283
15345
  */
15284
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;
15285
15351
  /**
15286
15352
  * Not found
15287
15353
  */
@@ -15317,6 +15383,10 @@ export type ValidateDcatUs3CatalogDatasetsDcatUs30ValidationGetErrors = {
15317
15383
  * Bad request — invalid query parameters or payload
15318
15384
  */
15319
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;
15320
15390
  /**
15321
15391
  * Not found
15322
15392
  */
@@ -15365,6 +15435,10 @@ export type GetDcatCatalogDatasetsDcatGetErrors = {
15365
15435
  * Bad request — invalid query parameters or payload
15366
15436
  */
15367
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;
15368
15442
  /**
15369
15443
  * Not found
15370
15444
  */
@@ -15400,6 +15474,10 @@ export type ValidateDcat3CatalogDatasetsDcatValidationGetErrors = {
15400
15474
  * Bad request — invalid query parameters or payload
15401
15475
  */
15402
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;
15403
15481
  /**
15404
15482
  * Not found
15405
15483
  */
@@ -15448,6 +15526,10 @@ export type GetGeodcatApCatalogDatasetsGeodcatApGetErrors = {
15448
15526
  * Bad request — invalid query parameters or payload
15449
15527
  */
15450
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;
15451
15533
  /**
15452
15534
  * Not found
15453
15535
  */
@@ -15483,6 +15565,10 @@ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetErrors = {
15483
15565
  * Bad request — invalid query parameters or payload
15484
15566
  */
15485
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;
15486
15572
  /**
15487
15573
  * Not found
15488
15574
  */
@@ -16237,6 +16323,10 @@ export type GetDcatUs3RecordDatasetsDatasetIdDcatUs30GetErrors = {
16237
16323
  * Bad request — invalid query parameters or payload
16238
16324
  */
16239
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;
16240
16330
  /**
16241
16331
  * Not found
16242
16332
  */
@@ -16277,6 +16367,10 @@ export type ValidateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGetErrors =
16277
16367
  * Bad request — invalid query parameters or payload
16278
16368
  */
16279
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;
16280
16374
  /**
16281
16375
  * Not found
16282
16376
  */
@@ -16317,6 +16411,10 @@ export type GetDcatRecordDatasetsDatasetIdDcatGetErrors = {
16317
16411
  * Bad request — invalid query parameters or payload
16318
16412
  */
16319
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;
16320
16418
  /**
16321
16419
  * Not found
16322
16420
  */
@@ -16357,6 +16455,10 @@ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetErrors = {
16357
16455
  * Bad request — invalid query parameters or payload
16358
16456
  */
16359
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;
16360
16462
  /**
16361
16463
  * Not found
16362
16464
  */
@@ -16397,6 +16499,10 @@ export type DownloadCogDatasetsDatasetIdDownloadCogGetErrors = {
16397
16499
  * Bad request — invalid query parameters or payload
16398
16500
  */
16399
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;
16400
16506
  /**
16401
16507
  * Forbidden — caller lacks access to this resource
16402
16508
  */
@@ -16468,6 +16574,10 @@ export type ExportDatasetEndpointDatasetsDatasetIdExportGetErrors = {
16468
16574
  * Bad request — invalid query parameters or payload
16469
16575
  */
16470
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;
16471
16581
  /**
16472
16582
  * Forbidden — caller lacks access to this resource
16473
16583
  */
@@ -17301,6 +17411,10 @@ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetErrors = {
17301
17411
  * Bad request — invalid query parameters or payload
17302
17412
  */
17303
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;
17304
17418
  /**
17305
17419
  * Not found
17306
17420
  */
@@ -17341,6 +17455,10 @@ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetErrors
17341
17455
  * Bad request — invalid query parameters or payload
17342
17456
  */
17343
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;
17344
17462
  /**
17345
17463
  * Not found
17346
17464
  */
@@ -23167,6 +23285,10 @@ export type SearchDatasetsEndpointSearchDatasetsGetErrors = {
23167
23285
  * Bad request — invalid query parameters or payload
23168
23286
  */
23169
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;
23170
23292
  /**
23171
23293
  * Validation Error
23172
23294
  */
@@ -23266,6 +23388,10 @@ export type SearchFacetsEndpointSearchFacetsGetData = {
23266
23388
  url: '/search/facets/';
23267
23389
  };
23268
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;
23269
23395
  /**
23270
23396
  * Validation Error
23271
23397
  */
@@ -24791,6 +24917,10 @@ export type LandingPageStacGetErrors = {
24791
24917
  * Bad request — invalid standards parameters
24792
24918
  */
24793
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;
24794
24924
  /**
24795
24925
  * Too many requests — retry after the advertised interval
24796
24926
  */
@@ -24823,6 +24953,10 @@ export type GetCollectionsStacCollectionsGetErrors = {
24823
24953
  * Bad request — invalid standards parameters
24824
24954
  */
24825
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;
24826
24960
  /**
24827
24961
  * Too many requests — retry after the advertised interval
24828
24962
  */
@@ -24860,6 +24994,10 @@ export type GetCollectionStacCollectionsCollectionIdGetErrors = {
24860
24994
  * Bad request — invalid standards parameters
24861
24995
  */
24862
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;
24863
25001
  /**
24864
25002
  * Not found
24865
25003
  */
@@ -24926,6 +25064,10 @@ export type GetCollectionItemsStacCollectionsCollectionIdItemsGetErrors = {
24926
25064
  * Bad request — invalid query parameters or payload
24927
25065
  */
24928
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;
24929
25071
  /**
24930
25072
  * Not found
24931
25073
  */
@@ -24971,6 +25113,10 @@ export type GetCollectionItemStacCollectionsCollectionIdItemsItemIdGetErrors = {
24971
25113
  * Bad request — invalid standards parameters
24972
25114
  */
24973
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;
24974
25120
  /**
24975
25121
  * Not found
24976
25122
  */
@@ -25040,6 +25186,10 @@ export type GetItemStacItemsItemIdGetErrors = {
25040
25186
  * Bad request — invalid standards parameters
25041
25187
  */
25042
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;
25043
25193
  /**
25044
25194
  * Not found
25045
25195
  */
@@ -25119,6 +25269,10 @@ export type SearchGetStacSearchGetErrors = {
25119
25269
  * Bad request — invalid query parameters or payload
25120
25270
  */
25121
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;
25122
25276
  /**
25123
25277
  * Not found
25124
25278
  */
@@ -25155,6 +25309,10 @@ export type SearchPostStacSearchPostErrors = {
25155
25309
  * Bad request — invalid query parameters or payload
25156
25310
  */
25157
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;
25158
25316
  /**
25159
25317
  * Not found
25160
25318
  */
@@ -25233,6 +25391,10 @@ export type ClusterTileEndpointTilesClustersTablePathZxyPbfGetErrors = {
25233
25391
  * Bad request — invalid query parameters or payload
25234
25392
  */
25235
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;
25236
25398
  /**
25237
25399
  * Not found
25238
25400
  */
@@ -25324,6 +25486,10 @@ export type RasterTileProxyTilesRasterProxyDatasetIdZxyFmtGetErrors = {
25324
25486
  * Bad request — invalid query parameters or payload
25325
25487
  */
25326
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;
25327
25493
  /**
25328
25494
  * Not found
25329
25495
  */
@@ -25364,6 +25530,10 @@ export type GetTileTokenTilesTokenDatasetIdGetErrors = {
25364
25530
  * Bad request — invalid query parameters or payload
25365
25531
  */
25366
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;
25367
25537
  /**
25368
25538
  * Not found
25369
25539
  */
@@ -25408,6 +25578,10 @@ export type GetTileTokensBatchTilesTokensPostErrors = {
25408
25578
  * Bad request — invalid query parameters or payload
25409
25579
  */
25410
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;
25411
25585
  /**
25412
25586
  * Not found
25413
25587
  */
@@ -25478,6 +25652,10 @@ export type TileEndpointTilesTablePathZxyPbfGetErrors = {
25478
25652
  * Bad request — invalid query parameters or payload
25479
25653
  */
25480
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;
25481
25659
  /**
25482
25660
  * Not found
25483
25661
  */