@geolens/sdk 1.4.0 → 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.
- package/README.md +1 -1
- package/dist/client/client/client.gen.d.ts +1 -1
- package/dist/client/client/client.gen.js +3 -3
- package/dist/client/client/index.d.ts +8 -8
- package/dist/client/client/index.js +5 -5
- package/dist/client/client/types.gen.d.ts +4 -4
- package/dist/client/client/utils.gen.d.ts +2 -2
- package/dist/client/client/utils.gen.js +4 -4
- package/dist/client/client.gen.d.ts +3 -3
- package/dist/client/client.gen.js +1 -1
- package/dist/client/core/bodySerializer.gen.d.ts +1 -1
- package/dist/client/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/client/core/types.gen.d.ts +2 -2
- package/dist/client/core/utils.gen.d.ts +1 -1
- package/dist/client/core/utils.gen.js +1 -1
- package/dist/client/index.d.ts +2 -2
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/sdk.gen.d.ts +264 -304
- package/dist/client/sdk.gen.d.ts.map +1 -1
- package/dist/client/sdk.gen.js +23 -75
- package/dist/client/sdk.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +53 -254
- package/dist/client/types.gen.d.ts.map +1 -1
- package/package.json +4 -3
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
export type ClientOptions = {
|
|
2
2
|
baseUrl: `${string}://${string}` | (string & {});
|
|
3
3
|
};
|
|
4
|
+
/**
|
|
5
|
+
* AIAvailabilityResponse
|
|
6
|
+
*
|
|
7
|
+
* Public-safe AI readiness signal (builder-audit #338 P1-11).
|
|
8
|
+
*
|
|
9
|
+
* Carries a single boolean and intentionally exposes NO provider name, model,
|
|
10
|
+
* or key detail — it is readable by any non-admin editor holding
|
|
11
|
+
* ``use_ai_chat`` so the builder can enable/disable chat without the
|
|
12
|
+
* admin-only ``/admin/ai-status`` endpoint (which leaks provider/key info).
|
|
13
|
+
*/
|
|
14
|
+
export type AiAvailabilityResponse = {
|
|
15
|
+
/**
|
|
16
|
+
* Available
|
|
17
|
+
*/
|
|
18
|
+
available: boolean;
|
|
19
|
+
};
|
|
4
20
|
/**
|
|
5
21
|
* AIStatusResponse
|
|
6
22
|
*/
|
|
@@ -335,15 +351,15 @@ export type AdminShareTokenResponse = {
|
|
|
335
351
|
/**
|
|
336
352
|
* Expires At
|
|
337
353
|
*/
|
|
338
|
-
expires_at
|
|
354
|
+
expires_at?: string | null;
|
|
339
355
|
/**
|
|
340
356
|
* Id
|
|
341
357
|
*/
|
|
342
|
-
id
|
|
358
|
+
id?: string | null;
|
|
343
359
|
/**
|
|
344
360
|
* Is Active
|
|
345
361
|
*/
|
|
346
|
-
is_active
|
|
362
|
+
is_active?: boolean | null;
|
|
347
363
|
/**
|
|
348
364
|
* Map Id
|
|
349
365
|
*/
|
|
@@ -355,7 +371,7 @@ export type AdminShareTokenResponse = {
|
|
|
355
371
|
/**
|
|
356
372
|
* Token
|
|
357
373
|
*/
|
|
358
|
-
token
|
|
374
|
+
token?: string | null;
|
|
359
375
|
};
|
|
360
376
|
/**
|
|
361
377
|
* AdminUserCreate
|
|
@@ -896,7 +912,7 @@ export type BrandingResponse = {
|
|
|
896
912
|
/**
|
|
897
913
|
* Show Badge
|
|
898
914
|
*
|
|
899
|
-
* Whether to show the 'Powered by GeoLens' label in public and shared footers. Badge-removal writes are
|
|
915
|
+
* Whether to show the 'Powered by GeoLens' label in public and shared footers. Badge-removal writes are restricted controls.
|
|
900
916
|
*/
|
|
901
917
|
show_badge: boolean;
|
|
902
918
|
};
|
|
@@ -1905,7 +1921,7 @@ export type ConfigResponse = {
|
|
|
1905
1921
|
/**
|
|
1906
1922
|
* Auth Methods
|
|
1907
1923
|
*
|
|
1908
|
-
* Auth methods contributed by the active AuthExtension. Empty
|
|
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.
|
|
1909
1925
|
*/
|
|
1910
1926
|
auth_methods?: Array<string>;
|
|
1911
1927
|
/**
|
|
@@ -3138,31 +3154,6 @@ export type DuplicateMapResponse = {
|
|
|
3138
3154
|
*/
|
|
3139
3155
|
zoom: number | null;
|
|
3140
3156
|
};
|
|
3141
|
-
/**
|
|
3142
|
-
* EditionInfoResponse
|
|
3143
|
-
*
|
|
3144
|
-
* Response for GET /settings/edition/.
|
|
3145
|
-
*/
|
|
3146
|
-
export type EditionInfoResponse = {
|
|
3147
|
-
/**
|
|
3148
|
-
* Edition
|
|
3149
|
-
*
|
|
3150
|
-
* Active edition: 'community' or 'enterprise'.
|
|
3151
|
-
*/
|
|
3152
|
-
edition: string;
|
|
3153
|
-
/**
|
|
3154
|
-
* Features
|
|
3155
|
-
*
|
|
3156
|
-
* List of feature flags enabled for this edition.
|
|
3157
|
-
*/
|
|
3158
|
-
features: Array<string>;
|
|
3159
|
-
/**
|
|
3160
|
-
* Tenancy Mode
|
|
3161
|
-
*
|
|
3162
|
-
* Tenancy mode: 'single_tenant' or 'multi_tenant'.
|
|
3163
|
-
*/
|
|
3164
|
-
tenancy_mode?: string;
|
|
3165
|
-
};
|
|
3166
3157
|
/**
|
|
3167
3158
|
* EmbedTokenCreate
|
|
3168
3159
|
*/
|
|
@@ -3170,13 +3161,13 @@ export type EmbedTokenCreate = {
|
|
|
3170
3161
|
/**
|
|
3171
3162
|
* Allowed Origins
|
|
3172
3163
|
*
|
|
3173
|
-
* Restrict embedding to these origins. Omit or null allows any origin; non-empty origin restrictions require
|
|
3164
|
+
* Restrict embedding to these origins. Omit or null allows any origin; non-empty origin restrictions require advanced sharing controls.
|
|
3174
3165
|
*/
|
|
3175
3166
|
allowed_origins?: Array<string> | null;
|
|
3176
3167
|
/**
|
|
3177
3168
|
* Expires In Days
|
|
3178
3169
|
*
|
|
3179
|
-
* Token lifetime in days (1-365). The default 30-day lifetime is available
|
|
3170
|
+
* Token lifetime in days (1-365). The default 30-day lifetime is always available; custom lifetimes require advanced sharing controls.
|
|
3180
3171
|
*/
|
|
3181
3172
|
expires_in_days?: number;
|
|
3182
3173
|
/**
|
|
@@ -3308,7 +3299,7 @@ export type EmbedTokenUpdate = {
|
|
|
3308
3299
|
/**
|
|
3309
3300
|
* Allowed Origins
|
|
3310
3301
|
*
|
|
3311
|
-
* Updated list of allowed embedding origins. Null clears restrictions; non-empty origin restrictions require
|
|
3302
|
+
* Updated list of allowed embedding origins. Null clears restrictions; non-empty origin restrictions require advanced sharing controls.
|
|
3312
3303
|
*/
|
|
3313
3304
|
allowed_origins?: Array<string> | null;
|
|
3314
3305
|
};
|
|
@@ -3341,25 +3332,6 @@ export type EmbeddingStatsResponse = {
|
|
|
3341
3332
|
*/
|
|
3342
3333
|
total_records: number;
|
|
3343
3334
|
};
|
|
3344
|
-
/**
|
|
3345
|
-
* EnterpriseTabsResponse
|
|
3346
|
-
*
|
|
3347
|
-
* Response for GET /settings/enterprise-tabs/.
|
|
3348
|
-
*
|
|
3349
|
-
* Canonical enterprise-only Settings tab keys (Phase 279 / ADMIN-03 / M-03).
|
|
3350
|
-
* Read by the frontend AdminSidebar to decide which tabs to hide in
|
|
3351
|
-
* community editions. The backend ``_require_enterprise_for_key`` gate
|
|
3352
|
-
* consults the same source set, eliminating drift between the two
|
|
3353
|
-
* sources of truth.
|
|
3354
|
-
*/
|
|
3355
|
-
export type EnterpriseTabsResponse = {
|
|
3356
|
-
/**
|
|
3357
|
-
* Tabs
|
|
3358
|
-
*
|
|
3359
|
-
* Tab keys (e.g. 'branding', 'appearance') restricted to enterprise editions. Sorted alphabetically for stable client-side comparison.
|
|
3360
|
-
*/
|
|
3361
|
-
tabs: Array<string>;
|
|
3362
|
-
};
|
|
3363
3335
|
/**
|
|
3364
3336
|
* ExportFormat
|
|
3365
3337
|
*/
|
|
@@ -3678,15 +3650,15 @@ export type ImportResult = {
|
|
|
3678
3650
|
/**
|
|
3679
3651
|
* Settings Skipped
|
|
3680
3652
|
*
|
|
3681
|
-
* Number of settings skipped (no change, unknown key, or
|
|
3653
|
+
* Number of settings skipped (no change, unknown key, or restricted key not writable by the current runtime).
|
|
3682
3654
|
*/
|
|
3683
3655
|
settings_skipped: number;
|
|
3684
3656
|
/**
|
|
3685
|
-
* Settings Skipped
|
|
3657
|
+
* Settings Skipped Restricted
|
|
3686
3658
|
*
|
|
3687
|
-
* Names of
|
|
3659
|
+
* Names of restricted setting keys that were skipped by the current runtime.
|
|
3688
3660
|
*/
|
|
3689
|
-
|
|
3661
|
+
settings_skipped_restricted?: Array<string>;
|
|
3690
3662
|
};
|
|
3691
3663
|
/**
|
|
3692
3664
|
* InfrastructureConfig
|
|
@@ -5359,7 +5331,7 @@ export type OAuthProviderCreate = {
|
|
|
5359
5331
|
/**
|
|
5360
5332
|
* Provider Type
|
|
5361
5333
|
*
|
|
5362
|
-
* 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'
|
|
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.
|
|
5363
5335
|
*/
|
|
5364
5336
|
provider_type: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github';
|
|
5365
5337
|
/**
|
|
@@ -7023,25 +6995,6 @@ export type ReuploadServicePreviewRequest = {
|
|
|
7023
6995
|
*/
|
|
7024
6996
|
url: string;
|
|
7025
6997
|
};
|
|
7026
|
-
/**
|
|
7027
|
-
* SamlToLocalConversion
|
|
7028
|
-
*
|
|
7029
|
-
* Request body for POST /admin/users/{user_id}/convert-saml-to-local/.
|
|
7030
|
-
*
|
|
7031
|
-
* Per Phase 221 D-01: a dedicated, single-purpose schema kept narrow on
|
|
7032
|
-
* purpose -- password is intentionally NOT on the generic UserUpdate schema
|
|
7033
|
-
* (which has no password field) so this conversion produces a single,
|
|
7034
|
-
* audit-distinct action ('user.convert_saml_to_local') instead of being
|
|
7035
|
-
* folded into 'user.update'.
|
|
7036
|
-
*/
|
|
7037
|
-
export type SamlToLocalConversion = {
|
|
7038
|
-
/**
|
|
7039
|
-
* Password
|
|
7040
|
-
*
|
|
7041
|
-
* Local-password for the converted account (policy: min 12 chars, 3+ character classes). The user can change this after first login.
|
|
7042
|
-
*/
|
|
7043
|
-
password: string;
|
|
7044
|
-
};
|
|
7045
6998
|
/**
|
|
7046
6999
|
* SavedSearchCreate
|
|
7047
7000
|
*
|
|
@@ -8320,7 +8273,7 @@ export type SublayerOverride = {
|
|
|
8320
8273
|
/**
|
|
8321
8274
|
* Opacity
|
|
8322
8275
|
*
|
|
8323
|
-
* Per-sublayer opacity (0-1), or null to use the basemap default.
|
|
8276
|
+
* 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.
|
|
8324
8277
|
*/
|
|
8325
8278
|
opacity?: number | null;
|
|
8326
8279
|
/**
|
|
@@ -9430,75 +9383,6 @@ export type ListAuditLogsAdminAuditLogsGetResponses = {
|
|
|
9430
9383
|
200: AuditLogListResponse;
|
|
9431
9384
|
};
|
|
9432
9385
|
export type ListAuditLogsAdminAuditLogsGetResponse = ListAuditLogsAdminAuditLogsGetResponses[keyof ListAuditLogsAdminAuditLogsGetResponses];
|
|
9433
|
-
export type ExportAuditLogsAdminAuditLogsExportFormatGetData = {
|
|
9434
|
-
body?: never;
|
|
9435
|
-
path: {
|
|
9436
|
-
/**
|
|
9437
|
-
* Format
|
|
9438
|
-
*/
|
|
9439
|
-
format: string;
|
|
9440
|
-
};
|
|
9441
|
-
query?: {
|
|
9442
|
-
/**
|
|
9443
|
-
* Action
|
|
9444
|
-
*/
|
|
9445
|
-
action?: string | null;
|
|
9446
|
-
/**
|
|
9447
|
-
* Resource Type
|
|
9448
|
-
*/
|
|
9449
|
-
resource_type?: string | null;
|
|
9450
|
-
/**
|
|
9451
|
-
* Date From
|
|
9452
|
-
*/
|
|
9453
|
-
date_from?: string | null;
|
|
9454
|
-
/**
|
|
9455
|
-
* Date To
|
|
9456
|
-
*/
|
|
9457
|
-
date_to?: string | null;
|
|
9458
|
-
/**
|
|
9459
|
-
* Search
|
|
9460
|
-
*/
|
|
9461
|
-
search?: string | null;
|
|
9462
|
-
/**
|
|
9463
|
-
* Max Rows
|
|
9464
|
-
*/
|
|
9465
|
-
max_rows?: number;
|
|
9466
|
-
};
|
|
9467
|
-
url: '/admin/audit-logs/export/{format}';
|
|
9468
|
-
};
|
|
9469
|
-
export type ExportAuditLogsAdminAuditLogsExportFormatGetErrors = {
|
|
9470
|
-
/**
|
|
9471
|
-
* Bad request — invalid query parameters or payload
|
|
9472
|
-
*/
|
|
9473
|
-
400: ProblemDetail;
|
|
9474
|
-
/**
|
|
9475
|
-
* Unauthorized — missing or invalid credentials
|
|
9476
|
-
*/
|
|
9477
|
-
401: ProblemDetail;
|
|
9478
|
-
/**
|
|
9479
|
-
* Forbidden — caller lacks access to this resource
|
|
9480
|
-
*/
|
|
9481
|
-
403: ProblemDetail;
|
|
9482
|
-
/**
|
|
9483
|
-
* Not found
|
|
9484
|
-
*/
|
|
9485
|
-
404: ProblemDetail;
|
|
9486
|
-
/**
|
|
9487
|
-
* Validation error
|
|
9488
|
-
*/
|
|
9489
|
-
422: ProblemDetail;
|
|
9490
|
-
/**
|
|
9491
|
-
* Internal server error
|
|
9492
|
-
*/
|
|
9493
|
-
500: ProblemDetail;
|
|
9494
|
-
};
|
|
9495
|
-
export type ExportAuditLogsAdminAuditLogsExportFormatGetError = ExportAuditLogsAdminAuditLogsExportFormatGetErrors[keyof ExportAuditLogsAdminAuditLogsExportFormatGetErrors];
|
|
9496
|
-
export type ExportAuditLogsAdminAuditLogsExportFormatGetResponses = {
|
|
9497
|
-
/**
|
|
9498
|
-
* Successful Response
|
|
9499
|
-
*/
|
|
9500
|
-
200: unknown;
|
|
9501
|
-
};
|
|
9502
9386
|
export type TriggerBackfillAdminBackfillEmbeddingsPostData = {
|
|
9503
9387
|
body?: never;
|
|
9504
9388
|
path?: never;
|
|
@@ -10299,8 +10183,8 @@ export type ApproveUserAdminUsersUserIdApprovePostResponses = {
|
|
|
10299
10183
|
200: UserResponse;
|
|
10300
10184
|
};
|
|
10301
10185
|
export type ApproveUserAdminUsersUserIdApprovePostResponse = ApproveUserAdminUsersUserIdApprovePostResponses[keyof ApproveUserAdminUsersUserIdApprovePostResponses];
|
|
10302
|
-
export type
|
|
10303
|
-
body
|
|
10186
|
+
export type DeactivateUserAdminUsersUserIdDeactivatePostData = {
|
|
10187
|
+
body?: never;
|
|
10304
10188
|
path: {
|
|
10305
10189
|
/**
|
|
10306
10190
|
* User Id
|
|
@@ -10308,9 +10192,9 @@ export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostData = {
|
|
|
10308
10192
|
user_id: string;
|
|
10309
10193
|
};
|
|
10310
10194
|
query?: never;
|
|
10311
|
-
url: '/admin/users/{user_id}/
|
|
10195
|
+
url: '/admin/users/{user_id}/deactivate/';
|
|
10312
10196
|
};
|
|
10313
|
-
export type
|
|
10197
|
+
export type DeactivateUserAdminUsersUserIdDeactivatePostErrors = {
|
|
10314
10198
|
/**
|
|
10315
10199
|
* Bad request — invalid query parameters or payload
|
|
10316
10200
|
*/
|
|
@@ -10336,15 +10220,15 @@ export type ConvertSamlToLocalAdminUsersUserIdConvertSamlToLocalPostErrors = {
|
|
|
10336
10220
|
*/
|
|
10337
10221
|
500: ProblemDetail;
|
|
10338
10222
|
};
|
|
10339
|
-
export type
|
|
10340
|
-
export type
|
|
10223
|
+
export type DeactivateUserAdminUsersUserIdDeactivatePostError = DeactivateUserAdminUsersUserIdDeactivatePostErrors[keyof DeactivateUserAdminUsersUserIdDeactivatePostErrors];
|
|
10224
|
+
export type DeactivateUserAdminUsersUserIdDeactivatePostResponses = {
|
|
10341
10225
|
/**
|
|
10342
10226
|
* Successful Response
|
|
10343
10227
|
*/
|
|
10344
10228
|
200: UserResponse;
|
|
10345
10229
|
};
|
|
10346
|
-
export type
|
|
10347
|
-
export type
|
|
10230
|
+
export type DeactivateUserAdminUsersUserIdDeactivatePostResponse = DeactivateUserAdminUsersUserIdDeactivatePostResponses[keyof DeactivateUserAdminUsersUserIdDeactivatePostResponses];
|
|
10231
|
+
export type RejectUserAdminUsersUserIdRejectPostData = {
|
|
10348
10232
|
body?: never;
|
|
10349
10233
|
path: {
|
|
10350
10234
|
/**
|
|
@@ -10353,9 +10237,9 @@ export type DeactivateUserAdminUsersUserIdDeactivatePostData = {
|
|
|
10353
10237
|
user_id: string;
|
|
10354
10238
|
};
|
|
10355
10239
|
query?: never;
|
|
10356
|
-
url: '/admin/users/{user_id}/
|
|
10240
|
+
url: '/admin/users/{user_id}/reject/';
|
|
10357
10241
|
};
|
|
10358
|
-
export type
|
|
10242
|
+
export type RejectUserAdminUsersUserIdRejectPostErrors = {
|
|
10359
10243
|
/**
|
|
10360
10244
|
* Bad request — invalid query parameters or payload
|
|
10361
10245
|
*/
|
|
@@ -10381,26 +10265,21 @@ export type DeactivateUserAdminUsersUserIdDeactivatePostErrors = {
|
|
|
10381
10265
|
*/
|
|
10382
10266
|
500: ProblemDetail;
|
|
10383
10267
|
};
|
|
10384
|
-
export type
|
|
10385
|
-
export type
|
|
10268
|
+
export type RejectUserAdminUsersUserIdRejectPostError = RejectUserAdminUsersUserIdRejectPostErrors[keyof RejectUserAdminUsersUserIdRejectPostErrors];
|
|
10269
|
+
export type RejectUserAdminUsersUserIdRejectPostResponses = {
|
|
10386
10270
|
/**
|
|
10387
10271
|
* Successful Response
|
|
10388
10272
|
*/
|
|
10389
|
-
|
|
10273
|
+
204: void;
|
|
10390
10274
|
};
|
|
10391
|
-
export type
|
|
10392
|
-
export type
|
|
10275
|
+
export type RejectUserAdminUsersUserIdRejectPostResponse = RejectUserAdminUsersUserIdRejectPostResponses[keyof RejectUserAdminUsersUserIdRejectPostResponses];
|
|
10276
|
+
export type AiAvailabilityEndpointAiAvailabilityGetData = {
|
|
10393
10277
|
body?: never;
|
|
10394
|
-
path
|
|
10395
|
-
/**
|
|
10396
|
-
* User Id
|
|
10397
|
-
*/
|
|
10398
|
-
user_id: string;
|
|
10399
|
-
};
|
|
10278
|
+
path?: never;
|
|
10400
10279
|
query?: never;
|
|
10401
|
-
url: '/
|
|
10280
|
+
url: '/ai/availability/';
|
|
10402
10281
|
};
|
|
10403
|
-
export type
|
|
10282
|
+
export type AiAvailabilityEndpointAiAvailabilityGetErrors = {
|
|
10404
10283
|
/**
|
|
10405
10284
|
* Bad request — invalid query parameters or payload
|
|
10406
10285
|
*/
|
|
@@ -10426,14 +10305,14 @@ export type RejectUserAdminUsersUserIdRejectPostErrors = {
|
|
|
10426
10305
|
*/
|
|
10427
10306
|
500: ProblemDetail;
|
|
10428
10307
|
};
|
|
10429
|
-
export type
|
|
10430
|
-
export type
|
|
10308
|
+
export type AiAvailabilityEndpointAiAvailabilityGetError = AiAvailabilityEndpointAiAvailabilityGetErrors[keyof AiAvailabilityEndpointAiAvailabilityGetErrors];
|
|
10309
|
+
export type AiAvailabilityEndpointAiAvailabilityGetResponses = {
|
|
10431
10310
|
/**
|
|
10432
10311
|
* Successful Response
|
|
10433
10312
|
*/
|
|
10434
|
-
|
|
10313
|
+
200: AiAvailabilityResponse;
|
|
10435
10314
|
};
|
|
10436
|
-
export type
|
|
10315
|
+
export type AiAvailabilityEndpointAiAvailabilityGetResponse = AiAvailabilityEndpointAiAvailabilityGetResponses[keyof AiAvailabilityEndpointAiAvailabilityGetResponses];
|
|
10437
10316
|
export type ChatEndpointAiChatPostData = {
|
|
10438
10317
|
body: ChatRequest;
|
|
10439
10318
|
path?: never;
|
|
@@ -19467,46 +19346,6 @@ export type DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses = {
|
|
|
19467
19346
|
200: DetectEmbeddingDimsResponse;
|
|
19468
19347
|
};
|
|
19469
19348
|
export type DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponse = DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses[keyof DetectEmbeddingDimsSettingsDetectEmbeddingDimsPostResponses];
|
|
19470
|
-
export type EditionInfoSettingsEditionGetData = {
|
|
19471
|
-
body?: never;
|
|
19472
|
-
path?: never;
|
|
19473
|
-
query?: never;
|
|
19474
|
-
url: '/settings/edition/';
|
|
19475
|
-
};
|
|
19476
|
-
export type EditionInfoSettingsEditionGetErrors = {
|
|
19477
|
-
/**
|
|
19478
|
-
* Bad request — invalid query parameters or payload
|
|
19479
|
-
*/
|
|
19480
|
-
400: ProblemDetail;
|
|
19481
|
-
/**
|
|
19482
|
-
* Unauthorized — missing or invalid credentials
|
|
19483
|
-
*/
|
|
19484
|
-
401: ProblemDetail;
|
|
19485
|
-
/**
|
|
19486
|
-
* Forbidden — caller lacks access to this resource
|
|
19487
|
-
*/
|
|
19488
|
-
403: ProblemDetail;
|
|
19489
|
-
/**
|
|
19490
|
-
* Not found
|
|
19491
|
-
*/
|
|
19492
|
-
404: ProblemDetail;
|
|
19493
|
-
/**
|
|
19494
|
-
* Validation error
|
|
19495
|
-
*/
|
|
19496
|
-
422: ProblemDetail;
|
|
19497
|
-
/**
|
|
19498
|
-
* Internal server error
|
|
19499
|
-
*/
|
|
19500
|
-
500: ProblemDetail;
|
|
19501
|
-
};
|
|
19502
|
-
export type EditionInfoSettingsEditionGetError = EditionInfoSettingsEditionGetErrors[keyof EditionInfoSettingsEditionGetErrors];
|
|
19503
|
-
export type EditionInfoSettingsEditionGetResponses = {
|
|
19504
|
-
/**
|
|
19505
|
-
* Successful Response
|
|
19506
|
-
*/
|
|
19507
|
-
200: EditionInfoResponse;
|
|
19508
|
-
};
|
|
19509
|
-
export type EditionInfoSettingsEditionGetResponse = EditionInfoSettingsEditionGetResponses[keyof EditionInfoSettingsEditionGetResponses];
|
|
19510
19349
|
export type GetEnabledPluginsSettingsEnabledPluginsGetData = {
|
|
19511
19350
|
body?: never;
|
|
19512
19351
|
path?: never;
|
|
@@ -19549,46 +19388,6 @@ export type GetEnabledPluginsSettingsEnabledPluginsGetResponses = {
|
|
|
19549
19388
|
200: Array<string> | null;
|
|
19550
19389
|
};
|
|
19551
19390
|
export type GetEnabledPluginsSettingsEnabledPluginsGetResponse = GetEnabledPluginsSettingsEnabledPluginsGetResponses[keyof GetEnabledPluginsSettingsEnabledPluginsGetResponses];
|
|
19552
|
-
export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetData = {
|
|
19553
|
-
body?: never;
|
|
19554
|
-
path?: never;
|
|
19555
|
-
query?: never;
|
|
19556
|
-
url: '/settings/enterprise-tabs/';
|
|
19557
|
-
};
|
|
19558
|
-
export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetErrors = {
|
|
19559
|
-
/**
|
|
19560
|
-
* Bad request — invalid query parameters or payload
|
|
19561
|
-
*/
|
|
19562
|
-
400: ProblemDetail;
|
|
19563
|
-
/**
|
|
19564
|
-
* Unauthorized — missing or invalid credentials
|
|
19565
|
-
*/
|
|
19566
|
-
401: ProblemDetail;
|
|
19567
|
-
/**
|
|
19568
|
-
* Forbidden — caller lacks access to this resource
|
|
19569
|
-
*/
|
|
19570
|
-
403: ProblemDetail;
|
|
19571
|
-
/**
|
|
19572
|
-
* Not found
|
|
19573
|
-
*/
|
|
19574
|
-
404: ProblemDetail;
|
|
19575
|
-
/**
|
|
19576
|
-
* Validation error
|
|
19577
|
-
*/
|
|
19578
|
-
422: ProblemDetail;
|
|
19579
|
-
/**
|
|
19580
|
-
* Internal server error
|
|
19581
|
-
*/
|
|
19582
|
-
500: ProblemDetail;
|
|
19583
|
-
};
|
|
19584
|
-
export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetError = GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetErrors[keyof GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetErrors];
|
|
19585
|
-
export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponses = {
|
|
19586
|
-
/**
|
|
19587
|
-
* Successful Response
|
|
19588
|
-
*/
|
|
19589
|
-
200: EnterpriseTabsResponse;
|
|
19590
|
-
};
|
|
19591
|
-
export type GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponse = GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponses[keyof GetEnterpriseOnlyTabsSettingsEnterpriseTabsGetResponses];
|
|
19592
19391
|
export type GetFeatureFlagsSettingsFeatureFlagsGetData = {
|
|
19593
19392
|
body?: never;
|
|
19594
19393
|
path?: never;
|