@geolens/sdk 1.18.1 → 1.19.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.
@@ -4,7 +4,7 @@ export type ClientOptions = {
4
4
  /**
5
5
  * AIAvailabilityResponse
6
6
  *
7
- * Public-safe AI readiness signal (builder-audit #338 P1-11).
7
+ * Public-safe AI readiness signal (#338).
8
8
  *
9
9
  * Carries a single boolean and intentionally exposes NO provider name, model,
10
10
  * or key detail — it is readable by any non-admin editor holding
@@ -1051,6 +1051,28 @@ export type AuditLogResponse = {
1051
1051
  */
1052
1052
  created_at: string;
1053
1053
  };
1054
+ /**
1055
+ * BackfillEstimate
1056
+ *
1057
+ * How long each backfill action should take, before starting one.
1058
+ *
1059
+ * Both figures come from the throughput of the most recent completed run, so
1060
+ * they describe this deployment's own provider rather than a generic rate.
1061
+ */
1062
+ export type BackfillEstimate = {
1063
+ /**
1064
+ * Missing Seconds
1065
+ *
1066
+ * Estimated seconds to embed the records that lack a usable vector.
1067
+ */
1068
+ missing_seconds: number;
1069
+ /**
1070
+ * All Seconds
1071
+ *
1072
+ * Estimated seconds to regenerate every record in the catalog.
1073
+ */
1074
+ all_seconds: number;
1075
+ };
1054
1076
  /**
1055
1077
  * BackfillResponse
1056
1078
  *
@@ -1074,6 +1096,98 @@ export type BackfillResponse = {
1074
1096
  */
1075
1097
  status: string;
1076
1098
  };
1099
+ /**
1100
+ * BackfillRunProgress
1101
+ *
1102
+ * The embedding backfill run currently holding the single run slot.
1103
+ */
1104
+ export type BackfillRunProgress = {
1105
+ /**
1106
+ * Job Id
1107
+ *
1108
+ * Identifier of the run in flight.
1109
+ */
1110
+ job_id: string;
1111
+ /**
1112
+ * Status
1113
+ *
1114
+ * Job status: 'pending' or 'running'.
1115
+ */
1116
+ status: string;
1117
+ /**
1118
+ * Records Processed
1119
+ *
1120
+ * Records the run has embedded so far.
1121
+ */
1122
+ records_processed: number;
1123
+ /**
1124
+ * Records Total
1125
+ *
1126
+ * Records the run will embed in total. Null until the run has selected its records.
1127
+ */
1128
+ records_total?: number | null;
1129
+ /**
1130
+ * Started At
1131
+ *
1132
+ * When a worker picked the run up.
1133
+ */
1134
+ started_at?: string | null;
1135
+ /**
1136
+ * Heartbeat At
1137
+ *
1138
+ * Last time the running worker renewed its lease.
1139
+ */
1140
+ heartbeat_at?: string | null;
1141
+ };
1142
+ /**
1143
+ * BackfillRunSummary
1144
+ *
1145
+ * One finished embedding backfill run.
1146
+ */
1147
+ export type BackfillRunSummary = {
1148
+ /**
1149
+ * Job Id
1150
+ *
1151
+ * Identifier of the finished run.
1152
+ */
1153
+ job_id: string;
1154
+ /**
1155
+ * Status
1156
+ *
1157
+ * How the run ended: 'complete', 'failed' or 'cancelled'.
1158
+ */
1159
+ status: string;
1160
+ /**
1161
+ * Started At
1162
+ *
1163
+ * When a worker picked the run up.
1164
+ */
1165
+ started_at?: string | null;
1166
+ /**
1167
+ * Finished At
1168
+ *
1169
+ * When the run reached its final status.
1170
+ */
1171
+ finished_at?: string | null;
1172
+ /**
1173
+ * Records Processed
1174
+ *
1175
+ * Records the run embedded.
1176
+ */
1177
+ records_processed: number;
1178
+ /**
1179
+ * Records Failed
1180
+ *
1181
+ * Records the run could not embed, when the run recorded a count. A finished run with a non-zero figure here left coverage gaps.
1182
+ */
1183
+ records_failed?: number | null;
1184
+ /**
1185
+ * Error Code
1186
+ *
1187
+ * Short code identifying how a run failed, when it failed.
1188
+ */
1189
+ error_code?: string | null;
1190
+ };
1077
1191
  /**
1078
1192
  * BasemapConfig
1079
1193
  */
