@evergis/api 5.0.18 → 5.0.19
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/LICENSE +21 -21
- package/README.md +12 -12
- package/dist/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +12 -11
- package/dist/__generated__/BulkOperationsService.d.ts +1 -1
- package/dist/__generated__/CatalogService.d.ts +1 -1
- package/dist/__generated__/ClientSettingsService.d.ts +1 -1
- package/dist/__generated__/DataSourceService.d.ts +1 -1
- package/dist/__generated__/EqlService.d.ts +1 -1
- package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/FiltersService.d.ts +1 -1
- package/dist/__generated__/GeocodeService.d.ts +1 -1
- package/dist/__generated__/ImportService.d.ts +12 -11
- package/dist/__generated__/LayersService.d.ts +13 -11
- package/dist/__generated__/NotificationService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +1 -1
- package/dist/__generated__/QueryTokenAccessService.d.ts +1 -1
- package/dist/__generated__/RemoteTaskManagerService.d.ts +1 -1
- package/dist/__generated__/SecurityService.d.ts +34 -31
- package/dist/__generated__/SpatialReferencesService.d.ts +1 -1
- package/dist/__generated__/StatisticService.d.ts +1 -1
- package/dist/__generated__/TablesService.d.ts +1 -1
- package/dist/__generated__/ToolsService.d.ts +1 -1
- package/dist/__generated__/VectorTileService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +84 -2512
- package/dist/api.esm.js +109 -579
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +108 -578
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -5,15 +5,6 @@ export interface AccessControlListDc {
|
|
|
5
5
|
/** All available permissions list. */
|
|
6
6
|
data?: RolePermissionDc[];
|
|
7
7
|
}
|
|
8
|
-
/**
|
|
9
|
-
*
|
|
10
|
-
|
|
11
|
-
Shared
|
|
12
|
-
|
|
13
|
-
Public
|
|
14
|
-
|
|
15
|
-
My
|
|
16
|
-
*/
|
|
17
8
|
export declare enum AccessMode {
|
|
18
9
|
Shared = "Shared",
|
|
19
10
|
Public = "Public",
|
|
@@ -48,15 +39,6 @@ export interface ActiveWorkerDc {
|
|
|
48
39
|
export interface ActiveWorkerTaskDc {
|
|
49
40
|
/** Task type. */
|
|
50
41
|
type?: string;
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* Task
|
|
55
|
-
*
|
|
56
|
-
* Rest
|
|
57
|
-
*
|
|
58
|
-
* Both
|
|
59
|
-
*/
|
|
60
42
|
methodCallType?: WorkerMethodType;
|
|
61
43
|
/** SettingsFields. */
|
|
62
44
|
settingsFields?: WorkerSettingsFieldDc[];
|
|
@@ -65,19 +47,6 @@ export interface ActiveWorkerTaskDc {
|
|
|
65
47
|
* Additional data source connection data contract.
|
|
66
48
|
*/
|
|
67
49
|
export interface AdditionalDataSourceConnectionDc {
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
* Json
|
|
72
|
-
*
|
|
73
|
-
* Csv
|
|
74
|
-
*
|
|
75
|
-
* Orc
|
|
76
|
-
*
|
|
77
|
-
* Parquet
|
|
78
|
-
*
|
|
79
|
-
* Jdbc
|
|
80
|
-
*/
|
|
81
50
|
type?: DataSourceConnectionType;
|
|
82
51
|
/** Temp view name. */
|
|
83
52
|
name?: string;
|
|
@@ -95,100 +64,10 @@ export interface AggregationDataResultDc {
|
|
|
95
64
|
* @minLength 1
|
|
96
65
|
*/
|
|
97
66
|
aggregationAttributeName: string;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
* None
|
|
102
|
-
*
|
|
103
|
-
* Array
|
|
104
|
-
*
|
|
105
|
-
* Min
|
|
106
|
-
*
|
|
107
|
-
* Max
|
|
108
|
-
*
|
|
109
|
-
* Avg
|
|
110
|
-
*
|
|
111
|
-
* Sum
|
|
112
|
-
*
|
|
113
|
-
* Extent
|
|
114
|
-
*
|
|
115
|
-
* H3
|
|
116
|
-
*
|
|
117
|
-
* Count
|
|
118
|
-
*
|
|
119
|
-
* TotalCount
|
|
120
|
-
*
|
|
121
|
-
* DistinctCount
|
|
122
|
-
*
|
|
123
|
-
* First
|
|
124
|
-
*
|
|
125
|
-
* Last
|
|
126
|
-
*
|
|
127
|
-
* Median
|
|
128
|
-
*
|
|
129
|
-
* Mod
|
|
130
|
-
*
|
|
131
|
-
* StdDeviation
|
|
132
|
-
*
|
|
133
|
-
* SumOfProduct
|
|
134
|
-
*
|
|
135
|
-
* OnlyValue
|
|
136
|
-
*
|
|
137
|
-
* WeightedAvg
|
|
138
|
-
*
|
|
139
|
-
* DensityIndicators
|
|
140
|
-
*
|
|
141
|
-
* DividedSum
|
|
142
|
-
*/
|
|
143
67
|
aggregationFunctionName: AggregationFunction;
|
|
144
68
|
/** Aggregation result value. */
|
|
145
69
|
value: any;
|
|
146
70
|
}
|
|
147
|
-
/**
|
|
148
|
-
*
|
|
149
|
-
|
|
150
|
-
None
|
|
151
|
-
|
|
152
|
-
Array
|
|
153
|
-
|
|
154
|
-
Min
|
|
155
|
-
|
|
156
|
-
Max
|
|
157
|
-
|
|
158
|
-
Avg
|
|
159
|
-
|
|
160
|
-
Sum
|
|
161
|
-
|
|
162
|
-
Extent
|
|
163
|
-
|
|
164
|
-
H3
|
|
165
|
-
|
|
166
|
-
Count
|
|
167
|
-
|
|
168
|
-
TotalCount
|
|
169
|
-
|
|
170
|
-
DistinctCount
|
|
171
|
-
|
|
172
|
-
First
|
|
173
|
-
|
|
174
|
-
Last
|
|
175
|
-
|
|
176
|
-
Median
|
|
177
|
-
|
|
178
|
-
Mod
|
|
179
|
-
|
|
180
|
-
StdDeviation
|
|
181
|
-
|
|
182
|
-
SumOfProduct
|
|
183
|
-
|
|
184
|
-
OnlyValue
|
|
185
|
-
|
|
186
|
-
WeightedAvg
|
|
187
|
-
|
|
188
|
-
DensityIndicators
|
|
189
|
-
|
|
190
|
-
DividedSum
|
|
191
|
-
*/
|
|
192
71
|
export declare enum AggregationFunction {
|
|
193
72
|
None = "None",
|
|
194
73
|
Array = "Array",
|
|
@@ -216,21 +95,6 @@ export declare enum AggregationFunction {
|
|
|
216
95
|
* S3 data source settings.
|
|
217
96
|
*/
|
|
218
97
|
export type ArcGisDataSourceDc = DataSourceDc & {
|
|
219
|
-
/**
|
|
220
|
-
*
|
|
221
|
-
*
|
|
222
|
-
* Postgres
|
|
223
|
-
*
|
|
224
|
-
* Trino
|
|
225
|
-
*
|
|
226
|
-
* S3
|
|
227
|
-
*
|
|
228
|
-
* GisServer
|
|
229
|
-
*
|
|
230
|
-
* Spark
|
|
231
|
-
*
|
|
232
|
-
* Archive
|
|
233
|
-
*/
|
|
234
98
|
type?: DataSourceType;
|
|
235
99
|
/** Endpoint. */
|
|
236
100
|
serviceUrl?: string | null;
|
|
@@ -250,53 +114,8 @@ export type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
|
|
|
250
114
|
* Configuration of an attribute in a feature layer.
|
|
251
115
|
*/
|
|
252
116
|
export interface AttributeConfigurationDc {
|
|
253
|
-
/**
|
|
254
|
-
* Attribute configuration type.
|
|
255
|
-
*
|
|
256
|
-
* Default
|
|
257
|
-
*
|
|
258
|
-
* String
|
|
259
|
-
*
|
|
260
|
-
* Geometry
|
|
261
|
-
*
|
|
262
|
-
* Calculated
|
|
263
|
-
*/
|
|
117
|
+
/** Attribute configuration type. */
|
|
264
118
|
attributeConfigurationType?: AttributeConfigurationType;
|
|
265
|
-
/**
|
|
266
|
-
*
|
|
267
|
-
*
|
|
268
|
-
* Unknown
|
|
269
|
-
*
|
|
270
|
-
* String
|
|
271
|
-
*
|
|
272
|
-
* Int32
|
|
273
|
-
*
|
|
274
|
-
* Int64
|
|
275
|
-
*
|
|
276
|
-
* Double
|
|
277
|
-
*
|
|
278
|
-
* DateTime
|
|
279
|
-
*
|
|
280
|
-
* Boolean
|
|
281
|
-
*
|
|
282
|
-
* Point
|
|
283
|
-
*
|
|
284
|
-
* LineString
|
|
285
|
-
*
|
|
286
|
-
* Polygon
|
|
287
|
-
*
|
|
288
|
-
* MultiPoint
|
|
289
|
-
*
|
|
290
|
-
* MultiLineString
|
|
291
|
-
*
|
|
292
|
-
* H3Index
|
|
293
|
-
*
|
|
294
|
-
* Json
|
|
295
|
-
*
|
|
296
|
-
* MultiPolygon
|
|
297
|
-
*
|
|
298
|
-
* GeometryCollection
|
|
299
|
-
*/
|
|
300
119
|
type?: AttributeType;
|
|
301
120
|
/**
|
|
302
121
|
* The name of the attribute.
|
|
@@ -331,17 +150,6 @@ export interface AttributeConfigurationDc {
|
|
|
331
150
|
referenceId?: string;
|
|
332
151
|
/** A set of layer references. */
|
|
333
152
|
layerReferenceId?: string[];
|
|
334
|
-
/**
|
|
335
|
-
*
|
|
336
|
-
*
|
|
337
|
-
* None
|
|
338
|
-
*
|
|
339
|
-
* SelectFromHandBook
|
|
340
|
-
*
|
|
341
|
-
* SelectFromRange
|
|
342
|
-
*
|
|
343
|
-
* ViewHandBook
|
|
344
|
-
*/
|
|
345
153
|
attributeSelectorType?: AttributeSelectorType;
|
|
346
154
|
/** Sets attribute format settings. */
|
|
347
155
|
stringFormat?: AttributeFormatConfigurationDc;
|
|
@@ -349,16 +157,8 @@ export interface AttributeConfigurationDc {
|
|
|
349
157
|
icon?: AttributeIconDc;
|
|
350
158
|
}
|
|
351
159
|
/**
|
|
352
|
-
* Attribute configuration type.
|
|
353
|
-
|
|
354
|
-
Default
|
|
355
|
-
|
|
356
|
-
String
|
|
357
|
-
|
|
358
|
-
Geometry
|
|
359
|
-
|
|
360
|
-
Calculated
|
|
361
|
-
*/
|
|
160
|
+
* Attribute configuration type.
|
|
161
|
+
*/
|
|
362
162
|
export declare enum AttributeConfigurationType {
|
|
363
163
|
Default = "Default",
|
|
364
164
|
String = "String",
|
|
@@ -394,7 +194,6 @@ export interface AttributeFormatConfigurationDc {
|
|
|
394
194
|
/**
|
|
395
195
|
* Sets number scaling factor.
|
|
396
196
|
*
|
|
397
|
-
*
|
|
398
197
|
* In case, source value is 1 000 000 and scaling factor is 0.001 formatted value to be in hundred - 1000.
|
|
399
198
|
* @format float
|
|
400
199
|
*/
|
|
@@ -403,36 +202,32 @@ export interface AttributeFormatConfigurationDc {
|
|
|
403
202
|
unitsLabel?: string;
|
|
404
203
|
/**
|
|
405
204
|
*
|
|
205
|
+
* Template to format attribute value.
|
|
406
206
|
*
|
|
407
|
-
*
|
|
408
|
-
*
|
|
409
|
-
*
|
|
410
|
-
*
|
|
411
|
-
* Format numeric: http://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-numeric-format-strings .
|
|
412
|
-
*
|
|
413
|
-
*
|
|
414
|
-
*
|
|
415
|
-
* Format date and time: http://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings .
|
|
207
|
+
* Format numeric: http://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-numeric-format-strings .
|
|
416
208
|
*
|
|
209
|
+
* Format date and time: http://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings .
|
|
417
210
|
* <para></para>
|
|
418
211
|
* <example>
|
|
419
212
|
* `#,#` - Causes value to be split into groups
|
|
420
213
|
* ```
|
|
421
|
-
*
|
|
422
|
-
*
|
|
214
|
+
* 1234567890 -> 1 234 567 890
|
|
215
|
+
*
|
|
216
|
+
* ````.00` - Causes the value to be rounded.
|
|
423
217
|
* ```
|
|
424
|
-
*
|
|
425
|
-
*
|
|
218
|
+
* 123.446 -> 123.45
|
|
219
|
+
*
|
|
220
|
+
* ````#,#.00` - Causes value to be split into groups and rounded.
|
|
426
221
|
* ```
|
|
427
|
-
*
|
|
428
|
-
*
|
|
222
|
+
* 1234567.4563 - > 1 234 567.46
|
|
223
|
+
*
|
|
224
|
+
* ```</example>
|
|
429
225
|
*/
|
|
430
226
|
format?: string;
|
|
431
227
|
/**
|
|
432
228
|
* Set formatting culture. If not set, default culture is Current.
|
|
433
229
|
* Receive formatted value in different culture.
|
|
434
230
|
*
|
|
435
|
-
*
|
|
436
231
|
* Current culture is culture specified by default on machine (en-US, ru-RU).
|
|
437
232
|
* Invariant is culture-independent culture.
|
|
438
233
|
* Specific cultures: ru-RU, en-US.
|
|
@@ -451,17 +246,6 @@ export interface AttributeFormatConfigurationDc {
|
|
|
451
246
|
* Information about an attribute icon.
|
|
452
247
|
*/
|
|
453
248
|
export interface AttributeIconDc {
|
|
454
|
-
/**
|
|
455
|
-
*
|
|
456
|
-
*
|
|
457
|
-
* Unknown
|
|
458
|
-
*
|
|
459
|
-
* Icon
|
|
460
|
-
*
|
|
461
|
-
* PNG
|
|
462
|
-
*
|
|
463
|
-
* SVG
|
|
464
|
-
*/
|
|
465
249
|
type?: AttributeIconType;
|
|
466
250
|
/** Icon name from EverGIS icon library. */
|
|
467
251
|
iconName?: string;
|
|
@@ -470,75 +254,18 @@ export interface AttributeIconDc {
|
|
|
470
254
|
/** Icon resource id. */
|
|
471
255
|
resourceId?: string;
|
|
472
256
|
}
|
|
473
|
-
/**
|
|
474
|
-
*
|
|
475
|
-
|
|
476
|
-
Unknown
|
|
477
|
-
|
|
478
|
-
Icon
|
|
479
|
-
|
|
480
|
-
PNG
|
|
481
|
-
|
|
482
|
-
SVG
|
|
483
|
-
*/
|
|
484
257
|
export declare enum AttributeIconType {
|
|
485
258
|
Unknown = "Unknown",
|
|
486
259
|
Icon = "Icon",
|
|
487
260
|
PNG = "PNG",
|
|
488
261
|
SVG = "SVG"
|
|
489
262
|
}
|
|
490
|
-
/**
|
|
491
|
-
*
|
|
492
|
-
|
|
493
|
-
None
|
|
494
|
-
|
|
495
|
-
SelectFromHandBook
|
|
496
|
-
|
|
497
|
-
SelectFromRange
|
|
498
|
-
|
|
499
|
-
ViewHandBook
|
|
500
|
-
*/
|
|
501
263
|
export declare enum AttributeSelectorType {
|
|
502
264
|
None = "None",
|
|
503
265
|
SelectFromHandBook = "SelectFromHandBook",
|
|
504
266
|
SelectFromRange = "SelectFromRange",
|
|
505
267
|
ViewHandBook = "ViewHandBook"
|
|
506
268
|
}
|
|
507
|
-
/**
|
|
508
|
-
*
|
|
509
|
-
|
|
510
|
-
Unknown
|
|
511
|
-
|
|
512
|
-
String
|
|
513
|
-
|
|
514
|
-
Int32
|
|
515
|
-
|
|
516
|
-
Int64
|
|
517
|
-
|
|
518
|
-
Double
|
|
519
|
-
|
|
520
|
-
DateTime
|
|
521
|
-
|
|
522
|
-
Boolean
|
|
523
|
-
|
|
524
|
-
Point
|
|
525
|
-
|
|
526
|
-
LineString
|
|
527
|
-
|
|
528
|
-
Polygon
|
|
529
|
-
|
|
530
|
-
MultiPoint
|
|
531
|
-
|
|
532
|
-
MultiLineString
|
|
533
|
-
|
|
534
|
-
H3Index
|
|
535
|
-
|
|
536
|
-
Json
|
|
537
|
-
|
|
538
|
-
MultiPolygon
|
|
539
|
-
|
|
540
|
-
GeometryCollection
|
|
541
|
-
*/
|
|
542
269
|
export declare enum AttributeType {
|
|
543
270
|
Unknown = "Unknown",
|
|
544
271
|
String = "String",
|
|
@@ -570,43 +297,6 @@ export interface AttributesConfigurationDc {
|
|
|
570
297
|
idAttribute: string;
|
|
571
298
|
/** The name of the attribute that contains the feature geometry. */
|
|
572
299
|
geometryAttribute?: string;
|
|
573
|
-
/**
|
|
574
|
-
*
|
|
575
|
-
*
|
|
576
|
-
* Unknown
|
|
577
|
-
*
|
|
578
|
-
* Point
|
|
579
|
-
*
|
|
580
|
-
* LineString
|
|
581
|
-
*
|
|
582
|
-
* Polygon
|
|
583
|
-
*
|
|
584
|
-
* MultiPoint
|
|
585
|
-
*
|
|
586
|
-
* MultiLineString
|
|
587
|
-
*
|
|
588
|
-
* MultiPolygon
|
|
589
|
-
*
|
|
590
|
-
* GeometryCollection
|
|
591
|
-
*
|
|
592
|
-
* CircularString
|
|
593
|
-
*
|
|
594
|
-
* CompoundCurve
|
|
595
|
-
*
|
|
596
|
-
* CurvePolygon
|
|
597
|
-
*
|
|
598
|
-
* MultiCurve
|
|
599
|
-
*
|
|
600
|
-
* MultiSurface
|
|
601
|
-
*
|
|
602
|
-
* Curve
|
|
603
|
-
*
|
|
604
|
-
* Surface
|
|
605
|
-
*
|
|
606
|
-
* PolyhedralSurface
|
|
607
|
-
*
|
|
608
|
-
* TIN
|
|
609
|
-
*/
|
|
610
300
|
geometryType?: OgcGeometryType;
|
|
611
301
|
/**
|
|
612
302
|
* Geometry spatial reference.
|
|
@@ -624,13 +314,6 @@ export interface AttributesConfigurationDc {
|
|
|
624
314
|
/** Configuration of layer references. Isn't used by server. */
|
|
625
315
|
layerReferences?: LayerReferenceConfigurationDc[];
|
|
626
316
|
}
|
|
627
|
-
/**
|
|
628
|
-
*
|
|
629
|
-
|
|
630
|
-
authorization_code
|
|
631
|
-
|
|
632
|
-
refresh_token
|
|
633
|
-
*/
|
|
634
317
|
export declare enum AuthorizationGrant {
|
|
635
318
|
AuthorizationCode = "authorization_code",
|
|
636
319
|
RefreshToken = "refresh_token"
|
|
@@ -698,65 +381,10 @@ export interface BulkOperationResultDc {
|
|
|
698
381
|
logic settings.
|
|
699
382
|
*/
|
|
700
383
|
export type CalculatedAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
701
|
-
/**
|
|
702
|
-
* Attribute configuration type.
|
|
703
|
-
*
|
|
704
|
-
* Default
|
|
705
|
-
*
|
|
706
|
-
* String
|
|
707
|
-
*
|
|
708
|
-
* Geometry
|
|
709
|
-
*
|
|
710
|
-
* Calculated
|
|
711
|
-
*/
|
|
384
|
+
/** Attribute configuration type. */
|
|
712
385
|
attributeConfigurationType?: AttributeConfigurationType;
|
|
713
386
|
/** String condition. */
|
|
714
387
|
stringCondition?: string | null;
|
|
715
|
-
/**
|
|
716
|
-
*
|
|
717
|
-
*
|
|
718
|
-
* None
|
|
719
|
-
*
|
|
720
|
-
* Array
|
|
721
|
-
*
|
|
722
|
-
* Min
|
|
723
|
-
*
|
|
724
|
-
* Max
|
|
725
|
-
*
|
|
726
|
-
* Avg
|
|
727
|
-
*
|
|
728
|
-
* Sum
|
|
729
|
-
*
|
|
730
|
-
* Extent
|
|
731
|
-
*
|
|
732
|
-
* H3
|
|
733
|
-
*
|
|
734
|
-
* Count
|
|
735
|
-
*
|
|
736
|
-
* TotalCount
|
|
737
|
-
*
|
|
738
|
-
* DistinctCount
|
|
739
|
-
*
|
|
740
|
-
* First
|
|
741
|
-
*
|
|
742
|
-
* Last
|
|
743
|
-
*
|
|
744
|
-
* Median
|
|
745
|
-
*
|
|
746
|
-
* Mod
|
|
747
|
-
*
|
|
748
|
-
* StdDeviation
|
|
749
|
-
*
|
|
750
|
-
* SumOfProduct
|
|
751
|
-
*
|
|
752
|
-
* OnlyValue
|
|
753
|
-
*
|
|
754
|
-
* WeightedAvg
|
|
755
|
-
*
|
|
756
|
-
* DensityIndicators
|
|
757
|
-
*
|
|
758
|
-
* DividedSum
|
|
759
|
-
*/
|
|
760
388
|
aggregation?: AggregationFunction;
|
|
761
389
|
};
|
|
762
390
|
/**
|
|
@@ -771,63 +399,9 @@ export interface CatalogResourceDc {
|
|
|
771
399
|
systemName?: string;
|
|
772
400
|
/** Parent resource id. */
|
|
773
401
|
parentId?: string;
|
|
774
|
-
/**
|
|
775
|
-
*
|
|
776
|
-
*
|
|
777
|
-
* Directory
|
|
778
|
-
*
|
|
779
|
-
* Map
|
|
780
|
-
*
|
|
781
|
-
* Layer
|
|
782
|
-
*
|
|
783
|
-
* Table
|
|
784
|
-
*
|
|
785
|
-
* File
|
|
786
|
-
*
|
|
787
|
-
* TaskPrototype
|
|
788
|
-
*
|
|
789
|
-
* DataSource
|
|
790
|
-
*/
|
|
791
402
|
type?: CatalogResourceType;
|
|
792
403
|
/** Resource subtype. */
|
|
793
404
|
subtype?: string;
|
|
794
|
-
/**
|
|
795
|
-
*
|
|
796
|
-
*
|
|
797
|
-
* Unknown
|
|
798
|
-
*
|
|
799
|
-
* Point
|
|
800
|
-
*
|
|
801
|
-
* LineString
|
|
802
|
-
*
|
|
803
|
-
* Polygon
|
|
804
|
-
*
|
|
805
|
-
* MultiPoint
|
|
806
|
-
*
|
|
807
|
-
* MultiLineString
|
|
808
|
-
*
|
|
809
|
-
* MultiPolygon
|
|
810
|
-
*
|
|
811
|
-
* GeometryCollection
|
|
812
|
-
*
|
|
813
|
-
* CircularString
|
|
814
|
-
*
|
|
815
|
-
* CompoundCurve
|
|
816
|
-
*
|
|
817
|
-
* CurvePolygon
|
|
818
|
-
*
|
|
819
|
-
* MultiCurve
|
|
820
|
-
*
|
|
821
|
-
* MultiSurface
|
|
822
|
-
*
|
|
823
|
-
* Curve
|
|
824
|
-
*
|
|
825
|
-
* Surface
|
|
826
|
-
*
|
|
827
|
-
* PolyhedralSurface
|
|
828
|
-
*
|
|
829
|
-
* TIN
|
|
830
|
-
*/
|
|
831
405
|
geometryType?: OgcGeometryType;
|
|
832
406
|
/** Path to the resource. */
|
|
833
407
|
name?: string;
|
|
@@ -864,23 +438,6 @@ export interface CatalogResourceDc {
|
|
|
864
438
|
createdAt?: string;
|
|
865
439
|
/** Resource tags. */
|
|
866
440
|
tags?: string[];
|
|
867
|
-
/**
|
|
868
|
-
*
|
|
869
|
-
*
|
|
870
|
-
* none
|
|
871
|
-
*
|
|
872
|
-
* configure
|
|
873
|
-
*
|
|
874
|
-
* write
|
|
875
|
-
*
|
|
876
|
-
* read
|
|
877
|
-
*
|
|
878
|
-
* read,configure
|
|
879
|
-
*
|
|
880
|
-
* read,write
|
|
881
|
-
*
|
|
882
|
-
* read,write,configure
|
|
883
|
-
*/
|
|
884
441
|
permissions?: Permissions;
|
|
885
442
|
/** Table schema. */
|
|
886
443
|
schema?: string;
|
|
@@ -894,23 +451,6 @@ export interface CatalogResourceDc {
|
|
|
894
451
|
/** Resource icon. */
|
|
895
452
|
icon?: string;
|
|
896
453
|
}
|
|
897
|
-
/**
|
|
898
|
-
*
|
|
899
|
-
|
|
900
|
-
Directory
|
|
901
|
-
|
|
902
|
-
Map
|
|
903
|
-
|
|
904
|
-
Layer
|
|
905
|
-
|
|
906
|
-
Table
|
|
907
|
-
|
|
908
|
-
File
|
|
909
|
-
|
|
910
|
-
TaskPrototype
|
|
911
|
-
|
|
912
|
-
DataSource
|
|
913
|
-
*/
|
|
914
454
|
export declare enum CatalogResourceType {
|
|
915
455
|
Directory = "Directory",
|
|
916
456
|
Map = "Map",
|
|
@@ -920,21 +460,6 @@ export declare enum CatalogResourceType {
|
|
|
920
460
|
TaskPrototype = "TaskPrototype",
|
|
921
461
|
DataSource = "DataSource"
|
|
922
462
|
}
|
|
923
|
-
/**
|
|
924
|
-
*
|
|
925
|
-
|
|
926
|
-
none
|
|
927
|
-
|
|
928
|
-
naturalBreaks
|
|
929
|
-
|
|
930
|
-
equalInterval
|
|
931
|
-
|
|
932
|
-
quantile
|
|
933
|
-
|
|
934
|
-
unique
|
|
935
|
-
|
|
936
|
-
step
|
|
937
|
-
*/
|
|
938
463
|
export declare enum ClassificationType {
|
|
939
464
|
None = "none",
|
|
940
465
|
NaturalBreaks = "naturalBreaks",
|
|
@@ -943,15 +468,6 @@ export declare enum ClassificationType {
|
|
|
943
468
|
Unique = "unique",
|
|
944
469
|
Step = "step"
|
|
945
470
|
}
|
|
946
|
-
/**
|
|
947
|
-
*
|
|
948
|
-
|
|
949
|
-
decimal
|
|
950
|
-
|
|
951
|
-
dateTime
|
|
952
|
-
|
|
953
|
-
text
|
|
954
|
-
*/
|
|
955
471
|
export declare enum ClassifyAttributeType {
|
|
956
472
|
Decimal = "decimal",
|
|
957
473
|
DateTime = "dateTime",
|
|
@@ -996,41 +512,6 @@ export interface ColumnDescriptionDc {
|
|
|
996
512
|
name: string;
|
|
997
513
|
/** Default value, if column is not nullable. */
|
|
998
514
|
defaultValue?: any;
|
|
999
|
-
/**
|
|
1000
|
-
*
|
|
1001
|
-
*
|
|
1002
|
-
* Unknown
|
|
1003
|
-
*
|
|
1004
|
-
* String
|
|
1005
|
-
*
|
|
1006
|
-
* Int32
|
|
1007
|
-
*
|
|
1008
|
-
* Int64
|
|
1009
|
-
*
|
|
1010
|
-
* Double
|
|
1011
|
-
*
|
|
1012
|
-
* DateTime
|
|
1013
|
-
*
|
|
1014
|
-
* Boolean
|
|
1015
|
-
*
|
|
1016
|
-
* Point
|
|
1017
|
-
*
|
|
1018
|
-
* LineString
|
|
1019
|
-
*
|
|
1020
|
-
* Polygon
|
|
1021
|
-
*
|
|
1022
|
-
* MultiPoint
|
|
1023
|
-
*
|
|
1024
|
-
* MultiLineString
|
|
1025
|
-
*
|
|
1026
|
-
* H3Index
|
|
1027
|
-
*
|
|
1028
|
-
* Json
|
|
1029
|
-
*
|
|
1030
|
-
* MultiPolygon
|
|
1031
|
-
*
|
|
1032
|
-
* GeometryCollection
|
|
1033
|
-
*/
|
|
1034
515
|
type: AttributeType;
|
|
1035
516
|
/**
|
|
1036
517
|
* Columns value max length.
|
|
@@ -1063,17 +544,6 @@ export interface ConfigDc {
|
|
|
1063
544
|
/** Gets or sets config url path. */
|
|
1064
545
|
urlPath?: string;
|
|
1065
546
|
}
|
|
1066
|
-
/**
|
|
1067
|
-
*
|
|
1068
|
-
|
|
1069
|
-
Skip
|
|
1070
|
-
|
|
1071
|
-
Overwrite
|
|
1072
|
-
|
|
1073
|
-
GenerateUnique
|
|
1074
|
-
|
|
1075
|
-
ThrowError
|
|
1076
|
-
*/
|
|
1077
547
|
export declare enum ConflictResolutionStrategy {
|
|
1078
548
|
Skip = "Skip",
|
|
1079
549
|
Overwrite = "Overwrite",
|
|
@@ -1118,25 +588,6 @@ export interface CopyResourceDc {
|
|
|
1118
588
|
* @minLength 1
|
|
1119
589
|
*/
|
|
1120
590
|
name: string;
|
|
1121
|
-
/**
|
|
1122
|
-
*
|
|
1123
|
-
*
|
|
1124
|
-
* Unknown
|
|
1125
|
-
*
|
|
1126
|
-
* table
|
|
1127
|
-
*
|
|
1128
|
-
* layer
|
|
1129
|
-
*
|
|
1130
|
-
* project
|
|
1131
|
-
*
|
|
1132
|
-
* file
|
|
1133
|
-
*
|
|
1134
|
-
* feature
|
|
1135
|
-
*
|
|
1136
|
-
* tag
|
|
1137
|
-
*
|
|
1138
|
-
* datasource
|
|
1139
|
-
*/
|
|
1140
591
|
type: ResourceType;
|
|
1141
592
|
/**
|
|
1142
593
|
* Resource copy name.
|
|
@@ -1162,25 +613,6 @@ export interface CopyResourceResultDc {
|
|
|
1162
613
|
* @minLength 1
|
|
1163
614
|
*/
|
|
1164
615
|
name: string;
|
|
1165
|
-
/**
|
|
1166
|
-
*
|
|
1167
|
-
*
|
|
1168
|
-
* Unknown
|
|
1169
|
-
*
|
|
1170
|
-
* table
|
|
1171
|
-
*
|
|
1172
|
-
* layer
|
|
1173
|
-
*
|
|
1174
|
-
* project
|
|
1175
|
-
*
|
|
1176
|
-
* file
|
|
1177
|
-
*
|
|
1178
|
-
* feature
|
|
1179
|
-
*
|
|
1180
|
-
* tag
|
|
1181
|
-
*
|
|
1182
|
-
* datasource
|
|
1183
|
-
*/
|
|
1184
616
|
type: ResourceType;
|
|
1185
617
|
/** Name of resource to copy. */
|
|
1186
618
|
copyName?: string;
|
|
@@ -1373,19 +805,6 @@ export interface CreatedTaskResultDto {
|
|
|
1373
805
|
/** Success flag. */
|
|
1374
806
|
success?: boolean;
|
|
1375
807
|
}
|
|
1376
|
-
/**
|
|
1377
|
-
*
|
|
1378
|
-
|
|
1379
|
-
Json
|
|
1380
|
-
|
|
1381
|
-
Csv
|
|
1382
|
-
|
|
1383
|
-
Orc
|
|
1384
|
-
|
|
1385
|
-
Parquet
|
|
1386
|
-
|
|
1387
|
-
Jdbc
|
|
1388
|
-
*/
|
|
1389
808
|
export declare enum DataSourceConnectionType {
|
|
1390
809
|
Json = "Json",
|
|
1391
810
|
Csv = "Csv",
|
|
@@ -1409,21 +828,6 @@ export interface DataSourceDc {
|
|
|
1409
828
|
alias?: string;
|
|
1410
829
|
/** Description. */
|
|
1411
830
|
description?: string;
|
|
1412
|
-
/**
|
|
1413
|
-
*
|
|
1414
|
-
*
|
|
1415
|
-
* Postgres
|
|
1416
|
-
*
|
|
1417
|
-
* Trino
|
|
1418
|
-
*
|
|
1419
|
-
* S3
|
|
1420
|
-
*
|
|
1421
|
-
* GisServer
|
|
1422
|
-
*
|
|
1423
|
-
* Spark
|
|
1424
|
-
*
|
|
1425
|
-
* Archive
|
|
1426
|
-
*/
|
|
1427
831
|
type?: DataSourceType;
|
|
1428
832
|
/** Tags. */
|
|
1429
833
|
tags?: string[];
|
|
@@ -1438,21 +842,6 @@ export interface DataSourceInfoDc {
|
|
|
1438
842
|
alias?: string;
|
|
1439
843
|
/** Description. */
|
|
1440
844
|
description?: string;
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
*
|
|
1444
|
-
* Postgres
|
|
1445
|
-
*
|
|
1446
|
-
* Trino
|
|
1447
|
-
*
|
|
1448
|
-
* S3
|
|
1449
|
-
*
|
|
1450
|
-
* GisServer
|
|
1451
|
-
*
|
|
1452
|
-
* Spark
|
|
1453
|
-
*
|
|
1454
|
-
* Archive
|
|
1455
|
-
*/
|
|
1456
845
|
type?: DataSourceType;
|
|
1457
846
|
/** Tags. */
|
|
1458
847
|
tags?: string[];
|
|
@@ -1475,21 +864,6 @@ export interface DataSourceInfoDc {
|
|
|
1475
864
|
/** Access control list for a security object. */
|
|
1476
865
|
acl?: AccessControlListDc;
|
|
1477
866
|
}
|
|
1478
|
-
/**
|
|
1479
|
-
*
|
|
1480
|
-
|
|
1481
|
-
Postgres
|
|
1482
|
-
|
|
1483
|
-
Trino
|
|
1484
|
-
|
|
1485
|
-
S3
|
|
1486
|
-
|
|
1487
|
-
GisServer
|
|
1488
|
-
|
|
1489
|
-
Spark
|
|
1490
|
-
|
|
1491
|
-
Archive
|
|
1492
|
-
*/
|
|
1493
867
|
export declare enum DataSourceType {
|
|
1494
868
|
Postgres = "Postgres",
|
|
1495
869
|
Trino = "Trino",
|
|
@@ -1502,19 +876,7 @@ export declare enum DataSourceType {
|
|
|
1502
876
|
* Configuration of a table for feature layer.
|
|
1503
877
|
*/
|
|
1504
878
|
export type DefaultTableConfigurationDc = TableConfigurationBaseDc & {
|
|
1505
|
-
/**
|
|
1506
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
1507
|
-
*
|
|
1508
|
-
* DefaultTableConfiguration
|
|
1509
|
-
*
|
|
1510
|
-
* TileCatalogTableConfiguration
|
|
1511
|
-
*
|
|
1512
|
-
* ViewConfiguration
|
|
1513
|
-
*
|
|
1514
|
-
* MaterializedViewConfiguration
|
|
1515
|
-
*
|
|
1516
|
-
* RouteTableConfiguration
|
|
1517
|
-
*/
|
|
879
|
+
/** Specifies the available types of table configurations that can be used within the application. */
|
|
1518
880
|
type?: TableConfigurationType;
|
|
1519
881
|
/** Schema name. */
|
|
1520
882
|
schemaName?: string | null;
|
|
@@ -1659,19 +1021,7 @@ export interface EqlTableDependencyDc {
|
|
|
1659
1021
|
* Resource error details.
|
|
1660
1022
|
*/
|
|
1661
1023
|
export interface ErrorDetailsDc {
|
|
1662
|
-
/**
|
|
1663
|
-
* Type of the error.
|
|
1664
|
-
*
|
|
1665
|
-
* ResourceLimitExceeded
|
|
1666
|
-
*
|
|
1667
|
-
* ResourceNotFound
|
|
1668
|
-
*
|
|
1669
|
-
* InternalError
|
|
1670
|
-
*
|
|
1671
|
-
* BadRequest
|
|
1672
|
-
*
|
|
1673
|
-
* DuplicateContent
|
|
1674
|
-
*/
|
|
1024
|
+
/** Type of the error. */
|
|
1675
1025
|
errorType?: ErrorDetailsType;
|
|
1676
1026
|
/** Error message. */
|
|
1677
1027
|
message?: string;
|
|
@@ -1682,18 +1032,8 @@ export interface ErrorDetailsDc {
|
|
|
1682
1032
|
statusCode?: number;
|
|
1683
1033
|
}
|
|
1684
1034
|
/**
|
|
1685
|
-
* Type of the error.
|
|
1686
|
-
|
|
1687
|
-
ResourceLimitExceeded
|
|
1688
|
-
|
|
1689
|
-
ResourceNotFound
|
|
1690
|
-
|
|
1691
|
-
InternalError
|
|
1692
|
-
|
|
1693
|
-
BadRequest
|
|
1694
|
-
|
|
1695
|
-
DuplicateContent
|
|
1696
|
-
*/
|
|
1035
|
+
* Type of the error.
|
|
1036
|
+
*/
|
|
1697
1037
|
export declare enum ErrorDetailsType {
|
|
1698
1038
|
ResourceLimitExceeded = "ResourceLimitExceeded",
|
|
1699
1039
|
ResourceNotFound = "ResourceNotFound",
|
|
@@ -1709,41 +1049,6 @@ export interface ExpressionValidationResultDc {
|
|
|
1709
1049
|
isValid?: boolean;
|
|
1710
1050
|
/** If not valid, this field will contain the list of errors in the expression. */
|
|
1711
1051
|
errors?: string[];
|
|
1712
|
-
/**
|
|
1713
|
-
*
|
|
1714
|
-
*
|
|
1715
|
-
* Unknown
|
|
1716
|
-
*
|
|
1717
|
-
* String
|
|
1718
|
-
*
|
|
1719
|
-
* Int32
|
|
1720
|
-
*
|
|
1721
|
-
* Int64
|
|
1722
|
-
*
|
|
1723
|
-
* Double
|
|
1724
|
-
*
|
|
1725
|
-
* DateTime
|
|
1726
|
-
*
|
|
1727
|
-
* Boolean
|
|
1728
|
-
*
|
|
1729
|
-
* Point
|
|
1730
|
-
*
|
|
1731
|
-
* LineString
|
|
1732
|
-
*
|
|
1733
|
-
* Polygon
|
|
1734
|
-
*
|
|
1735
|
-
* MultiPoint
|
|
1736
|
-
*
|
|
1737
|
-
* MultiLineString
|
|
1738
|
-
*
|
|
1739
|
-
* H3Index
|
|
1740
|
-
*
|
|
1741
|
-
* Json
|
|
1742
|
-
*
|
|
1743
|
-
* MultiPolygon
|
|
1744
|
-
*
|
|
1745
|
-
* GeometryCollection
|
|
1746
|
-
*/
|
|
1747
1052
|
returnType?: AttributeType;
|
|
1748
1053
|
/** The expression that was validated. */
|
|
1749
1054
|
expression?: string;
|
|
@@ -1926,55 +1231,8 @@ export interface GeocodeSuggestResultDc {
|
|
|
1926
1231
|
* Information about a string attribute.
|
|
1927
1232
|
*/
|
|
1928
1233
|
export type GeometryAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
1929
|
-
/**
|
|
1930
|
-
* Attribute configuration type.
|
|
1931
|
-
*
|
|
1932
|
-
* Default
|
|
1933
|
-
*
|
|
1934
|
-
* String
|
|
1935
|
-
*
|
|
1936
|
-
* Geometry
|
|
1937
|
-
*
|
|
1938
|
-
* Calculated
|
|
1939
|
-
*/
|
|
1234
|
+
/** Attribute configuration type. */
|
|
1940
1235
|
attributeConfigurationType?: AttributeConfigurationType;
|
|
1941
|
-
/**
|
|
1942
|
-
*
|
|
1943
|
-
*
|
|
1944
|
-
* Unknown
|
|
1945
|
-
*
|
|
1946
|
-
* Point
|
|
1947
|
-
*
|
|
1948
|
-
* LineString
|
|
1949
|
-
*
|
|
1950
|
-
* Polygon
|
|
1951
|
-
*
|
|
1952
|
-
* MultiPoint
|
|
1953
|
-
*
|
|
1954
|
-
* MultiLineString
|
|
1955
|
-
*
|
|
1956
|
-
* MultiPolygon
|
|
1957
|
-
*
|
|
1958
|
-
* GeometryCollection
|
|
1959
|
-
*
|
|
1960
|
-
* CircularString
|
|
1961
|
-
*
|
|
1962
|
-
* CompoundCurve
|
|
1963
|
-
*
|
|
1964
|
-
* CurvePolygon
|
|
1965
|
-
*
|
|
1966
|
-
* MultiCurve
|
|
1967
|
-
*
|
|
1968
|
-
* MultiSurface
|
|
1969
|
-
*
|
|
1970
|
-
* Curve
|
|
1971
|
-
*
|
|
1972
|
-
* Surface
|
|
1973
|
-
*
|
|
1974
|
-
* PolyhedralSurface
|
|
1975
|
-
*
|
|
1976
|
-
* TIN
|
|
1977
|
-
*/
|
|
1978
1236
|
geometryType?: OgcGeometryType;
|
|
1979
1237
|
/**
|
|
1980
1238
|
* Spatial reference identifier type in geometry type column.
|
|
@@ -1993,86 +1251,12 @@ export type GeometryAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
|
1993
1251
|
export type GeometryCollectionDc = GeometryDc & {
|
|
1994
1252
|
/** Multipoint coordinates. */
|
|
1995
1253
|
geometries: (GeometryCollectionDc | LineStringDc | MultiLineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc)[];
|
|
1996
|
-
/**
|
|
1997
|
-
*
|
|
1998
|
-
*
|
|
1999
|
-
* Unknown
|
|
2000
|
-
*
|
|
2001
|
-
* Point
|
|
2002
|
-
*
|
|
2003
|
-
* LineString
|
|
2004
|
-
*
|
|
2005
|
-
* Polygon
|
|
2006
|
-
*
|
|
2007
|
-
* MultiPoint
|
|
2008
|
-
*
|
|
2009
|
-
* MultiLineString
|
|
2010
|
-
*
|
|
2011
|
-
* MultiPolygon
|
|
2012
|
-
*
|
|
2013
|
-
* GeometryCollection
|
|
2014
|
-
*
|
|
2015
|
-
* CircularString
|
|
2016
|
-
*
|
|
2017
|
-
* CompoundCurve
|
|
2018
|
-
*
|
|
2019
|
-
* CurvePolygon
|
|
2020
|
-
*
|
|
2021
|
-
* MultiCurve
|
|
2022
|
-
*
|
|
2023
|
-
* MultiSurface
|
|
2024
|
-
*
|
|
2025
|
-
* Curve
|
|
2026
|
-
*
|
|
2027
|
-
* Surface
|
|
2028
|
-
*
|
|
2029
|
-
* PolyhedralSurface
|
|
2030
|
-
*
|
|
2031
|
-
* TIN
|
|
2032
|
-
*/
|
|
2033
1254
|
type?: OgcGeometryType;
|
|
2034
1255
|
};
|
|
2035
1256
|
/**
|
|
2036
1257
|
* Geometry data contract.
|
|
2037
1258
|
*/
|
|
2038
1259
|
export interface GeometryDc {
|
|
2039
|
-
/**
|
|
2040
|
-
*
|
|
2041
|
-
*
|
|
2042
|
-
* Unknown
|
|
2043
|
-
*
|
|
2044
|
-
* Point
|
|
2045
|
-
*
|
|
2046
|
-
* LineString
|
|
2047
|
-
*
|
|
2048
|
-
* Polygon
|
|
2049
|
-
*
|
|
2050
|
-
* MultiPoint
|
|
2051
|
-
*
|
|
2052
|
-
* MultiLineString
|
|
2053
|
-
*
|
|
2054
|
-
* MultiPolygon
|
|
2055
|
-
*
|
|
2056
|
-
* GeometryCollection
|
|
2057
|
-
*
|
|
2058
|
-
* CircularString
|
|
2059
|
-
*
|
|
2060
|
-
* CompoundCurve
|
|
2061
|
-
*
|
|
2062
|
-
* CurvePolygon
|
|
2063
|
-
*
|
|
2064
|
-
* MultiCurve
|
|
2065
|
-
*
|
|
2066
|
-
* MultiSurface
|
|
2067
|
-
*
|
|
2068
|
-
* Curve
|
|
2069
|
-
*
|
|
2070
|
-
* Surface
|
|
2071
|
-
*
|
|
2072
|
-
* PolyhedralSurface
|
|
2073
|
-
*
|
|
2074
|
-
* TIN
|
|
2075
|
-
*/
|
|
2076
1260
|
type: OgcGeometryType;
|
|
2077
1261
|
/**
|
|
2078
1262
|
* Spatial reference id.
|
|
@@ -2187,31 +1371,7 @@ export interface GetClassifyDc {
|
|
|
2187
1371
|
* @format int32
|
|
2188
1372
|
*/
|
|
2189
1373
|
precision?: number;
|
|
2190
|
-
/**
|
|
2191
|
-
*
|
|
2192
|
-
*
|
|
2193
|
-
* none
|
|
2194
|
-
*
|
|
2195
|
-
* naturalBreaks
|
|
2196
|
-
*
|
|
2197
|
-
* equalInterval
|
|
2198
|
-
*
|
|
2199
|
-
* quantile
|
|
2200
|
-
*
|
|
2201
|
-
* unique
|
|
2202
|
-
*
|
|
2203
|
-
* step
|
|
2204
|
-
*/
|
|
2205
1374
|
type?: ClassificationType;
|
|
2206
|
-
/**
|
|
2207
|
-
*
|
|
2208
|
-
*
|
|
2209
|
-
* decimal
|
|
2210
|
-
*
|
|
2211
|
-
* dateTime
|
|
2212
|
-
*
|
|
2213
|
-
* text
|
|
2214
|
-
*/
|
|
2215
1375
|
attributeType?: ClassifyAttributeType;
|
|
2216
1376
|
}
|
|
2217
1377
|
/**
|
|
@@ -2397,24 +1557,8 @@ export interface LayerReferenceConfigurationDc {
|
|
|
2397
1557
|
referenceId?: string;
|
|
2398
1558
|
}
|
|
2399
1559
|
/**
|
|
2400
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
2401
|
-
|
|
2402
|
-
QueryLayerService
|
|
2403
|
-
|
|
2404
|
-
LinearLayerService
|
|
2405
|
-
|
|
2406
|
-
MapboxLayerService
|
|
2407
|
-
|
|
2408
|
-
PostgresTileLayerService
|
|
2409
|
-
|
|
2410
|
-
ProxyLayerService
|
|
2411
|
-
|
|
2412
|
-
PythonLayerService
|
|
2413
|
-
|
|
2414
|
-
RemoteTileLayerService
|
|
2415
|
-
|
|
2416
|
-
RouteLayerService
|
|
2417
|
-
*/
|
|
1560
|
+
* Specifies the available types of layer services that can be used within the application.
|
|
1561
|
+
*/
|
|
2418
1562
|
export declare enum LayerServiceType {
|
|
2419
1563
|
QueryLayerService = "QueryLayerService",
|
|
2420
1564
|
LinearLayerService = "LinearLayerService",
|
|
@@ -2448,70 +1592,15 @@ export interface LayerUpdateInfoDc {
|
|
|
2448
1592
|
* MultiLineString geometry object definition.
|
|
2449
1593
|
*/
|
|
2450
1594
|
export type LineStringDc = GeometryDc & {
|
|
2451
|
-
/**
|
|
2452
|
-
*
|
|
2453
|
-
*
|
|
2454
|
-
* Unknown
|
|
2455
|
-
*
|
|
2456
|
-
* Point
|
|
2457
|
-
*
|
|
2458
|
-
* LineString
|
|
2459
|
-
*
|
|
2460
|
-
* Polygon
|
|
2461
|
-
*
|
|
2462
|
-
* MultiPoint
|
|
2463
|
-
*
|
|
2464
|
-
* MultiLineString
|
|
2465
|
-
*
|
|
2466
|
-
* MultiPolygon
|
|
2467
|
-
*
|
|
2468
|
-
* GeometryCollection
|
|
2469
|
-
*
|
|
2470
|
-
* CircularString
|
|
2471
|
-
*
|
|
2472
|
-
* CompoundCurve
|
|
2473
|
-
*
|
|
2474
|
-
* CurvePolygon
|
|
2475
|
-
*
|
|
2476
|
-
* MultiCurve
|
|
2477
|
-
*
|
|
2478
|
-
* MultiSurface
|
|
2479
|
-
*
|
|
2480
|
-
* Curve
|
|
2481
|
-
*
|
|
2482
|
-
* Surface
|
|
2483
|
-
*
|
|
2484
|
-
* PolyhedralSurface
|
|
2485
|
-
*
|
|
2486
|
-
* TIN
|
|
2487
|
-
*/
|
|
2488
1595
|
type?: OgcGeometryType;
|
|
2489
1596
|
/** Poly coordinates. */
|
|
2490
1597
|
coordinates: PositionDc[];
|
|
2491
1598
|
};
|
|
2492
1599
|
/**
|
|
2493
|
-
* Linear service configuration Dc.
|
|
2494
|
-
*/
|
|
2495
|
-
export type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
2496
|
-
/**
|
|
2497
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
2498
|
-
*
|
|
2499
|
-
* QueryLayerService
|
|
2500
|
-
*
|
|
2501
|
-
* LinearLayerService
|
|
2502
|
-
*
|
|
2503
|
-
* MapboxLayerService
|
|
2504
|
-
*
|
|
2505
|
-
* PostgresTileLayerService
|
|
2506
|
-
*
|
|
2507
|
-
* ProxyLayerService
|
|
2508
|
-
*
|
|
2509
|
-
* PythonLayerService
|
|
2510
|
-
*
|
|
2511
|
-
* RemoteTileLayerService
|
|
2512
|
-
*
|
|
2513
|
-
* RouteLayerService
|
|
2514
|
-
*/
|
|
1600
|
+
* Linear service configuration Dc.
|
|
1601
|
+
*/
|
|
1602
|
+
export type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
1603
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
2515
1604
|
layerType?: LayerServiceType;
|
|
2516
1605
|
/** Configuration of the attribute set in a feature layer. */
|
|
2517
1606
|
attributesConfiguration: AttributesConfigurationDc;
|
|
@@ -2531,15 +1620,6 @@ export interface ListResourcesDc {
|
|
|
2531
1620
|
* for example start with 'text*', contains 'text', end with '*text'.
|
|
2532
1621
|
*/
|
|
2533
1622
|
filter?: string;
|
|
2534
|
-
/**
|
|
2535
|
-
*
|
|
2536
|
-
*
|
|
2537
|
-
* Shared
|
|
2538
|
-
*
|
|
2539
|
-
* Public
|
|
2540
|
-
*
|
|
2541
|
-
* My
|
|
2542
|
-
*/
|
|
2543
1623
|
ownerFilter?: AccessMode;
|
|
2544
1624
|
/** Resources types filter. */
|
|
2545
1625
|
resourceTypes?: CatalogResourceType[];
|
|
@@ -2630,19 +1710,7 @@ export interface MapTableInfoDc {
|
|
|
2630
1710
|
* Configuration of a table for feature layer.
|
|
2631
1711
|
*/
|
|
2632
1712
|
export type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
|
|
2633
|
-
/**
|
|
2634
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
2635
|
-
*
|
|
2636
|
-
* DefaultTableConfiguration
|
|
2637
|
-
*
|
|
2638
|
-
* TileCatalogTableConfiguration
|
|
2639
|
-
*
|
|
2640
|
-
* ViewConfiguration
|
|
2641
|
-
*
|
|
2642
|
-
* MaterializedViewConfiguration
|
|
2643
|
-
*
|
|
2644
|
-
* RouteTableConfiguration
|
|
2645
|
-
*/
|
|
1713
|
+
/** Specifies the available types of table configurations that can be used within the application. */
|
|
2646
1714
|
type?: TableConfigurationType;
|
|
2647
1715
|
/** EQL. */
|
|
2648
1716
|
eql?: string | null;
|
|
@@ -2657,21 +1725,6 @@ export type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
|
|
|
2657
1725
|
* MosRu data source.
|
|
2658
1726
|
*/
|
|
2659
1727
|
export type MosRuDataSourceDc = DataSourceDc & {
|
|
2660
|
-
/**
|
|
2661
|
-
*
|
|
2662
|
-
*
|
|
2663
|
-
* Postgres
|
|
2664
|
-
*
|
|
2665
|
-
* Trino
|
|
2666
|
-
*
|
|
2667
|
-
* S3
|
|
2668
|
-
*
|
|
2669
|
-
* GisServer
|
|
2670
|
-
*
|
|
2671
|
-
* Spark
|
|
2672
|
-
*
|
|
2673
|
-
* Archive
|
|
2674
|
-
*/
|
|
2675
1728
|
type?: DataSourceType;
|
|
2676
1729
|
/** Endpoint. */
|
|
2677
1730
|
serviceUrl?: string | null;
|
|
@@ -2702,43 +1755,6 @@ export interface MoveResourceDc {
|
|
|
2702
1755
|
* MultiLineString geometry object definition.
|
|
2703
1756
|
*/
|
|
2704
1757
|
export type MultiLineStringDc = GeometryDc & {
|
|
2705
|
-
/**
|
|
2706
|
-
*
|
|
2707
|
-
*
|
|
2708
|
-
* Unknown
|
|
2709
|
-
*
|
|
2710
|
-
* Point
|
|
2711
|
-
*
|
|
2712
|
-
* LineString
|
|
2713
|
-
*
|
|
2714
|
-
* Polygon
|
|
2715
|
-
*
|
|
2716
|
-
* MultiPoint
|
|
2717
|
-
*
|
|
2718
|
-
* MultiLineString
|
|
2719
|
-
*
|
|
2720
|
-
* MultiPolygon
|
|
2721
|
-
*
|
|
2722
|
-
* GeometryCollection
|
|
2723
|
-
*
|
|
2724
|
-
* CircularString
|
|
2725
|
-
*
|
|
2726
|
-
* CompoundCurve
|
|
2727
|
-
*
|
|
2728
|
-
* CurvePolygon
|
|
2729
|
-
*
|
|
2730
|
-
* MultiCurve
|
|
2731
|
-
*
|
|
2732
|
-
* MultiSurface
|
|
2733
|
-
*
|
|
2734
|
-
* Curve
|
|
2735
|
-
*
|
|
2736
|
-
* Surface
|
|
2737
|
-
*
|
|
2738
|
-
* PolyhedralSurface
|
|
2739
|
-
*
|
|
2740
|
-
* TIN
|
|
2741
|
-
*/
|
|
2742
1758
|
type?: OgcGeometryType;
|
|
2743
1759
|
/** Poly coordinates. */
|
|
2744
1760
|
coordinates: PositionDc[][];
|
|
@@ -2749,43 +1765,6 @@ export type MultiLineStringDc = GeometryDc & {
|
|
|
2749
1765
|
export type MultiPointDc = GeometryDc & {
|
|
2750
1766
|
/** Multipoint coordinates. */
|
|
2751
1767
|
coordinates: PositionDc[];
|
|
2752
|
-
/**
|
|
2753
|
-
*
|
|
2754
|
-
*
|
|
2755
|
-
* Unknown
|
|
2756
|
-
*
|
|
2757
|
-
* Point
|
|
2758
|
-
*
|
|
2759
|
-
* LineString
|
|
2760
|
-
*
|
|
2761
|
-
* Polygon
|
|
2762
|
-
*
|
|
2763
|
-
* MultiPoint
|
|
2764
|
-
*
|
|
2765
|
-
* MultiLineString
|
|
2766
|
-
*
|
|
2767
|
-
* MultiPolygon
|
|
2768
|
-
*
|
|
2769
|
-
* GeometryCollection
|
|
2770
|
-
*
|
|
2771
|
-
* CircularString
|
|
2772
|
-
*
|
|
2773
|
-
* CompoundCurve
|
|
2774
|
-
*
|
|
2775
|
-
* CurvePolygon
|
|
2776
|
-
*
|
|
2777
|
-
* MultiCurve
|
|
2778
|
-
*
|
|
2779
|
-
* MultiSurface
|
|
2780
|
-
*
|
|
2781
|
-
* Curve
|
|
2782
|
-
*
|
|
2783
|
-
* Surface
|
|
2784
|
-
*
|
|
2785
|
-
* PolyhedralSurface
|
|
2786
|
-
*
|
|
2787
|
-
* TIN
|
|
2788
|
-
*/
|
|
2789
1768
|
type?: OgcGeometryType;
|
|
2790
1769
|
};
|
|
2791
1770
|
/**
|
|
@@ -2794,43 +1773,6 @@ export type MultiPointDc = GeometryDc & {
|
|
|
2794
1773
|
export type MultiPolygonDc = GeometryDc & {
|
|
2795
1774
|
/** Multipoint coordinates. */
|
|
2796
1775
|
coordinates: PositionDc[][][];
|
|
2797
|
-
/**
|
|
2798
|
-
*
|
|
2799
|
-
*
|
|
2800
|
-
* Unknown
|
|
2801
|
-
*
|
|
2802
|
-
* Point
|
|
2803
|
-
*
|
|
2804
|
-
* LineString
|
|
2805
|
-
*
|
|
2806
|
-
* Polygon
|
|
2807
|
-
*
|
|
2808
|
-
* MultiPoint
|
|
2809
|
-
*
|
|
2810
|
-
* MultiLineString
|
|
2811
|
-
*
|
|
2812
|
-
* MultiPolygon
|
|
2813
|
-
*
|
|
2814
|
-
* GeometryCollection
|
|
2815
|
-
*
|
|
2816
|
-
* CircularString
|
|
2817
|
-
*
|
|
2818
|
-
* CompoundCurve
|
|
2819
|
-
*
|
|
2820
|
-
* CurvePolygon
|
|
2821
|
-
*
|
|
2822
|
-
* MultiCurve
|
|
2823
|
-
*
|
|
2824
|
-
* MultiSurface
|
|
2825
|
-
*
|
|
2826
|
-
* Curve
|
|
2827
|
-
*
|
|
2828
|
-
* Surface
|
|
2829
|
-
*
|
|
2830
|
-
* PolyhedralSurface
|
|
2831
|
-
*
|
|
2832
|
-
* TIN
|
|
2833
|
-
*/
|
|
2834
1776
|
type?: OgcGeometryType;
|
|
2835
1777
|
};
|
|
2836
1778
|
/**
|
|
@@ -2859,43 +1801,6 @@ export type NetCdfMetaDc = RasterMetaDc & {
|
|
|
2859
1801
|
dimExtraValues?: Record<string, string[] | null>;
|
|
2860
1802
|
};
|
|
2861
1803
|
export type ObjectId = object;
|
|
2862
|
-
/**
|
|
2863
|
-
*
|
|
2864
|
-
|
|
2865
|
-
Unknown
|
|
2866
|
-
|
|
2867
|
-
Point
|
|
2868
|
-
|
|
2869
|
-
LineString
|
|
2870
|
-
|
|
2871
|
-
Polygon
|
|
2872
|
-
|
|
2873
|
-
MultiPoint
|
|
2874
|
-
|
|
2875
|
-
MultiLineString
|
|
2876
|
-
|
|
2877
|
-
MultiPolygon
|
|
2878
|
-
|
|
2879
|
-
GeometryCollection
|
|
2880
|
-
|
|
2881
|
-
CircularString
|
|
2882
|
-
|
|
2883
|
-
CompoundCurve
|
|
2884
|
-
|
|
2885
|
-
CurvePolygon
|
|
2886
|
-
|
|
2887
|
-
MultiCurve
|
|
2888
|
-
|
|
2889
|
-
MultiSurface
|
|
2890
|
-
|
|
2891
|
-
Curve
|
|
2892
|
-
|
|
2893
|
-
Surface
|
|
2894
|
-
|
|
2895
|
-
PolyhedralSurface
|
|
2896
|
-
|
|
2897
|
-
TIN
|
|
2898
|
-
*/
|
|
2899
1804
|
export declare enum OgcGeometryType {
|
|
2900
1805
|
Unknown = "Unknown",
|
|
2901
1806
|
Point = "Point",
|
|
@@ -3086,12 +1991,8 @@ export interface PatchResourceDc {
|
|
|
3086
1991
|
icon?: string;
|
|
3087
1992
|
}
|
|
3088
1993
|
/**
|
|
3089
|
-
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
3090
|
-
|
|
3091
|
-
xyz
|
|
3092
|
-
|
|
3093
|
-
tms
|
|
3094
|
-
*/
|
|
1994
|
+
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
1995
|
+
*/
|
|
3095
1996
|
export declare enum PbfSchema {
|
|
3096
1997
|
XYZ = "xyz",
|
|
3097
1998
|
TMS = "tms"
|
|
@@ -3100,65 +2001,18 @@ export declare enum PbfSchema {
|
|
|
3100
2001
|
* Configuration for the mapbox PBF/MVT service.
|
|
3101
2002
|
*/
|
|
3102
2003
|
export type PbfServiceConfigurationDc = ProxyServiceConfigurationDc & {
|
|
3103
|
-
/**
|
|
3104
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
3105
|
-
*
|
|
3106
|
-
* QueryLayerService
|
|
3107
|
-
*
|
|
3108
|
-
* LinearLayerService
|
|
3109
|
-
*
|
|
3110
|
-
* MapboxLayerService
|
|
3111
|
-
*
|
|
3112
|
-
* PostgresTileLayerService
|
|
3113
|
-
*
|
|
3114
|
-
* ProxyLayerService
|
|
3115
|
-
*
|
|
3116
|
-
* PythonLayerService
|
|
3117
|
-
*
|
|
3118
|
-
* RemoteTileLayerService
|
|
3119
|
-
*
|
|
3120
|
-
* RouteLayerService
|
|
3121
|
-
*/
|
|
2004
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
3122
2005
|
layerType?: LayerServiceType;
|
|
3123
|
-
/**
|
|
3124
|
-
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
3125
|
-
*
|
|
3126
|
-
* xyz
|
|
3127
|
-
*
|
|
3128
|
-
* tms
|
|
3129
|
-
*/
|
|
2006
|
+
/** Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed. */
|
|
3130
2007
|
schema?: PbfSchema;
|
|
3131
2008
|
};
|
|
3132
2009
|
/**
|
|
3133
2010
|
* Service info for a mapbox service.
|
|
3134
2011
|
*/
|
|
3135
2012
|
export type PbfServiceInfoDc = ProxyServiceInfoDc & {
|
|
3136
|
-
/**
|
|
3137
|
-
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
3138
|
-
*
|
|
3139
|
-
* xyz
|
|
3140
|
-
*
|
|
3141
|
-
* tms
|
|
3142
|
-
*/
|
|
2013
|
+
/** Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed. */
|
|
3143
2014
|
schema: PbfSchema;
|
|
3144
2015
|
};
|
|
3145
|
-
/**
|
|
3146
|
-
*
|
|
3147
|
-
|
|
3148
|
-
none
|
|
3149
|
-
|
|
3150
|
-
configure
|
|
3151
|
-
|
|
3152
|
-
write
|
|
3153
|
-
|
|
3154
|
-
read
|
|
3155
|
-
|
|
3156
|
-
read,configure
|
|
3157
|
-
|
|
3158
|
-
read,write
|
|
3159
|
-
|
|
3160
|
-
read,write,configure
|
|
3161
|
-
*/
|
|
3162
2016
|
export declare enum Permissions {
|
|
3163
2017
|
None = "none",
|
|
3164
2018
|
Configure = "configure",
|
|
@@ -3174,89 +2028,18 @@ export declare enum Permissions {
|
|
|
3174
2028
|
export type PointDc = GeometryDc & {
|
|
3175
2029
|
/** The position at the map. */
|
|
3176
2030
|
coordinates: PositionDc;
|
|
3177
|
-
/**
|
|
3178
|
-
*
|
|
3179
|
-
*
|
|
3180
|
-
* Unknown
|
|
3181
|
-
*
|
|
3182
|
-
* Point
|
|
3183
|
-
*
|
|
3184
|
-
* LineString
|
|
3185
|
-
*
|
|
3186
|
-
* Polygon
|
|
3187
|
-
*
|
|
3188
|
-
* MultiPoint
|
|
3189
|
-
*
|
|
3190
|
-
* MultiLineString
|
|
3191
|
-
*
|
|
3192
|
-
* MultiPolygon
|
|
3193
|
-
*
|
|
3194
|
-
* GeometryCollection
|
|
3195
|
-
*
|
|
3196
|
-
* CircularString
|
|
3197
|
-
*
|
|
3198
|
-
* CompoundCurve
|
|
3199
|
-
*
|
|
3200
|
-
* CurvePolygon
|
|
3201
|
-
*
|
|
3202
|
-
* MultiCurve
|
|
3203
|
-
*
|
|
3204
|
-
* MultiSurface
|
|
3205
|
-
*
|
|
3206
|
-
* Curve
|
|
3207
|
-
*
|
|
3208
|
-
* Surface
|
|
3209
|
-
*
|
|
3210
|
-
* PolyhedralSurface
|
|
3211
|
-
*
|
|
3212
|
-
* TIN
|
|
3213
|
-
*/
|
|
3214
2031
|
type?: OgcGeometryType;
|
|
3215
2032
|
};
|
|
3216
2033
|
export interface PolicyDc {
|
|
3217
|
-
/**
|
|
3218
|
-
* Type of the authorization policy.
|
|
3219
|
-
*
|
|
3220
|
-
* Unknown
|
|
3221
|
-
*
|
|
3222
|
-
* CreateTable
|
|
3223
|
-
*
|
|
3224
|
-
* CreateLayer
|
|
3225
|
-
*
|
|
3226
|
-
* CreateProject
|
|
3227
|
-
*
|
|
3228
|
-
* MaxFeaturesInOneTable
|
|
3229
|
-
*
|
|
3230
|
-
* MaxObjectsToExport
|
|
3231
|
-
*
|
|
3232
|
-
* MaxUploadContentSize
|
|
3233
|
-
*
|
|
3234
|
-
* MaxEqlQueryParametersValues
|
|
3235
|
-
*/
|
|
2034
|
+
/** Type of the authorization policy. */
|
|
3236
2035
|
type: PolicyType;
|
|
3237
2036
|
role?: string;
|
|
3238
2037
|
/** @format int32 */
|
|
3239
2038
|
value: number;
|
|
3240
2039
|
}
|
|
3241
2040
|
/**
|
|
3242
|
-
* Type of the authorization policy.
|
|
3243
|
-
|
|
3244
|
-
Unknown
|
|
3245
|
-
|
|
3246
|
-
CreateTable
|
|
3247
|
-
|
|
3248
|
-
CreateLayer
|
|
3249
|
-
|
|
3250
|
-
CreateProject
|
|
3251
|
-
|
|
3252
|
-
MaxFeaturesInOneTable
|
|
3253
|
-
|
|
3254
|
-
MaxObjectsToExport
|
|
3255
|
-
|
|
3256
|
-
MaxUploadContentSize
|
|
3257
|
-
|
|
3258
|
-
MaxEqlQueryParametersValues
|
|
3259
|
-
*/
|
|
2041
|
+
* Type of the authorization policy.
|
|
2042
|
+
*/
|
|
3260
2043
|
export declare enum PolicyType {
|
|
3261
2044
|
Unknown = "Unknown",
|
|
3262
2045
|
CreateTable = "CreateTable",
|
|
@@ -3271,43 +2054,6 @@ export declare enum PolicyType {
|
|
|
3271
2054
|
* Polygon geometry object definition.
|
|
3272
2055
|
*/
|
|
3273
2056
|
export type PolygonDc = GeometryDc & {
|
|
3274
|
-
/**
|
|
3275
|
-
*
|
|
3276
|
-
*
|
|
3277
|
-
* Unknown
|
|
3278
|
-
*
|
|
3279
|
-
* Point
|
|
3280
|
-
*
|
|
3281
|
-
* LineString
|
|
3282
|
-
*
|
|
3283
|
-
* Polygon
|
|
3284
|
-
*
|
|
3285
|
-
* MultiPoint
|
|
3286
|
-
*
|
|
3287
|
-
* MultiLineString
|
|
3288
|
-
*
|
|
3289
|
-
* MultiPolygon
|
|
3290
|
-
*
|
|
3291
|
-
* GeometryCollection
|
|
3292
|
-
*
|
|
3293
|
-
* CircularString
|
|
3294
|
-
*
|
|
3295
|
-
* CompoundCurve
|
|
3296
|
-
*
|
|
3297
|
-
* CurvePolygon
|
|
3298
|
-
*
|
|
3299
|
-
* MultiCurve
|
|
3300
|
-
*
|
|
3301
|
-
* MultiSurface
|
|
3302
|
-
*
|
|
3303
|
-
* Curve
|
|
3304
|
-
*
|
|
3305
|
-
* Surface
|
|
3306
|
-
*
|
|
3307
|
-
* PolyhedralSurface
|
|
3308
|
-
*
|
|
3309
|
-
* TIN
|
|
3310
|
-
*/
|
|
3311
2057
|
type?: OgcGeometryType;
|
|
3312
2058
|
/** Polygon coordinates. */
|
|
3313
2059
|
coordinates: PositionDc[][];
|
|
@@ -3320,21 +2066,6 @@ export type PositionDc = number[];
|
|
|
3320
2066
|
* Postgres connection data source connection.
|
|
3321
2067
|
*/
|
|
3322
2068
|
export type PostgresDataSourceDc = DataSourceDc & {
|
|
3323
|
-
/**
|
|
3324
|
-
*
|
|
3325
|
-
*
|
|
3326
|
-
* Postgres
|
|
3327
|
-
*
|
|
3328
|
-
* Trino
|
|
3329
|
-
*
|
|
3330
|
-
* S3
|
|
3331
|
-
*
|
|
3332
|
-
* GisServer
|
|
3333
|
-
*
|
|
3334
|
-
* Spark
|
|
3335
|
-
*
|
|
3336
|
-
* Archive
|
|
3337
|
-
*/
|
|
3338
2069
|
type?: DataSourceType;
|
|
3339
2070
|
/** Host. */
|
|
3340
2071
|
host?: string | null;
|
|
@@ -3376,25 +2107,7 @@ export type PostgresDataSourceInfoDc = DataSourceInfoDc & {
|
|
|
3376
2107
|
* Configuration of a postgres tile catalog service.
|
|
3377
2108
|
*/
|
|
3378
2109
|
export type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3379
|
-
/**
|
|
3380
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
3381
|
-
*
|
|
3382
|
-
* QueryLayerService
|
|
3383
|
-
*
|
|
3384
|
-
* LinearLayerService
|
|
3385
|
-
*
|
|
3386
|
-
* MapboxLayerService
|
|
3387
|
-
*
|
|
3388
|
-
* PostgresTileLayerService
|
|
3389
|
-
*
|
|
3390
|
-
* ProxyLayerService
|
|
3391
|
-
*
|
|
3392
|
-
* PythonLayerService
|
|
3393
|
-
*
|
|
3394
|
-
* RemoteTileLayerService
|
|
3395
|
-
*
|
|
3396
|
-
* RouteLayerService
|
|
3397
|
-
*/
|
|
2110
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
3398
2111
|
layerType?: LayerServiceType;
|
|
3399
2112
|
/** Configuration of the attribute set in a feature layer. */
|
|
3400
2113
|
attributesConfiguration: AttributesConfigurationDc;
|
|
@@ -3542,65 +2255,10 @@ export interface ProxyLayerLegendItemDc {
|
|
|
3542
2255
|
* Configuration for the proxy service.
|
|
3543
2256
|
*/
|
|
3544
2257
|
export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3545
|
-
/**
|
|
3546
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
3547
|
-
*
|
|
3548
|
-
* QueryLayerService
|
|
3549
|
-
*
|
|
3550
|
-
* LinearLayerService
|
|
3551
|
-
*
|
|
3552
|
-
* MapboxLayerService
|
|
3553
|
-
*
|
|
3554
|
-
* PostgresTileLayerService
|
|
3555
|
-
*
|
|
3556
|
-
* ProxyLayerService
|
|
3557
|
-
*
|
|
3558
|
-
* PythonLayerService
|
|
3559
|
-
*
|
|
3560
|
-
* RemoteTileLayerService
|
|
3561
|
-
*
|
|
3562
|
-
* RouteLayerService
|
|
3563
|
-
*/
|
|
2258
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
3564
2259
|
layerType?: LayerServiceType;
|
|
3565
2260
|
/** Resource id. */
|
|
3566
2261
|
resourceId?: string | null;
|
|
3567
|
-
/**
|
|
3568
|
-
*
|
|
3569
|
-
*
|
|
3570
|
-
* Unknown
|
|
3571
|
-
*
|
|
3572
|
-
* Point
|
|
3573
|
-
*
|
|
3574
|
-
* LineString
|
|
3575
|
-
*
|
|
3576
|
-
* Polygon
|
|
3577
|
-
*
|
|
3578
|
-
* MultiPoint
|
|
3579
|
-
*
|
|
3580
|
-
* MultiLineString
|
|
3581
|
-
*
|
|
3582
|
-
* MultiPolygon
|
|
3583
|
-
*
|
|
3584
|
-
* GeometryCollection
|
|
3585
|
-
*
|
|
3586
|
-
* CircularString
|
|
3587
|
-
*
|
|
3588
|
-
* CompoundCurve
|
|
3589
|
-
*
|
|
3590
|
-
* CurvePolygon
|
|
3591
|
-
*
|
|
3592
|
-
* MultiCurve
|
|
3593
|
-
*
|
|
3594
|
-
* MultiSurface
|
|
3595
|
-
*
|
|
3596
|
-
* Curve
|
|
3597
|
-
*
|
|
3598
|
-
* Surface
|
|
3599
|
-
*
|
|
3600
|
-
* PolyhedralSurface
|
|
3601
|
-
*
|
|
3602
|
-
* TIN
|
|
3603
|
-
*/
|
|
3604
2262
|
geometryType?: OgcGeometryType;
|
|
3605
2263
|
/** Source system type, e.g. "ArcGIS". */
|
|
3606
2264
|
sourceType?: string | null;
|
|
@@ -3668,25 +2326,7 @@ export interface PushResponse {
|
|
|
3668
2326
|
* Configuration for the python service.
|
|
3669
2327
|
*/
|
|
3670
2328
|
export type PythonServiceConfigurationDc = ProxyServiceConfigurationDc & {
|
|
3671
|
-
/**
|
|
3672
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
3673
|
-
*
|
|
3674
|
-
* QueryLayerService
|
|
3675
|
-
*
|
|
3676
|
-
* LinearLayerService
|
|
3677
|
-
*
|
|
3678
|
-
* MapboxLayerService
|
|
3679
|
-
*
|
|
3680
|
-
* PostgresTileLayerService
|
|
3681
|
-
*
|
|
3682
|
-
* ProxyLayerService
|
|
3683
|
-
*
|
|
3684
|
-
* PythonLayerService
|
|
3685
|
-
*
|
|
3686
|
-
* RemoteTileLayerService
|
|
3687
|
-
*
|
|
3688
|
-
* RouteLayerService
|
|
3689
|
-
*/
|
|
2329
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
3690
2330
|
layerType?: LayerServiceType;
|
|
3691
2331
|
/** PythonResourceId. */
|
|
3692
2332
|
pythonResourceId?: string | null;
|
|
@@ -3720,13 +2360,7 @@ export interface PythonTaskMethodConfiguration {
|
|
|
3720
2360
|
methodName?: string;
|
|
3721
2361
|
/** Gets or sets method init error. */
|
|
3722
2362
|
error?: string;
|
|
3723
|
-
/**
|
|
3724
|
-
* TaskPrototypeSubType.
|
|
3725
|
-
*
|
|
3726
|
-
* SpTask
|
|
3727
|
-
*
|
|
3728
|
-
* PythonTask
|
|
3729
|
-
*/
|
|
2363
|
+
/** TaskPrototypeSubType. */
|
|
3730
2364
|
type?: TaskResourceSubType;
|
|
3731
2365
|
/** Gets or sets description. */
|
|
3732
2366
|
description?: string;
|
|
@@ -3791,25 +2425,7 @@ export interface QueryHistoryDc {
|
|
|
3791
2425
|
* Configuration of a postgres feature layer service.
|
|
3792
2426
|
*/
|
|
3793
2427
|
export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3794
|
-
/**
|
|
3795
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
3796
|
-
*
|
|
3797
|
-
* QueryLayerService
|
|
3798
|
-
*
|
|
3799
|
-
* LinearLayerService
|
|
3800
|
-
*
|
|
3801
|
-
* MapboxLayerService
|
|
3802
|
-
*
|
|
3803
|
-
* PostgresTileLayerService
|
|
3804
|
-
*
|
|
3805
|
-
* ProxyLayerService
|
|
3806
|
-
*
|
|
3807
|
-
* PythonLayerService
|
|
3808
|
-
*
|
|
3809
|
-
* RemoteTileLayerService
|
|
3810
|
-
*
|
|
3811
|
-
* RouteLayerService
|
|
3812
|
-
*/
|
|
2428
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
3813
2429
|
layerType?: LayerServiceType;
|
|
3814
2430
|
/** Data source name. */
|
|
3815
2431
|
ds?: string | null;
|
|
@@ -3823,46 +2439,9 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3823
2439
|
eqlParameters?: Record<string, QueryLayerServiceEqlParameterConfigurationDc>;
|
|
3824
2440
|
/**
|
|
3825
2441
|
* Spatial reference identifier type in geometry type column.
|
|
3826
|
-
* @format int32
|
|
3827
|
-
*/
|
|
3828
|
-
srId?: number | null;
|
|
3829
|
-
/**
|
|
3830
|
-
*
|
|
3831
|
-
*
|
|
3832
|
-
* Unknown
|
|
3833
|
-
*
|
|
3834
|
-
* Point
|
|
3835
|
-
*
|
|
3836
|
-
* LineString
|
|
3837
|
-
*
|
|
3838
|
-
* Polygon
|
|
3839
|
-
*
|
|
3840
|
-
* MultiPoint
|
|
3841
|
-
*
|
|
3842
|
-
* MultiLineString
|
|
3843
|
-
*
|
|
3844
|
-
* MultiPolygon
|
|
3845
|
-
*
|
|
3846
|
-
* GeometryCollection
|
|
3847
|
-
*
|
|
3848
|
-
* CircularString
|
|
3849
|
-
*
|
|
3850
|
-
* CompoundCurve
|
|
3851
|
-
*
|
|
3852
|
-
* CurvePolygon
|
|
3853
|
-
*
|
|
3854
|
-
* MultiCurve
|
|
3855
|
-
*
|
|
3856
|
-
* MultiSurface
|
|
3857
|
-
*
|
|
3858
|
-
* Curve
|
|
3859
|
-
*
|
|
3860
|
-
* Surface
|
|
3861
|
-
*
|
|
3862
|
-
* PolyhedralSurface
|
|
3863
|
-
*
|
|
3864
|
-
* TIN
|
|
2442
|
+
* @format int32
|
|
3865
2443
|
*/
|
|
2444
|
+
srId?: number | null;
|
|
3866
2445
|
geometryType?: OgcGeometryType;
|
|
3867
2446
|
/** Configuration of the attribute set in a feature layer. */
|
|
3868
2447
|
attributesConfiguration?: AttributesConfigurationDc;
|
|
@@ -3881,41 +2460,6 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3881
2460
|
* EQL parameter configuration data contract.
|
|
3882
2461
|
*/
|
|
3883
2462
|
export interface QueryLayerServiceEqlParameterConfigurationDc {
|
|
3884
|
-
/**
|
|
3885
|
-
*
|
|
3886
|
-
*
|
|
3887
|
-
* Unknown
|
|
3888
|
-
*
|
|
3889
|
-
* String
|
|
3890
|
-
*
|
|
3891
|
-
* Int32
|
|
3892
|
-
*
|
|
3893
|
-
* Int64
|
|
3894
|
-
*
|
|
3895
|
-
* Double
|
|
3896
|
-
*
|
|
3897
|
-
* DateTime
|
|
3898
|
-
*
|
|
3899
|
-
* Boolean
|
|
3900
|
-
*
|
|
3901
|
-
* Point
|
|
3902
|
-
*
|
|
3903
|
-
* LineString
|
|
3904
|
-
*
|
|
3905
|
-
* Polygon
|
|
3906
|
-
*
|
|
3907
|
-
* MultiPoint
|
|
3908
|
-
*
|
|
3909
|
-
* MultiLineString
|
|
3910
|
-
*
|
|
3911
|
-
* H3Index
|
|
3912
|
-
*
|
|
3913
|
-
* Json
|
|
3914
|
-
*
|
|
3915
|
-
* MultiPolygon
|
|
3916
|
-
*
|
|
3917
|
-
* GeometryCollection
|
|
3918
|
-
*/
|
|
3919
2463
|
type?: AttributeType;
|
|
3920
2464
|
/** Is array type. */
|
|
3921
2465
|
isArray?: boolean;
|
|
@@ -4126,27 +2670,6 @@ export interface RegisterUserDc {
|
|
|
4126
2670
|
/** Additional information or goals. */
|
|
4127
2671
|
goals?: string;
|
|
4128
2672
|
}
|
|
4129
|
-
/**
|
|
4130
|
-
*
|
|
4131
|
-
|
|
4132
|
-
Init
|
|
4133
|
-
|
|
4134
|
-
Process
|
|
4135
|
-
|
|
4136
|
-
Completed
|
|
4137
|
-
|
|
4138
|
-
Interrupted
|
|
4139
|
-
|
|
4140
|
-
Error
|
|
4141
|
-
|
|
4142
|
-
Timeout
|
|
4143
|
-
|
|
4144
|
-
Waiting
|
|
4145
|
-
|
|
4146
|
-
InQueue
|
|
4147
|
-
|
|
4148
|
-
Unknown
|
|
4149
|
-
*/
|
|
4150
2673
|
export declare enum RemoteTaskStatus {
|
|
4151
2674
|
Init = "Init",
|
|
4152
2675
|
Process = "Process",
|
|
@@ -4162,25 +2685,7 @@ export declare enum RemoteTaskStatus {
|
|
|
4162
2685
|
* Configuration for the remote tile service.
|
|
4163
2686
|
*/
|
|
4164
2687
|
export type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4165
|
-
/**
|
|
4166
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
4167
|
-
*
|
|
4168
|
-
* QueryLayerService
|
|
4169
|
-
*
|
|
4170
|
-
* LinearLayerService
|
|
4171
|
-
*
|
|
4172
|
-
* MapboxLayerService
|
|
4173
|
-
*
|
|
4174
|
-
* PostgresTileLayerService
|
|
4175
|
-
*
|
|
4176
|
-
* ProxyLayerService
|
|
4177
|
-
*
|
|
4178
|
-
* PythonLayerService
|
|
4179
|
-
*
|
|
4180
|
-
* RemoteTileLayerService
|
|
4181
|
-
*
|
|
4182
|
-
* RouteLayerService
|
|
4183
|
-
*/
|
|
2688
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
4184
2689
|
layerType?: LayerServiceType;
|
|
4185
2690
|
/** Tile info structure. */
|
|
4186
2691
|
tileInfo?: TileInfoDc;
|
|
@@ -4272,23 +2777,6 @@ export interface ResourceInfoDc {
|
|
|
4272
2777
|
* @format date-time
|
|
4273
2778
|
*/
|
|
4274
2779
|
changedDate?: string;
|
|
4275
|
-
/**
|
|
4276
|
-
*
|
|
4277
|
-
*
|
|
4278
|
-
* none
|
|
4279
|
-
*
|
|
4280
|
-
* configure
|
|
4281
|
-
*
|
|
4282
|
-
* write
|
|
4283
|
-
*
|
|
4284
|
-
* read
|
|
4285
|
-
*
|
|
4286
|
-
* read,configure
|
|
4287
|
-
*
|
|
4288
|
-
* read,write
|
|
4289
|
-
*
|
|
4290
|
-
* read,write,configure
|
|
4291
|
-
*/
|
|
4292
2780
|
permissions?: Permissions;
|
|
4293
2781
|
/** Access control list for a security object. */
|
|
4294
2782
|
acl?: AccessControlListDc;
|
|
@@ -4330,23 +2818,6 @@ export interface ResourceInfoDcV2 {
|
|
|
4330
2818
|
* @format date-time
|
|
4331
2819
|
*/
|
|
4332
2820
|
changedDate?: string;
|
|
4333
|
-
/**
|
|
4334
|
-
*
|
|
4335
|
-
*
|
|
4336
|
-
* none
|
|
4337
|
-
*
|
|
4338
|
-
* configure
|
|
4339
|
-
*
|
|
4340
|
-
* write
|
|
4341
|
-
*
|
|
4342
|
-
* read
|
|
4343
|
-
*
|
|
4344
|
-
* read,configure
|
|
4345
|
-
*
|
|
4346
|
-
* read,write
|
|
4347
|
-
*
|
|
4348
|
-
* read,write,configure
|
|
4349
|
-
*/
|
|
4350
2821
|
permissions?: Permissions;
|
|
4351
2822
|
/**
|
|
4352
2823
|
* Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
|
|
@@ -4378,41 +2849,14 @@ export interface ResourceParentDc {
|
|
|
4378
2849
|
path?: string;
|
|
4379
2850
|
}
|
|
4380
2851
|
/**
|
|
4381
|
-
* Resources types filter.
|
|
4382
|
-
|
|
4383
|
-
RemoteTileService
|
|
4384
|
-
|
|
4385
|
-
ProxyService
|
|
4386
|
-
|
|
4387
|
-
QueryLayerService
|
|
4388
|
-
|
|
4389
|
-
TileCatalogTable
|
|
4390
|
-
*/
|
|
2852
|
+
* Resources types filter.
|
|
2853
|
+
*/
|
|
4391
2854
|
export declare enum ResourceSubTypeFilter {
|
|
4392
2855
|
RemoteTileService = "RemoteTileService",
|
|
4393
2856
|
ProxyService = "ProxyService",
|
|
4394
2857
|
QueryLayerService = "QueryLayerService",
|
|
4395
2858
|
TileCatalogTable = "TileCatalogTable"
|
|
4396
2859
|
}
|
|
4397
|
-
/**
|
|
4398
|
-
*
|
|
4399
|
-
|
|
4400
|
-
Unknown
|
|
4401
|
-
|
|
4402
|
-
table
|
|
4403
|
-
|
|
4404
|
-
layer
|
|
4405
|
-
|
|
4406
|
-
project
|
|
4407
|
-
|
|
4408
|
-
file
|
|
4409
|
-
|
|
4410
|
-
feature
|
|
4411
|
-
|
|
4412
|
-
tag
|
|
4413
|
-
|
|
4414
|
-
datasource
|
|
4415
|
-
*/
|
|
4416
2860
|
export declare enum ResourceType {
|
|
4417
2861
|
Unknown = "Unknown",
|
|
4418
2862
|
Table = "table",
|
|
@@ -4424,28 +2868,8 @@ export declare enum ResourceType {
|
|
|
4424
2868
|
DataSource = "datasource"
|
|
4425
2869
|
}
|
|
4426
2870
|
/**
|
|
4427
|
-
* Resources types filter.
|
|
4428
|
-
|
|
4429
|
-
Map
|
|
4430
|
-
|
|
4431
|
-
Layer
|
|
4432
|
-
|
|
4433
|
-
Table
|
|
4434
|
-
|
|
4435
|
-
RasterCatalog
|
|
4436
|
-
|
|
4437
|
-
ProxyService
|
|
4438
|
-
|
|
4439
|
-
RemoteTileService
|
|
4440
|
-
|
|
4441
|
-
File
|
|
4442
|
-
|
|
4443
|
-
DataSource
|
|
4444
|
-
|
|
4445
|
-
TaskPrototype
|
|
4446
|
-
|
|
4447
|
-
Directory
|
|
4448
|
-
*/
|
|
2871
|
+
* Resources types filter.
|
|
2872
|
+
*/
|
|
4449
2873
|
export declare enum ResourceTypeFilter {
|
|
4450
2874
|
Map = "Map",
|
|
4451
2875
|
Layer = "Layer",
|
|
@@ -4458,18 +2882,6 @@ export declare enum ResourceTypeFilter {
|
|
|
4458
2882
|
TaskPrototype = "TaskPrototype",
|
|
4459
2883
|
Directory = "Directory"
|
|
4460
2884
|
}
|
|
4461
|
-
export declare enum ResourceTypeLink {
|
|
4462
|
-
Table = "tables",
|
|
4463
|
-
Layer = "layers",
|
|
4464
|
-
Project = "projects"
|
|
4465
|
-
}
|
|
4466
|
-
/**
|
|
4467
|
-
*
|
|
4468
|
-
|
|
4469
|
-
code
|
|
4470
|
-
|
|
4471
|
-
token
|
|
4472
|
-
*/
|
|
4473
2885
|
export declare enum ResponseType {
|
|
4474
2886
|
Code = "code",
|
|
4475
2887
|
Token = "token"
|
|
@@ -4509,23 +2921,6 @@ export interface RolePermissionDc {
|
|
|
4509
2921
|
* @minLength 1
|
|
4510
2922
|
*/
|
|
4511
2923
|
role: string;
|
|
4512
|
-
/**
|
|
4513
|
-
*
|
|
4514
|
-
*
|
|
4515
|
-
* none
|
|
4516
|
-
*
|
|
4517
|
-
* configure
|
|
4518
|
-
*
|
|
4519
|
-
* write
|
|
4520
|
-
*
|
|
4521
|
-
* read
|
|
4522
|
-
*
|
|
4523
|
-
* read,configure
|
|
4524
|
-
*
|
|
4525
|
-
* read,write
|
|
4526
|
-
*
|
|
4527
|
-
* read,write,configure
|
|
4528
|
-
*/
|
|
4529
2924
|
permissions: Permissions;
|
|
4530
2925
|
}
|
|
4531
2926
|
/**
|
|
@@ -4553,25 +2948,7 @@ export interface RollbackResponse {
|
|
|
4553
2948
|
* Route service configuration Dc.
|
|
4554
2949
|
*/
|
|
4555
2950
|
export type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4556
|
-
/**
|
|
4557
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
4558
|
-
*
|
|
4559
|
-
* QueryLayerService
|
|
4560
|
-
*
|
|
4561
|
-
* LinearLayerService
|
|
4562
|
-
*
|
|
4563
|
-
* MapboxLayerService
|
|
4564
|
-
*
|
|
4565
|
-
* PostgresTileLayerService
|
|
4566
|
-
*
|
|
4567
|
-
* ProxyLayerService
|
|
4568
|
-
*
|
|
4569
|
-
* PythonLayerService
|
|
4570
|
-
*
|
|
4571
|
-
* RemoteTileLayerService
|
|
4572
|
-
*
|
|
4573
|
-
* RouteLayerService
|
|
4574
|
-
*/
|
|
2951
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
4575
2952
|
layerType?: LayerServiceType;
|
|
4576
2953
|
/** Configuration of the attribute set in a feature layer. */
|
|
4577
2954
|
attributesConfiguration: AttributesConfigurationDc;
|
|
@@ -4584,40 +2961,13 @@ export type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
4584
2961
|
* RouteTableConfigurationDc.
|
|
4585
2962
|
*/
|
|
4586
2963
|
export type RouteTableConfigurationDc = TableConfigurationBaseDc & {
|
|
4587
|
-
/**
|
|
4588
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
4589
|
-
*
|
|
4590
|
-
* DefaultTableConfiguration
|
|
4591
|
-
*
|
|
4592
|
-
* TileCatalogTableConfiguration
|
|
4593
|
-
*
|
|
4594
|
-
* ViewConfiguration
|
|
4595
|
-
*
|
|
4596
|
-
* MaterializedViewConfiguration
|
|
4597
|
-
*
|
|
4598
|
-
* RouteTableConfiguration
|
|
4599
|
-
*/
|
|
2964
|
+
/** Specifies the available types of table configurations that can be used within the application. */
|
|
4600
2965
|
type?: TableConfigurationType;
|
|
4601
2966
|
};
|
|
4602
2967
|
/**
|
|
4603
2968
|
* S3 data source settings.
|
|
4604
2969
|
*/
|
|
4605
2970
|
export type S3DataSourceDc = DataSourceDc & {
|
|
4606
|
-
/**
|
|
4607
|
-
*
|
|
4608
|
-
*
|
|
4609
|
-
* Postgres
|
|
4610
|
-
*
|
|
4611
|
-
* Trino
|
|
4612
|
-
*
|
|
4613
|
-
* S3
|
|
4614
|
-
*
|
|
4615
|
-
* GisServer
|
|
4616
|
-
*
|
|
4617
|
-
* Spark
|
|
4618
|
-
*
|
|
4619
|
-
* Archive
|
|
4620
|
-
*/
|
|
4621
2971
|
type?: DataSourceType;
|
|
4622
2972
|
/** Endpoint. */
|
|
4623
2973
|
endpoint?: string | null;
|
|
@@ -4685,25 +3035,7 @@ export interface SearchedUserDc {
|
|
|
4685
3035
|
* Common fields for service configurations.
|
|
4686
3036
|
*/
|
|
4687
3037
|
export interface ServiceConfigurationBaseDc {
|
|
4688
|
-
/**
|
|
4689
|
-
* Specifies the available types of layer services that can be used within the application.
|
|
4690
|
-
*
|
|
4691
|
-
* QueryLayerService
|
|
4692
|
-
*
|
|
4693
|
-
* LinearLayerService
|
|
4694
|
-
*
|
|
4695
|
-
* MapboxLayerService
|
|
4696
|
-
*
|
|
4697
|
-
* PostgresTileLayerService
|
|
4698
|
-
*
|
|
4699
|
-
* ProxyLayerService
|
|
4700
|
-
*
|
|
4701
|
-
* PythonLayerService
|
|
4702
|
-
*
|
|
4703
|
-
* RemoteTileLayerService
|
|
4704
|
-
*
|
|
4705
|
-
* RouteLayerService
|
|
4706
|
-
*/
|
|
3038
|
+
/** Specifies the available types of layer services that can be used within the application. */
|
|
4707
3039
|
layerType: LayerServiceType;
|
|
4708
3040
|
/**
|
|
4709
3041
|
* Name of the service.
|
|
@@ -4744,23 +3076,6 @@ export interface ServiceConfigurationBaseDc {
|
|
|
4744
3076
|
export type ServiceInfoDc = BaseResourceInfoDc & {
|
|
4745
3077
|
/** The category of the service. */
|
|
4746
3078
|
categories?: string[] | null;
|
|
4747
|
-
/**
|
|
4748
|
-
*
|
|
4749
|
-
*
|
|
4750
|
-
* none
|
|
4751
|
-
*
|
|
4752
|
-
* configure
|
|
4753
|
-
*
|
|
4754
|
-
* write
|
|
4755
|
-
*
|
|
4756
|
-
* read
|
|
4757
|
-
*
|
|
4758
|
-
* read,configure
|
|
4759
|
-
*
|
|
4760
|
-
* read,write
|
|
4761
|
-
*
|
|
4762
|
-
* read,write,configure
|
|
4763
|
-
*/
|
|
4764
3079
|
permissions?: Permissions;
|
|
4765
3080
|
/**
|
|
4766
3081
|
* The date when resource was created.
|
|
@@ -4805,23 +3120,6 @@ export interface ServiceListItemDc {
|
|
|
4805
3120
|
* @format date-time
|
|
4806
3121
|
*/
|
|
4807
3122
|
changedDate?: string;
|
|
4808
|
-
/**
|
|
4809
|
-
*
|
|
4810
|
-
*
|
|
4811
|
-
* none
|
|
4812
|
-
*
|
|
4813
|
-
* configure
|
|
4814
|
-
*
|
|
4815
|
-
* write
|
|
4816
|
-
*
|
|
4817
|
-
* read
|
|
4818
|
-
*
|
|
4819
|
-
* read,configure
|
|
4820
|
-
*
|
|
4821
|
-
* read,write
|
|
4822
|
-
*
|
|
4823
|
-
* read,write,configure
|
|
4824
|
-
*/
|
|
4825
3123
|
permissions?: Permissions;
|
|
4826
3124
|
/**
|
|
4827
3125
|
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
@@ -4840,43 +3138,6 @@ export interface ServiceListItemDc {
|
|
|
4840
3138
|
* for the given service type, null is returned.
|
|
4841
3139
|
*/
|
|
4842
3140
|
condition?: string;
|
|
4843
|
-
/**
|
|
4844
|
-
*
|
|
4845
|
-
*
|
|
4846
|
-
* Unknown
|
|
4847
|
-
*
|
|
4848
|
-
* Point
|
|
4849
|
-
*
|
|
4850
|
-
* LineString
|
|
4851
|
-
*
|
|
4852
|
-
* Polygon
|
|
4853
|
-
*
|
|
4854
|
-
* MultiPoint
|
|
4855
|
-
*
|
|
4856
|
-
* MultiLineString
|
|
4857
|
-
*
|
|
4858
|
-
* MultiPolygon
|
|
4859
|
-
*
|
|
4860
|
-
* GeometryCollection
|
|
4861
|
-
*
|
|
4862
|
-
* CircularString
|
|
4863
|
-
*
|
|
4864
|
-
* CompoundCurve
|
|
4865
|
-
*
|
|
4866
|
-
* CurvePolygon
|
|
4867
|
-
*
|
|
4868
|
-
* MultiCurve
|
|
4869
|
-
*
|
|
4870
|
-
* MultiSurface
|
|
4871
|
-
*
|
|
4872
|
-
* Curve
|
|
4873
|
-
*
|
|
4874
|
-
* Surface
|
|
4875
|
-
*
|
|
4876
|
-
* PolyhedralSurface
|
|
4877
|
-
*
|
|
4878
|
-
* TIN
|
|
4879
|
-
*/
|
|
4880
3141
|
geometryType?: OgcGeometryType;
|
|
4881
3142
|
/** Provides data source type info. */
|
|
4882
3143
|
dataSourceType?: string;
|
|
@@ -4896,15 +3157,6 @@ export interface SimplifyInfoDc {
|
|
|
4896
3157
|
* Simplify configuration information.
|
|
4897
3158
|
*/
|
|
4898
3159
|
export interface SimplifyInfoItemDc {
|
|
4899
|
-
/**
|
|
4900
|
-
*
|
|
4901
|
-
*
|
|
4902
|
-
* Basic
|
|
4903
|
-
*
|
|
4904
|
-
* PreserveTopology
|
|
4905
|
-
*
|
|
4906
|
-
* VW
|
|
4907
|
-
*/
|
|
4908
3160
|
simplifyType?: SimplifyType;
|
|
4909
3161
|
/**
|
|
4910
3162
|
* Tolerance.
|
|
@@ -4919,15 +3171,6 @@ export interface SimplifyInfoItemDc {
|
|
|
4919
3171
|
*/
|
|
4920
3172
|
snapCellSize?: number;
|
|
4921
3173
|
}
|
|
4922
|
-
/**
|
|
4923
|
-
*
|
|
4924
|
-
|
|
4925
|
-
Basic
|
|
4926
|
-
|
|
4927
|
-
PreserveTopology
|
|
4928
|
-
|
|
4929
|
-
VW
|
|
4930
|
-
*/
|
|
4931
3174
|
export declare enum SimplifyType {
|
|
4932
3175
|
Basic = "Basic",
|
|
4933
3176
|
PreserveTopology = "PreserveTopology",
|
|
@@ -4946,21 +3189,6 @@ export interface SocialNetworkInfoDc {
|
|
|
4946
3189
|
* Postgres connection data source connection.
|
|
4947
3190
|
*/
|
|
4948
3191
|
export type SparkDataSourceDc = DataSourceDc & {
|
|
4949
|
-
/**
|
|
4950
|
-
*
|
|
4951
|
-
*
|
|
4952
|
-
* Postgres
|
|
4953
|
-
*
|
|
4954
|
-
* Trino
|
|
4955
|
-
*
|
|
4956
|
-
* S3
|
|
4957
|
-
*
|
|
4958
|
-
* GisServer
|
|
4959
|
-
*
|
|
4960
|
-
* Spark
|
|
4961
|
-
*
|
|
4962
|
-
* Archive
|
|
4963
|
-
*/
|
|
4964
3192
|
type?: DataSourceType;
|
|
4965
3193
|
/** Endpoint. */
|
|
4966
3194
|
endpoint?: string | null;
|
|
@@ -5005,51 +3233,6 @@ export interface StatisticsDc {
|
|
|
5005
3233
|
* Statistics result.
|
|
5006
3234
|
*/
|
|
5007
3235
|
export interface StatisticsResultObject {
|
|
5008
|
-
/**
|
|
5009
|
-
*
|
|
5010
|
-
*
|
|
5011
|
-
* None
|
|
5012
|
-
*
|
|
5013
|
-
* Array
|
|
5014
|
-
*
|
|
5015
|
-
* Min
|
|
5016
|
-
*
|
|
5017
|
-
* Max
|
|
5018
|
-
*
|
|
5019
|
-
* Avg
|
|
5020
|
-
*
|
|
5021
|
-
* Sum
|
|
5022
|
-
*
|
|
5023
|
-
* Extent
|
|
5024
|
-
*
|
|
5025
|
-
* H3
|
|
5026
|
-
*
|
|
5027
|
-
* Count
|
|
5028
|
-
*
|
|
5029
|
-
* TotalCount
|
|
5030
|
-
*
|
|
5031
|
-
* DistinctCount
|
|
5032
|
-
*
|
|
5033
|
-
* First
|
|
5034
|
-
*
|
|
5035
|
-
* Last
|
|
5036
|
-
*
|
|
5037
|
-
* Median
|
|
5038
|
-
*
|
|
5039
|
-
* Mod
|
|
5040
|
-
*
|
|
5041
|
-
* StdDeviation
|
|
5042
|
-
*
|
|
5043
|
-
* SumOfProduct
|
|
5044
|
-
*
|
|
5045
|
-
* OnlyValue
|
|
5046
|
-
*
|
|
5047
|
-
* WeightedAvg
|
|
5048
|
-
*
|
|
5049
|
-
* DensityIndicators
|
|
5050
|
-
*
|
|
5051
|
-
* DividedSum
|
|
5052
|
-
*/
|
|
5053
3236
|
type?: AggregationFunction;
|
|
5054
3237
|
/** Value. */
|
|
5055
3238
|
value?: any;
|
|
@@ -5084,42 +3267,10 @@ export interface StatusResponseDc {
|
|
|
5084
3267
|
* Information about a string attribute.
|
|
5085
3268
|
*/
|
|
5086
3269
|
export type StringAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
5087
|
-
/**
|
|
5088
|
-
* Attribute configuration type.
|
|
5089
|
-
*
|
|
5090
|
-
* Default
|
|
5091
|
-
*
|
|
5092
|
-
* String
|
|
5093
|
-
*
|
|
5094
|
-
* Geometry
|
|
5095
|
-
*
|
|
5096
|
-
* Calculated
|
|
5097
|
-
*/
|
|
3270
|
+
/** Attribute configuration type. */
|
|
5098
3271
|
attributeConfigurationType?: AttributeConfigurationType;
|
|
5099
|
-
/**
|
|
5100
|
-
*
|
|
5101
|
-
*
|
|
5102
|
-
* None
|
|
5103
|
-
*
|
|
5104
|
-
* Image
|
|
5105
|
-
*
|
|
5106
|
-
* PkkCode
|
|
5107
|
-
*
|
|
5108
|
-
* Attachments
|
|
5109
|
-
*/
|
|
5110
3272
|
subType?: StringSubType;
|
|
5111
3273
|
};
|
|
5112
|
-
/**
|
|
5113
|
-
*
|
|
5114
|
-
|
|
5115
|
-
None
|
|
5116
|
-
|
|
5117
|
-
Image
|
|
5118
|
-
|
|
5119
|
-
PkkCode
|
|
5120
|
-
|
|
5121
|
-
Attachments
|
|
5122
|
-
*/
|
|
5123
3274
|
export declare enum StringSubType {
|
|
5124
3275
|
None = "None",
|
|
5125
3276
|
Image = "Image",
|
|
@@ -5168,27 +3319,6 @@ export interface SubTasksDto {
|
|
|
5168
3319
|
* @format date-time
|
|
5169
3320
|
*/
|
|
5170
3321
|
ended?: string;
|
|
5171
|
-
/**
|
|
5172
|
-
*
|
|
5173
|
-
*
|
|
5174
|
-
* Init
|
|
5175
|
-
*
|
|
5176
|
-
* Process
|
|
5177
|
-
*
|
|
5178
|
-
* Completed
|
|
5179
|
-
*
|
|
5180
|
-
* Interrupted
|
|
5181
|
-
*
|
|
5182
|
-
* Error
|
|
5183
|
-
*
|
|
5184
|
-
* Timeout
|
|
5185
|
-
*
|
|
5186
|
-
* Waiting
|
|
5187
|
-
*
|
|
5188
|
-
* InQueue
|
|
5189
|
-
*
|
|
5190
|
-
* Unknown
|
|
5191
|
-
*/
|
|
5192
3322
|
status?: RemoteTaskStatus;
|
|
5193
3323
|
/**
|
|
5194
3324
|
* Process.
|
|
@@ -5251,34 +3381,12 @@ export interface SymbolInfoDc {
|
|
|
5251
3381
|
* Common fields for table configurations.
|
|
5252
3382
|
*/
|
|
5253
3383
|
export interface TableConfigurationBaseDc {
|
|
5254
|
-
/**
|
|
5255
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
5256
|
-
*
|
|
5257
|
-
* DefaultTableConfiguration
|
|
5258
|
-
*
|
|
5259
|
-
* TileCatalogTableConfiguration
|
|
5260
|
-
*
|
|
5261
|
-
* ViewConfiguration
|
|
5262
|
-
*
|
|
5263
|
-
* MaterializedViewConfiguration
|
|
5264
|
-
*
|
|
5265
|
-
* RouteTableConfiguration
|
|
5266
|
-
*/
|
|
3384
|
+
/** Specifies the available types of table configurations that can be used within the application. */
|
|
5267
3385
|
type: TableConfigurationType;
|
|
5268
3386
|
}
|
|
5269
3387
|
/**
|
|
5270
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
5271
|
-
|
|
5272
|
-
DefaultTableConfiguration
|
|
5273
|
-
|
|
5274
|
-
TileCatalogTableConfiguration
|
|
5275
|
-
|
|
5276
|
-
ViewConfiguration
|
|
5277
|
-
|
|
5278
|
-
MaterializedViewConfiguration
|
|
5279
|
-
|
|
5280
|
-
RouteTableConfiguration
|
|
5281
|
-
*/
|
|
3388
|
+
* Specifies the available types of table configurations that can be used within the application.
|
|
3389
|
+
*/
|
|
5282
3390
|
export declare enum TableConfigurationType {
|
|
5283
3391
|
DefaultTableConfiguration = "DefaultTableConfiguration",
|
|
5284
3392
|
TileCatalogTableConfiguration = "TileCatalogTableConfiguration",
|
|
@@ -5314,23 +3422,6 @@ export interface TableInfoDc {
|
|
|
5314
3422
|
* @format date-time
|
|
5315
3423
|
*/
|
|
5316
3424
|
changedDate?: string;
|
|
5317
|
-
/**
|
|
5318
|
-
*
|
|
5319
|
-
*
|
|
5320
|
-
* none
|
|
5321
|
-
*
|
|
5322
|
-
* configure
|
|
5323
|
-
*
|
|
5324
|
-
* write
|
|
5325
|
-
*
|
|
5326
|
-
* read
|
|
5327
|
-
*
|
|
5328
|
-
* read,configure
|
|
5329
|
-
*
|
|
5330
|
-
* read,write
|
|
5331
|
-
*
|
|
5332
|
-
* read,write,configure
|
|
5333
|
-
*/
|
|
5334
3425
|
permissions?: Permissions;
|
|
5335
3426
|
/** Access control list for a security object. */
|
|
5336
3427
|
acl?: AccessControlListDc;
|
|
@@ -5368,13 +3459,7 @@ export interface TagsFilterDc {
|
|
|
5368
3459
|
* TaskConfigurationDc.
|
|
5369
3460
|
*/
|
|
5370
3461
|
export interface TaskConfigurationDc {
|
|
5371
|
-
/**
|
|
5372
|
-
* TaskPrototypeSubType.
|
|
5373
|
-
*
|
|
5374
|
-
* SpTask
|
|
5375
|
-
*
|
|
5376
|
-
* PythonTask
|
|
5377
|
-
*/
|
|
3462
|
+
/** TaskPrototypeSubType. */
|
|
5378
3463
|
taskResourceSubType?: TaskResourceSubType;
|
|
5379
3464
|
/** TaskType. */
|
|
5380
3465
|
taskType?: string;
|
|
@@ -5398,27 +3483,6 @@ export interface TaskDto {
|
|
|
5398
3483
|
* @format uuid
|
|
5399
3484
|
*/
|
|
5400
3485
|
id?: string;
|
|
5401
|
-
/**
|
|
5402
|
-
*
|
|
5403
|
-
*
|
|
5404
|
-
* Init
|
|
5405
|
-
*
|
|
5406
|
-
* Process
|
|
5407
|
-
*
|
|
5408
|
-
* Completed
|
|
5409
|
-
*
|
|
5410
|
-
* Interrupted
|
|
5411
|
-
*
|
|
5412
|
-
* Error
|
|
5413
|
-
*
|
|
5414
|
-
* Timeout
|
|
5415
|
-
*
|
|
5416
|
-
* Waiting
|
|
5417
|
-
*
|
|
5418
|
-
* InQueue
|
|
5419
|
-
*
|
|
5420
|
-
* Unknown
|
|
5421
|
-
*/
|
|
5422
3486
|
status?: RemoteTaskStatus;
|
|
5423
3487
|
/**
|
|
5424
3488
|
* Started.
|
|
@@ -5436,14 +3500,8 @@ export interface TaskDto {
|
|
|
5436
3500
|
/**
|
|
5437
3501
|
* TaskMethodConfiguration.
|
|
5438
3502
|
*/
|
|
5439
|
-
export interface TaskMethodConfigurationDc {
|
|
5440
|
-
/**
|
|
5441
|
-
* TaskPrototypeSubType.
|
|
5442
|
-
*
|
|
5443
|
-
* SpTask
|
|
5444
|
-
*
|
|
5445
|
-
* PythonTask
|
|
5446
|
-
*/
|
|
3503
|
+
export interface TaskMethodConfigurationDc {
|
|
3504
|
+
/** TaskPrototypeSubType. */
|
|
5447
3505
|
type?: TaskResourceSubType;
|
|
5448
3506
|
/** Gets or sets description. */
|
|
5449
3507
|
description?: string;
|
|
@@ -5460,53 +3518,6 @@ export interface TaskParameter {
|
|
|
5460
3518
|
name?: string;
|
|
5461
3519
|
/** Gets or sets description. */
|
|
5462
3520
|
description?: string;
|
|
5463
|
-
/**
|
|
5464
|
-
*
|
|
5465
|
-
*
|
|
5466
|
-
* Int32
|
|
5467
|
-
*
|
|
5468
|
-
* Int64
|
|
5469
|
-
*
|
|
5470
|
-
* Double
|
|
5471
|
-
*
|
|
5472
|
-
* String
|
|
5473
|
-
*
|
|
5474
|
-
* Boolean
|
|
5475
|
-
*
|
|
5476
|
-
* DateTime
|
|
5477
|
-
*
|
|
5478
|
-
* Point
|
|
5479
|
-
*
|
|
5480
|
-
* Geometry
|
|
5481
|
-
*
|
|
5482
|
-
* Polyline
|
|
5483
|
-
*
|
|
5484
|
-
* MultiPolygon
|
|
5485
|
-
*
|
|
5486
|
-
* Polygon
|
|
5487
|
-
*
|
|
5488
|
-
* Multipoint
|
|
5489
|
-
*
|
|
5490
|
-
* IntergerArray
|
|
5491
|
-
*
|
|
5492
|
-
* DoubleArray
|
|
5493
|
-
*
|
|
5494
|
-
* StringArray
|
|
5495
|
-
*
|
|
5496
|
-
* SourceEql
|
|
5497
|
-
*
|
|
5498
|
-
* Layer
|
|
5499
|
-
*
|
|
5500
|
-
* Table
|
|
5501
|
-
*
|
|
5502
|
-
* Folder
|
|
5503
|
-
*
|
|
5504
|
-
* Json
|
|
5505
|
-
*
|
|
5506
|
-
* Attribute
|
|
5507
|
-
*
|
|
5508
|
-
* AttributeArray
|
|
5509
|
-
*/
|
|
5510
3521
|
type?: WorkerSettingsFieldType;
|
|
5511
3522
|
/** Lookup values. */
|
|
5512
3523
|
lookupValues?: Record<string, string | null>;
|
|
@@ -5527,53 +3538,6 @@ export interface TaskParameterDc {
|
|
|
5527
3538
|
name?: string;
|
|
5528
3539
|
/** Gets or sets description. */
|
|
5529
3540
|
description?: string;
|
|
5530
|
-
/**
|
|
5531
|
-
*
|
|
5532
|
-
*
|
|
5533
|
-
* Int32
|
|
5534
|
-
*
|
|
5535
|
-
* Int64
|
|
5536
|
-
*
|
|
5537
|
-
* Double
|
|
5538
|
-
*
|
|
5539
|
-
* String
|
|
5540
|
-
*
|
|
5541
|
-
* Boolean
|
|
5542
|
-
*
|
|
5543
|
-
* DateTime
|
|
5544
|
-
*
|
|
5545
|
-
* Point
|
|
5546
|
-
*
|
|
5547
|
-
* Geometry
|
|
5548
|
-
*
|
|
5549
|
-
* Polyline
|
|
5550
|
-
*
|
|
5551
|
-
* MultiPolygon
|
|
5552
|
-
*
|
|
5553
|
-
* Polygon
|
|
5554
|
-
*
|
|
5555
|
-
* Multipoint
|
|
5556
|
-
*
|
|
5557
|
-
* IntergerArray
|
|
5558
|
-
*
|
|
5559
|
-
* DoubleArray
|
|
5560
|
-
*
|
|
5561
|
-
* StringArray
|
|
5562
|
-
*
|
|
5563
|
-
* SourceEql
|
|
5564
|
-
*
|
|
5565
|
-
* Layer
|
|
5566
|
-
*
|
|
5567
|
-
* Table
|
|
5568
|
-
*
|
|
5569
|
-
* Folder
|
|
5570
|
-
*
|
|
5571
|
-
* Json
|
|
5572
|
-
*
|
|
5573
|
-
* Attribute
|
|
5574
|
-
*
|
|
5575
|
-
* AttributeArray
|
|
5576
|
-
*/
|
|
5577
3541
|
type?: WorkerSettingsFieldType;
|
|
5578
3542
|
/** Lookup values. */
|
|
5579
3543
|
lookupValues?: Record<string, string | null>;
|
|
@@ -5633,27 +3597,6 @@ export interface TaskPrototypeDto {
|
|
|
5633
3597
|
* @format int32
|
|
5634
3598
|
*/
|
|
5635
3599
|
tasksCount?: number;
|
|
5636
|
-
/**
|
|
5637
|
-
*
|
|
5638
|
-
*
|
|
5639
|
-
* Init
|
|
5640
|
-
*
|
|
5641
|
-
* Process
|
|
5642
|
-
*
|
|
5643
|
-
* Completed
|
|
5644
|
-
*
|
|
5645
|
-
* Interrupted
|
|
5646
|
-
*
|
|
5647
|
-
* Error
|
|
5648
|
-
*
|
|
5649
|
-
* Timeout
|
|
5650
|
-
*
|
|
5651
|
-
* Waiting
|
|
5652
|
-
*
|
|
5653
|
-
* InQueue
|
|
5654
|
-
*
|
|
5655
|
-
* Unknown
|
|
5656
|
-
*/
|
|
5657
3600
|
lastTaskStatus?: RemoteTaskStatus;
|
|
5658
3601
|
/**
|
|
5659
3602
|
* Last task finish.
|
|
@@ -5667,13 +3610,7 @@ export interface TaskPrototypeDto {
|
|
|
5667
3610
|
export interface TaskResourceCreateDto {
|
|
5668
3611
|
/** SystemName. */
|
|
5669
3612
|
systemName?: string;
|
|
5670
|
-
/**
|
|
5671
|
-
* TaskPrototypeSubType.
|
|
5672
|
-
*
|
|
5673
|
-
* SpTask
|
|
5674
|
-
*
|
|
5675
|
-
* PythonTask
|
|
5676
|
-
*/
|
|
3613
|
+
/** TaskPrototypeSubType. */
|
|
5677
3614
|
subType?: TaskResourceSubType;
|
|
5678
3615
|
/** Task type. */
|
|
5679
3616
|
taskType?: string;
|
|
@@ -5689,12 +3626,8 @@ export interface TaskResourceCreateDto {
|
|
|
5689
3626
|
tags?: string[];
|
|
5690
3627
|
}
|
|
5691
3628
|
/**
|
|
5692
|
-
* TaskPrototypeSubType.
|
|
5693
|
-
|
|
5694
|
-
SpTask
|
|
5695
|
-
|
|
5696
|
-
PythonTask
|
|
5697
|
-
*/
|
|
3629
|
+
* TaskPrototypeSubType.
|
|
3630
|
+
*/
|
|
5698
3631
|
export declare enum TaskResourceSubType {
|
|
5699
3632
|
SpTask = "SpTask",
|
|
5700
3633
|
PythonTask = "PythonTask"
|
|
@@ -5715,53 +3648,6 @@ export interface TaskResourceUpdateDto {
|
|
|
5715
3648
|
export interface TaskReturnType {
|
|
5716
3649
|
/** Gets or sets description. */
|
|
5717
3650
|
description?: string;
|
|
5718
|
-
/**
|
|
5719
|
-
*
|
|
5720
|
-
*
|
|
5721
|
-
* Int32
|
|
5722
|
-
*
|
|
5723
|
-
* Int64
|
|
5724
|
-
*
|
|
5725
|
-
* Double
|
|
5726
|
-
*
|
|
5727
|
-
* String
|
|
5728
|
-
*
|
|
5729
|
-
* Boolean
|
|
5730
|
-
*
|
|
5731
|
-
* DateTime
|
|
5732
|
-
*
|
|
5733
|
-
* Point
|
|
5734
|
-
*
|
|
5735
|
-
* Geometry
|
|
5736
|
-
*
|
|
5737
|
-
* Polyline
|
|
5738
|
-
*
|
|
5739
|
-
* MultiPolygon
|
|
5740
|
-
*
|
|
5741
|
-
* Polygon
|
|
5742
|
-
*
|
|
5743
|
-
* Multipoint
|
|
5744
|
-
*
|
|
5745
|
-
* IntergerArray
|
|
5746
|
-
*
|
|
5747
|
-
* DoubleArray
|
|
5748
|
-
*
|
|
5749
|
-
* StringArray
|
|
5750
|
-
*
|
|
5751
|
-
* SourceEql
|
|
5752
|
-
*
|
|
5753
|
-
* Layer
|
|
5754
|
-
*
|
|
5755
|
-
* Table
|
|
5756
|
-
*
|
|
5757
|
-
* Folder
|
|
5758
|
-
*
|
|
5759
|
-
* Json
|
|
5760
|
-
*
|
|
5761
|
-
* Attribute
|
|
5762
|
-
*
|
|
5763
|
-
* AttributeArray
|
|
5764
|
-
*/
|
|
5765
3651
|
type?: WorkerSettingsFieldType;
|
|
5766
3652
|
/** Name. */
|
|
5767
3653
|
default?: any;
|
|
@@ -5788,19 +3674,7 @@ export type TileCatalogServiceInfoDc = ServiceInfoDc & {
|
|
|
5788
3674
|
* Configuration of a table for tile catalog layer.
|
|
5789
3675
|
*/
|
|
5790
3676
|
export type TileCatalogTableConfigurationDc = TableConfigurationBaseDc & {
|
|
5791
|
-
/**
|
|
5792
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
5793
|
-
*
|
|
5794
|
-
* DefaultTableConfiguration
|
|
5795
|
-
*
|
|
5796
|
-
* TileCatalogTableConfiguration
|
|
5797
|
-
*
|
|
5798
|
-
* ViewConfiguration
|
|
5799
|
-
*
|
|
5800
|
-
* MaterializedViewConfiguration
|
|
5801
|
-
*
|
|
5802
|
-
* RouteTableConfiguration
|
|
5803
|
-
*/
|
|
3677
|
+
/** Specifies the available types of table configurations that can be used within the application. */
|
|
5804
3678
|
type?: TableConfigurationType;
|
|
5805
3679
|
};
|
|
5806
3680
|
/**
|
|
@@ -5859,13 +3733,6 @@ export interface TileInfoDc {
|
|
|
5859
3733
|
* Access token request.
|
|
5860
3734
|
*/
|
|
5861
3735
|
export interface TokenRequestDc {
|
|
5862
|
-
/**
|
|
5863
|
-
*
|
|
5864
|
-
*
|
|
5865
|
-
* authorization_code
|
|
5866
|
-
*
|
|
5867
|
-
* refresh_token
|
|
5868
|
-
*/
|
|
5869
3736
|
grant_type: AuthorizationGrant;
|
|
5870
3737
|
/**
|
|
5871
3738
|
* Client id.
|
|
@@ -6107,19 +3974,7 @@ export interface VersionsResponse {
|
|
|
6107
3974
|
* Configuration of a table for feature layer.
|
|
6108
3975
|
*/
|
|
6109
3976
|
export type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
6110
|
-
/**
|
|
6111
|
-
* Specifies the available types of table configurations that can be used within the application.
|
|
6112
|
-
*
|
|
6113
|
-
* DefaultTableConfiguration
|
|
6114
|
-
*
|
|
6115
|
-
* TileCatalogTableConfiguration
|
|
6116
|
-
*
|
|
6117
|
-
* ViewConfiguration
|
|
6118
|
-
*
|
|
6119
|
-
* MaterializedViewConfiguration
|
|
6120
|
-
*
|
|
6121
|
-
* RouteTableConfiguration
|
|
6122
|
-
*/
|
|
3977
|
+
/** Specifies the available types of table configurations that can be used within the application. */
|
|
6123
3978
|
type?: TableConfigurationType;
|
|
6124
3979
|
/** EQL. */
|
|
6125
3980
|
eql?: string | null;
|
|
@@ -6134,21 +3989,6 @@ export type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
|
6134
3989
|
* S3 data source settings.
|
|
6135
3990
|
*/
|
|
6136
3991
|
export type WmsDataSourceDc = DataSourceDc & {
|
|
6137
|
-
/**
|
|
6138
|
-
*
|
|
6139
|
-
*
|
|
6140
|
-
* Postgres
|
|
6141
|
-
*
|
|
6142
|
-
* Trino
|
|
6143
|
-
*
|
|
6144
|
-
* S3
|
|
6145
|
-
*
|
|
6146
|
-
* GisServer
|
|
6147
|
-
*
|
|
6148
|
-
* Spark
|
|
6149
|
-
*
|
|
6150
|
-
* Archive
|
|
6151
|
-
*/
|
|
6152
3992
|
type?: DataSourceType;
|
|
6153
3993
|
/** Endpoint. */
|
|
6154
3994
|
serviceUrl?: string | null;
|
|
@@ -6157,15 +3997,6 @@ export type WmsDataSourceDc = DataSourceDc & {
|
|
|
6157
3997
|
/** Endpoint. */
|
|
6158
3998
|
headers?: Record<string, string | null>;
|
|
6159
3999
|
};
|
|
6160
|
-
/**
|
|
6161
|
-
*
|
|
6162
|
-
|
|
6163
|
-
Task
|
|
6164
|
-
|
|
6165
|
-
Rest
|
|
6166
|
-
|
|
6167
|
-
Both
|
|
6168
|
-
*/
|
|
6169
4000
|
export declare enum WorkerMethodType {
|
|
6170
4001
|
Task = "Task",
|
|
6171
4002
|
Rest = "Rest",
|
|
@@ -6176,53 +4007,6 @@ export interface WorkerSettingsField {
|
|
|
6176
4007
|
alias?: string;
|
|
6177
4008
|
group?: string;
|
|
6178
4009
|
nullable?: boolean;
|
|
6179
|
-
/**
|
|
6180
|
-
*
|
|
6181
|
-
*
|
|
6182
|
-
* Int32
|
|
6183
|
-
*
|
|
6184
|
-
* Int64
|
|
6185
|
-
*
|
|
6186
|
-
* Double
|
|
6187
|
-
*
|
|
6188
|
-
* String
|
|
6189
|
-
*
|
|
6190
|
-
* Boolean
|
|
6191
|
-
*
|
|
6192
|
-
* DateTime
|
|
6193
|
-
*
|
|
6194
|
-
* Point
|
|
6195
|
-
*
|
|
6196
|
-
* Geometry
|
|
6197
|
-
*
|
|
6198
|
-
* Polyline
|
|
6199
|
-
*
|
|
6200
|
-
* MultiPolygon
|
|
6201
|
-
*
|
|
6202
|
-
* Polygon
|
|
6203
|
-
*
|
|
6204
|
-
* Multipoint
|
|
6205
|
-
*
|
|
6206
|
-
* IntergerArray
|
|
6207
|
-
*
|
|
6208
|
-
* DoubleArray
|
|
6209
|
-
*
|
|
6210
|
-
* StringArray
|
|
6211
|
-
*
|
|
6212
|
-
* SourceEql
|
|
6213
|
-
*
|
|
6214
|
-
* Layer
|
|
6215
|
-
*
|
|
6216
|
-
* Table
|
|
6217
|
-
*
|
|
6218
|
-
* Folder
|
|
6219
|
-
*
|
|
6220
|
-
* Json
|
|
6221
|
-
*
|
|
6222
|
-
* Attribute
|
|
6223
|
-
*
|
|
6224
|
-
* AttributeArray
|
|
6225
|
-
*/
|
|
6226
4010
|
type?: WorkerSettingsFieldType;
|
|
6227
4011
|
lookupValues?: Record<string, string>;
|
|
6228
4012
|
childrenFields?: Record<string, WorkerSettingsField[]>;
|
|
@@ -6239,106 +4023,12 @@ export interface WorkerSettingsFieldDc {
|
|
|
6239
4023
|
group?: string;
|
|
6240
4024
|
/** Nullable. */
|
|
6241
4025
|
nullable?: boolean;
|
|
6242
|
-
/**
|
|
6243
|
-
*
|
|
6244
|
-
*
|
|
6245
|
-
* Int32
|
|
6246
|
-
*
|
|
6247
|
-
* Int64
|
|
6248
|
-
*
|
|
6249
|
-
* Double
|
|
6250
|
-
*
|
|
6251
|
-
* String
|
|
6252
|
-
*
|
|
6253
|
-
* Boolean
|
|
6254
|
-
*
|
|
6255
|
-
* DateTime
|
|
6256
|
-
*
|
|
6257
|
-
* Point
|
|
6258
|
-
*
|
|
6259
|
-
* Geometry
|
|
6260
|
-
*
|
|
6261
|
-
* Polyline
|
|
6262
|
-
*
|
|
6263
|
-
* MultiPolygon
|
|
6264
|
-
*
|
|
6265
|
-
* Polygon
|
|
6266
|
-
*
|
|
6267
|
-
* Multipoint
|
|
6268
|
-
*
|
|
6269
|
-
* IntergerArray
|
|
6270
|
-
*
|
|
6271
|
-
* DoubleArray
|
|
6272
|
-
*
|
|
6273
|
-
* StringArray
|
|
6274
|
-
*
|
|
6275
|
-
* SourceEql
|
|
6276
|
-
*
|
|
6277
|
-
* Layer
|
|
6278
|
-
*
|
|
6279
|
-
* Table
|
|
6280
|
-
*
|
|
6281
|
-
* Folder
|
|
6282
|
-
*
|
|
6283
|
-
* Json
|
|
6284
|
-
*
|
|
6285
|
-
* Attribute
|
|
6286
|
-
*
|
|
6287
|
-
* AttributeArray
|
|
6288
|
-
*/
|
|
6289
4026
|
type?: WorkerSettingsFieldType;
|
|
6290
4027
|
/** LookupValues. */
|
|
6291
4028
|
lookupValues?: Record<string, string | null>;
|
|
6292
4029
|
/** ChildrenFields. */
|
|
6293
4030
|
childrenFields?: Record<string, WorkerSettingsFieldDc[] | null>;
|
|
6294
4031
|
}
|
|
6295
|
-
/**
|
|
6296
|
-
*
|
|
6297
|
-
|
|
6298
|
-
Int32
|
|
6299
|
-
|
|
6300
|
-
Int64
|
|
6301
|
-
|
|
6302
|
-
Double
|
|
6303
|
-
|
|
6304
|
-
String
|
|
6305
|
-
|
|
6306
|
-
Boolean
|
|
6307
|
-
|
|
6308
|
-
DateTime
|
|
6309
|
-
|
|
6310
|
-
Point
|
|
6311
|
-
|
|
6312
|
-
Geometry
|
|
6313
|
-
|
|
6314
|
-
Polyline
|
|
6315
|
-
|
|
6316
|
-
MultiPolygon
|
|
6317
|
-
|
|
6318
|
-
Polygon
|
|
6319
|
-
|
|
6320
|
-
Multipoint
|
|
6321
|
-
|
|
6322
|
-
IntergerArray
|
|
6323
|
-
|
|
6324
|
-
DoubleArray
|
|
6325
|
-
|
|
6326
|
-
StringArray
|
|
6327
|
-
|
|
6328
|
-
SourceEql
|
|
6329
|
-
|
|
6330
|
-
Layer
|
|
6331
|
-
|
|
6332
|
-
Table
|
|
6333
|
-
|
|
6334
|
-
Folder
|
|
6335
|
-
|
|
6336
|
-
Json
|
|
6337
|
-
|
|
6338
|
-
Attribute
|
|
6339
|
-
|
|
6340
|
-
AttributeArray
|
|
6341
|
-
*/
|
|
6342
4032
|
export declare enum WorkerSettingsFieldType {
|
|
6343
4033
|
Int32 = "Int32",
|
|
6344
4034
|
Int64 = "Int64",
|
|
@@ -6439,17 +4129,6 @@ export interface ZipExtractRequestDc {
|
|
|
6439
4129
|
targetParentId?: string;
|
|
6440
4130
|
/** If true delete archive after extraction. */
|
|
6441
4131
|
deleteZipAfterExtraction?: boolean;
|
|
6442
|
-
/**
|
|
6443
|
-
*
|
|
6444
|
-
*
|
|
6445
|
-
* Skip
|
|
6446
|
-
*
|
|
6447
|
-
* Overwrite
|
|
6448
|
-
*
|
|
6449
|
-
* GenerateUnique
|
|
6450
|
-
*
|
|
6451
|
-
* ThrowError
|
|
6452
|
-
*/
|
|
6453
4132
|
conflictStrategy?: ConflictResolutionStrategy;
|
|
6454
4133
|
/** Is true extract nested archives. */
|
|
6455
4134
|
extractNestedArchives?: boolean;
|
|
@@ -6517,7 +4196,9 @@ export interface CreateUserParams {
|
|
|
6517
4196
|
createNamespace?: boolean;
|
|
6518
4197
|
}
|
|
6519
4198
|
export interface SetEmailPayload {
|
|
4199
|
+
/** User email to set. */
|
|
6520
4200
|
email: string;
|
|
4201
|
+
/** Password to set. */
|
|
6521
4202
|
password: string;
|
|
6522
4203
|
}
|
|
6523
4204
|
export interface ConfirmEmail1Params {
|
|
@@ -6541,7 +4222,9 @@ export interface ConfirmChangeEmailParams {
|
|
|
6541
4222
|
code: string;
|
|
6542
4223
|
}
|
|
6543
4224
|
export interface ChangePasswordPayload {
|
|
4225
|
+
/** Current password. */
|
|
6544
4226
|
oldPassword: string;
|
|
4227
|
+
/** New password. */
|
|
6545
4228
|
password: string;
|
|
6546
4229
|
}
|
|
6547
4230
|
export interface ResetPasswordParams {
|
|
@@ -6549,8 +4232,11 @@ export interface ResetPasswordParams {
|
|
|
6549
4232
|
email?: string;
|
|
6550
4233
|
}
|
|
6551
4234
|
export interface ResetPasswordCallbackPayload {
|
|
4235
|
+
/** User name. */
|
|
6552
4236
|
username: string;
|
|
4237
|
+
/** Reset code. */
|
|
6553
4238
|
code: string;
|
|
4239
|
+
/** Password to set. */
|
|
6554
4240
|
newPassword: string;
|
|
6555
4241
|
}
|
|
6556
4242
|
export interface CreateNamespaceParams {
|
|
@@ -6570,13 +4256,7 @@ export interface AuthenticateParams {
|
|
|
6570
4256
|
* @format uuid
|
|
6571
4257
|
*/
|
|
6572
4258
|
client_id?: string;
|
|
6573
|
-
/**
|
|
6574
|
-
* Response type.
|
|
6575
|
-
*
|
|
6576
|
-
* code
|
|
6577
|
-
*
|
|
6578
|
-
* token
|
|
6579
|
-
*/
|
|
4259
|
+
/** Response type. */
|
|
6580
4260
|
response_type?: ResponseType;
|
|
6581
4261
|
/** Redirect uri. */
|
|
6582
4262
|
redirect_uri?: string;
|
|
@@ -6602,11 +4282,17 @@ export interface GetRolesParams {
|
|
|
6602
4282
|
limit?: number;
|
|
6603
4283
|
}
|
|
6604
4284
|
export interface UploadPreviewPayload {
|
|
6605
|
-
/**
|
|
4285
|
+
/**
|
|
4286
|
+
* IForm file.
|
|
4287
|
+
* @format binary
|
|
4288
|
+
*/
|
|
6606
4289
|
file?: File;
|
|
6607
4290
|
}
|
|
6608
4291
|
export interface UploadPreview1Payload {
|
|
6609
|
-
/**
|
|
4292
|
+
/**
|
|
4293
|
+
* IForm file.
|
|
4294
|
+
* @format binary
|
|
4295
|
+
*/
|
|
6610
4296
|
file?: File;
|
|
6611
4297
|
}
|
|
6612
4298
|
export interface GetTagsParams {
|
|
@@ -7209,21 +4895,7 @@ export interface ClassifyParams {
|
|
|
7209
4895
|
* @default 3
|
|
7210
4896
|
*/
|
|
7211
4897
|
precision?: number;
|
|
7212
|
-
/**
|
|
7213
|
-
* Classification method.
|
|
7214
|
-
*
|
|
7215
|
-
* none
|
|
7216
|
-
*
|
|
7217
|
-
* naturalBreaks
|
|
7218
|
-
*
|
|
7219
|
-
* equalInterval
|
|
7220
|
-
*
|
|
7221
|
-
* quantile
|
|
7222
|
-
*
|
|
7223
|
-
* unique
|
|
7224
|
-
*
|
|
7225
|
-
* step
|
|
7226
|
-
*/
|
|
4898
|
+
/** Classification method. */
|
|
7227
4899
|
type?: ClassificationType;
|
|
7228
4900
|
/** The name of the layer. */
|
|
7229
4901
|
name: string;
|
|
@@ -7252,51 +4924,7 @@ export interface DistinctsParams {
|
|
|
7252
4924
|
export interface AggregateAttributeParams {
|
|
7253
4925
|
/** Aggregation attribute name. */
|
|
7254
4926
|
aggregationAttributeName?: string;
|
|
7255
|
-
/**
|
|
7256
|
-
* Aggregation function name.
|
|
7257
|
-
*
|
|
7258
|
-
* None
|
|
7259
|
-
*
|
|
7260
|
-
* Array
|
|
7261
|
-
*
|
|
7262
|
-
* Min
|
|
7263
|
-
*
|
|
7264
|
-
* Max
|
|
7265
|
-
*
|
|
7266
|
-
* Avg
|
|
7267
|
-
*
|
|
7268
|
-
* Sum
|
|
7269
|
-
*
|
|
7270
|
-
* Extent
|
|
7271
|
-
*
|
|
7272
|
-
* H3
|
|
7273
|
-
*
|
|
7274
|
-
* Count
|
|
7275
|
-
*
|
|
7276
|
-
* TotalCount
|
|
7277
|
-
*
|
|
7278
|
-
* DistinctCount
|
|
7279
|
-
*
|
|
7280
|
-
* First
|
|
7281
|
-
*
|
|
7282
|
-
* Last
|
|
7283
|
-
*
|
|
7284
|
-
* Median
|
|
7285
|
-
*
|
|
7286
|
-
* Mod
|
|
7287
|
-
*
|
|
7288
|
-
* StdDeviation
|
|
7289
|
-
*
|
|
7290
|
-
* SumOfProduct
|
|
7291
|
-
*
|
|
7292
|
-
* OnlyValue
|
|
7293
|
-
*
|
|
7294
|
-
* WeightedAvg
|
|
7295
|
-
*
|
|
7296
|
-
* DensityIndicators
|
|
7297
|
-
*
|
|
7298
|
-
* DividedSum
|
|
7299
|
-
*/
|
|
4927
|
+
/** Aggregation function name. */
|
|
7300
4928
|
aggregationFunctionName?: AggregationFunction;
|
|
7301
4929
|
/** A list of attributes to group. */
|
|
7302
4930
|
groups?: string[];
|
|
@@ -7417,27 +5045,7 @@ export interface GetTaskPrototypesParams {
|
|
|
7417
5045
|
Desc?: boolean;
|
|
7418
5046
|
}
|
|
7419
5047
|
export interface GetTasksForPrototypeParams {
|
|
7420
|
-
/**
|
|
7421
|
-
* Status.
|
|
7422
|
-
*
|
|
7423
|
-
* Init
|
|
7424
|
-
*
|
|
7425
|
-
* Process
|
|
7426
|
-
*
|
|
7427
|
-
* Completed
|
|
7428
|
-
*
|
|
7429
|
-
* Interrupted
|
|
7430
|
-
*
|
|
7431
|
-
* Error
|
|
7432
|
-
*
|
|
7433
|
-
* Timeout
|
|
7434
|
-
*
|
|
7435
|
-
* Waiting
|
|
7436
|
-
*
|
|
7437
|
-
* InQueue
|
|
7438
|
-
*
|
|
7439
|
-
* Unknown
|
|
7440
|
-
*/
|
|
5048
|
+
/** Status. */
|
|
7441
5049
|
Status?: RemoteTaskStatus;
|
|
7442
5050
|
/**
|
|
7443
5051
|
* Skip.
|
|
@@ -7482,49 +5090,13 @@ export interface FindUserByNameParams {
|
|
|
7482
5090
|
filter?: string;
|
|
7483
5091
|
}
|
|
7484
5092
|
export interface GetPolicyListParams {
|
|
7485
|
-
/**
|
|
7486
|
-
* Type of the policies.
|
|
7487
|
-
*
|
|
7488
|
-
* Unknown
|
|
7489
|
-
*
|
|
7490
|
-
* CreateTable
|
|
7491
|
-
*
|
|
7492
|
-
* CreateLayer
|
|
7493
|
-
*
|
|
7494
|
-
* CreateProject
|
|
7495
|
-
*
|
|
7496
|
-
* MaxFeaturesInOneTable
|
|
7497
|
-
*
|
|
7498
|
-
* MaxObjectsToExport
|
|
7499
|
-
*
|
|
7500
|
-
* MaxUploadContentSize
|
|
7501
|
-
*
|
|
7502
|
-
* MaxEqlQueryParametersValues
|
|
7503
|
-
*/
|
|
5093
|
+
/** Type of the policies. */
|
|
7504
5094
|
type?: PolicyType;
|
|
7505
5095
|
/** Use role the policy is applied to. */
|
|
7506
5096
|
roleName?: string;
|
|
7507
5097
|
}
|
|
7508
5098
|
export interface RemovePolicyParams {
|
|
7509
|
-
/**
|
|
7510
|
-
* Type of the policy.
|
|
7511
|
-
*
|
|
7512
|
-
* Unknown
|
|
7513
|
-
*
|
|
7514
|
-
* CreateTable
|
|
7515
|
-
*
|
|
7516
|
-
* CreateLayer
|
|
7517
|
-
*
|
|
7518
|
-
* CreateProject
|
|
7519
|
-
*
|
|
7520
|
-
* MaxFeaturesInOneTable
|
|
7521
|
-
*
|
|
7522
|
-
* MaxObjectsToExport
|
|
7523
|
-
*
|
|
7524
|
-
* MaxUploadContentSize
|
|
7525
|
-
*
|
|
7526
|
-
* MaxEqlQueryParametersValues
|
|
7527
|
-
*/
|
|
5099
|
+
/** Type of the policy. */
|
|
7528
5100
|
type?: PolicyType;
|
|
7529
5101
|
/** Use role the policy is applied to. */
|
|
7530
5102
|
role?: string;
|