@geolens/sdk 1.3.0 → 1.4.1

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.
@@ -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: string | null;
354
+ expires_at?: string | null;
339
355
  /**
340
356
  * Id
341
357
  */
342
- id: string;
358
+ id?: string | null;
343
359
  /**
344
360
  * Is Active
345
361
  */
346
- is_active: boolean;
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: string;
374
+ token?: string | null;
359
375
  };
360
376
  /**
361
377
  * AdminUserCreate
@@ -1681,6 +1697,18 @@ export type ColumnStatsResponse = {
1681
1697
  * Count
1682
1698
  */
1683
1699
  count?: number;
1700
+ /**
1701
+ * Data Type
1702
+ *
1703
+ * 'categorical' for non-numeric columns; null for numeric.
1704
+ */
1705
+ data_type?: string | null;
1706
+ /**
1707
+ * Distinct Count
1708
+ *
1709
+ * Distinct non-null value count (categorical columns only).
1710
+ */
1711
+ distinct_count?: number | null;
1684
1712
  /**
1685
1713
  * Max
1686
1714
  */
@@ -1884,12 +1912,42 @@ export type ConfigModeResponse = {
1884
1912
  * ConfigResponse
1885
1913
  */
1886
1914
  export type ConfigResponse = {
1915
+ /**
1916
+ * Allow Signup
1917
+ *
1918
+ * Whether self-serve registration is open. Alias for registration_enabled; login UI uses this to show/hide the signup link.
1919
+ */
1920
+ allow_signup?: boolean;
1887
1921
  /**
1888
1922
  * Auth Methods
1889
1923
  *
1890
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.
1891
1925
  */
1892
1926
  auth_methods?: Array<string>;
1927
+ /**
1928
+ * Demo Mode
1929
+ *
1930
+ * When true, logged-in users see a persistent demo-account banner. Default false — self-hosters see no banner.
1931
+ */
1932
+ demo_mode?: boolean;
1933
+ /**
1934
+ * Email Verification Required
1935
+ *
1936
+ * When true, new self-registered users must verify their email before logging in. Default false for back-compat-safe parsing by older clients.
1937
+ */
1938
+ email_verification_required?: boolean;
1939
+ /**
1940
+ * Landing First
1941
+ *
1942
+ * When true, unauthenticated visits to '/' are redirected to '/login' as the product landing page. Default false (search catalog is the root).
1943
+ */
1944
+ landing_first?: boolean;
1945
+ /**
1946
+ * Password Login Enabled
1947
+ *
1948
+ * When false, password login is disabled for users without manage_settings. Default true for back-compat-safe parsing by older clients.
1949
+ */
1950
+ password_login_enabled?: boolean;
1893
1951
  /**
1894
1952
  * Registration Enabled
1895
1953
  *
@@ -5148,6 +5206,92 @@ export type MetadataAssistRequest = {
5148
5206
  */
5149
5207
  dataset_id: string;
5150
5208
  };
5209
+ /**
5210
+ * NotificationStatusResponse
5211
+ *
5212
+ * Response for GET /settings/notifications/status/ (NOTIF-05 / NOTIF-06).
5213
+ *
5214
+ * Returns only boolean presence flags — never a secret value (SMTP password,
5215
+ * webhook URL, or webhook secret).
5216
+ */
5217
+ export type NotificationStatusResponse = {
5218
+ /**
5219
+ * Notifications Enabled
5220
+ *
5221
+ * Whether the NOTIFICATIONS_ENABLED master toggle is set to true.
5222
+ */
5223
+ notifications_enabled: boolean;
5224
+ /**
5225
+ * Smtp Configured
5226
+ *
5227
+ * Whether an SMTP host is configured (SMTP_HOST is set). Does not echo the host value.
5228
+ */
5229
+ smtp_configured: boolean;
5230
+ /**
5231
+ * Webhook Configured
5232
+ *
5233
+ * Whether a notification webhook URL is configured (NOTIFICATION_WEBHOOK_URL is set). Does not echo the URL.
5234
+ */
5235
+ webhook_configured: boolean;
5236
+ };
5237
+ /**
5238
+ * NotificationTestChannelResult
5239
+ *
5240
+ * Per-channel result from POST /settings/notifications/test/.
5241
+ *
5242
+ * The ``error`` field contains only the exception type name and a short
5243
+ * safe message — never the SMTP password, webhook URL, or webhook secret
5244
+ * (T-1229-09 / NOTIF-05).
5245
+ */
5246
+ export type NotificationTestChannelResult = {
5247
+ /**
5248
+ * Channel
5249
+ *
5250
+ * Channel name, e.g. 'smtp' or 'webhook'.
5251
+ */
5252
+ channel: string;
5253
+ /**
5254
+ * Error
5255
+ *
5256
+ * Safe error string (exception type name + short message) if ok=False, else null. Never contains secrets.
5257
+ */
5258
+ error?: string | null;
5259
+ /**
5260
+ * Ok
5261
+ *
5262
+ * True if the channel delivered the test notification without error.
5263
+ */
5264
+ ok: boolean;
5265
+ };
5266
+ /**
5267
+ * NotificationTestResponse
5268
+ *
5269
+ * Response for POST /settings/notifications/test/ (NOTIF-06).
5270
+ *
5271
+ * Always returns HTTP 200 — a channel delivery failure is captured in the
5272
+ * per-channel ``channels`` list rather than as a 5xx. Never contains secret
5273
+ * values (T-1229-09 / NOTIF-05).
5274
+ */
5275
+ export type NotificationTestResponse = {
5276
+ /**
5277
+ * Channels
5278
+ *
5279
+ * Per-channel delivery results. Empty when no channel is configured.
5280
+ */
5281
+ channels: Array<NotificationTestChannelResult>;
5282
+ /**
5283
+ * Message
5284
+ *
5285
+ * Human-readable summary of the test result.
5286
+ */
5287
+ message: string;
5288
+ /**
5289
+ * Sent
5290
+ *
5291
+ * True if at least one channel successfully delivered the test notification.
5292
+ */
5293
+ sent: boolean;
5294
+ };
5151
5295
  /**
5152
5296
  * OAuthProviderCreate
5153
5297
  *
@@ -5231,9 +5375,9 @@ export type OAuthProviderCreate = {
5231
5375
  /**
5232
5376
  * Provider Type
5233
5377
  *
5234
- * OAuth or SAML provider type. 'google' and 'microsoft' auto-populate the discovery URL; 'oidc' is generic OAuth/OIDC; 'saml' enables SAML SSO (requires enterprise edition).
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).
5235
5379
  */
5236
- provider_type: 'google' | 'microsoft' | 'oidc' | 'saml';
5380
+ provider_type: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github';
5237
5381
  /**
5238
5382
  * Scopes
5239
5383
  *
@@ -5514,7 +5658,7 @@ export type OAuthProviderUpdate = {
5514
5658
  *
5515
5659
  * New provider type. Rarely changed after creation.
5516
5660
  */
5517
- provider_type?: 'google' | 'microsoft' | 'oidc' | 'saml' | null;
5661
+ provider_type?: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github' | null;
5518
5662
  /**
5519
5663
  * Scopes
5520
5664
  *
@@ -5604,7 +5748,7 @@ export type OgcCollectionMetadata = {
5604
5748
  /**
5605
5749
  * Itemtype
5606
5750
  *
5607
- * Type of items in the collection. Always 'feature' for OGC API Features.
5751
+ * Type of items in the collection: 'feature' for vector feature collections, 'coverage' for raster/VRT collections (which expose tiles instead of feature items).
5608
5752
  */
5609
5753
  itemType?: string;
5610
5754
  /**
@@ -6649,6 +6793,12 @@ export type RegisterResponse = {
6649
6793
  * Message
6650
6794
  */
6651
6795
  message: string;
6796
+ /**
6797
+ * Next Step
6798
+ *
6799
+ * Post-registration step for the client to display: 'verify_email' when a verification email was (or, for a swallowed collision, would have been) sent; 'await_approval' for the admin-approval path. None on non-register responses.
6800
+ */
6801
+ next_step?: 'verify_email' | 'await_approval' | null;
6652
6802
  };