@@ -1119,13 +1233,13 @@ export type BasemapConfig = {
1119
1233
  /**
1120
1234
  * Sublayer Overrides
1121
1235
  *
1122
- * Per-sublayer style overrides keyed by semantic sublayer ID (e.g. 'road', 'boundary', 'building'). Key set is opaque unknown future sublayer IDs are accepted without rejection. See CONTEXT.md D-01.
1236
+ * Per-sublayer style overrides keyed by semantic sublayer ID (e.g. 'road', 'boundary', 'building'). The key set is opaque: a sublayer ID this release does not know is accepted and stored rather than rejected.
1123
1237
  */
1124
1238
  sublayer_overrides?: {
1125
1239
  [key: string]: SublayerOverride;
1126
1240
  } | null;
1127
1241
  /**
1128
- * Whether the basemap renders above ('top') or below ('bottom', default) the data layers. null/undefined loads as 'bottom' on the client. Phase 1051 UX-03 (jsonb-additive, no migration).
1242
+ * Whether the basemap renders above ('top') or below ('bottom', default) the data layers. null/undefined loads as 'bottom' on the client.
1129
1243
  */
1130
1244
  basemap_position?: BasemapPosition | null;
1131
1245
  /**
@@ -1379,6 +1493,10 @@ export type BulkDeleteResultItem = {
1379
1493
  * Detail
1380
1494
  */
1381
1495
  detail?: string | null;
1496
+ /**
1497
+ * Code
1498
+ */
1499
+ code?: string | null;
1382
1500
  };
1383
1501
  /**
1384
1502
  * BulkRegisterItem
@@ -2175,7 +2293,7 @@ export type CommitRequest = {
2175
2293
  /**
2176
2294
  * Token
2177
2295
  *
2178
- * Optional confirmation token returned by the preview step. Required for some workflows.
2296
+ * Optional auth token for a protected remote service, read only when the job imports a service layer (WFS, OGC API Features, or ArcGIS). At most 1000 characters. Never persisted to the database. Ignored on file-upload jobs. Deprecated: use the auth object with method bearer.
2179
2297
  */
2180
2298
  token?: string | null;
2181
2299
  /**
@@ -2236,6 +2354,12 @@ export type CommitRequest = {
2236
2354
  * Structured credential for a protected service. Mutually exclusive with the token field.
2237
2355
  */
2238
2356
  auth?: ServiceAuthRequest | null;
2357
+ /**
2358
+ * Strict Cog
2359
+ *
2360
+ * Raster only: reject a non-COG TIFF instead of converting it. False (the default) converts the source to a COG during ingest. True fails the job when the source is not already a compliant COG, and cannot be combined with resampling, nodata_override, srid_override or a compression other than the default DEFLATE: each of those is applied by a conversion, so the commit is refused with a 422 naming the fields that clash.
2361
+ */
2362
+ strict_cog?: boolean;
2239
2363
  };
2240
2364
  /**
2241
2365
  * CommitResponse
@@ -3114,7 +3238,7 @@ export type DatasetRelationshipCreate = {
3114
3238
  /**
3115
3239
  * DatasetRelationshipListResponse
3116
3240
  *
3117
- * Paginated list envelope for dataset FK relationships (GAP-033).
3241
+ * Paginated list envelope for dataset FK relationships.
3118
3242
  *
3119
3243
  * Mirrors the ``{<entity>: [...], total: int}`` convention used by every other
3120
3244
  * paginated list endpoint (e.g. AttributeMetadataListResponse,
@@ -4237,6 +4361,20 @@ export type EmbeddingStatsResponse = {
4237
4361
  * Embedding coverage as a percentage (0-100).
4238
4362
  */
4239
4363
  coverage_percent: number;
4364
+ /**
4365
+ * The backfill run in flight, or null when none is running.
4366
+ */
4367
+ current_run?: BackfillRunProgress | null;
4368
+ /**
4369
+ * Recent Runs
4370
+ *
4371
+ * The most recent finished backfill runs, newest first.
4372
+ */
4373
+ recent_runs?: Array<BackfillRunSummary>;
4374
+ /**
4375
+ * Expected duration of each backfill action, or null until one run has completed and measured this deployment's throughput.
4376
+ */
4377
+ estimate?: BackfillEstimate | null;
4240
4378
  };
