@geolens/sdk 1.16.1 → 1.18.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.
@@ -405,6 +405,24 @@ export type AdminJobResponse = {
405
405
  */
406
406
  created_at: string;
407
407
  };
408
+ /**
409
+ * AdminPasswordReset
410
+ *
411
+ * Request body for POST /admin/users/{user_id}/reset-password/.
412
+ *
413
+ * Single-purpose for the same reason as SamlToLocalConversion above: the
414
+ * generic UserUpdate schema has no password field, so an admin-set password
415
+ * lands as its own audited action ('user.password_reset') rather than
416
+ * disappearing into 'user.update'.
417
+ */
418
+ export type AdminPasswordReset = {
419
+ /**
420
+ * Password
421
+ *
422
+ * Replacement password for the account (policy: min 12 chars, 3+ character classes, at most 72 bytes UTF-8). The user can change this after their next login.
423
+ */
424
+ password: string;
425
+ };
408
426
  /**
409
427
  * AdminShareTokenListResponse
410
428
  */
@@ -472,7 +490,7 @@ export type AdminUserCreate = {
472
490
  /**
473
491
  * Password
474
492
  *
475
- * Initial password (policy: min 12 chars, 3+ character classes). The user can change this after first login.
493
+ * Initial password (policy: min 12 chars, 3+ character classes, at most 72 bytes UTF-8). The user can change this after first login.
476
494
  */
477
495
  password: string;
478
496
  /**
@@ -806,6 +824,56 @@ export type ApproveRequest = {
806
824
  */
807
825
  role: string;
808
826
  };
827
+ /**
828
+ * ArcGISSignInRequest
829
+ *
830
+ * Portal address plus the credentials one generateToken call needs.
831
+ *
832
+ * No character policy on the two credential fields, deliberately. They are
833
+ * form-encoded into the outbound body, which percent-escapes every value,
834
+ * so neither a control character nor a separator can smuggle a second field
835
+ * into the request the way one can into a header line. The length bounds
836
+ * are here to keep an absurd body from reaching the portal at all.
837
+ */
838
+ export type ArcGisSignInRequest = {
839
+ /**
840
+ * Portal Url
841
+ *
842
+ * ArcGIS portal URL, for example https://your-org.maps.arcgis.com. The /sharing/rest base is accepted too.
843
+ */
844
+ portal_url: string;
845
+ /**
846
+ * Username
847
+ *
848
+ * ArcGIS account name to sign in with.
849
+ */
850
+ username: string;
851
+ /**
852
+ * Password
853
+ *
854
+ * Password for that ArcGIS account.
855
+ */
856
+ password: string;
857
+ };
858
+ /**
859
+ * ArcGISSignInResponse
860
+ *
861
+ * The minted portal token and nothing else about the account.
862
+ */
863
+ export type ArcGisSignInResponse = {
864
+ /**
865
+ * Token
866
+ *
867
+ * Short-lived ArcGIS portal token. Use it as the `token` field on probe, preview, commit and refresh.
868
+ */
869
+ token: string;
870
+ /**
871
+ * Expires At
872
+ *
873
+ * UTC instant at which the portal stops accepting the token.
874
+ */
875
+ expires_at: string;
876
+ };
809
877
  /**
810
878
  * AttributeMetadataListResponse
811
879
  */
@@ -1480,7 +1548,7 @@ export type ChangePasswordRequest = {
1480
1548
  /**
1481
1549
  * New Password
1482
1550
  *
1483
- * New password (policy: min 12 chars, 3+ character classes: lowercase, uppercase, digits, symbols). The min_length=8 here is a schema floor; the runtime validator enforces the full policy.
1551
+ * New password (policy: min 12 chars, 3+ character classes: lowercase, uppercase, digits, symbols; at most 72 bytes UTF-8). The min_length=8 here is a schema floor; the runtime validator enforces the full policy.
1484
1552
  */
1485
1553
  new_password: string;
1486
1554
  };