6653
6803
  /**
6654
6804
  * RelatedDatasetItem
@@ -6709,6 +6859,17 @@ export type RenameColumnRequest = {
6709
6859
  */
6710
6860
  new_name: string;
6711
6861
  };
6862
+ /**
6863
+ * ResendVerificationRequest
6864
+ */
6865
+ export type ResendVerificationRequest = {
6866
+ /**
6867
+ * Email
6868
+ *
6869
+ * Email address to resend the verification link to
6870
+ */
6871
+ email: string;
6872
+ };
6712
6873
  /**
6713
6874
  * ReservedRenameDetail
6714
6875
  */
@@ -8175,7 +8336,7 @@ export type SublayerOverride = {
8175
8336
  /**
8176
8337
  * Opacity
8177
8338
  *
8178
- * Per-sublayer opacity (0-1), or null to use the basemap default. Additive on top of BasemapConfig.opacity (the whole-basemap master opacity). IN-02 (Phase 1059 code review): this field is populated via API or a future Phase milestone. The current UI opacity slider in BasemapSublayerEditorScene routes through the legacy sublayerState path (MapBuilderPage.tsx handleSublayerOpacityChange) per D-09 ('OPACITY existing slider untouched') and does not call updateSublayerOverride. See TODO(BUILDER-SUBLAYER-PERSIST) comment at MapBuilderPage.tsx for the deferral rationale.
8339
+ * 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.
8179
8340
  */
8180
8341
  opacity?: number | null;
8181
8342
  /**
@@ -8407,6 +8568,12 @@ export type UploadConfigResponse = {
8407
8568
  * Whether presigned S3 uploads are enabled (requires `STORAGE_PROVIDER=s3`).
8408
8569
  */
8409
8570
  presigned_uploads: boolean;
8571
+ /**
8572
+ * Remaining Dataset Quota
8573
+ *
8574
+ * Datasets the caller may still create before hitting the per-user count cap, or null when no count cap is configured (unlimited). Advisory UX hint only — the cap is enforced server-side at upload.
8575
+ */
8576
+ remaining_dataset_quota?: number | null;
8410
8577
  };