4241
4379
  /**
4242
4380
  * EnterpriseTabsResponse
@@ -4771,7 +4909,7 @@ export type JobStatusResponse = {
4771
4909
  /**
4772
4910
  * Current Step
4773
4911
  */
4774
- current_step?: 'queued' | 'validating' | 'ogr2ogr' | 'finalize' | 'complete' | 'cog_convert' | 'quicklook' | 'analyzing' | 'registering' | null;
4912
+ current_step?: 'queued' | 'downloading' | 'validating' | 'ogr2ogr' | 'finalize' | 'complete' | 'cog_convert' | 'quicklook' | 'analyzing' | 'registering' | null;
4775
4913
  /**
4776
4914
  * Rows Processed
4777
4915
  */
@@ -4978,7 +5116,7 @@ export type LayerInfo = {
4978
5116
  /**
4979
5117
  * Kind
4980
5118
  *
4981
- * Backend-classified layer kind. 'vector' = point/line/polygon feature data. 'raster' = imagery/coverage. Per Phase 1057 CLASS-07 D-09. Classification rule: raster IFF geometry_type contains 'raster', adapter is STAC, or layer has coverage_format/bands/mediaType:image*. Everything else (including geometry_type=None after D-05 ogrinfo drop) defaults to 'vector'.
5119
+ * Backend-classified layer kind. 'vector' = point/line/polygon feature data. 'raster' = imagery/coverage. Classified as 'raster' when geometry_type contains 'raster', the adapter is STAC, the layer declares coverage_format or bands, or one of its links has a media type of image*. Everything else, including a layer with no geometry_type at all, defaults to 'vector'.
4982
5120
  */
4983
5121
  kind?: 'vector' | 'raster';
4984
5122
  };
