@geolens/sdk 1.4.1 → 1.4.4

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.
@@ -912,7 +912,7 @@ export type BrandingResponse = {
912
912
  /**
913
913
  * Show Badge
914
914
  *
915
- * Whether to show the 'Powered by GeoLens' label in public and shared footers. Badge-removal writes are enterprise controls (enterprise only).
915
+ * Whether to show the 'Powered by GeoLens' label in public and shared footers. Badge-removal writes are restricted controls.
916
916
  */
917
917
  show_badge: boolean;
918
918
  };
@@ -1921,7 +1921,7 @@ export type ConfigResponse = {
1921
1921
  /**
1922
1922
  * Auth Methods
1923
1923
  *
1924
- * Auth methods contributed by the active AuthExtension. Empty in community; e.g. ['saml'] when the enterprise SAML overlay is installed. Login UI can render conditional sign-in options without needing admin OAuthProvider access.
1924
+ * Auth methods contributed by the active AuthExtension. Empty by default; compatible deployments may add methods such as ['saml']. Login UI can render conditional sign-in options without needing admin OAuthProvider access.
1925
1925
  */
1926
1926
  auth_methods?: Array<string>;
1927
1927
  /**
@@ -2495,6 +2495,12 @@ export type DatasetResponse = {
2495
2495
  * OGC geometry type, e.g. MultiPolygon
2496
2496
  */
2497
2497
  geometry_type?: string | null;
2498
+ /**
2499
+ * Has Generic Geometry
2500
+ *
2501
+ * True when the underlying column is generic GEOMETRY (created sketch datasets): the dataset accepts ANY geometry subtype on write regardless of the display geometry_type above. Computed on the detail endpoint only (fix #430 codex r18); list endpoints always report false.
2502
+ */
2503
+ has_generic_geometry?: boolean;
2498
2504
  /**
2499
2505
  * Id
2500
2506
  */
@@ -3154,31 +3160,6 @@ export type DuplicateMapResponse = {
3154
3160
  */
3155
3161
  zoom: number | null;
3156
3162
  };
3157
- /**
3158
- * EditionInfoResponse
3159
- *
3160
- * Response for GET /settings/edition/.
3161
- */
3162
- export type EditionInfoResponse = {
3163
- /**
3164
- * Edition
3165
- *
3166
- * Active edition: 'community' or 'enterprise'.
3167
- */
3168
- edition: string;
3169
- /**
3170
- * Features
3171
- *
3172
- * List of feature flags enabled for this edition.
3173
- */
3174
- features: Array<string>;
3175
- /**
3176
- * Tenancy Mode
3177
- *
3178
- * Tenancy mode: 'single_tenant' or 'multi_tenant'.
3179
- */
3180
- tenancy_mode?: string;
3181
- };
3182
3163
  /**
3183
3164
  * EmbedTokenCreate
3184
3165
  */
@@ -3186,13 +3167,13 @@ export type EmbedTokenCreate = {
3186
3167
  /**
3187
3168
  * Allowed Origins
3188
3169
  *
3189
- * Restrict embedding to these origins. Omit or null allows any origin; non-empty origin restrictions require the enterprise edition.
3170
+ * Restrict embedding to these origins. Omit or null allows any origin; non-empty origin restrictions require advanced sharing controls.
3190
3171
  */
3191
3172
  allowed_origins?: Array<string> | null;
3192
3173
  /**
3193
3174
  * Expires In Days
3194
3175
  *
3195
- * Token lifetime in days (1-365). The default 30-day lifetime is available in Community; custom lifetimes require the enterprise edition.
3176
+ * Token lifetime in days (1-365). The default 30-day lifetime is always available; custom lifetimes require advanced sharing controls.
3196
3177
  */
3197
3178
  expires_in_days?: number;
3198
3179
  /**
@@ -3324,7 +3305,7 @@ export type EmbedTokenUpdate = {
3324
3305
  /**
3325
3306
  * Allowed Origins
3326
3307
  *
3327
- * Updated list of allowed embedding origins. Null clears restrictions; non-empty origin restrictions require the enterprise edition.
3308
+ * Updated list of allowed embedding origins. Null clears restrictions; non-empty origin restrictions require advanced sharing controls.
3328
3309
  */
3329
3310
  allowed_origins?: Array<string> | null;
3330
3311
  };
@@ -3357,25 +3338,6 @@ export type EmbeddingStatsResponse = {
3357
3338
  */
3358
3339
  total_records: number;
3359
3340
  };
3360
- /**
3361
- * EnterpriseTabsResponse
3362
- *
3363
- * Response for GET /settings/enterprise-tabs/.
3364
- *
3365
- * Canonical enterprise-only Settings tab keys (Phase 279 / ADMIN-03 / M-03).
3366
- * Read by the frontend AdminSidebar to decide which tabs to hide in
3367
- * community editions. The backend ``_require_enterprise_for_key`` gate
3368
- * consults the same source set, eliminating drift between the two
3369
- * sources of truth.
3370
- */
3371
- export type EnterpriseTabsResponse = {
3372
- /**
3373
- * Tabs
3374
- *
3375
- * Tab keys (e.g. 'branding', 'appearance') restricted to enterprise editions. Sorted alphabetically for stable client-side comparison.
3376
- */
3377
- tabs: Array<string>;
3378
- };
3379
3341
  /**
3380
3342
  * ExportFormat
3381
3343
  */
@@ -3531,7 +3493,10 @@ export type FanOutLayerResult = {
3531
3493
  * GeoJSON-style feature for insertion.
3532
3494
  */
3533
3495
  export type FeatureCreate = {
3534
- geometry: GeoJsonGeometry;
3496
+ /**
3497
+ * Geometry
3498
+ */
3499
+ geometry: GeoJsonGeometryCollection | GeoJsonGeometry;
3535
3500
  /**
3536
3501
  * Properties
3537
3502
  */
@@ -3560,7 +3525,10 @@ export type FeatureFlagsResponse = {
3560
3525
  * Full feature replacement (PUT semantics).
3561
3526
  */
3562
3527
  export type FeatureReplace = {
3563
- geometry: GeoJsonGeometry;
3528
+ /**
3529
+ * Geometry
3530
+ */
3531
+ geometry: GeoJsonGeometryCollection | GeoJsonGeometry;
3564
3532
  /**
3565
3533
  * Properties
3566
3534
  */
@@ -3574,7 +3542,10 @@ export type FeatureReplace = {
3574
3542
  * Partial feature update (PATCH semantics).
3575
3543
  */
3576
3544
  export type FeatureUpdate = {
3577
- geometry?: GeoJsonGeometry | null;
3545
+ /**
3546
+ * Geometry
3547
+ */
3548
+ geometry?: GeoJsonGeometryCollection | GeoJsonGeometry | null;
3578
3549
  /**
3579
3550
  * Properties
3580
3551
  */
@@ -3637,6 +3608,33 @@ export type GeoJsonGeometry = {
3637
3608
  */
3638
3609
  type: string;
3639
3610
  };
3611
+ /**
3612
+ * GeoJSONGeometryCollection
3613
+ *
3614
+ * A GeoJSON GeometryCollection (RFC 7946 §3.1.8).
3615
+ *
3616
+ * fix(#430 codex r9): carries ``geometries`` instead of ``coordinates``, so
3617
+ * it needs its own model — only generic-GEOMETRY datasets accept it on write
3618
+ * (enforced in the service), and any stored collection must serialize back
3619
+ * out on read.
3620
+ *
3621
+ * Deliberately NON-recursive (codex r13, refuted): PostGIS cannot round-trip
3622
+ * nested collections through the GeoJSON boundary in either direction —
3623
+ * ST_GeomFromGeoJSON rejects them on write and ST_AsGeoJSON raises
3624
+ * 'GeoJson: geometry not supported' on read — so a recursive model could
3625
+ * never receive one and would only convert the write-side 422 into a raw
3626
+ * database 500. The write schemas add a raw-payload guard for a clear 422.
3627
+ */
3628
+ export type GeoJsonGeometryCollection = {
3629
+ /**
3630
+ * Geometries
3631
+ */
3632
+ geometries: Array<GeoJsonGeometry>;
3633
+ /**
3634
+ * Type
3635
+ */
3636
+ type: 'GeometryCollection';
3637
+ };
3640
3638
  /**
3641
3639
  * HTTPValidationError
3642
3640
  */
@@ -3650,6 +3648,10 @@ export type HttpValidationError = {
3650
3648
  * HealthResponse
3651
3649
  */
3652
3650
  export type HealthResponse = {
3651
+ /**
3652
+ * Build
3653
+ */
3654
+ build?: string | null;
3653
3655
  /**
3654
3656
  * Providers
3655
3657
  */
@@ -3660,6 +3662,10 @@ export type HealthResponse = {
3660
3662
  * Status
3661
3663
  */
3662
3664
  status: string;
3665
+ /**
3666
+ * Version
3667
+ */
3668
+ version: string;
3663
3669
  };
3664
3670
  /**
3665
3671
  * ImportResult
@@ -3694,15 +3700,15 @@ export type ImportResult = {
3694
3700
  /**
3695
3701
  * Settings Skipped
3696
3702
  *
3697
- * Number of settings skipped (no change, unknown key, or enterprise-only key in community edition).
3703
+ * Number of settings skipped (no change, unknown key, or restricted key not writable by the current runtime).
3698
3704
  */
3699
3705
  settings_skipped: number;
3700
3706
  /**
3701
- * Settings Skipped Enterprise
3707
+ * Settings Skipped Restricted
3702
3708
  *
3703
- * Names of enterprise-only setting keys that were skipped because the caller is on the community edition (BUG-011). Empty on enterprise edition.
3709
+ * Names of restricted setting keys that were skipped by the current runtime.
3704
3710
  */
3705
- settings_skipped_enterprise?: Array<string>;
3711
+ settings_skipped_restricted?: Array<string>;
3706
3712
  };
3707
3713
  /**
3708
3714
  * InfrastructureConfig
@@ -3777,12 +3783,15 @@ export type InfrastructureResponse = {
3777
3783
  };
3778
3784
  };
3779
3785
  /**
3780
- * InlineDef_GeoJSONFeature_afaebacb
3786
+ * InlineDef_GeoJSONFeature_adc353e4
3781
3787
  *
3782
3788
  * A single GeoJSON Feature.
3783
3789
  */
3784
- export type InlineDefGeoJsonFeatureAfaebacb = {
3785
- geometry?: GeoJsonGeometry | null;
3790
+ export type InlineDefGeoJsonFeatureAdc353E4 = {
3791
+ /**
3792
+ * Geometry
3793
+ */
3794
+ geometry?: InlineDefGeoJsonGeometryCollectionD6B7Eb76 | GeoJsonGeometry | null;
3786
3795
  /**
3787
3796
  * Id
3788
3797
  */
@@ -3798,6 +3807,33 @@ export type InlineDefGeoJsonFeatureAfaebacb = {
3798
3807
  */
3799
3808
  type?: 'Feature';
3800
3809
  };
3810
+ /**
3811
+ * InlineDef_GeoJSONGeometryCollection_d6b7eb76
3812
+ *
3813
+ * A GeoJSON GeometryCollection (RFC 7946 §3.1.8).
3814
+ *
3815
+ * fix(#430 codex r9): carries ``geometries`` instead of ``coordinates``, so
3816
+ * it needs its own model — only generic-GEOMETRY datasets accept it on write
3817
+ * (enforced in the service), and any stored collection must serialize back
3818
+ * out on read.
3819
+ *
3820
+ * Deliberately NON-recursive (codex r13, refuted): PostGIS cannot round-trip
3821
+ * nested collections through the GeoJSON boundary in either direction —
3822
+ * ST_GeomFromGeoJSON rejects them on write and ST_AsGeoJSON raises
3823
+ * 'GeoJson: geometry not supported' on read — so a recursive model could
3824
+ * never receive one and would only convert the write-side 422 into a raw
3825
+ * database 500. The write schemas add a raw-payload guard for a clear 422.
3826
+ */
3827
+ export type InlineDefGeoJsonGeometryCollectionD6B7Eb76 = {
3828
+ /**
3829
+ * Geometries
3830
+ */
3831
+ geometries: Array<GeoJsonGeometry>;
3832
+ /**
3833
+ * Type
3834
+ */
3835
+ type: 'GeometryCollection';
3836
+ };
3801
3837
  /**
3802
3838
  * InlineDef_Link_900f1c94
3803
3839
  */
@@ -4555,6 +4591,12 @@ export type MapLayerInput = {
4555
4591
  * MapLibre filter expression
4556
4592
  */
4557
4593
  filter?: Array<unknown> | null;
4594
+ /**
4595
+ * Id
4596
+ *
4597
+ * Existing layer id to update in place (full-save reconcile)
4598
+ */
4599
+ id?: string | null;
4558
4600
  /**
4559
4601
  * Label Config
4560
4602
  *
@@ -4734,10 +4776,18 @@ export type MapLayerResponse = {
4734
4776
  dataset_sample_values?: {
4735
4777
  [key: string]: unknown;
4736
4778
  } | null;
4779
+ /**
4780
+ * Dataset Status
4781
+ */
4782
+ dataset_status?: string | null;
4737
4783
  /**
4738
4784
  * Dataset Table Name
4739
4785
  */
4740
4786
  dataset_table_name: string;
4787
+ /**
4788
+ * Dataset Visibility
4789
+ */
4790
+ dataset_visibility?: string | null;
4741
4791
  /**
4742
4792
  * Dem Vertical Units
4743
4793
  */
@@ -4803,6 +4853,10 @@ export type MapLayerResponse = {
4803
4853
  style_config?: {
4804
4854
  [key: string]: unknown;
4805
4855
  } | null;
4856
+ /**
4857
+ * Tile Version
4858
+ */
4859
+ tile_version?: number | null;
4806
4860
  /**
4807
4861
  * Visible
4808
4862
  */
@@ -5375,7 +5429,7 @@ export type OAuthProviderCreate = {
5375
5429
  /**
5376
5430
  * Provider Type
5377
5431
  *
5378
- * OAuth or SAML provider type. 'google' and 'microsoft' auto-populate the discovery URL; 'oidc' is generic OAuth/OIDC; 'github' uses GitHub's fixed OAuth2 endpoints (no discovery URL); 'saml' enables SAML SSO (requires enterprise edition).
5432
+ * OAuth or SAML provider type. 'google' and 'microsoft' auto-populate the discovery URL; 'oidc' is generic OAuth/OIDC; 'github' uses GitHub's fixed OAuth2 endpoints (no discovery URL); 'saml' is available only on SAML-enabled deployments.
5379
5433
  */
5380
5434
  provider_type: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github';
5381
5435
  /**
@@ -6029,6 +6083,12 @@ export type OgcRecordProperties = {
6029
6083
  * Source Count
6030
6084
  */
6031
6085
  source_count?: number | null;
6086
+ /**
6087
+ * Source Format
6088
+ *
6089
+ * Ingest source format ('geojson', 'shapefile', 'geotiff', 'wfs', 'stac', 'created', ...). Null for datasets registered from existing PostGIS tables and for composed VRT datasets.
6090
+ */
6091
+ source_format?: string | null;
6032
6092
  /**
6033
6093
  * Source Organization
6034
6094
  */
@@ -7039,25 +7099,6 @@ export type ReuploadServicePreviewRequest = {
7039
7099
  */
7040
7100
  url: string;
7041
7101
  };
7042
- /**
7043
- * SamlToLocalConversion
7044
- *
7045
- * Request body for POST /admin/users/{user_id}/convert-saml-to-local/.
7046
- *
7047
- * Per Phase 221 D-01: a dedicated, single-purpose schema kept narrow on
7048
- * purpose -- password is intentionally NOT on the generic UserUpdate schema
7049
- * (which has no password field) so this conversion produces a single,
7050
- * audit-distinct action ('user.convert_saml_to_local') instead of being
7051
- * folded into 'user.update'.
7052
- */
7053
- export type SamlToLocalConversion = {
7054
- /**
7055
- * Password
7056
- *
7057
- * Local-password for the converted account (policy: min 12 chars, 3+ character classes). The user can change this after first login.
7058
- */
7059
- password: string;
7060
- };
7061
7102
  /**
7062
7103
  * SavedSearchCreate
7063
7104
  *
@@ -7397,7 +7438,7 @@ export type ShareTokenRequest = {
7397
7438
  /**
7398
7439
  * Expires At
7399
7440
  *
7400
- * Expiration timestamp. Null creates a non-expiring share link.
7441
+ * Expiration timestamp; must carry a UTC offset. Null creates a non-expiring share link. A custom expiration requires advanced sharing controls.
7401
7442
  */
7402
7443
  expires_at?: string | null;
7403
7444
  };
@@ -7529,6 +7570,10 @@ export type SharedLayerResponse = {
7529
7570
  * Tile Url
7530
7571
  */
7531
7572
  tile_url: string;
7573
+ /**
7574
+ * Tile Version
7575
+ */
7576
+ tile_version?: number | null;
7532
7577
  /**
7533
7578
  * Visible
7534
7579
  */
@@ -9446,75 +9491,6 @@ export type ListAuditLogsAdminAuditLogsGetResponses = {
9446
9491
  200: AuditLogListResponse;
9447
9492
  };
9448
9493
  export type ListAuditLogsAdminAuditLogsGetResponse = ListAuditLogsAdminAuditLogsGetResponses[keyof ListAuditLogsAdminAuditLogsGetResponses];
9449
- export type ExportAuditLogsAdminAuditLogsExportFormatGetData = {
9450
- body?: never;
9451
- path: {
9452
- /**
9453
- * Format
9454
- */
9455
- format: string;
9456
- };
9457
- query?: {
9458
- /**
9459
- * Action
9460
- */
9461
- action?: string | null;
9462
- /**
9463
- * Resource Type
9464
- */
9465
- resource_type?: string | null;
9466
- /**
9467
- * Date From
9468
- */
9469
- date_from?: string | null;
9470
- /**
9471
- * Date To
9472
- */
9473
- date_to?: string | null;
9474
- /**
9475
- * Search
9476
- */
9477
- search?: string | null;
9478
- /**
9479
- * Max Rows
9480
- */
9481
- max_rows?: number;
9482
- };
9483
- url: '/admin/audit-logs/export/{format}';
9484
- };
9485
- export type ExportAuditLogsAdminAuditLogsExportFormatGetErrors = {
9486
- /**
9487
- * Bad request — invalid query parameters or payload
9488
- */
9489
- 400: ProblemDetail;
9490
- /**
9491
- * Unauthorized — missing or invalid credentials
9492
- */
9493
- 401: ProblemDetail;
9494
- /**
9495
- * Forbidden — caller lacks access to this resource
9496
- */
9497
- 403: ProblemDetail;
9498
- /**
9499
- * Not found
9500
- */
9501
- 404: ProblemDetail;
9502
- /**
9503
- * Validation error
9504
- */
9505
- 422: ProblemDetail;
9506
- /**
9507
- * Internal server error
9508
- */
9509
- 500: ProblemDetail;
9510
- };
9511
- export type ExportAuditLogsAdminAuditLogsExportFormatGetError = ExportAuditLogsAdminAuditLogsExportFormatGetErrors[keyof ExportAuditLogsAdminAuditLogsExportFormatGetErrors];
9512
- export type ExportAuditLogsAdminAuditLogsExportFormatGetResponses = {
9513
- /**
9514
- * Successful Response
9515
- */
9516
- 200: unknown;
9517
- };
9518
9494
  export type TriggerBackfillAdminBackfillEmbeddingsPostData = {
9519
9495
  body?: never;
9520
9496
  path?: never;
@@ -10315,51 +10291,6 @@ export type ApproveUserAdminUsersUserIdApprovePostResponses = {
10315
10291
  200: UserResponse;
10316
10292
  };
10317
10293
  export type ApproveUserAdminUsersUserIdApprovePostResponse = ApproveUserAdminUsersUserIdApprovePostResponses[keyof ApproveUserAdminUsersUserIdApprovePostResponses];
10318
- export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostData = {
10319
- body: SamlToLocalConversion;
10320
- path: {
10321
- /**
10322
- * User Id
10323
- */
10324
- user_id: string;
10325
- };
10326
- query?: never;
10327
- url: '/admin/users/{user_id}/convert-saml-to-local/';
10328
- };
10329
- export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostErrors = {
10330
- /**
10331
- * Bad request — invalid query parameters or payload
10332
- */
10333
- 400: ProblemDetail;
10334
- /**
10335
- * Unauthorized — missing or invalid credentials
10336
- */
10337
- 401: ProblemDetail;
10338
- /**
10339
- * Forbidden — caller lacks access to this resource
10340
- */
10341
- 403: ProblemDetail;
10342
- /**
10343
- * Not found
10344
- */
10345
- 404: ProblemDetail;
10346
- /**
10347
- * Validation error
10348
- */
10349
- 422: ProblemDetail;
10350
- /**
10351
- * Internal server error
10352
- */
10353
- 500: ProblemDetail;
10354
- };
10355
- export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostError = ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostErrors[keyof ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostErrors];
10356
- export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostResponses = {
10357
- /**
10358
- * Successful Response
10359
- */
10360
- 200: UserResponse;
10361
- };
10362
- export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostResponse = ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostResponses[keyof ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostResponses];
10363
10294
  export type DeactivateUserAdminUsersUserIdDeactivatePostData = {
10364
10295
  body?: never;
10365
10296
  path: {
@@ -13760,6 +13691,14 @@ export type ExportDatasetEndpointDatasetsDatasetIdExportGetResponses = {
13760
13691
  };
13761
13692
  export type GetFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGetData = {
13762
13693
  body?: never;
13694
+ headers?: {
13695
+ /**
13696
+ * X-Embed-Token
13697
+ *
13698
+ * Optional embed token. Datasets in the token's scope are authorized even without user credentials (embed viewers).
13699
+ */
13700
+ 'X-Embed-Token'?: string | null;
13701
+ };
13763
13702
  path: {
13764
13703
  /**
13765
13704
  * Dataset Id
@@ -13873,7 +13812,7 @@ export type ListFeaturesDatasetsDatasetIdFeaturesGetResponses = {
13873
13812
  /**
13874
13813
  * Features
13875
13814
  */
13876
- features: Array<InlineDefGeoJsonFeatureAfaebacb>;
13815
+ features: Array<InlineDefGeoJsonFeatureAdc353E4>;
13877
13816
  /**
13878
13817
  * Links
13879
13818
  */
@@ -13942,7 +13881,10 @@ export type CreateFeatureDatasetsDatasetIdFeaturesPostResponses = {
13942
13881
  * A single GeoJSON Feature.
13943
13882
  */
13944
13883
  201: {
13945
- geometry?: GeoJsonGeometry | null;
13884
+ /**
13885
+ * Geometry
13886
+ */
13887
+ geometry?: InlineDefGeoJsonGeometryCollectionD6B7Eb76 | GeoJsonGeometry | null;
13946
13888
  /**
13947
13889
  * Id
13948
13890
  */
@@ -14062,7 +14004,10 @@ export type GetSingleFeatureDatasetsDatasetIdFeaturesGidGetResponses = {
14062
14004
  * A single GeoJSON Feature.
14063
14005
  */
14064
14006
  200: {
14065
- geometry?: GeoJsonGeometry | null;
14007
+ /**
14008
+ * Geometry
14009
+ */
14010
+ geometry?: InlineDefGeoJsonGeometryCollectionD6B7Eb76 | GeoJsonGeometry | null;
14066
14011
  /**
14067
14012
  * Id
14068
14013
  */
@@ -14133,7 +14078,10 @@ export type PatchSingleFeatureDatasetsDatasetIdFeaturesGidPatchResponses = {
14133
14078
  * A single GeoJSON Feature.
14134
14079
  */
14135
14080
  200: {
14136
- geometry?: GeoJsonGeometry | null;
14081
+ /**
14082
+ * Geometry
14083
+ */
14084
+ geometry?: InlineDefGeoJsonGeometryCollectionD6B7Eb76 | GeoJsonGeometry | null;
14137
14085
  /**
14138
14086
  * Id
14139
14087
  */
@@ -14204,7 +14152,10 @@ export type ReplaceSingleFeatureDatasetsDatasetIdFeaturesGidPutResponses = {
14204
14152
  * A single GeoJSON Feature.
14205
14153
  */
14206
14154
  200: {
14207
- geometry?: GeoJsonGeometry | null;
14155
+ /**
14156
+ * Geometry
14157
+ */
14158
+ geometry?: InlineDefGeoJsonGeometryCollectionD6B7Eb76 | GeoJsonGeometry | null;
14208
14159
  /**
14209
14160
  * Id
14210
14161
  */
@@ -16758,6 +16709,14 @@ export type ImportMapStyleEndpointMapsImportPostResponses = {
16758
16709
  export type ImportMapStyleEndpointMapsImportPostResponse = ImportMapStyleEndpointMapsImportPostResponses[keyof ImportMapStyleEndpointMapsImportPostResponses];
16759
16710
  export type GetSharedMapEndpointMapsSharedTokenGetData = {
16760
16711
  body?: never;
16712
+ headers?: {
16713
+ /**
16714
+ * X-Embed-Token
16715
+ *
16716
+ * Optional embed token — includes its scoped dataset layers when valid for this map.
16717
+ */
16718
+ 'X-Embed-Token'?: string | null;
16719
+ };
16761
16720
  path: {
16762
16721
  /**
16763
16722
  * Token
@@ -19523,46 +19482,6 @@ export type DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses = {
19523
19482
  200: DetectEmbeddingDimsResponse;
19524
19483
  };
19525
19484
  export type DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponse = DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses[keyof DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses];
19526
- export type EditionInfoSettingsEditionGetData = {
19527
- body?: never;
19528
- path?: never;
19529
- query?: never;
19530
- url: '/settings/edition/';
19531
- };
19532
- export type EditionInfoSettingsEditionGetErrors = {
19533
- /**
19534
- * Bad request — invalid query parameters or payload
19535
- */
19536
- 400: ProblemDetail;
19537
- /**
19538
- * Unauthorized — missing or invalid credentials
19539
- */
19540
- 401: ProblemDetail;
19541
- /**
19542
- * Forbidden — caller lacks access to this resource
19543
- */
19544
- 403: ProblemDetail;
19545
- /**
19546
- * Not found
19547
- */
19548
- 404: ProblemDetail;
19549
- /**
19550
- * Validation error
19551
- */
19552
- 422: ProblemDetail;
19553
- /**
19554
- * Internal server error
19555
- */
19556
- 500: ProblemDetail;
19557
- };
19558
- export type EditionInfoSettingsEditionGetError = EditionInfoSettingsEditionGetErrors[keyof EditionInfoSettingsEditionGetErrors];
19559
- export type EditionInfoSettingsEditionGetResponses = {
19560
- /**
19561
- * Successful Response
19562
- */
19563
- 200: EditionInfoResponse;
19564
- };
19565
- export type EditionInfoSettingsEditionGetResponse = EditionInfoSettingsEditionGetResponses[keyof EditionInfoSettingsEditionGetResponses];
19566
19485
  export type GetEnabledPluginsSettingsEnabledPluginsGetData = {
19567
19486
  body?: never;
19568
19487
  path?: never;
@@ -19605,46 +19524,6 @@ export type GetEnabledPluginsSettingsEnabledPluginsGetResponses = {
19605
19524
  200: Array<string> | null;
19606
19525
  };
19607
19526
  export type GetEnabledPluginsSettingsEnabledPluginsGetResponse = GetEnabledPluginsSettingsEnabledPluginsGetResponses[keyof GetEnabledPluginsSettingsEnabledPluginsGetResponses];
19608
- export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetData = {
19609
- body?: never;
19610
- path?: never;
19611
- query?: never;
19612
- url: '/settings/enterprise-tabs/';
19613
- };
19614
- export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetErrors = {
19615
- /**
19616
- * Bad request — invalid query parameters or payload
19617
- */
19618
- 400: ProblemDetail;
19619
- /**
19620
- * Unauthorized — missing or invalid credentials
19621
- */
19622
- 401: ProblemDetail;
19623
- /**
19624
- * Forbidden — caller lacks access to this resource
19625
- */
19626
- 403: ProblemDetail;
19627
- /**
19628
- * Not found
19629
- */
19630
- 404: ProblemDetail;
19631
- /**
19632
- * Validation error
19633
- */
19634
- 422: ProblemDetail;
19635
- /**
19636
- * Internal server error
19637
- */
19638
- 500: ProblemDetail;
19639
- };
19640
- export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetError = GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetErrors[keyof GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetErrors];
19641
- export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponses = {
19642
- /**
19643
- * Successful Response
19644
- */
19645
- 200: EnterpriseTabsResponse;
19646
- };
19647
- export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponse = GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponses[keyof GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponses];
19648
19527
  export type GetFeatureFlagsSettingsFeatureFlagsGetData = {
19649
19528
  body?: never;
19650
19529
  path?: never;
@@ -20368,6 +20247,10 @@ export type ClusterTileEndpointTilesClustersTablePathZxyPbfGetData = {
20368
20247
  * Scope
20369
20248
  */
20370
20249
  scope?: string | null;
20250
+ /**
20251
+ * Cols
20252
+ */
20253
+ cols?: string | null;
20371
20254
  /**
20372
20255
  * Cluster Radius
20373
20256
  */
@@ -20564,6 +20447,12 @@ export type GetTileTokenTilesTokenDatasetIdGetResponses = {
20564
20447
  export type GetTileTokenTilesTokenDatasetIdGetResponse = GetTileTokenTilesTokenDatasetIdGetResponses[keyof GetTileTokenTilesTokenDatasetIdGetResponses];
20565
20448
  export type GetTileTokensBatchTilesTokensPostData = {
20566
20449
  body: TileTokenBatchRequest;
20450
+ headers?: {
20451
+ /**
20452
+ * X-Embed-Token
20453
+ */
20454
+ 'X-Embed-Token'?: string | null;
20455
+ };
20567
20456
  path?: never;
20568
20457
  query?: never;
20569
20458
  url: '/tiles/tokens/';