@@ -2164,6 +2232,10 @@ export type CommitRequest = {
2164
2232
  * CSV/Excel only: name of the WKT geometry column (alternative to x_column/y_column).
2165
2233
  */
2166
2234
  geom_column?: string | null;
2235
+ /**
2236
+ * Structured credential for a protected service. Mutually exclusive with the token field.
2237
+ */
2238
+ auth?: ServiceAuthRequest | null;
2167
2239
  };
2168
2240
  /**
2169
2241
  * CommitResponse
@@ -2847,9 +2919,13 @@ export type DatasetRefreshRequest = {
2847
2919
  /**
2848
2920
  * Token
2849
2921
  *
2850
- * Transient credential for a protected service. Used for this refresh only and never persisted: it is handed to the worker through a single-use, short-lived reference and is gone once claimed. A retry needs a new token.
2922
+ * Transient credential for a protected service. Used for this refresh only and never persisted: it is handed to the worker through a single-use, short-lived reference and is gone once claimed. A retry needs a new token. Deprecated: use the auth object with method bearer.
2851
2923
  */
2852
2924
  token?: string | null;
2925
+ /**
2926
+ * Structured credential for a protected service. Mutually exclusive with the token field.
2927
+ */
2928
+ auth?: ServiceAuthRequest | null;
2853
2929
  };
2854
2930
  /**
2855
2931
  * DatasetRefreshResponse
@@ -3283,7 +3359,7 @@ export type DatasetResponse = {
3283
3359
  /**
3284
3360
  * Source Health Detail
3285
3361
  *
3286
- * Why the origin is not healthy, as one of a fixed set of GeoLens codes: blocked_by_policy, item_withdrawn, network_error, not_found, server_error, timeout, unauthorized, unexpected_status. Null when healthy or never probed. Never provider text, a URL, or a response body — nothing the origin sent is stored here.
3362
+ * Why the origin is not healthy, as one of a fixed set of GeoLens codes: auth_required, blocked_by_policy, item_withdrawn, network_error, not_found, server_error, timeout, unauthorized, unexpected_status. Null when healthy or never probed. Never provider text, a URL, or a response body — nothing the origin sent is stored here.
3287
3363
  */
3288
3364
  source_health_detail?: string | null;
3289
3365
  /**
@@ -4620,6 +4696,34 @@ export type InfrastructureResponse = {
4620
4696
  [key: string]: ProviderHealth;
4621
4697
  };
4622
4698
  };
4699
+ /**
4700
+ * JobCancelResponse
4701
+ *
4702
+ * Outcome of ``POST /jobs/{id}/cancel`` (#1677).
4703
+ *
4704
+ * ``run_id`` is the ``dataset_refresh_runs`` row this cancel finalized, when
4705
+ * the job had one bound (refreshes and reuploads do; plain imports don't).
4706
+ * ``already`` is True when the job was cancelled before this request — the
4707
+ * repeat is idempotent and nothing was written.
4708
+ */
4709
+ export type JobCancelResponse = {
4710
+ /**
4711
+ * Id
4712
+ */
4713
+ id: string;
4714
+ /**
4715
+ * Status
4716
+ */
4717
+ status: 'cancelled';
4718
+ /**
4719
+ * Run Id
4720
+ */
4721
+ run_id: string | null;
4722
+ /**
4723
+ * Already
4724
+ */
4725
+ already?: boolean;
4726
+ };
4623
4727
  /**
4624
4728
  * JobStatusResponse
4625
4729
  */
@@ -5111,6 +5215,10 @@ export type ManifestSource = {
5111
5215
  * Layer
5112
5216
  */
5113
5217
  layer?: string | null;
5218
+ /**
5219
+ * Checksum
5220
+ */
5221
+ checksum?: string | null;
5114
5222
  };
5115
5223
  /**
5116
5224
  * MapAccessResponse
@@ -5912,6 +6020,12 @@ export type MapStyleImportSummary = {
5912
6020
  * Warnings
5913
6021
  */
5914
6022
  warnings?: Array<MapStyleImportWarning>;
6023
+ /**
6024
+ * Warnings Truncated
6025
+ *
6026
+ * Warnings produced beyond the reported list
6027
+ */
6028
+ warnings_truncated?: number;
5915
6029
  };