8411
8578
  /**
8412
8579
  * UploadResponse
@@ -8488,6 +8655,29 @@ export type UserNameItem = {
8488
8655
  */
8489
8656
  username: string;
8490
8657
  };
8658
+ /**
8659
+ * UserQuotaUsage
8660
+ *
8661
+ * Per-user quota usage: current consumption vs configured caps.
8662
+ */
8663
+ export type UserQuotaUsage = {
8664
+ /**
8665
+ * Bytes Used
8666
+ */
8667
+ bytes_used: number;
8668
+ /**
8669
+ * Count Cap
8670
+ */
8671
+ count_cap: number;
8672
+ /**
8673
+ * Dataset Count
8674
+ */
8675
+ dataset_count: number;
8676
+ /**
8677
+ * Storage Cap
8678
+ */
8679
+ storage_cap: number;
8680
+ };
8491
8681
  /**
8492
8682
  * UserResponse
8493
8683
  */
@@ -8512,6 +8702,10 @@ export type UserResponse = {
8512
8702
  * Last Login At
8513
8703
  */
8514
8704
  last_login_at: string | null;
8705
+ /**
8706
+ * Per-user storage quota usage. Populated only on admin list responses; None when the caller did not load usage (e.g. /auth/me, single-user GET).
8707
+ */
8708
+ quota_usage?: UserQuotaUsage | null;
8515
8709
  /**
8516
8710
  * Roles
8517
8711
  *
@@ -8644,6 +8838,17 @@ export type VectorTileToken = {
8644
8838
  */
8645
8839
  sig: string;
8646
8840
  };
