@geolens/sdk 1.2.4 → 1.4.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.
Files changed (44) hide show
  1. package/README.md +2 -1
  2. package/dist/auth.d.ts +5 -2
  3. package/dist/auth.d.ts.map +1 -1
  4. package/dist/auth.js +15 -3
  5. package/dist/auth.js.map +1 -1
  6. package/dist/client/client/client.gen.d.ts +1 -1
  7. package/dist/client/client/client.gen.d.ts.map +1 -1
  8. package/dist/client/client/client.gen.js +3 -3
  9. package/dist/client/client/client.gen.js.map +1 -1
  10. package/dist/client/client/index.d.ts +8 -8
  11. package/dist/client/client/index.d.ts.map +1 -1
  12. package/dist/client/client/index.js +5 -5
  13. package/dist/client/client/index.js.map +1 -1
  14. package/dist/client/client/types.gen.d.ts +4 -4
  15. package/dist/client/client/types.gen.d.ts.map +1 -1
  16. package/dist/client/client/utils.gen.d.ts +2 -2
  17. package/dist/client/client/utils.gen.d.ts.map +1 -1
  18. package/dist/client/client/utils.gen.js +4 -4
  19. package/dist/client/client/utils.gen.js.map +1 -1
  20. package/dist/client/client.gen.d.ts +3 -3
  21. package/dist/client/client.gen.d.ts.map +1 -1
  22. package/dist/client/client.gen.js +1 -1
  23. package/dist/client/client.gen.js.map +1 -1
  24. package/dist/client/core/bodySerializer.gen.d.ts +1 -1
  25. package/dist/client/core/bodySerializer.gen.d.ts.map +1 -1
  26. package/dist/client/core/serverSentEvents.gen.d.ts +1 -1
  27. package/dist/client/core/serverSentEvents.gen.d.ts.map +1 -1
  28. package/dist/client/core/types.gen.d.ts +2 -2
  29. package/dist/client/core/types.gen.d.ts.map +1 -1
  30. package/dist/client/core/utils.gen.d.ts +1 -1
  31. package/dist/client/core/utils.gen.d.ts.map +1 -1
  32. package/dist/client/core/utils.gen.js +1 -1
  33. package/dist/client/core/utils.gen.js.map +1 -1
  34. package/dist/client/index.d.ts +2 -2
  35. package/dist/client/index.d.ts.map +1 -1
  36. package/dist/client/index.js +1 -1
  37. package/dist/client/index.js.map +1 -1
  38. package/dist/client/sdk.gen.d.ts +353 -247
  39. package/dist/client/sdk.gen.d.ts.map +1 -1
  40. package/dist/client/sdk.gen.js +170 -10
  41. package/dist/client/sdk.gen.js.map +1 -1
  42. package/dist/client/types.gen.d.ts +692 -9
  43. package/dist/client/types.gen.d.ts.map +1 -1
  44. package/package.json +4 -2