5916
6030
  /**
5917
6031
  * MapStyleImportWarning
@@ -6800,6 +6914,41 @@ export type OgcLink = {
6800
6914
  */
6801
6915
  title?: string | null;
6802
6916
  };
6917
+ /**
6918
+ * OGCRasterBand
6919
+ *
6920
+ * One entry in the raster:bands STAC extension array.
6921
+ *
6922
+ * fix(#1805 review round 3 P2): matches the shape service_records.py
6923
+ * actually serializes per band. `statistics` matches the normalized
6924
+ * band_info shape core/raster_bands.py (introduced by #1803, the raster
6925
+ * lifecycle PR) produces on read; keep this in sync if that PR changes
6926
+ * the per-band keys.
6927
+ */
6928
+ export type OgcRasterBand = {
6929
+ /**
6930
+ * Name
6931
+ */
6932
+ name?: string | null;
6933
+ /**
6934
+ * Data Type
6935
+ */
6936
+ data_type?: string | null;
6937
+ /**
6938
+ * Nodata
6939
+ */
6940
+ nodata?: string | number | number | null;
6941
+ /**
6942
+ * Statistics
6943
+ */
6944
+ statistics?: {
6945
+ [key: string]: unknown;
6946
+ } | null;
6947
+ /**
6948
+ * Description
6949
+ */
6950
+ description?: string | null;
6951
+ };
6803
6952
  /**
6804
6953
  * OGCRecordLink
6805
6954
  *
@@ -7005,6 +7154,14 @@ export type OgcRecordProperties = {
7005
7154
  * Gsd
7006
7155
  */
7007
7156
  gsd?: number | null;
7157
+ /**
7158
+ * Res X
7159
+ */
7160
+ res_x?: number | null;
7161
+ /**
7162
+ * Res Y
7163
+ */
7164
+ res_y?: number | null;
7008
7165
  /**
7009
7166
  * Crs Is Geographic
7010
7167
  *
@@ -7023,6 +7180,23 @@ export type OgcRecordProperties = {
7023
7180
  * Dataset Count
7024
7181
  */
7025
7182
  dataset_count?: number | null;
7183
+ /**
7184
+ * Proj:Code
7185
+ */
7186
+ 'proj:code'?: string | null;
7187
+ /**
7188
+ * Proj:Shape
7189
+ *
7190
+ * [height, width] in pixels.
7191
+ */
7192
+ 'proj:shape'?: [
7193
+ number,
7194
+ number
7195
+ ] | null;
7196
+ /**
7197
+ * Raster:Bands
7198
+ */
7199
+ 'raster:bands'?: Array<OgcRasterBand> | null;
7026
7200
  };
7027
7201
  /**
7028
7202
  * OGCRecordResponse
@@ -7296,9 +7470,13 @@ export type ProbeRequest = {
7296
7470
  /**
7297
7471
  * Token
7298
7472
  *
7299
- * Optional auth token for protected services (passed as query parameter or bearer token depending on service type).
7473
+ * Optional auth token for protected services (passed as query parameter or bearer token depending on service type). Deprecated: use the auth object with method bearer.
7300
7474
  */
7301
7475
  token?: string | null;
7476
+ /**
7477
+ * Structured credential for a protected service. Mutually exclusive with the token field.
7478
+ */
7479
+ auth?: ServiceAuthRequest | null;
7302
7480
  };
7303
7481
  /**
7304
7482
  * ProbeResponse
@@ -7896,14 +8074,26 @@ export type ReuploadCommitRequest = {
7896
8074
  * Srid Override
7897
8075
  */
7898
8076
  srid_override?: number | null;
8077
+ /**
8078
+ * Expected Origin Kind
8079
+ *
8080
+ * The dataset origin the client saw when it staged this replacement. When set, the commit is refused with 409 `origin_changed` if the dataset's origin no longer matches, so a service, STAC or registered-table binding established after the upload is not silently rebound to an upload. Optional: a client that omits it keeps the pre-#1768 behaviour.
8081
+ */
8082
+ expected_origin_kind?: 'upload' | 'postgis' | 'service' | 'stac' | 'created' | null;
7899
8083
  /**
7900
8084
  * Token
8085
+ *
8086
+ * Deprecated: use the auth object with method bearer.
7901
8087
  */
