@geolens/sdk 1.3.0 → 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.
- package/dist/client/client/client.gen.d.ts +1 -1
- package/dist/client/client/client.gen.d.ts.map +1 -1
- package/dist/client/client/client.gen.js +3 -3
- package/dist/client/client/client.gen.js.map +1 -1
- package/dist/client/client/index.d.ts +8 -8
- package/dist/client/client/index.d.ts.map +1 -1
- package/dist/client/client/index.js +5 -5
- package/dist/client/client/index.js.map +1 -1
- package/dist/client/client/types.gen.d.ts +4 -4
- package/dist/client/client/types.gen.d.ts.map +1 -1
- package/dist/client/client/utils.gen.d.ts +2 -2
- package/dist/client/client/utils.gen.d.ts.map +1 -1
- package/dist/client/client/utils.gen.js +4 -4
- package/dist/client/client/utils.gen.js.map +1 -1
- package/dist/client/client.gen.d.ts +3 -3
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -1
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/core/bodySerializer.gen.d.ts +1 -1
- package/dist/client/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/client/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/client/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/client/core/types.gen.d.ts +2 -2
- package/dist/client/core/types.gen.d.ts.map +1 -1
- package/dist/client/core/utils.gen.d.ts +1 -1
- package/dist/client/core/utils.gen.d.ts.map +1 -1
- package/dist/client/core/utils.gen.js +1 -1
- package/dist/client/core/utils.gen.js.map +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 +319 -252
- package/dist/client/sdk.gen.d.ts.map +1 -1
- package/dist/client/sdk.gen.js +106 -9
- package/dist/client/sdk.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +435 -5
- package/dist/client/types.gen.d.ts.map +1 -1
- package/package.json +3 -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
|
*/
|
|
@@ -1884,12 +1896,42 @@ export type ConfigModeResponse = {
|
|
|
1884
1896
|
* ConfigResponse
|
|
1885
1897
|
*/
|
|
1886
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;
|
|
1887
1905
|
/**
|
|
1888
1906
|
* Auth Methods
|
|
1889
1907
|
*
|
|
1890
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.
|
|
1891
1909
|
*/
|
|
1892
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;
|
|
1893
1935
|
/**
|
|
1894
1936
|
* Registration Enabled
|
|
1895
1937
|
*
|
|
@@ -5148,6 +5190,92 @@ export type MetadataAssistRequest = {
|
|
|
5148
5190
|
*/
|
|
5149
5191
|
dataset_id: string;
|
|
5150
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
|
+
};
|
|
5151
5279
|
/**
|
|
5152
5280
|
* OAuthProviderCreate
|
|
5153
5281
|
*
|
|
@@ -5231,9 +5359,9 @@ export type OAuthProviderCreate = {
|
|
|
5231
5359
|
/**
|
|
5232
5360
|
* Provider Type
|
|
5233
5361
|
*
|
|
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).
|
|
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).
|
|
5235
5363
|
*/
|
|
5236
|
-
provider_type: 'google' | 'microsoft' | 'oidc' | 'saml';
|
|
5364
|
+
provider_type: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github';
|
|
5237
5365
|
/**
|
|
5238
5366
|
* Scopes
|
|
5239
5367
|
*
|
|
@@ -5514,7 +5642,7 @@ export type OAuthProviderUpdate = {
|
|
|
5514
5642
|
*
|
|
5515
5643
|
* New provider type. Rarely changed after creation.
|
|
5516
5644
|
*/
|
|
5517
|
-
provider_type?: 'google' | 'microsoft' | 'oidc' | 'saml' | null;
|
|
5645
|
+
provider_type?: 'google' | 'microsoft' | 'oidc' | 'saml' | 'github' | null;
|
|
5518
5646
|
/**
|
|
5519
5647
|
* Scopes
|
|
5520
5648
|
*
|
|
@@ -5604,7 +5732,7 @@ export type OgcCollectionMetadata = {
|
|
|
5604
5732
|
/**
|
|
5605
5733
|
* Itemtype
|
|
5606
5734
|
*
|
|
5607
|
-
* Type of items in the collection
|
|
5735
|
+
* Type of items in the collection: 'feature' for vector feature collections, 'coverage' for raster/VRT collections (which expose tiles instead of feature items).
|
|
5608
5736
|
*/
|
|
5609
5737
|
itemType?: string;
|
|
5610
5738
|
/**
|
|
@@ -6649,6 +6777,12 @@ export type RegisterResponse = {
|
|
|
6649
6777
|
* Message
|
|
6650
6778
|
*/
|
|
6651
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;
|
|
6652
6786
|
};
|
|
6653
6787
|
/**
|
|
6654
6788
|
* RelatedDatasetItem
|
|
@@ -6709,6 +6843,17 @@ export type RenameColumnRequest = {
|
|
|
6709
6843
|
*/
|
|
6710
6844
|
new_name: string;
|
|
6711
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
|
+
};
|
|
6712
6857
|
/**
|
|
6713
6858
|
* ReservedRenameDetail
|
|
6714
6859
|
*/
|
|
@@ -8407,6 +8552,12 @@ export type UploadConfigResponse = {
|
|
|
8407
8552
|
* Whether presigned S3 uploads are enabled (requires `STORAGE_PROVIDER=s3`).
|
|
8408
8553
|
*/
|
|
8409
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;
|
|
8410
8561
|
};
|
|
8411
8562
|
/**
|
|
8412
8563
|
* UploadResponse
|
|
@@ -8488,6 +8639,29 @@ export type UserNameItem = {
|
|
|
8488
8639
|
*/
|
|
8489
8640
|
username: string;
|
|
8490
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
|
+
};
|
|
8491
8665
|
/**
|
|
8492
8666
|
* UserResponse
|
|
8493
8667
|
*/
|
|
@@ -8512,6 +8686,10 @@ export type UserResponse = {
|
|
|
8512
8686
|
* Last Login At
|
|
8513
8687
|
*/
|
|
8514
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;
|
|
8515
8693
|
/**
|
|
8516
8694
|
* Roles
|
|
8517
8695
|
*
|
|
@@ -8644,6 +8822,17 @@ export type VectorTileToken = {
|
|
|
8644
8822
|
*/
|
|
8645
8823
|
sig: string;
|
|
8646
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
|
+
};
|
|
8647
8836
|
/**
|
|
8648
8837
|
* VisibilityCheckResponse
|
|
8649
8838
|
*/
|
|
@@ -9840,6 +10029,45 @@ export type CreateUserAdminUsersPostResponses = {
|
|
|
9840
10029
|
201: UserResponse;
|
|
9841
10030
|
};
|
|
9842
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
|
+
};
|
|
9843
10071
|
export type ListUserNamesAdminUsersNamesGetData = {
|
|
9844
10072
|
body?: never;
|
|
9845
10073
|
path?: never;
|
|
@@ -10997,6 +11225,46 @@ export type MePermissionsAuthMePermissionsGetResponses = {
|
|
|
10997
11225
|
200: PermissionsResponse;
|
|
10998
11226
|
};
|
|
10999
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];
|
|
11000
11268
|
export type ListPublicProvidersAuthOauthProvidersGetData = {
|
|
11001
11269
|
body?: never;
|
|
11002
11270
|
path?: never;
|
|
@@ -11201,6 +11469,86 @@ export type RegisterAuthRegisterPostResponses = {
|
|
|
11201
11469
|
201: RegisterResponse;
|
|
11202
11470
|
};
|
|
11203
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];
|
|
11204
11552
|
export type ListCollectionsEndpointCatalogCollectionsGetData = {
|
|
11205
11553
|
body?: never;
|
|
11206
11554
|
path?: never;
|
|
@@ -15790,9 +16138,11 @@ export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors = {
|
|
|
15790
16138
|
export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetError = GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors[keyof GetJobStatusByDatasetJobsByDatasetDatasetIdGetErrors];
|
|
15791
16139
|
export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses = {
|
|
15792
16140
|
/**
|
|
16141
|
+
* Response Get Job Status By Dataset Jobs By Dataset Dataset Id Get
|
|
16142
|
+
*
|
|
15793
16143
|
* Successful Response
|
|
15794
16144
|
*/
|
|
15795
|
-
200: JobStatusResponse;
|
|
16145
|
+
200: JobStatusResponse | null;
|
|
15796
16146
|
};
|
|
15797
16147
|
export type GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponse = GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses[keyof GetJobStatusByDatasetJobsByDatasetDatasetIdGetResponses];
|
|
15798
16148
|
export type CleanupStaleJobsJobsCleanupStalePostData = {
|
|
@@ -19319,6 +19669,86 @@ export type GetMapDefaultsSettingsMapDefaultsGetResponses = {
|
|
|
19319
19669
|
200: MapDefaultsResponse;
|
|
19320
19670
|
};
|
|
19321
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];
|
|
19322
19752
|
export type ListOauthProvidersSettingsOauthProvidersGetData = {
|
|
19323
19753
|
body?: never;
|
|
19324
19754
|
path?: never;
|