8841
+ /**
8842
+ * VerifyEmailRequest
8843
+ */
8844
+ export type VerifyEmailRequest = {
8845
+ /**
8846
+ * Token
8847
+ *
8848
+ * Raw opaque verification token from the email link
8849
+ */
8850
+ token: string;
8851
+ };
8647
8852
  /**
8648
8853
  * VisibilityCheckResponse
8649
8854
  */
@@ -9840,6 +10045,45 @@ export type CreateUserAdminUsersPostResponses = {
9840
10045
  201: UserResponse;
9841
10046
  };
9842
10047
  export type CreateUserAdminUsersPostResponse = CreateUserAdminUsersPostResponses[keyof CreateUserAdminUsersPostResponses];
10048
+ export type ExportUsersCsvAdminUsersExportCsvGetData = {
10049
+ body?: never;
10050
+ path?: never;
10051
+ query?: never;
10052
+ url: '/admin/users/export.csv';
10053
+ };
10054
+ export type ExportUsersCsvAdminUsersExportCsvGetErrors = {
10055
+ /**
10056
+ * Bad request — invalid query parameters or payload
10057
+ */
10058
+ 400: ProblemDetail;
10059
+ /**
10060
+ * Unauthorized — missing or invalid credentials
10061
+ */
10062
+ 401: ProblemDetail;
10063
+ /**
10064
+ * Forbidden — caller lacks access to this resource
10065
+ */
10066
+ 403: ProblemDetail;
10067
+ /**
10068
+ * Not found
10069
+ */
10070
+ 404: ProblemDetail;
10071
+ /**
10072
+ * Validation error
10073
+ */
10074
+ 422: ProblemDetail;
10075
+ /**
10076
+ * Internal server error
10077
+ */
10078
+ 500: ProblemDetail;
10079
+ };
10080
+ export type ExportUsersCsvAdminUsersExportCsvGetError = ExportUsersCsvAdminUsersExportCsvGetErrors[keyof ExportUsersCsvAdminUsersExportCsvGetErrors];
10081
+ export type ExportUsersCsvAdminUsersExportCsvGetResponses = {
10082
+ /**
10083
+ * Successful Response
10084
+ */
10085
+ 200: unknown;
10086
+ };
9843
10087
  export type ListUserNamesAdminUsersNamesGetData = {
9844
10088
  body?: never;
9845
10089
  path?: never;
@@ -10206,6 +10450,46 @@ export type RejectUserAdminUsersUserIdRejectPostResponses = {
10206
10450
  204: void;
10207
10451
  };
10208
10452
  export type RejectUserAdminUsersUserIdRejectPostResponse = RejectUserAdminUsersUserIdRejectPostResponses[keyof RejectUserAdminUsersUserIdRejectPostResponses];
10453
+ export type AiAvailabilityEndpointAiAvailabilityGetData = {
10454
+ body?: never;
10455
+ path?: never;
10456
+ query?: never;
10457
+ url: '/ai/availability/';
10458
+ };
10459
+ export type AiAvailabilityEndpointAiAvailabilityGetErrors = {
10460
+ /**
10461
+ * Bad request — invalid query parameters or payload
10462
+ */
10463
+ 400: ProblemDetail;
10464
+ /**
10465
+ * Unauthorized — missing or invalid credentials
10466
+ */
10467
+ 401: ProblemDetail;
10468
+ /**
10469
+ * Forbidden — caller lacks access to this resource
10470
+ */
10471
+ 403: ProblemDetail;
10472
+ /**
10473
+ * Not found
10474
+ */
10475
+ 404: ProblemDetail;
10476
+ /**
10477
+ * Validation error
10478
+ */
10479
+ 422: ProblemDetail;
10480
+ /**
10481
+ * Internal server error
10482
+ */
10483
+ 500: ProblemDetail;
10484
+ };
10485
+ export type AiAvailabilityEndpointAiAvailabilityGetError = AiAvailabilityEndpointAiAvailabilityGetErrors[keyof AiAvailabilityEndpointAiAvailabilityGetErrors];
10486
+ export type AiAvailabilityEndpointAiAvailabilityGetResponses = {
10487
+ /**
10488
+ * Successful Response
10489
+ */
10490
+ 200: AiAvailabilityResponse;
10491
+ };
10492
+ export type AiAvailabilityEndpointAiAvailabilityGetResponse = AiAvailabilityEndpointAiAvailabilityGetResponses[keyof AiAvailabilityEndpointAiAvailabilityGetResponses];
10209
10493
  export type ChatEndpointAiChatPostData = {
10210
10494
  body: ChatRequest;
10211
10495
  path?: never;
@@ -10997,6 +11281,46 @@ export type MePermissionsAuthMePermissionsGetResponses = {
10997
11281
  200: PermissionsResponse;
10998
11282
  };
10999
11283
  export type MePermissionsAuthMePermissionsGetResponse = MePermissionsAuthMePermissionsGetResponses[keyof MePermissionsAuthMePermissionsGetResponses];
11284
+ export type MeUsageAuthMeUsageGetData = {
11285
+ body?: never;
11286
+ path?: never;
11287
+ query?: never;
11288
+ url: '/auth/me/usage/';
11289
+ };
11290
+ export type MeUsageAuthMeUsageGetErrors = {
11291
+ /**
11292
+ * Bad request — invalid query parameters or payload
11293
+ */
11294
+ 400: ProblemDetail;
11295
+ /**
11296
+ * Unauthorized — missing or invalid credentials
11297
+ */
11298
+ 401: ProblemDetail;
11299
+ /**
11300
+ * Forbidden — caller lacks access to this resource
11301
+ */
11302
+ 403: ProblemDetail;
11303
+ /**
11304
+ * Not found
11305
+ */
11306
+ 404: ProblemDetail;
11307
+ /**
11308
+ * Validation error
11309
+ */
11310
+ 422: ProblemDetail;
11311
+ /**
11312
+ * Internal server error
11313
+ */
11314
+ 500: ProblemDetail;
11315
+ };
11316
+ export type MeUsageAuthMeUsageGetError = MeUsageAuthMeUsageGetErrors[keyof MeUsageAuthMeUsageGetErrors];
11317
+ export type MeUsageAuthMeUsageGetResponses = {
11318
+ /**
11319
+ * Successful Response
11320
+ */
11321
+ 200: UserQuotaUsage;
11322
+ };
11323
+ export type MeUsageAuthMeUsageGetResponse = MeUsageAuthMeUsageGetResponses[keyof MeUsageAuthMeUsageGetResponses];
11000
11324
  export type ListPublicProvidersAuthOauthProvidersGetData = {
11001
11325
  body?: never;
11002
11326
  path?: never;
@@ -11201,6 +11525,86 @@ export type RegisterAuthRegisterPostResponses = {
11201
11525
  201: RegisterResponse;
11202
11526
  };
11203
11527
  export type RegisterAuthRegisterPostResponse = RegisterAuthRegisterPostResponses[keyof RegisterAuthRegisterPostResponses];
11528
+ export type ResendVerificationAuthResendVerificationPostData = {
11529
+ body: ResendVerificationRequest;
11530
+ path?: never;
11531
+ query?: never;
11532
+ url: '/auth/resend-verification/';
11533
+ };
11534
+ export type ResendVerificationAuthResendVerificationPostErrors = {
11535
+ /**
11536
+ * Bad request — invalid query parameters or payload
11537
+ */
11538
+ 400: ProblemDetail;
11539
+ /**
11540
+ * Unauthorized — missing or invalid credentials
11541
+ */
11542
+ 401: ProblemDetail;
11543
+ /**
11544
+ * Forbidden — caller lacks access to this resource
11545
+ */
11546
+ 403: ProblemDetail;
11547
+ /**
11548
+ * Not found
11549
+ */
11550
+ 404: ProblemDetail;
11551
+ /**
11552
+ * Validation error
11553
+ */
11554
+ 422: ProblemDetail;
11555
+ /**
11556
+ * Internal server error
11557
+ */
11558
+ 500: ProblemDetail;
11559
+ };
11560
+ export type ResendVerificationAuthResendVerificationPostError = ResendVerificationAuthResendVerificationPostErrors[keyof ResendVerificationAuthResendVerificationPostErrors];
11561
+ export type ResendVerificationAuthResendVerificationPostResponses = {
11562
+ /**
11563
+ * Successful Response
11564
+ */
11565
+ 200: RegisterResponse;
11566
+ };
11567
+ export type ResendVerificationAuthResendVerificationPostResponse = ResendVerificationAuthResendVerificationPostResponses[keyof ResendVerificationAuthResendVerificationPostResponses];
11568
+ export type VerifyEmailAuthVerifyEmailPostData = {
11569
+ body: VerifyEmailRequest;
11570
+ path?: never;
11571
+ query?: never;
11572
+ url: '/auth/verify-email/';
11573
+ };
11574
+ export type VerifyEmailAuthVerifyEmailPostErrors = {
11575
+ /**
11576
+ * Bad request — invalid query parameters or payload
11577
+ */
11578
+ 400: ProblemDetail;
11579
+ /**
11580
+ * Unauthorized — missing or invalid credentials
11581
+ */
11582
+ 401: ProblemDetail;
11583
+ /**
11584
+ * Forbidden — caller lacks access to this resource
11585
+ */
11586
+ 403: ProblemDetail;
11587
+ /**
11588
+ * Not found
11589
+ */
11590
+ 404: ProblemDetail;
11591
+ /**
11592
+ * Validation error
11593
+ */
11594
+ 422: ProblemDetail;
11595
+ /**
11596
+ * Internal server error
11597
+ */
11598
+ 500: ProblemDetail;
11599
+ };
11600
+ export type VerifyEmailAuthVerifyEmailPostError = VerifyEmailAuthVerifyEmailPostErrors[keyof VerifyEmailAuthVerifyEmailPostErrors];
11601
+ export type VerifyEmailAuthVerifyEmailPostResponses = {
11602
+ /**
11603
+ * Successful Response
11604
+ */
11605
+ 200: RegisterResponse;
11606
+ };
11607
+ export type VerifyEmailAuthVerifyEmailPostResponse = VerifyEmailAuthVerifyEmailPostResponses[keyof VerifyEmailAuthVerifyEmailPostResponses];
11204
11608
  export type ListCollectionsEndpointCatalogCollectionsGetData = {
11205
11609
  body?: never;
11206
11610
  path?: never;
@@ -15790,9 +16194,11 @@ export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors = {
15790
16194
  export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetError = GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors[keyof GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors];
15791
16195
  export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses = {
15792
16196
  /**
16197
+ * Response Get Job Status By Dataset Jobs By Dataset Dataset Id Get
16198
+ *
15793
16199
  * Successful Response
15794
16200
  */
15795
- 200: JobStatusResponse;
16201
+ 200: JobStatusResponse | null;
15796
16202
  };
15797
16203
  export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponse = GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses[keyof GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses];
15798
16204
  export type CleanupStaleJobsJobsCleanupStalePostData = {
@@ -19319,6 +19725,86 @@ export type GetMapDefaultsSettingsMapDefaultsGetResponses = {
19319
19725
  200: MapDefaultsResponse;
19320
19726
  };
19321
19727
  export type GetMapDefaultsSettingsMapDefaultsGetResponse = GetMapDefaultsSettingsMapDefaultsGetResponses[keyof GetMapDefaultsSettingsMapDefaultsGetResponses];
19728
+ export type GetNotificationStatusSettingsNotificationsStatusGetData = {
19729
+ body?: never;
19730
+ path?: never;
19731
+ query?: never;
19732
+ url: '/settings/notifications/status/';
19733
+ };
19734
+ export type GetNotificationStatusSettingsNotificationsStatusGetErrors = {
19735
+ /**
19736
+ * Bad request — invalid query parameters or payload
19737
+ */
19738
+ 400: ProblemDetail;
19739
+ /**
19740
+ * Unauthorized — missing or invalid credentials
19741
+ */
19742
+ 401: ProblemDetail;
19743
+ /**
19744
+ * Forbidden — caller lacks access to this resource
19745
+ */
19746
+ 403: ProblemDetail;
19747
+ /**
19748
+ * Not found
19749
+ */
19750
+ 404: ProblemDetail;
19751
+ /**
19752
+ * Validation error
19753
+ */
19754
+ 422: ProblemDetail;
19755
+ /**
19756
+ * Internal server error
19757
+ */
19758
+ 500: ProblemDetail;
19759
+ };
19760
+ export type GetNotificationStatusSettingsNotificationsStatusGetError = GetNotificationStatusSettingsNotificationsStatusGetErrors[keyof GetNotificationStatusSettingsNotificationsStatusGetErrors];
19761
+ export type GetNotificationStatusSettingsNotificationsStatusGetResponses = {
19762
+ /**
19763
+ * Successful Response
19764
+ */
19765
+ 200: NotificationStatusResponse;
19766
+ };
19767
+ export type GetNotificationStatusSettingsNotificationsStatusGetResponse = GetNotificationStatusSettingsNotificationsStatusGetResponses[keyof GetNotificationStatusSettingsNotificationsStatusGetResponses];
19768
+ export type SendTestNotificationSettingsNotificationsTestPostData = {
19769
+ body?: never;
19770
+ path?: never;
19771
+ query?: never;
19772
+ url: '/settings/notifications/test/';
19773
+ };
19774
+ export type SendTestNotificationSettingsNotificationsTestPostErrors = {
19775
+ /**
19776
+ * Bad request — invalid query parameters or payload
19777
+ */
19778
+ 400: ProblemDetail;
19779
+ /**
19780
+ * Unauthorized — missing or invalid credentials
19781
+ */
19782
+ 401: ProblemDetail;
19783
+ /**
19784
+ * Forbidden — caller lacks access to this resource
19785
+ */
19786
+ 403: ProblemDetail;
19787
+ /**
19788
+ * Not found
19789
+ */
19790
+ 404: ProblemDetail;
19791
+ /**
19792
+ * Validation error
19793
+ */
19794
+ 422: ProblemDetail;
19795
+ /**
19796
+ * Internal server error
19797
+ */
19798
+ 500: ProblemDetail;
19799
+ };
19800
+ export type SendTestNotificationSettingsNotificationsTestPostError = SendTestNotificationSettingsNotificationsTestPostErrors[keyof SendTestNotificationSettingsNotificationsTestPostErrors];
19801
+ export type SendTestNotificationSettingsNotificationsTestPostResponses = {
19802
+ /**
19803
+ * Successful Response
19804
+ */
19805
+ 200: NotificationTestResponse;
19806
+ };
19807
+ export type SendTestNotificationSettingsNotificationsTestPostResponse = SendTestNotificationSettingsNotificationsTestPostResponses[keyof SendTestNotificationSettingsNotificationsTestPostResponses];
19322
19808
  export type ListOauthProvidersSettingsOauthProvidersGetData = {
19323
19809
  body?: never;
19324
19810
  path?: never;