@geolens/sdk 1.4.1 → 1.4.2

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
  /**
@@ -3154,31 +3154,6 @@ export type DuplicateMapResponse = {
3154
3154
  */
3155
3155
  zoom: number | null;
3156
3156
  };
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
3157
  /**
3183
3158
  * EmbedTokenCreate
3184
3159
  */
@@ -3186,13 +3161,13 @@ export type EmbedTokenCreate = {
3186
3161
  /**
3187
3162
  * Allowed Origins
3188
3163
  *
3189
- * Restrict embedding to these origins. Omit or null allows any origin; non-empty origin restrictions require the enterprise edition.
3164
+ * Restrict embedding to these origins. Omit or null allows any origin; non-empty origin restrictions require advanced sharing controls.
3190
3165
  */
3191
3166
  allowed_origins?: Array<string> | null;
3192
3167
  /**
3193
3168
  * Expires In Days
3194
3169
  *
3195
- * Token lifetime in days (1-365). The default 30-day lifetime is available in Community; custom lifetimes require the enterprise edition.
3170
+ * Token lifetime in days (1-365). The default 30-day lifetime is always available; custom lifetimes require advanced sharing controls.
3196
3171
  */
3197
3172
  expires_in_days?: number;
3198
3173
  /**
@@ -3324,7 +3299,7 @@ export type EmbedTokenUpdate = {
3324
3299
  /**
3325
3300
  * Allowed Origins
3326
3301
  *
3327
- * Updated list of allowed embedding origins. Null clears restrictions; non-empty origin restrictions require the enterprise edition.
3302
+ * Updated list of allowed embedding origins. Null clears restrictions; non-empty origin restrictions require advanced sharing controls.
3328
3303
  */
3329
3304
  allowed_origins?: Array<string> | null;
3330
3305
  };
@@ -3357,25 +3332,6 @@ export type EmbeddingStatsResponse = {
3357
3332
  */
3358
3333
  total_records: number;
3359
3334
  };
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
3335
  /**
3380
3336
  * ExportFormat
3381
3337
  */
@@ -3694,15 +3650,15 @@ export type ImportResult = {
3694
3650
  /**
3695
3651
  * Settings Skipped
3696
3652
  *
3697
- * Number of settings skipped (no change, unknown key, or enterprise-only key in community edition).
3653
+ * Number of settings skipped (no change, unknown key, or restricted key not writable by the current runtime).
3698
3654
  */
3699
3655
  settings_skipped: number;
3700
3656
  /**
3701
- * Settings Skipped Enterprise
3657
+ * Settings Skipped Restricted
3702
3658
  *
3703
- * Names of enterprise-only setting keys that were skipped because the caller is on the community edition (BUG-011). Empty on enterprise edition.
3659
+ * Names of restricted setting keys that were skipped by the current runtime.
3704
3660
  */
3705
- settings_skipped_enterprise?: Array<string>;
3661
+ settings_skipped_restricted?: Array<string>;
3706
3662
  };
3707
3663
  /**
3708
3664
  * InfrastructureConfig
@@ -5375,7 +5331,7 @@ export type OAuthProviderCreate = {
5375
5331
  /**
5376
5332
  * Provider Type
5377
5333
  *
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).
5334
+ * 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
5335
  */
5380
5336
  provider_type: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github';
5381
5337
  /**
@@ -7039,25 +6995,6 @@ export type ReuploadServicePreviewRequest = {
7039
6995
  */
7040
6996
  url: string;
7041
6997
  };
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
6998
  /**
7062
6999
  * SavedSearchCreate
7063
7000
  *
@@ -9446,75 +9383,6 @@ export type ListAuditLogsAdminAuditLogsGetResponses = {
9446
9383
  200: AuditLogListResponse;
9447
9384
  };
9448
9385
  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
9386
  export type TriggerBackfillAdminBackfillEmbeddingsPostData = {
9519
9387
  body?: never;
9520
9388
  path?: never;
@@ -10315,51 +10183,6 @@ export type ApproveUserAdminUsersUserIdApprovePostResponses = {
10315
10183
  200: UserResponse;
10316
10184
  };
10317
10185
  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
10186
  export type DeactivateUserAdminUsersUserIdDeactivatePostData = {
10364
10187
  body?: never;
10365
10188
  path: {
@@ -19523,46 +19346,6 @@ export type DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses = {
19523
19346
  200: DetectEmbeddingDimsResponse;
19524
19347
  };
19525
19348
  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
19349
  export type GetEnabledPluginsSettingsEnabledPluginsGetData = {
19567
19350
  body?: never;
19568
19351
  path?: never;
@@ -19605,46 +19388,6 @@ export type GetEnabledPluginsSettingsEnabledPluginsGetResponses = {
19605
19388
  200: Array<string> | null;
19606
19389
  };
19607
19390
  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
19391
  export type GetFeatureFlagsSettingsFeatureFlagsGetData = {
19649
19392
  body?: never;
19650
19393
  path?: never;