@@ -1681,6 +1681,18 @@ export type ColumnStatsResponse = {
1681
1681
  * Count
1682
1682
  */
1683
1683
  count?: number;
1684
+ /**
1685
+ * Data Type
1686
+ *
1687
+ * 'categorical' for non-numeric columns; null for numeric.
1688
+ */
1689
+ data_type?: string | null;
1690
+ /**
1691
+ * Distinct Count
1692
+ *
1693
+ * Distinct non-null value count (categorical columns only).
1694
+ */
1695
+ distinct_count?: number | null;
1684
1696
  /**
1685
1697
  * Max
1686
1698
  */
@@ -1697,6 +1709,10 @@ export type ColumnStatsResponse = {
1697
1709
  * Quantiles
1698
1710
  */
1699
1711
  quantiles?: Array<number>;
1712
+ /**
1713
+ * Stddev
1714
+ */
1715
+ stddev?: number | null;
1700
1716
  };
1701
1717
  /**
1702
1718
  * ColumnValuesResponse
@@ -1880,12 +1896,42 @@ export type ConfigModeResponse = {
1880
1896
  * ConfigResponse
1881
1897
  */
1882
1898
  export type ConfigResponse = {
1899
+ /**
1900
+ * Allow Signup
1901
+ *
1902
+ * Whether self-serve registration is open. Alias for registration_enabled; login UI uses this to show/hide the signup link.
1903
+ */
1904
+ allow_signup?: boolean;
1883
1905
  /**
1884
1906
  * Auth Methods
1885
1907
  *
1886
1908
  * 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.
1887
1909
  */
1888
1910
  auth_methods?: Array<string>;
1911
+ /**
1912
+ * Demo Mode
1913
+ *
1914
+ * When true, logged-in users see a persistent demo-account banner. Default false — self-hosters see no banner.
1915
+ */
1916
+ demo_mode?: boolean;
1917
+ /**
1918
+ * Email Verification Required
1919
+ *
1920
+ * When true, new self-registered users must verify their email before logging in. Default false for back-compat-safe parsing by older clients.
1921
+ */
1922
+ email_verification_required?: boolean;
1923
+ /**
1924
+ * Landing First
1925
+ *
1926
+ * When true, unauthenticated visits to '/' are redirected to '/login' as the product landing page. Default false (search catalog is the root).
1927
+ */
1928
+ landing_first?: boolean;
1929
+ /**
1930
+ * Password Login Enabled
1931
+ *
1932
+ * When false, password login is disabled for users without manage_settings. Default true for back-compat-safe parsing by older clients.
1933
+ */
1934
+ password_login_enabled?: boolean;
1889
1935
  /**
1890
1936
  * Registration Enabled
1891
1937
  *
@@ -2312,6 +2358,26 @@ export type DatasetRelationshipCreate = {
2312
2358
  */
2313
2359
  target_dataset_id: string;
2314
2360
  };
2361
+ /**
2362
+ * DatasetRelationshipListResponse
2363
+ *
2364
+ * Paginated list envelope for dataset FK relationships (GAP-033).
2365
+ *
2366
+ * Mirrors the ``{<entity>: [...], total: int}`` convention used by every other
2367
+ * paginated list endpoint (e.g. AttributeMetadataListResponse,
2368
+ * VrtGenerationListResponse) so callers can detect whether more pages exist.
2369
+ * ``total`` is the count of *visible* relationships before skip/limit.
2370
+ */
2371
+ export type DatasetRelationshipListResponse = {
2372
+ /**
2373
+ * Relationships
2374
+ */
2375
+ relationships: Array<DatasetRelationshipResponse>;
2376
+ /**
2377
+ * Total
2378
+ */
2379
+ total: number;
2380
+ };
2315
2381
  /**
2316
2382
  * DatasetRelationshipResponse
2317
2383
  */
@@ -3029,6 +3095,10 @@ export type DuplicateMapResponse = {
3029
3095
  * Layers
3030
3096
  */
3031
3097
  layers: Array<MapLayerResponse>;
3098
+ /**
3099
+ * Legend Title
3100
+ */
3101
+ legend_title?: string | null;
3032
3102
  /**
3033
3103
  * Name
3034
3104
  */
@@ -3086,6 +3156,12 @@ export type EditionInfoResponse = {
3086
3156
  * List of feature flags enabled for this edition.
3087
3157
  */
3088
3158
  features: Array<string>;
3159
+ /**
3160
+ * Tenancy Mode
3161
+ *
3162
+ * Tenancy mode: 'single_tenant' or 'multi_tenant'.
3163
+ */
3164
+ tenancy_mode?: string;
3089
3165
  };
3090
3166
  /**
3091
3167
  * EmbedTokenCreate
@@ -3602,9 +3678,15 @@ export type ImportResult = {
3602
3678
  /**
3603
3679
  * Settings Skipped
3604
3680
  *
3605
- * Number of settings skipped (no change or unknown key).
3681
+ * Number of settings skipped (no change, unknown key, or enterprise-only key in community edition).
3606
3682
  */
3607
3683
  settings_skipped: number;
3684
+ /**
3685
+ * Settings Skipped Enterprise
3686
+ *
3687
+ * Names of enterprise-only setting keys that were skipped because the caller is on the community edition (BUG-011). Empty on enterprise edition.
3688
+ */
3689
+ settings_skipped_enterprise?: Array<string>;
3608
3690
  };
3609
3691
  /**
3610
3692
  * InfrastructureConfig
@@ -4782,6 +4864,10 @@ export type MapResponse = {
4782
4864
  * Layers
4783
4865
  */
4784
4866
  layers: Array<MapLayerResponse>;
4867
+ /**
4868
+ * Legend Title
4869
+ */
4870
+ legend_title?: string | null;
4785
4871
  /**
4786
4872
  * Name
4787
4873
  */
@@ -5042,6 +5128,12 @@ export type MapUpdate = {
5042
5128
  * Full replacement layer list (max 200 layers)
5043
5129
  */
5044
5130
  layers?: Array<MapLayerInput> | null;
5131
+ /**
5132
+ * Legend Title
5133
+ *
5134
+ * Custom map-level legend title. Null/empty leaves the legend without a heading override (ENH-06).
5135
+ */
5136
+ legend_title?: string | null;
5045
5137
  /**
5046
5138
  * Name
5047
5139
  */
@@ -5098,6 +5190,92 @@ export type MetadataAssistRequest = {
5098
5190
  */
5099
5191
  dataset_id: string;
5100
5192
  };
5193
+ /**
5194
+ * NotificationStatusResponse
5195
+ *
5196
+ * Response for GET /settings/notifications/status/ (NOTIF-05 / NOTIF-06).
5197
+ *
5198
+ * Returns only boolean presence flags — never a secret value (SMTP password,
5199
+ * webhook URL, or webhook secret).
5200
+ */
5201
+ export type NotificationStatusResponse = {
5202
+ /**
5203
+ * Notifications Enabled
5204
+ *
5205
+ * Whether the NOTIFICATIONS_ENABLED master toggle is set to true.
5206
+ */
5207
+ notifications_enabled: boolean;
5208
+ /**
5209
+ * Smtp Configured
5210
+ *
5211
+ * Whether an SMTP host is configured (SMTP_HOST is set). Does not echo the host value.
5212
+ */
5213
+ smtp_configured: boolean;
5214
+ /**
5215
+ * Webhook Configured
5216
+ *
5217
+ * Whether a notification webhook URL is configured (NOTIFICATION_WEBHOOK_URL is set). Does not echo the URL.
5218
+ */
5219
+ webhook_configured: boolean;
5220
+ };
5221
+ /**
5222
+ * NotificationTestChannelResult
5223
+ *
5224
+ * Per-channel result from POST /settings/notifications/test/.
5225
+ *
5226
+ * The ``error`` field contains only the exception type name and a short
5227
+ * safe message — never the SMTP password, webhook URL, or webhook secret
5228
+ * (T-1229-09 / NOTIF-05).
5229
+ */
5230
+ export type NotificationTestChannelResult = {
5231
+ /**
5232
+ * Channel
5233
+ *
5234
+ * Channel name, e.g. 'smtp' or 'webhook'.
5235
+ */
5236
+ channel: string;
5237
+ /**
5238
+ * Error
5239
+ *
5240
+ * Safe error string (exception type name + short message) if ok=False, else null. Never contains secrets.
5241
+ */
5242
+ error?: string | null;
5243
+ /**
5244
+ * Ok
5245
+ *
5246
+ * True if the channel delivered the test notification without error.
5247
+ */
5248
+ ok: boolean;
5249
+ };
5250
+ /**
5251
+ * NotificationTestResponse
5252
+ *
5253
+ * Response for POST /settings/notifications/test/ (NOTIF-06).
5254
+ *
5255
+ * Always returns HTTP 200 — a channel delivery failure is captured in the
5256
+ * per-channel ``channels`` list rather than as a 5xx. Never contains secret
5257
+ * values (T-1229-09 / NOTIF-05).
5258
+ */
5259
+ export type NotificationTestResponse = {
5260
+ /**
5261
+ * Channels
5262
+ *
5263
+ * Per-channel delivery results. Empty when no channel is configured.
5264
+ */
5265
+ channels: Array<NotificationTestChannelResult>;
5266
+ /**
5267
+ * Message
5268
+ *
5269
+ * Human-readable summary of the test result.
5270
+ */
5271
+ message: string;
5272
+ /**
5273
+ * Sent
5274
+ *
5275
+ * True if at least one channel successfully delivered the test notification.
5276
+ */
5277
+ sent: boolean;
5278
+ };
5101
5279
  /**
5102
5280
  * OAuthProviderCreate
5103
5281
  *
@@ -5181,9 +5359,9 @@ export type OAuthProviderCreate = {
5181
5359
  /**
5182
5360
  * Provider Type
5183
5361
  *
5184
- * 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).
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' enables SAML SSO (requires enterprise edition).
5185
5363
  */
5186
- provider_type: 'google' | 'microsoft' | 'oidc' | 'saml';
5364
+ provider_type: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github';
5187
5365
  /**
5188
5366
  * Scopes
5189
5367
  *
@@ -5464,7 +5642,7 @@ export type OAuthProviderUpdate = {
5464
5642
  *
5465
5643
  * New provider type. Rarely changed after creation.
5466
5644
  */
5467
- provider_type?: 'google' | 'microsoft' | 'oidc' | 'saml' | null;
5645
+ provider_type?: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github' | null;
5468
5646
  /**
5469
5647
  * Scopes
5470
5648
  *
@@ -5554,7 +5732,7 @@ export type OgcCollectionMetadata = {
5554
5732
  /**
5555
5733
  * Itemtype
5556
5734
  *
5557
- * Type of items in the collection. Always 'feature' for OGC API Features.
5735
+ * Type of items in the collection: 'feature' for vector feature collections, 'coverage' for raster/VRT collections (which expose tiles instead of feature items).
5558
5736
  */
5559
5737
  itemType?: string;
5560
5738
  /**
@@ -6599,6 +6777,12 @@ export type RegisterResponse = {
6599
6777
  * Message
6600
6778
  */
6601
6779
  message: string;
6780
+ /**
6781
+ * Next Step
6782
+ *
6783
+ * 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.
6784
+ */
6785
+ next_step?: 'verify_email' | 'await_approval' | null;
6602
6786
  };
6603
6787
  /**
6604
6788
  * RelatedDatasetItem
@@ -6659,6 +6843,17 @@ export type RenameColumnRequest = {
6659
6843
  */
6660
6844
  new_name: string;
6661
6845
  };