7902
8088
  token?: string | null;
7903
8089
  /**
7904
8090
  * Layer Name
7905
8091
  */
7906
8092
  layer_name?: string | null;
8093
+ /**
8094
+ * Structured credential for a protected service. Mutually exclusive with the token field.
8095
+ */
8096
+ auth?: ServiceAuthRequest | null;
7907
8097
  };
7908
8098
  /**
7909
8099
  * ReuploadCommitResponse
@@ -8024,12 +8214,18 @@ export type ReuploadServicePreviewRequest = {
8024
8214
  layer_id?: number | string | null;
8025
8215
  /**
8026
8216
  * Token
8217
+ *
8218
+ * Deprecated: use the auth object with method bearer.
8027
8219
  */
8028
8220
  token?: string | null;
8029
8221
  /**
8030
8222
  * Object Id Field
8031
8223
  */
8032
8224
  object_id_field?: string | null;
8225
+ /**
8226
+ * Structured credential for a protected service. Mutually exclusive with the token field.
8227
+ */
8228
+ auth?: ServiceAuthRequest | null;
8033
8229
  };
8034
8230
  /**
8035
8231
  * SSEActionsEvent
@@ -8310,9 +8506,52 @@ export type SchemaDiff = {
8310
8506
  /**
8311
8507
  * Row Count Delta
8312
8508
  *
8313
- * row_count_new minus row_count_old
8509
+ * row_count_new minus row_count_old, or null when either side is unknown
8314
8510
  */
8315
- row_count_delta: number;
8511
+ row_count_delta: number | null;
8512
+ };
8513
+ /**
8514
+ * ServiceAuthRequest
8515
+ *
8516
+ * How one request authenticates to the remote service it names.
8517
+ */
8518
+ export type ServiceAuthRequest = {
8519
+ /**
8520
+ * Method
8521
+ *
8522
+ * How the credential is presented to the remote service. Omit the whole auth object for a public service.
8523
+ */
8524
+ method: 'bearer' | 'basic' | 'header';
8525
+ /**
8526
+ * Token
8527
+ *
8528
+ * Bearer token or API key, for method bearer.
8529
+ */
8530
+ token?: string | null;
8531
+ /**
8532
+ * Username
8533
+ *
8534
+ * Username, for method basic.
8535
+ */
8536
+ username?: string | null;
8537
+ /**
8538
+ * Password
8539
+ *
8540
+ * Password, for method basic.
8541
+ */
8542
+ password?: string | null;
8543
+ /**
8544
+ * Header Name
8545
+ *
8546
+ * Name of the header the key is sent under, for method header.
8547
+ */
8548
+ header_name?: string | null;
8549
+ /**
8550
+ * Header Value
8551
+ *
8552
+ * Value of the header the key is sent under, for method header.
8553
+ */
8554
+ header_value?: string | null;
8316
8555
  };
8317
8556
  /**
8318
8557
  * ServiceHealth
@@ -8368,7 +8607,7 @@ export type ServicePreviewRequest = {
8368
8607
  /**
8369
8608
  * Token
8370
8609
  *
8371
- * Optional auth token for protected services.
8610
+ * Optional auth token for protected services. Deprecated: use the auth object with method bearer.
8372
8611
  */
8373
8612
  token?: string | null;
8374
8613
  /**
@@ -8377,6 +8616,10 @@ export type ServicePreviewRequest = {
8377
8616
  * ArcGIS OID field name used for orderByFields during preview pagination.
8378
8617
  */
8379
8618
  object_id_field?: string | null;
8619
+ /**
8620
+ * Structured credential for a protected service. Mutually exclusive with the token field.
8621
+ */
8622
+ auth?: ServiceAuthRequest | null;
8380
8623
  };