@@ -5756,6 +5894,10 @@ export type MapLayerResponse = {
5756
5894
  * Tile Version
5757
5895
  */
5758
5896
  tile_version?: number | null;
5897
+ /**
5898
+ * Publication Version
5899
+ */
5900
+ publication_version?: number | null;
5759
5901
  /**
5760
5902
  * Dataset Visibility
5761
5903
  */
@@ -5902,7 +6044,7 @@ export type MapSpriteEntry = {
5902
6044
  /**
5903
6045
  * MapStyleImportRequest
5904
6046
  *
5905
- * Typed request body for POST /maps/import — API-01 / M-05.
6047
+ * Typed request body for POST /maps/import.
5906
6048
  *
5907
6049
  * Mirrors the top-level keys of the MapLibre Style Specification that
5908
6050
  * ``parse_maplibre_style_import`` actually reads. ``extra="allow"`` keeps
@@ -6173,7 +6315,7 @@ export type MapUpdate = {
6173
6315
  /**
6174
6316
  * Legend Title
6175
6317
  *
6176
- * Custom map-level legend title. Null/empty leaves the legend without a heading override (ENH-06).
6318
+ * Custom map-level legend title. Null or empty leaves the legend without a heading override. At most 120 characters.
6177
6319
  */
6178
6320
  legend_title?: string | null;
6179
6321
  };
@@ -6235,7 +6377,7 @@ export type MetadataAssistRequest = {
6235
6377
  /**
6236
6378
  * NotificationStatusResponse
6237
6379
  *
6238
- * Response for GET /settings/notifications/status/ (NOTIF-05 / NOTIF-06).
6380
+ * Response for GET /settings/notifications/status/.
6239
6381
  *
6240
6382
  * Returns only boolean presence flags — never a secret value (SMTP password,
6241
6383
  * webhook URL, or webhook secret).
@@ -6266,8 +6408,7 @@ export type NotificationStatusResponse = {
6266
6408
  * Per-channel result from POST /settings/notifications/test/.
6267
6409
  *
6268
6410
  * The ``error`` field contains only the exception type name and a short
6269
- * safe message — never the SMTP password, webhook URL, or webhook secret
6270
- * (T-1229-09 / NOTIF-05).
6411
+ * safe message — never the SMTP password, webhook URL, or webhook secret.
6271
6412
  */
6272
6413
  export type NotificationTestChannelResult = {
6273
6414
  /**
@@ -6292,11 +6433,11 @@ export type NotificationTestChannelResult = {
6292
6433
  /**
6293
6434
  * NotificationTestResponse
6294
6435
  *
6295
- * Response for POST /settings/notifications/test/ (NOTIF-06).
6436
+ * Response for POST /settings/notifications/test/.
6296
6437
  *
6297
6438
  * Always returns HTTP 200 — a channel delivery failure is captured in the
6298
6439
  * per-channel ``channels`` list rather than as a 5xx. Never contains secret
6299
- * values (T-1229-09 / NOTIF-05).
6440
+ * values.
6300
6441
  */
6301
6442
  export type NotificationTestResponse = {
6302
6443
  /**
@@ -6472,10 +6613,10 @@ export type OAuthProviderPublic = {
6472
6613
  * The 3 non-secret SAML fields (``idp_entity_id``, ``idp_sso_url``,
6473
6614
  * ``sp_entity_id``) ARE exposed so the admin UI can display them.
6474
6615
  *
6475
- * Pitfall 11 interaction: those 3 fields are declared with ``deferred=True``
6476
- * on the OAuth ORM model so community DBs (which lack the columns) do not
6477
- * crash on SELECT. Pydantic's ``from_attributes=True`` would normally trigger
6478
- * an implicit deferred load on attribute access, which fails under FastAPI's
6616
+ * Those 3 fields are declared with ``deferred=True`` on the OAuth ORM
6617
+ * model so community DBs (which lack the columns) do not crash on
6618
+ * SELECT. Pydantic's ``from_attributes=True`` would normally trigger an
6619
+ * implicit deferred load on attribute access, which fails under FastAPI's
6479
6620
  * async context with ``MissingGreenlet``. The ``model_validator(mode="before")``
6480
6621
  * below reads the SAML fields directly from ``obj.__dict__`` so unloaded
6481
6622
  * attributes default to None instead of triggering IO. SAML admin endpoints
@@ -7247,7 +7388,7 @@ export type OgcRecordResponse = {
7247
7388
  /**
7248
7389
  * OgImageUploadRequest
7249
7390
  *
7250
- * JSON body for PUT /maps/{map_id}/og-image/ (SHARE-08 Path A).
7391
+ * JSON body for PUT /maps/{map_id}/og-image/.
7251
7392
  *
7252
7393
  * Accepts a base64 data URI up to 750 KB (as a string). This generous
7253
7394
  * ceiling accommodates a 1200x630 JPEG at quality 0.85, which encodes
@@ -7257,7 +7398,7 @@ export type OgcRecordResponse = {
7257
7398
  * empty/clearly-malformed URIs without false-positives.
7258
7399
  * - ``max_length=750_000``: ~562 KB decoded — generous for 1200x630 JPEG.
7259
7400
  * DO NOT raise ThumbnailUploadRequest.max_length to match this value;
7260
- * the 100KB thumbnail cap is a locked contract (Phase 254 / D-03).
7401
+ * the 100KB thumbnail cap is a locked contract.
7261
7402
  */
7262
7403
  export type OgImageUploadRequest = {
7263
7404
  /**
@@ -9301,6 +9442,16 @@ export type StacConnectRequest = {
9301
9442
  * STAC API root URL to connect to.
9302
9443
  */
9303
9444
  url: string;
9445
+ /**
9446
+ * Token
9447
+ *
9448
+ * Optional auth token for a protected STAC catalog. Deprecated: use the auth object with method bearer.
9449
+ */
9450
+ token?: string | null;
9451
+ /**
9452
+ * Structured credential for a protected service. Mutually exclusive with the token field.
9453
+ */
9454
+ auth?: ServiceAuthRequest | null;
9304
9455
  };
9305
9456
  /**
9306
9457
  * StacConnectResponse
@@ -9456,6 +9607,12 @@ export type StacImportRequest = {
9456
9607
  * Visibility for imported datasets.
9457
9608
  */
9458
9609
  visibility?: 'private' | 'restricted' | 'internal' | 'public';
9610
+ /**
9611
+ * Catalog Auth Required
9612
+ *
9613
+ * Whether browsing this catalog needed a credential. Set it when the search that produced these items carried one, so the first refresh asks for a credential instead of failing anonymously.
9614
+ */
9615
+ catalog_auth_required?: boolean;
9459
9616
  };
9460
9617
  /**
9461
9618
  * StacImportResponse
@@ -9909,6 +10066,16 @@ export type StacSearchRequest = {
9909
10066
  * Maximum items to return.
9910
10067
  */
9911
10068
  limit?: number;
10069
+ /**
10070
+ * Token
10071
+ *
10072
+ * Optional auth token for a protected STAC catalog. Deprecated: use the auth object with method bearer.
10073
+ */
10074
+ token?: string | null;
10075
+ /**
10076
+ * Structured credential for a protected service. Mutually exclusive with the token field.
10077
+ */
10078
+ auth?: ServiceAuthRequest | null;
9912
10079
  };
9913
10080
  /**
9914
10081
  * StacSearchResponse
@@ -10025,12 +10192,12 @@ export type StatusUpdateResponse = {
10025
10192
  * validation time (Pydantic ``ge``/``le`` constraints).
10026
10193
  *
10027
10194
  * The key set of ``BasemapConfig.sublayer_overrides`` is treated as opaque
10028
- * (forward-compatible with future sublayer IDs) — see CONTEXT.md D-01.
10195
+ * (forward-compatible with future sublayer IDs).
10029
10196
  *
10030
10197
  * Security:
10031
- * extra="forbid" locks the D-14 scope guardrail: unknown style axes such
10032
- * as dash patterns, line caps, halo blur, and text-font are rejected at
10033
- * validation time (T-1059A-03).
10198
+ * extra="forbid" locks the scope guardrail: unknown style axes such as
10199
+ * dash patterns, line caps, halo blur, and text-font are rejected at
10200
+ * validation time.
10034
10201
  */
10035
10202
  export type SublayerOverride = {
10036
10203
  /**
@@ -10072,7 +10239,7 @@ export type SublayerOverride = {
10072
10239
  /**
10073
10240
  * Opacity
10074
10241
  *
10075
- * Per-sublayer opacity (0-1), or null to use the basemap default. Composes on top of BasemapConfig.opacity (the whole-basemap master opacity): the rendered opacity is override.opacity * master_opacity (builder-audit #338 CORR-01). The UI opacity slider in BasemapSublayerEditorScene persists through this field: MapBuilderPage.handleSublayerOpacityChange -> setBasemapSublayerOpacity -> updateBasemapSublayerOverride writes config.sublayer_overrides[key].opacity.
10242
+ * Per-sublayer opacity (0-1), or null to use the basemap default. Composes on top of BasemapConfig.opacity (the whole-basemap master opacity): the rendered opacity is override.opacity * master_opacity (#338). The UI opacity slider in BasemapSublayerEditorScene persists through this field: MapBuilderPage.handleSublayerOpacityChange -> setBasemapSublayerOpacity -> updateBasemapSublayerOverride writes config.sublayer_overrides[key].opacity.
10076
10243
  */
10077
10244
  opacity?: number | null;
10078
10245
  };
@@ -10135,9 +10302,9 @@ export type TerrainConfig = {
10135
10302
  * JSON body for PUT /maps/{map_id}/thumbnail/.
10136
10303
  *
10137
10304
  * Replaces a previous text/plain body shape that openapi-python-client
10138
- * could not parse (would silently skip endpoint). See Phase 254 / SDK-01.
10305
+ * could not parse (would silently skip endpoint).
10139
10306
  *
10140
- * Phase 254 IN-02: ``data_uri`` carries explicit length bounds so
10307
+ * ``data_uri`` carries explicit length bounds so
10141
10308
  * Pydantic surfaces a 422 with field-level detail (better SDK-consumer
10142
10309
  * UX than a generic 400) and the OpenAPI schema documents the limit.
10143
10310
  * The router still validates the ``data:image/`` prefix and base64
@@ -10365,7 +10532,7 @@ export type UploadResponse = {
10365
10532
  /**
10366
10533
  * Status
10367
10534
  *
10368
- * Initial job status. Always 'pending' on creation.
10535
+ * Initial job status. 'pending' means the file is staged and ready to preview; 'running' means the server is still fetching it, as it is for a URL import.
10369
10536
  */
10370
10537
  status?: string;
10371
10538
  /**
@@ -14981,7 +15148,7 @@ export type GetCollectionItemsCollectionsDatasetIdItemsGetData = {
14981
15148
  /**
14982
15149
  * After Gid
14983
15150
  *
14984
- * Keyset cursor: returns features with gid > after_gid. Phase 269 H-24 primary pagination path; use the rel=next link for follow-up pages.
15151
+ * Keyset cursor: returns features with gid > after_gid. The preferred pagination path; use the rel=next link for follow-up pages.
14985
15152
  */
14986
15153
  after_gid?: number | null;
14987
15154
  /**
@@ -15029,7 +15196,7 @@ export type GetCollectionItemsCollectionsDatasetIdItemsGetData = {
15029
15196
  };
15030
15197
  export type GetCollectionItemsCollectionsDatasetIdItemsGetErrors = {
15031
15198
  /**
15032
- * Bad request invalid query parameters or payload
15199
+ * Bad request. Either a query parameter is invalid, or the `filter` was refused. A CQL2 filter is refused when it names a queryable this collection does not publish, or uses an operator this server does not implement; when it is longer than 10,000 characters; when it nests deeper than the parser will walk; or when it expands to more than 1,000 bound parameters. The last two are resource bounds rather than syntax errors, so the filter can be valid CQL2 and still be declined: an `IN` list reaches the parameter ceiling well before the character limit, since `render_postcompile` expands it to one parameter per member. Both are answered deterministically, so a client that splits the filter and pages the results gets the same rows.
15033
15200
  */
15034
15201
  400: ProblemDetail;
15035
15202
  /**
@@ -17112,7 +17279,7 @@ export type ListFeaturesDatasetsDatasetIdFeaturesGetData = {
17112
17279
  /**
17113
17280
  * Offset
17114
17281
  *
17115
- * Legacy offset-based pagination. Phase 269 H-24 lowered the max limit to 200 from 1000.
17282
+ * Legacy offset-based pagination. The companion limit is capped at 200 per page, and a high offset is costly to serve.
17116
17283
  */
17117
17284
  offset?: number;
17118
17285
  /**
@@ -18301,7 +18468,7 @@ export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetData = {
18301
18468
  /**
18302
18469
  * Limit
18303
18470
  *
18304
- * Maximum number of relationships to return (PERF-N16).
18471
+ * Maximum number of relationships to return. Capped at 1000.
18305
18472
  */
18306
18473
  limit?: number;
18307
18474
  };
@@ -19554,7 +19721,7 @@ export type DiscoverTablesIngestDiscoverGetData = {
19554
19721
  /**
19555
19722
  * Limit
19556
19723
  *
19557
- * Maximum number of tables to return (PERF-11 bound).
19724
+ * Maximum number of tables to return. Capped at 5000.
19558
19725
  */
19559
19726
  limit?: number;
19560
19727
  };
@@ -25700,7 +25867,7 @@ export type GetCollectionItemsStacCollectionsCollectionIdItemsGetData = {
25700
25867
  /**
25701
25868
  * Offset
25702
25869
  *
25703
- * Legacy offset-based pagination. Phase 269 H-24 lowered the max limit to 200 and recommends keyset cursors via the rel=next link for deep paging.
25870
+ * Legacy offset-based pagination. The page size is capped at 200; the rel=next link advances one page at a time, and a high offset is costly to serve.
25704
25871
  */
25705
25872
  offset?: number;
25706
25873
  };
@@ -25893,7 +26060,7 @@ export type SearchGetStacSearchGetData = {
25893
26060
  /**
25894
26061
  * Intersects
25895
26062
  *
25896
- * GeoJSON geometry for spatial intersection. SEC-FU-05 (sec-audit-20260519.md): max_length=10000 caps a multi-megabyte GeoJSON DoS-amplifier fits ~150-vertex polygons at 2-decimal-place lat/lon coordinates.
26063
+ * GeoJSON geometry for spatial intersection. At most 10000 characters, which fits a polygon of several hundred vertices at 2-decimal-place lat/lon coordinates.
25897
26064
  */
25898
26065
  intersects?: string | null;
25899
26066
  /**
@@ -25905,7 +26072,7 @@ export type SearchGetStacSearchGetData = {
25905
26072
  /**
25906
26073
  * Offset
25907
26074
  *
25908
- * Legacy offset-based pagination. Phase 269 H-24 lowered the max limit to 200 from 1000 to bound deep-paging cost.
26075
+ * Legacy offset-based pagination. The page size is capped at 200; a high offset is costly to serve.
25909
26076
  */
25910
26077
  offset?: number;
25911
26078
  };