6846
+ /**
6847
+ * ResendVerificationRequest
6848
+ */
6849
+ export type ResendVerificationRequest = {
6850
+ /**
6851
+ * Email
6852
+ *
6853
+ * Email address to resend the verification link to
6854
+ */
6855
+ email: string;
6856
+ };
6662
6857
  /**
6663
6858
  * ReservedRenameDetail
6664
6859
  */
@@ -7356,6 +7551,10 @@ export type SharedMapResponse = {
7356
7551
  * Layers
7357
7552
  */
7358
7553
  layers: Array<SharedLayerResponse>;
7554
+ /**
7555
+ * Legend Title
7556
+ */
7557
+ legend_title?: string | null;
7359
7558
  /**
7360
7559
  * Name
7361
7560
  */
@@ -8353,6 +8552,12 @@ export type UploadConfigResponse = {
8353
8552
  * Whether presigned S3 uploads are enabled (requires `STORAGE_PROVIDER=s3`).
8354
8553
  */
8355
8554
  presigned_uploads: boolean;
8555
+ /**
8556
+ * Remaining Dataset Quota
8557
+ *
8558
+ * 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.
8559
+ */
8560
+ remaining_dataset_quota?: number | null;
8356
8561
  };
8357
8562
  /**
8358
8563
  * UploadResponse
@@ -8434,6 +8639,29 @@ export type UserNameItem = {
8434
8639
  */
8435
8640
  username: string;
8436
8641
  };