8381
8624
  /**
8382
8625
  * ServicePreviewResponse
@@ -8794,7 +9037,7 @@ export type SourceHealthResponse = {
8794
9037
  /**
8795
9038
  * Source Health Detail
8796
9039
  *
8797
- * Why the origin is not healthy, as one of a fixed set of GeoLens codes: blocked_by_policy, item_withdrawn, network_error, not_found, server_error, timeout, unauthorized, unexpected_status. Null when healthy or never probed. Never provider text, a URL, or a response body — nothing the origin sent is stored here.
9040
+ * Why the origin is not healthy, as one of a fixed set of GeoLens codes: auth_required, blocked_by_policy, item_withdrawn, network_error, not_found, server_error, timeout, unauthorized, unexpected_status. Null when healthy or never probed. Never provider text, a URL, or a response body — nothing the origin sent is stored here.
8798
9041
  */
8799
9042
  source_health_detail?: string | null;
8800
9043
  /**
@@ -10132,6 +10375,29 @@ export type UploadResponse = {
10132
10375
  */
10133
10376
  message: string;
10134
10377
  };
10378
+ /**
10379
+ * UrlUploadRequest
10380
+ *
10381
+ * Request body for the URL variant of upload (feat #1705).
10382
+ *
10383
+ * The server fetches the file itself (SSRF-validated, size-capped) and
10384
+ * stages it exactly like a direct upload — preview and commit take over
10385
+ * unchanged.
10386
+ */
10387
+ export type UrlUploadRequest = {
10388
+ /**
10389
+ * Url
10390
+ *
10391
+ * HTTP(S) URL of the file to import. The server validates the URL against SSRF, downloads it with the configured size cap, and stages it like a direct upload.
10392
+ */
10393
+ url: string;
10394
+ /**
10395
+ * Filename
10396
+ *
10397
+ * Filename override for URLs whose path does not end in the actual file name (e.g. download links keyed by query id). Must carry an allowed extension. Defaults to the URL path's basename.
10398
+ */
10399
+ filename?: string | null;
10400
+ };
10135
10401
  /**
10136
10402
  * UserCreate
10137
10403
  */