8642
+ /**
8643
+ * UserQuotaUsage
8644
+ *
8645
+ * Per-user quota usage: current consumption vs configured caps.
8646
+ */
8647
+ export type UserQuotaUsage = {
8648
+ /**
8649
+ * Bytes Used
8650
+ */
8651
+ bytes_used: number;
8652
+ /**
8653
+ * Count Cap
8654
+ */
8655
+ count_cap: number;
8656
+ /**
8657
+ * Dataset Count
8658
+ */
8659
+ dataset_count: number;
8660
+ /**
8661
+ * Storage Cap
8662
+ */
8663
+ storage_cap: number;
8664
+ };
8437
8665
  /**
8438
8666
  * UserResponse
8439
8667
  */
@@ -8458,6 +8686,10 @@ export type UserResponse = {
8458
8686
  * Last Login At
8459
8687
  */
8460
8688
  last_login_at: string | null;
8689
+ /**
8690
+ * 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).
8691
+ */
8692
+ quota_usage?: UserQuotaUsage | null;
8461
8693
  /**
8462
8694
  * Roles
8463
8695
  *
@@ -8590,6 +8822,17 @@ export type VectorTileToken = {
8590
8822
  */
8591
8823
  sig: string;
8592
8824
  };
8825
+ /**
8826
+ * VerifyEmailRequest
8827
+ */
8828
+ export type VerifyEmailRequest = {
8829
+ /**
8830
+ * Token
8831
+ *
8832
+ * Raw opaque verification token from the email link
8833
+ */
8834
+ token: string;
8835
+ };
8593
8836
  /**
8594
8837
  * VisibilityCheckResponse
8595
8838
  */
@@ -9786,6 +10029,45 @@ export type CreateUserAdminUsersPostResponses = {
9786
10029
  201: UserResponse;
9787
10030
  };
9788
10031
  export type CreateUserAdminUsersPostResponse = CreateUserAdminUsersPostResponses[keyof CreateUserAdminUsersPostResponses];