@@ -10145,7 +10411,7 @@ export type UserCreate = {
10145
10411
  /**
10146
10412
  * Password
10147
10413
  *
10148
- * Plaintext password (policy: min 12 chars, 3+ character classes)
10414
+ * Plaintext password (policy: min 12 chars, 3+ character classes, at most 72 bytes UTF-8)
10149
10415
  */
10150
10416
  password: string;
10151
10417
  /**
@@ -10859,6 +11125,10 @@ export type CreateApiKeyAdminApiKeysPostErrors = {
10859
11125
  * Not found
10860
11126
  */
10861
11127
  404: ProblemDetail;
11128
+ /**
11129
+ * Conflict — resource state prevents the operation
11130
+ */
11131
+ 409: ProblemDetail;
10862
11132
  /**
10863
11133
  * Validation error
10864
11134
  */
@@ -12205,6 +12475,59 @@ export type RejectUserAdminUsersUserIdRejectPostResponses = {
12205
12475
  204: void;
12206
12476
  };
12207
12477
  export type RejectUserAdminUsersUserIdRejectPostResponse = RejectUserAdminUsersUserIdRejectPostResponses[keyof RejectUserAdminUsersUserIdRejectPostResponses];
12478
+ export type ResetUserPasswordAdminUsersUserIdResetPasswordPostData = {
12479
+ body: AdminPasswordReset;
12480
+ path: {
12481
+ /**
12482
+ * User Id
12483
+ */
12484
+ user_id: string;
12485
+ };
12486
+ query?: never;
12487
+ url: '/admin/users/{user_id}/reset-password/';
12488
+ };
12489
+ export type ResetUserPasswordAdminUsersUserIdResetPasswordPostErrors = {
12490
+ /**
12491
+ * Bad request — invalid query parameters or payload
12492
+ */
12493
+ 400: ProblemDetail;
12494
+ /**
12495
+ * Unauthorized — missing or invalid credentials
12496
+ */
12497
+ 401: ProblemDetail;
12498
+ /**
12499
+ * Forbidden — caller lacks access to this resource
12500
+ */
12501
+ 403: ProblemDetail;
12502
+ /**
12503
+ * Not found
12504
+ */
12505
+ 404: ProblemDetail;
12506
+ /**
12507
+ * Validation error
12508
+ */
12509
+ 422: ProblemDetail;
12510
+ /**
12511
+ * Too many requests — retry after the advertised interval
12512
+ */
12513
+ 429: ProblemDetail;
12514
+ /**
12515
+ * Internal server error
12516
+ */
12517
+ 500: ProblemDetail;
12518
+ /**
12519
+ * Service unavailable — the database could not serve the request
12520
+ */
12521
+ 503: ProblemDetail;
12522
+ };
12523
+ export type ResetUserPasswordAdminUsersUserIdResetPasswordPostError = ResetUserPasswordAdminUsersUserIdResetPasswordPostErrors[keyof ResetUserPasswordAdminUsersUserIdResetPasswordPostErrors];
12524
+ export type ResetUserPasswordAdminUsersUserIdResetPasswordPostResponses = {
12525
+ /**
12526
+ * Successful Response
12527
+ */
12528
+ 200: UserResponse;
12529
+ };
12530
+ export type ResetUserPasswordAdminUsersUserIdResetPasswordPostResponse = ResetUserPasswordAdminUsersUserIdResetPasswordPostResponses[keyof ResetUserPasswordAdminUsersUserIdResetPasswordPostResponses];
12208
12531
  export type AiAvailabilityEndpointAiAvailabilityGetData = {
12209
12532
  body?: never;
12210
12533
  path?: never;
@@ -16602,6 +16925,10 @@ export type DownloadCogDatasetsDatasetIdDownloadCogGetErrors = {
16602
16925
  * Not found
16603
16926
  */
16604
16927
  404: ProblemDetail;
16928
+ /**
16929
+ * Precondition failed — the caller's If-Match no longer matches the current representation
16930
+ */
16931
+ 412: ProblemDetail;
16605
16932
  /**
16606
16933
  * Validation error
16607
16934
  */
@@ -16677,6 +17004,10 @@ export type ExportDatasetEndpointDatasetsDatasetIdExportGetErrors = {
16677
17004
  * Not found
16678
17005
  */
16679
17006
  404: ProblemDetail;
17007
+ /**
17008
+ * Precondition failed — the caller's If-Match no longer matches the current representation
17009
+ */
17010
+ 412: ProblemDetail;
16680
17011
  /**
16681
17012
  * Payload too large
16682
17013
  */
@@ -19730,6 +20061,66 @@ export type CompletePresignedUploadIngestUploadPresignedJobIdCompletePostRespons
19730
20061
  200: UploadResponse;
19731
20062
  };
19732
20063
  export type CompletePresignedUploadIngestUploadPresignedJobIdCompletePostResponse = CompletePresignedUploadIngestUploadPresignedJobIdCompletePostResponses[keyof CompletePresignedUploadIngestUploadPresignedJobIdCompletePostResponses];
20064
+ export type UploadFromUrlIngestUploadUrlPostData = {
20065
+ body: UrlUploadRequest;
20066
+ path?: never;
20067
+ query?: never;
20068
+ url: '/ingest/upload/url';
20069
+ };
20070
+ export type UploadFromUrlIngestUploadUrlPostErrors = {
20071
+ /**
20072
+ * Bad request — invalid payload
20073
+ */
20074
+ 400: ProblemDetail;
20075
+ /**
20076
+ * Unauthorized — missing or invalid credentials
20077
+ */
20078
+ 401: ProblemDetail;
20079
+ /**
20080
+ * Forbidden — caller lacks write access
20081
+ */
20082
+ 403: ProblemDetail;
20083
+ /**
20084
+ * Not found
20085
+ */
20086
+ 404: ProblemDetail;
20087
+ /**
20088
+ * Conflict — resource state prevents the operation
20089
+ */
20090
+ 409: ProblemDetail;
20091
+ /**
20092
+ * Payload too large
20093
+ */
20094
+ 413: ProblemDetail;
20095
+ /**
20096
+ * Validation error
20097
+ */
20098
+ 422: ProblemDetail;
20099
+ /**
20100
+ * Too many requests — retry after the advertised interval
20101
+ */
20102
+ 429: ProblemDetail;
20103
+ /**
20104
+ * Internal server error
20105
+ */
20106
+ 500: ProblemDetail;
20107
+ /**
20108
+ * Bad gateway — an upstream provider failed
20109
+ */
20110
+ 502: ProblemDetail;
20111
+ /**
20112
+ * Service unavailable — the database could not serve the request
20113
+ */
20114
+ 503: ProblemDetail;
20115
+ };
20116
+ export type UploadFromUrlIngestUploadUrlPostError = UploadFromUrlIngestUploadUrlPostErrors[keyof UploadFromUrlIngestUploadUrlPostErrors];
20117
+ export type UploadFromUrlIngestUploadUrlPostResponses = {
20118
+ /**
20119
+ * Successful Response
20120
+ */
20121
+ 201: UploadResponse;
20122
+ };
20123
+ export type UploadFromUrlIngestUploadUrlPostResponse = UploadFromUrlIngestUploadUrlPostResponses[keyof UploadFromUrlIngestUploadUrlPostResponses];
19733
20124
  export type CreateVrtIngestVrtCreatePostData = {
19734
20125
  body: VrtCreateRequest;
19735
20126
  path?: never;
@@ -20056,6 +20447,63 @@ export type GetJobStatusJobsJobIdGetResponses = {
20056
20447
  200: JobStatusResponse;
20057
20448
  };
20058
20449
  export type GetJobStatusJobsJobIdGetResponse = GetJobStatusJobsJobIdGetResponses[keyof GetJobStatusJobsJobIdGetResponses];
20450
+ export type CancelJobJobsJobIdCancelPostData = {
20451
+ body?: never;
20452
+ path: {
20453
+ /**
20454
+ * Job Id
20455
+ */
20456
+ job_id: string;
20457
+ };
20458
+ query?: never;
20459
+ url: '/jobs/{job_id}/cancel';
20460
+ };
20461
+ export type CancelJobJobsJobIdCancelPostErrors = {
20462
+ /**
20463
+ * Bad request — invalid query parameters or payload
20464
+ */
20465
+ 400: ProblemDetail;
20466
+ /**
20467
+ * Unauthorized — missing or invalid credentials
20468
+ */
20469
+ 401: ProblemDetail;
20470
+ /**
20471
+ * Forbidden — caller lacks access to this resource
20472
+ */
20473
+ 403: ProblemDetail;
20474
+ /**
20475
+ * Not found
20476
+ */
20477
+ 404: ProblemDetail;
20478
+ /**
20479
+ * Conflict — resource state prevents the operation
20480
+ */
20481
+ 409: ProblemDetail;
20482
+ /**
20483
+ * Validation error
20484
+ */
20485
+ 422: ProblemDetail;
20486
+ /**
20487
+ * Too many requests — retry after the advertised interval
20488
+ */
20489
+ 429: ProblemDetail;
20490
+ /**
20491
+ * Internal server error
20492
+ */
20493
+ 500: ProblemDetail;
20494
+ /**
20495
+ * Service unavailable — the database could not serve the request
20496
+ */
20497
+ 503: ProblemDetail;
20498
+ };
20499
+ export type CancelJobJobsJobIdCancelPostError = CancelJobJobsJobIdCancelPostErrors[keyof CancelJobJobsJobIdCancelPostErrors];
20500
+ export type CancelJobJobsJobIdCancelPostResponses = {
20501
+ /**
20502
+ * Successful Response
20503
+ */
20504
+ 200: JobCancelResponse;
20505
+ };
20506
+ export type CancelJobJobsJobIdCancelPostResponse = CancelJobJobsJobIdCancelPostResponses[keyof CancelJobJobsJobIdCancelPostResponses];
20059
20507
  export type RetryJobJobsJobIdRetryPostData = {
20060
20508
  body?: never;
20061
20509
  path: {
@@ -23711,6 +24159,66 @@ export type GetSavedSearchEndpointSearchSavedSearchIdGetResponses = {
23711
24159
  200: SavedSearchResponse;
23712
24160
  };
23713
24161
  export type GetSavedSearchEndpointSearchSavedSearchIdGetResponse = GetSavedSearchEndpointSearchSavedSearchIdGetResponses[keyof GetSavedSearchEndpointSearchSavedSearchIdGetResponses];
24162
+ export type ArcgisSigninServicesArcgisSigninPostData = {
24163
+ body: ArcGisSignInRequest;
24164
+ path?: never;
24165
+ query?: never;
24166
+ url: '/services/arcgis/signin/';
24167
+ };
24168
+ export type ArcgisSigninServicesArcgisSigninPostErrors = {
24169
+ /**
24170
+ * Bad request — invalid payload
24171
+ */
24172
+ 400: ProblemDetail;
24173
+ /**
24174
+ * Unauthorized — missing or invalid credentials
24175
+ */
24176
+ 401: ProblemDetail;
24177
+ /**
24178
+ * Forbidden — caller lacks write access
24179
+ */
24180
+ 403: ProblemDetail;
24181
+ /**
24182
+ * Not found
24183
+ */
24184
+ 404: ProblemDetail;
24185
+ /**
24186
+ * Conflict — resource state prevents the operation
24187
+ */
24188
+ 409: ProblemDetail;
24189
+ /**
24190
+ * Validation error
24191
+ */
24192
+ 422: ProblemDetail;
24193
+ /**
24194
+ * Too many requests — retry after the advertised interval
24195
+ */
24196
+ 429: ProblemDetail;
24197
+ /**
24198
+ * Internal server error
24199
+ */
24200
+ 500: ProblemDetail;
24201
+ /**
24202
+ * Bad gateway — the ArcGIS portal could not be reached or did not answer with a sign-in response
24203
+ */
24204
+ 502: ProblemDetail;
24205
+ /**
24206
+ * Service unavailable — the database could not serve the request
24207
+ */
24208
+ 503: ProblemDetail;
24209
+ /**
24210
+ * Gateway timeout — the ArcGIS portal did not respond in time
24211
+ */
24212
+ 504: ProblemDetail;
24213
+ };
24214
+ export type ArcgisSigninServicesArcgisSigninPostError = ArcgisSigninServicesArcgisSigninPostErrors[keyof ArcgisSigninServicesArcgisSigninPostErrors];
24215
+ export type ArcgisSigninServicesArcgisSigninPostResponses = {
24216
+ /**
24217
+ * Successful Response
24218
+ */
24219
+ 200: ArcGisSignInResponse;
24220
+ };
24221
+ export type ArcgisSigninServicesArcgisSigninPostResponse = ArcgisSigninServicesArcgisSigninPostResponses[keyof ArcgisSigninServicesArcgisSigninPostResponses];
23714
24222
  export type ListConnectorsEndpointServicesConnectorsGetData = {
23715
24223
  body?: never;
23716
24224
  path?: never;
@@ -25602,19 +26110,19 @@ export type RasterTileProxyTilesRasterProxyDatasetIdZxyFmtGetData = {
25602
26110
  /**
25603
26111
  * Pmin
25604
26112
  *
25605
- * Lower percentile clip for stretch=percentile (0–100, default 2). Absent = current p2 behavior. Must be less than pmax.
26113
+ * Lower percentile clip for stretch=percentile (0–100, default 2). Absent = current p2 behavior. Must be less than pmax. Ignored, and not validated, when stretch is not percentile.
25606
26114
  */
25607
26115
  pmin?: number | null;
25608
26116
  /**
25609
26117
  * Pmax
25610
26118
  *
25611
- * Upper percentile clip for stretch=percentile (0–100, default 98). Absent = current p98 behavior. Must be greater than pmin.
26119
+ * Upper percentile clip for stretch=percentile (0–100, default 98). Absent = current p98 behavior. Must be greater than pmin. Ignored, and not validated, when stretch is not percentile.
25612
26120
  */
25613
26121
  pmax?: number | null;
25614
26122
  /**
25615
26123
  * Sigma
25616
26124
  *
25617
- * Standard-deviation multiplier for stretch=stddev (default 2.0). Absent = current 2.0σ behavior. Must be > 0.
26125
+ * Standard-deviation multiplier for stretch=stddev (default 2.0). Absent = current 2.0σ behavior. Must be > 0. Ignored, and not validated, when stretch is not stddev.
25618
26126
  */
25619
26127
  sigma?: number | null;
25620
26128
  };