10032
+ export type ExportUsersCsvAdminUsersExportCsvGetData = {
10033
+ body?: never;
10034
+ path?: never;
10035
+ query?: never;
10036
+ url: '/admin/users/export.csv';
10037
+ };
10038
+ export type ExportUsersCsvAdminUsersExportCsvGetErrors = {
10039
+ /**
10040
+ * Bad request — invalid query parameters or payload
10041
+ */
10042
+ 400: ProblemDetail;
10043
+ /**
10044
+ * Unauthorized — missing or invalid credentials
10045
+ */
10046
+ 401: ProblemDetail;
10047
+ /**
10048
+ * Forbidden — caller lacks access to this resource
10049
+ */
10050
+ 403: ProblemDetail;
10051
+ /**
10052
+ * Not found
10053
+ */
10054
+ 404: ProblemDetail;
10055
+ /**
10056
+ * Validation error
10057
+ */
10058
+ 422: ProblemDetail;
10059
+ /**
10060
+ * Internal server error
10061
+ */
10062
+ 500: ProblemDetail;
10063
+ };
10064
+ export type ExportUsersCsvAdminUsersExportCsvGetError = ExportUsersCsvAdminUsersExportCsvGetErrors[keyof ExportUsersCsvAdminUsersExportCsvGetErrors];
10065
+ export type ExportUsersCsvAdminUsersExportCsvGetResponses = {
10066
+ /**
10067
+ * Successful Response
10068
+ */
10069
+ 200: unknown;
10070
+ };
9789
10071
  export type ListUserNamesAdminUsersNamesGetData = {
9790
10072
  body?: never;
9791
10073
  path?: never;
@@ -10943,6 +11225,46 @@ export type MePermissionsAuthMePermissionsGetResponses = {
10943
11225
  200: PermissionsResponse;
10944
11226
  };
10945
11227
  export type MePermissionsAuthMePermissionsGetResponse = MePermissionsAuthMePermissionsGetResponses[keyof MePermissionsAuthMePermissionsGetResponses];
11228
+ export type MeUsageAuthMeUsageGetData = {
11229
+ body?: never;
11230
+ path?: never;
11231
+ query?: never;
11232
+ url: '/auth/me/usage/';
11233
+ };
11234
+ export type MeUsageAuthMeUsageGetErrors = {
11235
+ /**
11236
+ * Bad request — invalid query parameters or payload
11237
+ */
11238
+ 400: ProblemDetail;
11239
+ /**
11240
+ * Unauthorized — missing or invalid credentials
11241
+ */
11242
+ 401: ProblemDetail;
11243
+ /**
11244
+ * Forbidden — caller lacks access to this resource
11245
+ */
11246
+ 403: ProblemDetail;
11247
+ /**
11248
+ * Not found
11249
+ */
11250
+ 404: ProblemDetail;
11251
+ /**
11252
+ * Validation error
11253
+ */
11254
+ 422: ProblemDetail;
11255
+ /**
11256
+ * Internal server error
11257
+ */
11258
+ 500: ProblemDetail;
11259
+ };
11260
+ export type MeUsageAuthMeUsageGetError = MeUsageAuthMeUsageGetErrors[keyof MeUsageAuthMeUsageGetErrors];
11261
+ export type MeUsageAuthMeUsageGetResponses = {
11262
+ /**
11263
+ * Successful Response
11264
+ */
11265
+ 200: UserQuotaUsage;
11266
+ };
11267
+ export type MeUsageAuthMeUsageGetResponse = MeUsageAuthMeUsageGetResponses[keyof MeUsageAuthMeUsageGetResponses];
10946
11268
  export type ListPublicProvidersAuthOauthProvidersGetData = {
10947
11269
  body?: never;
10948
11270
  path?: never;
@@ -11147,6 +11469,86 @@ export type RegisterAuthRegisterPostResponses = {
11147
11469
  201: RegisterResponse;
11148
11470
  };
11149
11471
  export type RegisterAuthRegisterPostResponse = RegisterAuthRegisterPostResponses[keyof RegisterAuthRegisterPostResponses];
11472
+ export type ResendVerificationAuthResendVerificationPostData = {
11473
+ body: ResendVerificationRequest;
11474
+ path?: never;
11475
+ query?: never;
11476
+ url: '/auth/resend-verification/';
11477
+ };
11478
+ export type ResendVerificationAuthResendVerificationPostErrors = {
11479
+ /**
11480
+ * Bad request — invalid query parameters or payload
11481
+ */
11482
+ 400: ProblemDetail;
11483
+ /**
11484
+ * Unauthorized — missing or invalid credentials
11485
+ */
11486
+ 401: ProblemDetail;
11487
+ /**
11488
+ * Forbidden — caller lacks access to this resource
11489
+ */
11490
+ 403: ProblemDetail;
11491
+ /**
11492
+ * Not found
11493
+ */
11494
+ 404: ProblemDetail;
11495
+ /**
11496
+ * Validation error
11497
+ */
11498
+ 422: ProblemDetail;
11499
+ /**
11500
+ * Internal server error
11501
+ */
11502
+ 500: ProblemDetail;
11503
+ };
11504
+ export type ResendVerificationAuthResendVerificationPostError = ResendVerificationAuthResendVerificationPostErrors[keyof ResendVerificationAuthResendVerificationPostErrors];
11505
+ export type ResendVerificationAuthResendVerificationPostResponses = {
11506
+ /**
11507
+ * Successful Response
11508
+ */
11509
+ 200: RegisterResponse;
11510
+ };
11511
+ export type ResendVerificationAuthResendVerificationPostResponse = ResendVerificationAuthResendVerificationPostResponses[keyof ResendVerificationAuthResendVerificationPostResponses];
11512
+ export type VerifyEmailAuthVerifyEmailPostData = {
11513
+ body: VerifyEmailRequest;
11514
+ path?: never;
11515
+ query?: never;
11516
+ url: '/auth/verify-email/';
11517
+ };
11518
+ export type VerifyEmailAuthVerifyEmailPostErrors = {
11519
+ /**
11520
+ * Bad request — invalid query parameters or payload
11521
+ */
11522
+ 400: ProblemDetail;
11523
+ /**
11524
+ * Unauthorized — missing or invalid credentials
11525
+ */
11526
+ 401: ProblemDetail;
11527
+ /**
11528
+ * Forbidden — caller lacks access to this resource
11529
+ */
11530
+ 403: ProblemDetail;
11531
+ /**
11532
+ * Not found
11533
+ */
11534
+ 404: ProblemDetail;
11535
+ /**
11536
+ * Validation error
11537
+ */
11538
+ 422: ProblemDetail;
11539
+ /**
11540
+ * Internal server error
11541
+ */
11542
+ 500: ProblemDetail;
11543
+ };
11544
+ export type VerifyEmailAuthVerifyEmailPostError = VerifyEmailAuthVerifyEmailPostErrors[keyof VerifyEmailAuthVerifyEmailPostErrors];
11545
+ export type VerifyEmailAuthVerifyEmailPostResponses = {
11546
+ /**
11547
+ * Successful Response
11548
+ */
11549
+ 200: RegisterResponse;
11550
+ };
11551
+ export type VerifyEmailAuthVerifyEmailPostResponse = VerifyEmailAuthVerifyEmailPostResponses[keyof VerifyEmailAuthVerifyEmailPostResponses];
11150
11552
  export type ListCollectionsEndpointCatalogCollectionsGetData = {
11151
11553
  body?: never;
11152
11554
  path?: never;
@@ -12460,6 +12862,99 @@ export type GetDcatCatalogDatasetsDcatGetResponses = {
12460
12862
  */
12461
12863
  200: unknown;
12462
12864
  };
12865
+ export type ValidateDcat3CatalogDatasetsDcatValidationGetData = {
12866
+ body?: never;
12867
+ path?: never;
12868
+ query?: never;
12869
+ url: '/datasets/dcat/validation/';
12870
+ };
12871
+ export type ValidateDcat3CatalogDatasetsDcatValidationGetErrors = {
12872
+ /**
12873
+ * Bad request — invalid query parameters or payload
12874
+ */
12875
+ 400: ProblemDetail;
12876
+ /**
12877
+ * Not found
12878
+ */
12879
+ 404: ProblemDetail;
12880
+ /**
12881
+ * Validation error
12882
+ */
12883
+ 422: ProblemDetail;
12884
+ /**
12885
+ * Internal server error
12886
+ */
12887
+ 500: ProblemDetail;
12888
+ };
12889
+ export type ValidateDcat3CatalogDatasetsDcatValidationGetError = ValidateDcat3CatalogDatasetsDcatValidationGetErrors[keyof ValidateDcat3CatalogDatasetsDcatValidationGetErrors];
12890
+ export type ValidateDcat3CatalogDatasetsDcatValidationGetResponses = {
12891
+ /**
12892
+ * Successful Response
12893
+ */
12894
+ 200: unknown;
12895
+ };
12896
+ export type GetGeodcatApCatalogDatasetsGeodcatApGetData = {
12897
+ body?: never;
12898
+ path?: never;
12899
+ query?: never;
12900
+ url: '/datasets/geodcat-ap/';
12901
+ };
12902
+ export type GetGeodcatApCatalogDatasetsGeodcatApGetErrors = {
12903
+ /**
12904
+ * Bad request — invalid query parameters or payload
12905
+ */
12906
+ 400: ProblemDetail;
12907
+ /**
12908
+ * Not found
12909
+ */
12910
+ 404: ProblemDetail;
12911
+ /**
12912
+ * Validation error
12913
+ */
12914
+ 422: ProblemDetail;
12915
+ /**
12916
+ * Internal server error
12917
+ */
12918
+ 500: ProblemDetail;
12919
+ };
12920
+ export type GetGeodcatApCatalogDatasetsGeodcatApGetError = GetGeodcatApCatalogDatasetsGeodcatApGetErrors[keyof GetGeodcatApCatalogDatasetsGeodcatApGetErrors];
12921
+ export type GetGeodcatApCatalogDatasetsGeodcatApGetResponses = {
12922
+ /**
12923
+ * Successful Response
12924
+ */
12925
+ 200: unknown;
12926
+ };
12927
+ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetData = {
12928
+ body?: never;
12929
+ path?: never;
12930
+ query?: never;
12931
+ url: '/datasets/geodcat-ap/validation/';
12932
+ };
12933
+ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetErrors = {
12934
+ /**
12935
+ * Bad request — invalid query parameters or payload
12936
+ */
12937
+ 400: ProblemDetail;
12938
+ /**
12939
+ * Not found
12940
+ */
12941
+ 404: ProblemDetail;
12942
+ /**
12943
+ * Validation error
12944
+ */
12945
+ 422: ProblemDetail;
12946
+ /**
12947
+ * Internal server error
12948
+ */
12949
+ 500: ProblemDetail;
12950
+ };
12951
+ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetError = ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetErrors[keyof ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetErrors];
12952
+ export type ValidateGeodcatApCatalogDatasetsGeodcatApValidationGetResponses = {
12953
+ /**
12954
+ * Successful Response
12955
+ */
12956
+ 200: unknown;
12957
+ };
12463
12958
  export type DeleteDatasetRelationshipDatasetsRelationshipsRelationshipIdDeleteData = {
12464
12959
  body?: never;
12465
12960
  path: {
@@ -13088,6 +13583,42 @@ export type GetDcatRecordDatasetsDatasetIdDcatGetResponses = {
13088
13583
  */
13089
13584
  200: unknown;
13090
13585
  };
13586
+ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetData = {
13587
+ body?: never;
13588
+ path: {
13589
+ /**
13590
+ * Dataset Id
13591
+ */
13592
+ dataset_id: string;
13593
+ };
13594
+ query?: never;
13595
+ url: '/datasets/{dataset_id}/dcat/validation/';
13596
+ };
13597
+ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetErrors = {
13598
+ /**
13599
+ * Bad request — invalid query parameters or payload
13600
+ */
13601
+ 400: ProblemDetail;
13602
+ /**
13603
+ * Not found
13604
+ */
13605
+ 404: ProblemDetail;
13606
+ /**
13607
+ * Validation error
13608
+ */
13609
+ 422: ProblemDetail;
13610
+ /**
13611
+ * Internal server error
13612
+ */
13613
+ 500: ProblemDetail;
13614
+ };
13615
+ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetError = ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetErrors[keyof ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetErrors];
13616
+ export type ValidateDcat3RecordDatasetsDatasetIdDcatValidationGetResponses = {
13617
+ /**
13618
+ * Successful Response
13619
+ */
13620
+ 200: unknown;
13621
+ };
13091
13622
  export type DownloadCogDatasetsDatasetIdDownloadCogGetData = {
13092
13623
  body?: never;
13093
13624
  path: {
@@ -13701,6 +14232,78 @@ export type GetFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelations
13701
14232
  200: DatasetRowsResponse;
13702
14233
  };
13703
14234
  export type GetFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelationshipIdGetResponse = GetFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelationshipIdGetResponses[keyof GetFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelationshipIdGetResponses];
14235
+ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetData = {
14236
+ body?: never;
14237
+ path: {
14238
+ /**
14239
+ * Dataset Id
14240
+ */
14241
+ dataset_id: string;
14242
+ };
14243
+ query?: never;
14244
+ url: '/datasets/{dataset_id}/geodcat-ap/';
14245
+ };
14246
+ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetErrors = {
14247
+ /**
14248
+ * Bad request — invalid query parameters or payload
14249
+ */
14250
+ 400: ProblemDetail;
14251
+ /**
14252
+ * Not found
14253
+ */
14254
+ 404: ProblemDetail;
14255
+ /**
14256
+ * Validation error
14257
+ */
14258
+ 422: ProblemDetail;
14259
+ /**
14260
+ * Internal server error
14261
+ */
14262
+ 500: ProblemDetail;
14263
+ };
14264
+ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetError = GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetErrors[keyof GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetErrors];
14265
+ export type GetGeodcatApRecordDatasetsDatasetIdGeodcatApGetResponses = {
14266
+ /**
14267
+ * Successful Response
14268
+ */
14269
+ 200: unknown;
14270
+ };
14271
+ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetData = {
14272
+ body?: never;
14273
+ path: {
14274
+ /**
14275
+ * Dataset Id
14276
+ */
14277
+ dataset_id: string;
14278
+ };
14279
+ query?: never;
14280
+ url: '/datasets/{dataset_id}/geodcat-ap/validation/';
14281
+ };
14282
+ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetErrors = {
14283
+ /**
14284
+ * Bad request — invalid query parameters or payload
14285
+ */
14286
+ 400: ProblemDetail;
14287
+ /**
14288
+ * Not found
14289
+ */
14290
+ 404: ProblemDetail;
14291
+ /**
14292
+ * Validation error
14293
+ */
14294
+ 422: ProblemDetail;
14295
+ /**
14296
+ * Internal server error
14297
+ */
14298
+ 500: ProblemDetail;
14299
+ };
14300
+ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetError = ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetErrors[keyof ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetErrors];
14301
+ export type ValidateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGetResponses = {
14302
+ /**
14303
+ * Successful Response
14304
+ */
14305
+ 200: unknown;
14306
+ };
13704
14307
  export type GetDatasetHistoryDatasetsDatasetIdHistoryGetData = {
13705
14308
  body?: never;
13706
14309
  path: {
@@ -13978,11 +14581,9 @@ export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetErrors = {
13978
14581
  export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetError = ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetErrors[keyof ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetErrors];
13979
14582
  export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetResponses = {
13980
14583
  /**
13981
- * Response List Dataset Relationships Datasets Dataset Id Relationships Get
13982
- *
13983
14584
  * Successful Response
13984
14585
  */
13985
- 200: Array<DatasetRelationshipResponse>;
14586
+ 200: DatasetRelationshipListResponse;
13986
14587
  };
13987
14588
  export type ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetResponse = ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetResponses[keyof ListDatasetRelationshipsDatasetsDatasetIdRelationshipsGetResponses];
13988
14589
  export type CreateDatasetRelationshipDatasetsDatasetIdRelationshipsPostData = {
@@ -15537,9 +16138,11 @@ export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors = {
15537
16138
  export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetError = GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors[keyof GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors];
15538
16139
  export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses = {
15539
16140
  /**
16141
+ * Response Get Job Status By Dataset Jobs By Dataset Dataset Id Get
16142
+ *
15540
16143
  * Successful Response
15541
16144
  */
15542
- 200: JobStatusResponse;
16145
+ 200: JobStatusResponse | null;
15543
16146
  };
15544
16147
  export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponse = GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses[keyof GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses];
15545
16148
  export type CleanupStaleJobsJobsCleanupStalePostData = {
@@ -19066,6 +19669,86 @@ export type GetMapDefaultsSettingsMapDefaultsGetResponses = {
19066
19669
  200: MapDefaultsResponse;
19067
19670
  };
19068
19671
  export type GetMapDefaultsSettingsMapDefaultsGetResponse = GetMapDefaultsSettingsMapDefaultsGetResponses[keyof GetMapDefaultsSettingsMapDefaultsGetResponses];
19672
+ export type GetNotificationStatusSettingsNotificationsStatusGetData = {
19673
+ body?: never;
19674
+ path?: never;
19675
+ query?: never;
19676
+ url: '/settings/notifications/status/';
19677
+ };
19678
+ export type GetNotificationStatusSettingsNotificationsStatusGetErrors = {
19679
+ /**
19680
+ * Bad request — invalid query parameters or payload
19681
+ */
19682
+ 400: ProblemDetail;
19683
+ /**
19684
+ * Unauthorized — missing or invalid credentials
19685
+ */
19686
+ 401: ProblemDetail;
19687
+ /**
19688
+ * Forbidden — caller lacks access to this resource
19689
+ */
19690
+ 403: ProblemDetail;
19691
+ /**
19692
+ * Not found
19693
+ */
19694
+ 404: ProblemDetail;
19695
+ /**
19696
+ * Validation error
19697
+ */
19698
+ 422: ProblemDetail;
19699
+ /**
19700
+ * Internal server error
19701
+ */
19702
+ 500: ProblemDetail;
19703
+ };
19704
+ export type GetNotificationStatusSettingsNotificationsStatusGetError = GetNotificationStatusSettingsNotificationsStatusGetErrors[keyof GetNotificationStatusSettingsNotificationsStatusGetErrors];
19705
+ export type GetNotificationStatusSettingsNotificationsStatusGetResponses = {
19706
+ /**
19707
+ * Successful Response
19708
+ */
19709
+ 200: NotificationStatusResponse;
19710
+ };
19711
+ export type GetNotificationStatusSettingsNotificationsStatusGetResponse = GetNotificationStatusSettingsNotificationsStatusGetResponses[keyof GetNotificationStatusSettingsNotificationsStatusGetResponses];
19712
+ export type SendTestNotificationSettingsNotificationsTestPostData = {
19713
+ body?: never;
19714
+ path?: never;
19715
+ query?: never;
19716
+ url: '/settings/notifications/test/';
19717
+ };
19718
+ export type SendTestNotificationSettingsNotificationsTestPostErrors = {
19719
+ /**
19720
+ * Bad request — invalid query parameters or payload
19721
+ */
19722
+ 400: ProblemDetail;
19723
+ /**
19724
+ * Unauthorized — missing or invalid credentials
19725
+ */
19726
+ 401: ProblemDetail;
19727
+ /**
19728
+ * Forbidden — caller lacks access to this resource
19729
+ */
19730
+ 403: ProblemDetail;
19731
+ /**
19732
+ * Not found
19733
+ */
19734
+ 404: ProblemDetail;
19735
+ /**
19736
+ * Validation error
19737
+ */
19738
+ 422: ProblemDetail;
19739
+ /**
19740
+ * Internal server error
19741
+ */
19742
+ 500: ProblemDetail;
19743
+ };
19744
+ export type SendTestNotificationSettingsNotificationsTestPostError = SendTestNotificationSettingsNotificationsTestPostErrors[keyof SendTestNotificationSettingsNotificationsTestPostErrors];
19745
+ export type SendTestNotificationSettingsNotificationsTestPostResponses = {
19746
+ /**
19747
+ * Successful Response
19748
+ */
19749
+ 200: NotificationTestResponse;
19750
+ };
19751
+ export type SendTestNotificationSettingsNotificationsTestPostResponse = SendTestNotificationSettingsNotificationsTestPostResponses[keyof SendTestNotificationSettingsNotificationsTestPostResponses];
19069
19752
  export type ListOauthProvidersSettingsOauthProvidersGetData = {
19070
19753
  body?: never;
19071
19754
  path?: never;