@evergis/api 3.0.64 → 3.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__generated__/AccountService.d.ts +4 -4
- package/dist/__generated__/BulkOperationsService.d.ts +2 -35
- package/dist/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +57 -46
- package/dist/__generated__/NamespaceService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +29 -29
- package/dist/__generated__/ResourceCatalogService.d.ts +2 -134
- package/dist/__generated__/SchedulerService.d.ts +12 -12
- package/dist/__generated__/SecurityService.d.ts +2 -2
- package/dist/__generated__/StyleService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +33 -22
- package/dist/__generated__/ToolsService.d.ts +0 -312
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/data-contracts.d.ts +1722 -1996
- package/dist/api.cjs.development.js +167 -951
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +188 -1194
- package/dist/api.esm.js.map +1 -1
- package/dist/services/BulkOperations.d.ts +0 -5
- package/dist/services/Layers.d.ts +5 -5
- package/dist/services/PortalSettings.d.ts +2 -0
- package/dist/services/Projects.d.ts +4 -4
- package/dist/services/Tables.d.ts +3 -3
- package/package.json +2 -2
- package/dist/__generated__/AutosharedListService.d.ts +0 -53
- package/dist/__generated__/FavoritesService.d.ts +0 -31
- package/dist/__generated__/ScriptsService.d.ts +0 -31
|
@@ -8,21 +8,20 @@ export interface AccessControlListDc {
|
|
|
8
8
|
/** All available permissions list. */
|
|
9
9
|
data: RolePermissionDc[];
|
|
10
10
|
}
|
|
11
|
-
export declare type AggregatedClusterSymbolDc = SymbolDc & {
|
|
12
|
-
type?: string;
|
|
13
|
-
pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
14
|
-
gridSize?: number;
|
|
15
|
-
fixedCenter?: boolean;
|
|
16
|
-
aggregations?: Record<string, AggregationFunction>;
|
|
17
|
-
};
|
|
18
11
|
/**
|
|
19
12
|
* Server task that aggregate the objects from one storage to another by polygon geometry.
|
|
20
13
|
*/
|
|
21
|
-
export
|
|
14
|
+
export interface AggregateTaskParametersDc {
|
|
22
15
|
type?: string;
|
|
23
|
-
|
|
16
|
+
/** Storage that is to be used as a data source for the task. */
|
|
17
|
+
geometry: BaseTaskDataStorageDc;
|
|
18
|
+
/** Storage that is to be used as a data source for the task. */
|
|
24
19
|
aggregationSettings: AggregationSettingDc[];
|
|
25
|
-
|
|
20
|
+
/** Storage that is to be used as a data source for the task. */
|
|
21
|
+
source: BaseTaskDataStorageDc;
|
|
22
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
23
|
+
target: BaseTaskDataStorageDc;
|
|
24
|
+
}
|
|
26
25
|
/**
|
|
27
26
|
* Describes data contract of aggregation result.
|
|
28
27
|
*/
|
|
@@ -51,6 +50,12 @@ export interface AggregationDataResultDc {
|
|
|
51
50
|
* Count
|
|
52
51
|
*
|
|
53
52
|
* OnlyValue
|
|
53
|
+
*
|
|
54
|
+
* WeightedAvg
|
|
55
|
+
*
|
|
56
|
+
* DensityIndicators
|
|
57
|
+
*
|
|
58
|
+
* DividedSum
|
|
54
59
|
*/
|
|
55
60
|
aggregationFunctionName: AggregationFunction;
|
|
56
61
|
/** Aggregation result value. */
|
|
@@ -76,6 +81,12 @@ Extent
|
|
|
76
81
|
Count
|
|
77
82
|
|
|
78
83
|
OnlyValue
|
|
84
|
+
|
|
85
|
+
WeightedAvg
|
|
86
|
+
|
|
87
|
+
DensityIndicators
|
|
88
|
+
|
|
89
|
+
DividedSum
|
|
79
90
|
*/
|
|
80
91
|
export declare enum AggregationFunction {
|
|
81
92
|
None = "None",
|
|
@@ -86,7 +97,10 @@ export declare enum AggregationFunction {
|
|
|
86
97
|
Sum = "Sum",
|
|
87
98
|
Extent = "Extent",
|
|
88
99
|
Count = "Count",
|
|
89
|
-
OnlyValue = "OnlyValue"
|
|
100
|
+
OnlyValue = "OnlyValue",
|
|
101
|
+
WeightedAvg = "WeightedAvg",
|
|
102
|
+
DensityIndicators = "DensityIndicators",
|
|
103
|
+
DividedSum = "DividedSum"
|
|
90
104
|
}
|
|
91
105
|
/**
|
|
92
106
|
* Aggregation settings.
|
|
@@ -96,6 +110,8 @@ export interface AggregationSettingDc {
|
|
|
96
110
|
targetAttributeName: string;
|
|
97
111
|
/** Source attribute name. */
|
|
98
112
|
sourceAttributeName: string;
|
|
113
|
+
/** Additional source attribute. */
|
|
114
|
+
additionalSourceAttribute?: string;
|
|
99
115
|
/**
|
|
100
116
|
*
|
|
101
117
|
*
|
|
@@ -116,176 +132,14 @@ export interface AggregationSettingDc {
|
|
|
116
132
|
* Count
|
|
117
133
|
*
|
|
118
134
|
* OnlyValue
|
|
119
|
-
*/
|
|
120
|
-
aggregationFunction: AggregationFunction;
|
|
121
|
-
}
|
|
122
|
-
/**
|
|
123
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ArgumentDefinitionDc describes data contract of argument definition of geotool.
|
|
124
|
-
*/
|
|
125
|
-
export interface ArgumentDefinitionDc {
|
|
126
|
-
/**
|
|
127
|
-
* Type of the argument of a server task script.
|
|
128
|
-
*
|
|
129
|
-
* string
|
|
130
|
-
*
|
|
131
|
-
* int32
|
|
132
|
-
*
|
|
133
|
-
* int64
|
|
134
|
-
*
|
|
135
|
-
* double
|
|
136
|
-
*
|
|
137
|
-
* float
|
|
138
|
-
*
|
|
139
|
-
* boolean
|
|
140
|
-
*
|
|
141
|
-
* datetime
|
|
142
|
-
*
|
|
143
|
-
* enum
|
|
144
|
-
*
|
|
145
|
-
* dataSource
|
|
146
|
-
*
|
|
147
|
-
* polygon
|
|
148
|
-
*
|
|
149
|
-
* polyline
|
|
150
|
-
*
|
|
151
|
-
* point
|
|
152
|
-
*
|
|
153
|
-
* envelope
|
|
154
|
-
*
|
|
155
|
-
* attribute
|
|
156
|
-
*
|
|
157
|
-
* array
|
|
158
|
-
*
|
|
159
|
-
* serviceInfo
|
|
160
|
-
*/
|
|
161
|
-
type?: ArgumentType;
|
|
162
|
-
/**
|
|
163
|
-
* Specifies display element type.
|
|
164
|
-
*
|
|
165
|
-
* none
|
|
166
|
-
*
|
|
167
|
-
* checkbox
|
|
168
|
-
*
|
|
169
|
-
* select
|
|
170
|
-
*/
|
|
171
|
-
uiElement?: ElementType;
|
|
172
|
-
expectedField?: string;
|
|
173
|
-
defaultValue?: any;
|
|
174
|
-
isOptional?: boolean;
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
*
|
|
178
|
-
* unknown
|
|
179
|
-
*
|
|
180
|
-
* point
|
|
181
|
-
*
|
|
182
|
-
* polyline
|
|
183
|
-
*
|
|
184
|
-
* polygon
|
|
185
|
-
*
|
|
186
|
-
* envelope
|
|
187
|
-
*
|
|
188
|
-
* multipoint
|
|
189
|
-
*/
|
|
190
|
-
geometry?: GeometryType;
|
|
191
|
-
minimum?: any;
|
|
192
|
-
maximum?: any;
|
|
193
|
-
/**
|
|
194
|
-
* Type of the argument of a server task script.
|
|
195
|
-
*
|
|
196
|
-
* string
|
|
197
|
-
*
|
|
198
|
-
* int32
|
|
199
|
-
*
|
|
200
|
-
* int64
|
|
201
|
-
*
|
|
202
|
-
* double
|
|
203
|
-
*
|
|
204
|
-
* float
|
|
205
|
-
*
|
|
206
|
-
* boolean
|
|
207
135
|
*
|
|
208
|
-
*
|
|
136
|
+
* WeightedAvg
|
|
209
137
|
*
|
|
210
|
-
*
|
|
138
|
+
* DensityIndicators
|
|
211
139
|
*
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
* polygon
|
|
215
|
-
*
|
|
216
|
-
* polyline
|
|
217
|
-
*
|
|
218
|
-
* point
|
|
219
|
-
*
|
|
220
|
-
* envelope
|
|
221
|
-
*
|
|
222
|
-
* attribute
|
|
223
|
-
*
|
|
224
|
-
* array
|
|
225
|
-
*
|
|
226
|
-
* serviceInfo
|
|
140
|
+
* DividedSum
|
|
227
141
|
*/
|
|
228
|
-
|
|
229
|
-
values?: any[];
|
|
230
|
-
/** @format int32 */
|
|
231
|
-
itemsCount?: number;
|
|
232
|
-
isUniqueItems?: boolean;
|
|
233
|
-
header?: string;
|
|
234
|
-
description?: string;
|
|
235
|
-
extra?: string;
|
|
236
|
-
}
|
|
237
|
-
/**
|
|
238
|
-
* Type of the argument of a server task script.
|
|
239
|
-
|
|
240
|
-
string
|
|
241
|
-
|
|
242
|
-
int32
|
|
243
|
-
|
|
244
|
-
int64
|
|
245
|
-
|
|
246
|
-
double
|
|
247
|
-
|
|
248
|
-
float
|
|
249
|
-
|
|
250
|
-
boolean
|
|
251
|
-
|
|
252
|
-
datetime
|
|
253
|
-
|
|
254
|
-
enum
|
|
255
|
-
|
|
256
|
-
dataSource
|
|
257
|
-
|
|
258
|
-
polygon
|
|
259
|
-
|
|
260
|
-
polyline
|
|
261
|
-
|
|
262
|
-
point
|
|
263
|
-
|
|
264
|
-
envelope
|
|
265
|
-
|
|
266
|
-
attribute
|
|
267
|
-
|
|
268
|
-
array
|
|
269
|
-
|
|
270
|
-
serviceInfo
|
|
271
|
-
*/
|
|
272
|
-
export declare enum ArgumentType {
|
|
273
|
-
String = "string",
|
|
274
|
-
Int32 = "int32",
|
|
275
|
-
Int64 = "int64",
|
|
276
|
-
Double = "double",
|
|
277
|
-
Float = "float",
|
|
278
|
-
Boolean = "boolean",
|
|
279
|
-
DateTime = "datetime",
|
|
280
|
-
Enum = "enum",
|
|
281
|
-
DataSource = "dataSource",
|
|
282
|
-
Polygon = "polygon",
|
|
283
|
-
Polyline = "polyline",
|
|
284
|
-
Point = "point",
|
|
285
|
-
Envelope = "envelope",
|
|
286
|
-
Attribute = "attribute",
|
|
287
|
-
Array = "array",
|
|
288
|
-
ServiceInfo = "serviceInfo"
|
|
142
|
+
aggregationFunction: AggregationFunction;
|
|
289
143
|
}
|
|
290
144
|
/**
|
|
291
145
|
* Configuration of an attribute in a feature layer.
|
|
@@ -298,7 +152,7 @@ export interface AttributeConfigurationDc {
|
|
|
298
152
|
/** Human-friendly name for the attribute. */
|
|
299
153
|
alias?: string;
|
|
300
154
|
/**
|
|
301
|
-
* The
|
|
155
|
+
* The `StringSubType` provides information about string attribute subtype.
|
|
302
156
|
*
|
|
303
157
|
* None
|
|
304
158
|
*
|
|
@@ -331,11 +185,17 @@ export interface AttributeConfigurationDc {
|
|
|
331
185
|
* Count
|
|
332
186
|
*
|
|
333
187
|
* OnlyValue
|
|
188
|
+
*
|
|
189
|
+
* WeightedAvg
|
|
190
|
+
*
|
|
191
|
+
* DensityIndicators
|
|
192
|
+
*
|
|
193
|
+
* DividedSum
|
|
334
194
|
*/
|
|
335
195
|
aggregation?: AggregationFunction;
|
|
336
196
|
/** Eql expression. Provides dynamic calculated value of the attribute. */
|
|
337
197
|
expression?: string;
|
|
338
|
-
/**
|
|
198
|
+
/** Allows to set format to attribute value. */
|
|
339
199
|
stringFormat?: AttributeFormatDc;
|
|
340
200
|
}
|
|
341
201
|
/**
|
|
@@ -377,7 +237,7 @@ export interface AttributeDefinitionDc {
|
|
|
377
237
|
/** If false, attribute will not be returned in feature query. */
|
|
378
238
|
isDisplayed?: boolean;
|
|
379
239
|
/**
|
|
380
|
-
* The
|
|
240
|
+
* The `StringSubType` provides information about string attribute subtype.
|
|
381
241
|
*
|
|
382
242
|
* None
|
|
383
243
|
*
|
|
@@ -390,7 +250,7 @@ export interface AttributeDefinitionDc {
|
|
|
390
250
|
isUnique?: boolean;
|
|
391
251
|
/** Sets true if attribute calculate on the fly. */
|
|
392
252
|
isCalculated?: boolean;
|
|
393
|
-
/** Provides
|
|
253
|
+
/** Provides attribute value format settings. */
|
|
394
254
|
stringFormat?: AttributeFormatDefinitionDc;
|
|
395
255
|
}
|
|
396
256
|
/**
|
|
@@ -438,16 +298,16 @@ export interface AttributeFormatDc {
|
|
|
438
298
|
*
|
|
439
299
|
* <para></para>
|
|
440
300
|
* <example>
|
|
441
|
-
*
|
|
442
|
-
*
|
|
301
|
+
* `#,#` - Causes value to be split into groups
|
|
302
|
+
* ```
|
|
443
303
|
* 1234567890 -> 1 234 567 890
|
|
444
|
-
*
|
|
445
|
-
*
|
|
304
|
+
* ````.00` - Causes the value to be rounded.
|
|
305
|
+
* ```
|
|
446
306
|
* 123.446 -> 123.45
|
|
447
|
-
*
|
|
448
|
-
*
|
|
307
|
+
* ````#,#.00` - Causes value to be split into groups and rounded.
|
|
308
|
+
* ```
|
|
449
309
|
* 1234567.4563 - > 1 234 567.46
|
|
450
|
-
*
|
|
310
|
+
* ```</example>
|
|
451
311
|
*/
|
|
452
312
|
format?: string;
|
|
453
313
|
/**
|
|
@@ -492,23 +352,6 @@ export interface AttributeFormatDefinitionDc {
|
|
|
492
352
|
*/
|
|
493
353
|
rounding?: number;
|
|
494
354
|
}
|
|
495
|
-
/**
|
|
496
|
-
* Configuration of the attribute set in a feature layer.
|
|
497
|
-
*/
|
|
498
|
-
export interface AttributesConfigurationDc {
|
|
499
|
-
/** The name of the attribute that is used for identifying features. */
|
|
500
|
-
idAttribute: string;
|
|
501
|
-
/** The name of the attribute that is used for setting feature name (optional). */
|
|
502
|
-
titleAttribute?: string;
|
|
503
|
-
/** The name of the attribute that contains the feature geometry. */
|
|
504
|
-
geometryAttribute: string;
|
|
505
|
-
/** The name of the table in data source service, that contains the data for this layer. */
|
|
506
|
-
tableName: string;
|
|
507
|
-
/** Configuration of the attributes of the layer. */
|
|
508
|
-
attributes?: AttributeConfigurationDc[];
|
|
509
|
-
/** Configurations of the related tables. */
|
|
510
|
-
tableReferences?: TableReferenceConfigurationDc[];
|
|
511
|
-
}
|
|
512
355
|
/**
|
|
513
356
|
* Types of the attributes that are supported by the system.
|
|
514
357
|
|
|
@@ -548,35 +391,48 @@ export declare enum AttributeType {
|
|
|
548
391
|
Multipoint = "Multipoint"
|
|
549
392
|
}
|
|
550
393
|
/**
|
|
551
|
-
*
|
|
394
|
+
* Configuration of the attribute set in a feature layer.
|
|
552
395
|
*/
|
|
553
|
-
export interface
|
|
554
|
-
/**
|
|
555
|
-
|
|
556
|
-
/**
|
|
557
|
-
|
|
396
|
+
export interface AttributesConfigurationDc {
|
|
397
|
+
/** The name of the attribute that is used for identifying features. */
|
|
398
|
+
idAttribute: string;
|
|
399
|
+
/** The name of the attribute that is used for setting feature name (optional). */
|
|
400
|
+
titleAttribute?: string;
|
|
401
|
+
/** The name of the attribute that contains the feature geometry. */
|
|
402
|
+
geometryAttribute: string;
|
|
403
|
+
/** The name of the table in data source service, that contains the data for this layer. */
|
|
404
|
+
tableName: string;
|
|
405
|
+
/** Configuration of the attributes of the layer. */
|
|
406
|
+
attributes?: AttributeConfigurationDc[];
|
|
407
|
+
/** Configurations of the related tables. */
|
|
408
|
+
tableReferences?: TableReferenceConfigurationDc[];
|
|
558
409
|
}
|
|
559
410
|
/**
|
|
560
411
|
* Availability area builder operation considers the nearest availability zones around the input geometries and writes them
|
|
561
412
|
into the target storage.
|
|
562
413
|
*/
|
|
563
|
-
export
|
|
414
|
+
export interface AvailabilityAreaTaskDc {
|
|
564
415
|
type?: string;
|
|
416
|
+
/** Duration from start point in seconds or expression. */
|
|
565
417
|
duration: string;
|
|
418
|
+
/** Provider name. */
|
|
566
419
|
providerType: string;
|
|
420
|
+
/** Name of attribute of the duration. Default name is 'duration'. */
|
|
567
421
|
durationAttributeName?: string;
|
|
422
|
+
/** Name of attribute of the route x center. Default name is 'center_x'. */
|
|
568
423
|
routeCenterXAttributeName?: string;
|
|
424
|
+
/** Name of attribute of the route y center. Default name is 'center_y'. */
|
|
569
425
|
routeCenterYAttributeName?: string;
|
|
426
|
+
/** Name of attribute of the base object id. Default name is 'base_object'. */
|
|
570
427
|
baseObjectIdAttributeName?: string;
|
|
428
|
+
/** Name of attribute of the id attribute. */
|
|
571
429
|
idAttributeName?: string;
|
|
430
|
+
/** Name of attribute of the radius. */
|
|
572
431
|
geometryAttributeName?: string;
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
export interface Base64String {
|
|
578
|
-
/** string value. */
|
|
579
|
-
value?: string;
|
|
432
|
+
/** Storage that is to be used as a data source for the task. */
|
|
433
|
+
source: BaseTaskDataStorageDc;
|
|
434
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
435
|
+
target: BaseTaskDataStorageDc;
|
|
580
436
|
}
|
|
581
437
|
/**
|
|
582
438
|
* The result of a server task step execution.
|
|
@@ -600,24 +456,13 @@ export interface BatchResourcesAclDc {
|
|
|
600
456
|
/** A set of projects acl. */
|
|
601
457
|
projects?: ResourceAclDc[];
|
|
602
458
|
}
|
|
603
|
-
/**
|
|
604
|
-
* Provides bulk request to manage catalog resources.
|
|
605
|
-
*/
|
|
606
|
-
export interface BatchResourcesCatalogDc {
|
|
607
|
-
/** List of layers. */
|
|
608
|
-
layers?: CatalogResourceDc[];
|
|
609
|
-
/** List of tables. */
|
|
610
|
-
tables?: CatalogResourceDc[];
|
|
611
|
-
/** List of projects. */
|
|
612
|
-
projects?: CatalogResourceDc[];
|
|
613
|
-
}
|
|
614
459
|
/**
|
|
615
460
|
* The class describes data contract of bookmark at the map.
|
|
616
461
|
*/
|
|
617
462
|
export interface BookmarkDc {
|
|
618
463
|
/** The title of the bookmark. */
|
|
619
464
|
title?: string;
|
|
620
|
-
/** The position at the map
|
|
465
|
+
/** The position at the map. */
|
|
621
466
|
position?: PositionDc;
|
|
622
467
|
/**
|
|
623
468
|
* Resolution of the map.
|
|
@@ -638,16 +483,24 @@ export interface BrushDc {
|
|
|
638
483
|
* Buffer operation calculates the buffer geometries around the input geometries and writes them
|
|
639
484
|
into the target storage.
|
|
640
485
|
*/
|
|
641
|
-
export
|
|
486
|
+
export interface BufferTaskParametersDc {
|
|
642
487
|
type?: string;
|
|
643
488
|
radii: string[];
|
|
644
489
|
excludeInnerBuffers?: boolean;
|
|
645
490
|
excludeSourcePolygon?: boolean;
|
|
491
|
+
/** Name of attribute of the base object id. Default name is 'base_object'. */
|
|
646
492
|
baseObjectIdAttributeName?: string;
|
|
493
|
+
/** Name of attribute of the radius. Default name is 'buffer_radius'. */
|
|
647
494
|
radiusAttributeName?: string;
|
|
495
|
+
/** Name of attribute of the id attribute. */
|
|
648
496
|
idAttributeName?: string;
|
|
497
|
+
/** Name of attribute of the radius. */
|
|
649
498
|
geometryAttributeName?: string;
|
|
650
|
-
|
|
499
|
+
/** Storage that is to be used as a data source for the task. */
|
|
500
|
+
source: BaseTaskDataStorageDc;
|
|
501
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
502
|
+
target: BaseTaskDataStorageDc;
|
|
503
|
+
}
|
|
651
504
|
/**
|
|
652
505
|
* Provides set resources bulk operation status.
|
|
653
506
|
*/
|
|
@@ -659,41 +512,45 @@ export interface BulkOperationResultDc {
|
|
|
659
512
|
/** Sets true. */
|
|
660
513
|
isSuccess?: boolean;
|
|
661
514
|
}
|
|
662
|
-
export
|
|
515
|
+
export interface CalculatedParameterDc {
|
|
663
516
|
type?: string;
|
|
664
517
|
expression?: string;
|
|
518
|
+
/** @format double */
|
|
665
519
|
defaultValue?: number;
|
|
666
|
-
};
|
|
667
|
-
/**
|
|
668
|
-
* Information necessary for adds/removes resources to/from catalog.
|
|
669
|
-
*/
|
|
670
|
-
export interface CatalogDataDc {
|
|
671
|
-
/** The resource name. */
|
|
672
|
-
resourceName: string;
|
|
673
|
-
/** The user name. */
|
|
674
|
-
users: string[];
|
|
675
|
-
}
|
|
676
|
-
/**
|
|
677
|
-
* Provides catalog resources with users.
|
|
678
|
-
*/
|
|
679
|
-
export interface CatalogResourceDc {
|
|
680
|
-
/** Name of the resource to add. */
|
|
681
|
-
objectName: string;
|
|
682
|
-
/** Users list. */
|
|
683
|
-
users: string[];
|
|
684
520
|
}
|
|
685
521
|
/**
|
|
686
522
|
* The symbol that draws a feature as a circle.
|
|
687
523
|
*/
|
|
688
|
-
export
|
|
524
|
+
export interface CirclePointSymbolDc {
|
|
689
525
|
type?: string;
|
|
690
|
-
|
|
526
|
+
/**
|
|
527
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
528
|
+
* as an object with a "type" parameter specified.
|
|
529
|
+
*/
|
|
530
|
+
size?: ParameterDcDouble;
|
|
531
|
+
/**
|
|
532
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
533
|
+
* as an object with a "type" parameter specified.
|
|
534
|
+
*/
|
|
691
535
|
fillColor?: ParameterDcColor;
|
|
536
|
+
/**
|
|
537
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
538
|
+
* as an object with a "type" parameter specified.
|
|
539
|
+
*/
|
|
692
540
|
strokeColor?: ParameterDcColor;
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
541
|
+
/**
|
|
542
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
543
|
+
* as an object with a "type" parameter specified.
|
|
544
|
+
*/
|
|
545
|
+
strokeWidth?: ParameterDcDouble;
|
|
546
|
+
/** Offset of the circle center from the actual feature position (in pixels). */
|
|
547
|
+
offset?: ParameterDcDouble[];
|
|
548
|
+
/**
|
|
549
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
550
|
+
* as an object with a "type" parameter specified.
|
|
551
|
+
*/
|
|
552
|
+
angle?: ParameterDcDouble;
|
|
553
|
+
}
|
|
697
554
|
/**
|
|
698
555
|
* Describes classification methods.
|
|
699
556
|
|
|
@@ -708,18 +565,6 @@ export declare enum ClassificationType {
|
|
|
708
565
|
EqualInterval = "equalInterval",
|
|
709
566
|
Quantile = "quantile"
|
|
710
567
|
}
|
|
711
|
-
export declare type ClusterSymbolDc = SymbolDc & {
|
|
712
|
-
type?: string;
|
|
713
|
-
labelSymbol?: PointLabelSymbolDc;
|
|
714
|
-
singleObjectSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
715
|
-
fillColor?: ParameterDcColor;
|
|
716
|
-
strokeColor?: ParameterDcColor;
|
|
717
|
-
strokeWidth?: CalculatedParameterDc;
|
|
718
|
-
maxClusterSize?: number;
|
|
719
|
-
minClusterSize?: number;
|
|
720
|
-
maxObjectCount?: number;
|
|
721
|
-
gridSize?: number;
|
|
722
|
-
};
|
|
723
568
|
/**
|
|
724
569
|
* Description of a table column.
|
|
725
570
|
*/
|
|
@@ -806,7 +651,7 @@ export interface CompositeLayerConfigurationDc {
|
|
|
806
651
|
*/
|
|
807
652
|
export interface CompositeLayerInfoDc {
|
|
808
653
|
/** Gets or sets composite layer info. */
|
|
809
|
-
layer: ServiceInfoDc |
|
|
654
|
+
layer: ServiceInfoDc | ResourceInfoDc;
|
|
810
655
|
/** Gets layer visibility. */
|
|
811
656
|
isVisible?: boolean;
|
|
812
657
|
/**
|
|
@@ -830,22 +675,90 @@ export interface CompositeLayerInfoDc {
|
|
|
830
675
|
/**
|
|
831
676
|
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
832
677
|
*/
|
|
833
|
-
export
|
|
678
|
+
export interface CompositeServiceConfigurationDc {
|
|
679
|
+
/** Composite service layers list. */
|
|
834
680
|
layers: CompositeLayerConfigurationDc[];
|
|
835
|
-
|
|
681
|
+
/** Name of the service. */
|
|
682
|
+
name: string;
|
|
683
|
+
/** Human friendly name of the service. */
|
|
684
|
+
alias?: string;
|
|
685
|
+
/** Description of the service. */
|
|
686
|
+
description?: string;
|
|
687
|
+
/** Service access control list. */
|
|
688
|
+
acl?: AccessControlListDc;
|
|
689
|
+
/** Base64 encoded image - icon of the resource. */
|
|
690
|
+
icon?: string;
|
|
691
|
+
/**
|
|
692
|
+
* <br>
|
|
693
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
694
|
+
* Administrator permissions are required to perform this operation.
|
|
695
|
+
*
|
|
696
|
+
*/
|
|
697
|
+
owner?: string;
|
|
698
|
+
}
|
|
836
699
|
/**
|
|
837
700
|
* Information about composite service.
|
|
838
701
|
*/
|
|
839
|
-
export
|
|
702
|
+
export interface CompositeServiceInfoDc {
|
|
703
|
+
/** Composite layer list. */
|
|
840
704
|
layers: CompositeLayerInfoDc[];
|
|
841
|
-
|
|
705
|
+
/** The type of the resource. */
|
|
706
|
+
type: string;
|
|
707
|
+
/** The category of the service. */
|
|
708
|
+
categories?: string[];
|
|
709
|
+
/** Configuration of the service. */
|
|
710
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
711
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
712
|
+
name: string;
|
|
713
|
+
/** Resource alias. */
|
|
714
|
+
alias?: string;
|
|
715
|
+
/** Resource owner. */
|
|
716
|
+
owner?: string;
|
|
717
|
+
/** Resource description. */
|
|
718
|
+
description?: string;
|
|
719
|
+
/** Resource preview. */
|
|
720
|
+
preview?: string;
|
|
721
|
+
/**
|
|
722
|
+
* The date when resource was created.
|
|
723
|
+
* @format date-time
|
|
724
|
+
*/
|
|
725
|
+
createdDate?: string;
|
|
726
|
+
/**
|
|
727
|
+
* The date when resource was last modified.
|
|
728
|
+
* @format date-time
|
|
729
|
+
*/
|
|
730
|
+
changedDate?: string;
|
|
731
|
+
/**
|
|
732
|
+
* User permissions for server security objects (services, projects etc.)
|
|
733
|
+
*
|
|
734
|
+
* none
|
|
735
|
+
*
|
|
736
|
+
* configure
|
|
737
|
+
*
|
|
738
|
+
* write
|
|
739
|
+
*
|
|
740
|
+
* read
|
|
741
|
+
*
|
|
742
|
+
* read,configure
|
|
743
|
+
*
|
|
744
|
+
* read,write
|
|
745
|
+
*
|
|
746
|
+
* read,write,configure
|
|
747
|
+
*/
|
|
748
|
+
permissions?: Permissions;
|
|
749
|
+
/** Access control list. */
|
|
750
|
+
acl?: AccessControlListDc;
|
|
751
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
752
|
+
icon?: string;
|
|
753
|
+
}
|
|
842
754
|
/**
|
|
843
755
|
* Composite symbol.
|
|
844
756
|
*/
|
|
845
|
-
export
|
|
757
|
+
export interface CompositeSymbolDc {
|
|
846
758
|
type?: string;
|
|
847
|
-
|
|
848
|
-
|
|
759
|
+
/** Child symbols list. */
|
|
760
|
+
childSymbols?: SymbolDc[];
|
|
761
|
+
}
|
|
849
762
|
/**
|
|
850
763
|
* Get configuration information.
|
|
851
764
|
*/
|
|
@@ -856,48 +769,8 @@ export interface ConfigDc {
|
|
|
856
769
|
urlPath?: string;
|
|
857
770
|
}
|
|
858
771
|
/**
|
|
859
|
-
* Types of errors that can occur during layer initialize.
|
|
860
|
-
|
|
861
|
-
Unknown
|
|
862
|
-
|
|
863
|
-
SerializeError
|
|
864
|
-
|
|
865
|
-
InvalidDataService
|
|
866
|
-
|
|
867
|
-
InvalidConfiguration
|
|
868
|
-
|
|
869
|
-
InvalidDataServiceName
|
|
870
|
-
|
|
871
|
-
InvalidTableName
|
|
872
|
-
|
|
873
|
-
ResourceNotFound
|
|
874
|
-
|
|
875
|
-
InvalidCondition
|
|
876
|
-
|
|
877
|
-
InvalidAttributes
|
|
878
|
-
|
|
879
|
-
InvalidIdAttribute
|
|
880
|
-
|
|
881
|
-
InvalidGeometryAttribute
|
|
882
|
-
|
|
883
|
-
InvalidGeometryAttributeType
|
|
884
|
-
|
|
885
|
-
InvalidColumnName
|
|
886
|
-
|
|
887
|
-
InvalidIdColumnSettings
|
|
888
|
-
|
|
889
|
-
ColumnNotExistsInTable
|
|
890
|
-
|
|
891
|
-
InvalidStyle
|
|
892
|
-
|
|
893
|
-
InvalidLayerType
|
|
894
|
-
|
|
895
|
-
ColumnLoadingError
|
|
896
|
-
|
|
897
|
-
InvalidAttributeFormat
|
|
898
|
-
|
|
899
|
-
DataSourceNotFound
|
|
900
|
-
*/
|
|
772
|
+
* Types of errors that can occur during layer initialize.
|
|
773
|
+
*/
|
|
901
774
|
export declare enum ConfigurationErrorEnum {
|
|
902
775
|
Unknown = "Unknown",
|
|
903
776
|
SerializeError = "SerializeError",
|
|
@@ -920,14 +793,6 @@ export declare enum ConfigurationErrorEnum {
|
|
|
920
793
|
InvalidAttributeFormat = "InvalidAttributeFormat",
|
|
921
794
|
DataSourceNotFound = "DataSourceNotFound"
|
|
922
795
|
}
|
|
923
|
-
/**
|
|
924
|
-
* SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
|
|
925
|
-
*/
|
|
926
|
-
export declare type ConfiguredLayerDataStorageDc = BaseTaskDataStorageDc & {
|
|
927
|
-
type?: string;
|
|
928
|
-
serviceName: string;
|
|
929
|
-
attributesConfiguration?: AttributesConfigurationDc;
|
|
930
|
-
};
|
|
931
796
|
/**
|
|
932
797
|
* Describes resource to copy.
|
|
933
798
|
*/
|
|
@@ -935,7 +800,7 @@ export interface CopyResourceDc {
|
|
|
935
800
|
/** Name of resource to copy. */
|
|
936
801
|
name: string;
|
|
937
802
|
/**
|
|
938
|
-
* The
|
|
803
|
+
* The `ResourceType` represents resource manager supports types.
|
|
939
804
|
*
|
|
940
805
|
* Unknown
|
|
941
806
|
*
|
|
@@ -966,7 +831,7 @@ export interface CopyResourceResultDc {
|
|
|
966
831
|
/** Name of the resource. */
|
|
967
832
|
name: string;
|
|
968
833
|
/**
|
|
969
|
-
* The
|
|
834
|
+
* The `ResourceType` represents resource manager supports types.
|
|
970
835
|
*
|
|
971
836
|
* Unknown
|
|
972
837
|
*
|
|
@@ -987,16 +852,21 @@ export interface CopyResourceResultDc {
|
|
|
987
852
|
isSuccess?: boolean;
|
|
988
853
|
/** Copied resources. */
|
|
989
854
|
copiedResources?: string[];
|
|
990
|
-
/**
|
|
855
|
+
/** Type of error. */
|
|
991
856
|
errorDetails?: ErrorDetailsDc;
|
|
992
857
|
}
|
|
993
858
|
/**
|
|
994
859
|
* Server task that copies the objects from one storage to another.
|
|
995
860
|
*/
|
|
996
|
-
export
|
|
997
|
-
|
|
861
|
+
export interface CopyTaskParametersDc {
|
|
862
|
+
/** Mapping of source attribute fields and target attribute fields. */
|
|
863
|
+
attributeMapping?: Record<string, string | null>;
|
|
998
864
|
type?: string;
|
|
999
|
-
|
|
865
|
+
/** Storage that is to be used as a data source for the task. */
|
|
866
|
+
source: BaseTaskDataStorageDc;
|
|
867
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
868
|
+
target: BaseTaskDataStorageDc;
|
|
869
|
+
}
|
|
1000
870
|
/**
|
|
1001
871
|
* Data contract for create new role.
|
|
1002
872
|
*/
|
|
@@ -1006,15 +876,6 @@ export interface CreateRoleDc {
|
|
|
1006
876
|
/** Description. */
|
|
1007
877
|
description?: string;
|
|
1008
878
|
}
|
|
1009
|
-
/**
|
|
1010
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.CreateToolGroupDc data contract to create geotools group.
|
|
1011
|
-
*/
|
|
1012
|
-
export interface CreateToolGroupDc {
|
|
1013
|
-
/** Name of the group. */
|
|
1014
|
-
name: string;
|
|
1015
|
-
/** A collection of tools to add. */
|
|
1016
|
-
tools?: string[];
|
|
1017
|
-
}
|
|
1018
879
|
/**
|
|
1019
880
|
* Data contract for create new user.
|
|
1020
881
|
*/
|
|
@@ -1047,32 +908,38 @@ export interface CreateUserDc {
|
|
|
1047
908
|
/** Phone number. */
|
|
1048
909
|
phone?: string;
|
|
1049
910
|
}
|
|
1050
|
-
/**
|
|
1051
|
-
* Description of the temp file as a task data storage.
|
|
1052
|
-
*/
|
|
1053
|
-
export declare type CsvStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
1054
|
-
attributeNameRowNumber?: number;
|
|
1055
|
-
containsAliasRow?: boolean;
|
|
1056
|
-
firstDataRowNumber?: number;
|
|
1057
|
-
coordSourceFields: string[];
|
|
1058
|
-
columnDelimiter?: string;
|
|
1059
|
-
spatialReference?: number;
|
|
1060
|
-
type?: string;
|
|
1061
|
-
};
|
|
1062
911
|
/**
|
|
1063
912
|
* Describes stroked dashed brush.
|
|
1064
913
|
*/
|
|
1065
|
-
export
|
|
914
|
+
export interface DashedBrushDc {
|
|
1066
915
|
type: string;
|
|
916
|
+
/**
|
|
917
|
+
* Specifies alternating between lengths of dashes and lengths of gaps between the dashes.
|
|
918
|
+
* If the stroke width is 10, and you want a line composed of square dashes and square gaps, set the intervals array to { 10, 10 }.
|
|
919
|
+
* The ends of the dashes are affected by the `LineEnding` property of `PolylineSymbolDc`.
|
|
920
|
+
* For specifying round the ends of the dashes it is necessary to sets `LineEnding.Round` property.
|
|
921
|
+
* In case of `LineEnding.Round` the values in the intervals array do not include the extra length resulting from the rounding.
|
|
922
|
+
* This fact means that a circular dot requires specifying a width of zero.
|
|
923
|
+
* For a stroke width of 10, to create a line with circular dots and gaps between the dots of the same diameter, use an intervals array of { 0, 20 }.
|
|
924
|
+
*/
|
|
1067
925
|
intervals: number[];
|
|
926
|
+
/**
|
|
927
|
+
* Specifies where within the dash pattern the line begins
|
|
928
|
+
* In example with square dash and gaps width intervals {10, 10}, if you want the line to begin with the square gap, set phase to 10.
|
|
929
|
+
* @format float
|
|
930
|
+
*/
|
|
1068
931
|
phase?: number;
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
932
|
+
/**
|
|
933
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
934
|
+
* as an object with a "type" parameter specified.
|
|
935
|
+
*/
|
|
936
|
+
color?: ParameterDcColor;
|
|
937
|
+
/**
|
|
938
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
939
|
+
* as an object with a "type" parameter specified.
|
|
940
|
+
*/
|
|
941
|
+
width?: ParameterDcDouble;
|
|
942
|
+
}
|
|
1076
943
|
/**
|
|
1077
944
|
* Dependent resource description.
|
|
1078
945
|
*/
|
|
@@ -1085,10 +952,63 @@ export interface DependentResourceDc {
|
|
|
1085
952
|
/**
|
|
1086
953
|
* Table description with columns and access control list.
|
|
1087
954
|
*/
|
|
1088
|
-
export
|
|
955
|
+
export interface DetailedTableInfoDc {
|
|
956
|
+
/** Description of table columns. */
|
|
1089
957
|
columns: ColumnDescriptionDc[];
|
|
958
|
+
/**
|
|
959
|
+
* Row count.
|
|
960
|
+
* @format int64
|
|
961
|
+
*/
|
|
962
|
+
rowCount?: number;
|
|
963
|
+
/** The geometry of the table. */
|
|
964
|
+
geometries?: GeometryType[];
|
|
965
|
+
/** The type of the table. */
|
|
966
|
+
type?: string;
|
|
967
|
+
/** Configuration of the table. */
|
|
968
|
+
configuration?: TableConfigurationBaseDc;
|
|
969
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
970
|
+
name: string;
|
|
971
|
+
/** Resource alias. */
|
|
972
|
+
alias?: string;
|
|
973
|
+
/** Resource owner. */
|
|
974
|
+
owner?: string;
|
|
975
|
+
/** Resource description. */
|
|
976
|
+
description?: string;
|
|
977
|
+
/** Resource preview. */
|
|
978
|
+
preview?: string;
|
|
979
|
+
/**
|
|
980
|
+
* The date when resource was created.
|
|
981
|
+
* @format date-time
|
|
982
|
+
*/
|
|
983
|
+
createdDate?: string;
|
|
984
|
+
/**
|
|
985
|
+
* The date when resource was last modified.
|
|
986
|
+
* @format date-time
|
|
987
|
+
*/
|
|
988
|
+
changedDate?: string;
|
|
989
|
+
/**
|
|
990
|
+
* User permissions for server security objects (services, projects etc.)
|
|
991
|
+
*
|
|
992
|
+
* none
|
|
993
|
+
*
|
|
994
|
+
* configure
|
|
995
|
+
*
|
|
996
|
+
* write
|
|
997
|
+
*
|
|
998
|
+
* read
|
|
999
|
+
*
|
|
1000
|
+
* read,configure
|
|
1001
|
+
*
|
|
1002
|
+
* read,write
|
|
1003
|
+
*
|
|
1004
|
+
* read,write,configure
|
|
1005
|
+
*/
|
|
1006
|
+
permissions?: Permissions;
|
|
1007
|
+
/** Access control list. */
|
|
1090
1008
|
acl?: AccessControlListDc;
|
|
1091
|
-
|
|
1009
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1010
|
+
icon?: string;
|
|
1011
|
+
}
|
|
1092
1012
|
/**
|
|
1093
1013
|
* Provides attributes edit info.
|
|
1094
1014
|
*/
|
|
@@ -1100,57 +1020,69 @@ export interface EditAttributesInfoDc {
|
|
|
1100
1020
|
/** Expression to edit. */
|
|
1101
1021
|
editExpression: string;
|
|
1102
1022
|
}
|
|
1103
|
-
export
|
|
1023
|
+
export interface EditAttributesTaskParametersDc {
|
|
1104
1024
|
type?: string;
|
|
1105
1025
|
condition?: string;
|
|
1106
1026
|
attribute: string;
|
|
1107
1027
|
editExpression: string;
|
|
1108
1028
|
createNewAttribute?: boolean;
|
|
1109
|
-
attributeType: AttributeType;
|
|
1110
|
-
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1111
|
-
};
|
|
1112
|
-
/**
|
|
1113
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.EditToolGroupDc provides data contract to edit group members.
|
|
1114
|
-
*/
|
|
1115
|
-
export interface EditToolGroupDc {
|
|
1116
1029
|
/**
|
|
1117
|
-
*
|
|
1118
|
-
*
|
|
1030
|
+
* Types of the attributes that are supported by the system.
|
|
1031
|
+
*
|
|
1032
|
+
* Unknown
|
|
1033
|
+
*
|
|
1034
|
+
* String
|
|
1035
|
+
*
|
|
1036
|
+
* Int32
|
|
1037
|
+
*
|
|
1038
|
+
* Int64
|
|
1039
|
+
*
|
|
1040
|
+
* Double
|
|
1041
|
+
*
|
|
1042
|
+
* DateTime
|
|
1043
|
+
*
|
|
1044
|
+
* Boolean
|
|
1045
|
+
*
|
|
1046
|
+
* Point
|
|
1047
|
+
*
|
|
1048
|
+
* Polyline
|
|
1049
|
+
*
|
|
1050
|
+
* Polygon
|
|
1051
|
+
*
|
|
1052
|
+
* Multipoint
|
|
1119
1053
|
*/
|
|
1120
|
-
|
|
1121
|
-
/**
|
|
1122
|
-
|
|
1123
|
-
}
|
|
1124
|
-
/**
|
|
1125
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.EditToolGroupsDc provides data contract to edit groups list of geotool.
|
|
1126
|
-
*/
|
|
1127
|
-
export interface EditToolGroupsDc {
|
|
1128
|
-
/** Name of the tool. */
|
|
1129
|
-
name: string;
|
|
1130
|
-
/** List of groups ids to edit. */
|
|
1131
|
-
groups: number[];
|
|
1132
|
-
}
|
|
1133
|
-
/**
|
|
1134
|
-
* Specifies display element type.
|
|
1135
|
-
|
|
1136
|
-
none
|
|
1137
|
-
|
|
1138
|
-
checkbox
|
|
1139
|
-
|
|
1140
|
-
select
|
|
1141
|
-
*/
|
|
1142
|
-
export declare enum ElementType {
|
|
1143
|
-
None = "none",
|
|
1144
|
-
Checkbox = "checkbox",
|
|
1145
|
-
Select = "select"
|
|
1054
|
+
attributeType: AttributeType;
|
|
1055
|
+
/** Base dc of task data storage. */
|
|
1056
|
+
target: BaseTaskDataStorageDc;
|
|
1146
1057
|
}
|
|
1147
1058
|
/**
|
|
1148
1059
|
* Envelope geometry.
|
|
1149
1060
|
*/
|
|
1150
|
-
export
|
|
1061
|
+
export interface EnvelopeDc {
|
|
1062
|
+
/** Coordinates of the envelope. Always has exactly 2 points: left bottom and right top. */
|
|
1151
1063
|
coordinates: PositionDc[];
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
*
|
|
1067
|
+
* unknown
|
|
1068
|
+
*
|
|
1069
|
+
* point
|
|
1070
|
+
*
|
|
1071
|
+
* polyline
|
|
1072
|
+
*
|
|
1073
|
+
* polygon
|
|
1074
|
+
*
|
|
1075
|
+
* envelope
|
|
1076
|
+
*
|
|
1077
|
+
* multipoint
|
|
1078
|
+
*/
|
|
1152
1079
|
type?: GeometryType;
|
|
1153
|
-
|
|
1080
|
+
/**
|
|
1081
|
+
* Spatial reference id.
|
|
1082
|
+
* @format int32
|
|
1083
|
+
*/
|
|
1084
|
+
sr?: number;
|
|
1085
|
+
}
|
|
1154
1086
|
/**
|
|
1155
1087
|
* Resource error details.
|
|
1156
1088
|
*/
|
|
@@ -1198,68 +1130,8 @@ export declare enum ErrorDetailsType {
|
|
|
1198
1130
|
DuplicateContent = "DuplicateContent"
|
|
1199
1131
|
}
|
|
1200
1132
|
/**
|
|
1201
|
-
* Error status code.
|
|
1202
|
-
|
|
1203
|
-
NotSpecified
|
|
1204
|
-
|
|
1205
|
-
LimitError
|
|
1206
|
-
|
|
1207
|
-
ValidationError
|
|
1208
|
-
|
|
1209
|
-
JwtExpired
|
|
1210
|
-
|
|
1211
|
-
TokenInvalid
|
|
1212
|
-
|
|
1213
|
-
RefreshTokenExpired
|
|
1214
|
-
|
|
1215
|
-
RefreshTokenInvalid
|
|
1216
|
-
|
|
1217
|
-
CreateUserFailed
|
|
1218
|
-
|
|
1219
|
-
SetUserPasswordFailed
|
|
1220
|
-
|
|
1221
|
-
SetUserRoleFailed
|
|
1222
|
-
|
|
1223
|
-
UpdateUserFailed
|
|
1224
|
-
|
|
1225
|
-
RemoveUserFailed
|
|
1226
|
-
|
|
1227
|
-
CreateRoleFailed
|
|
1228
|
-
|
|
1229
|
-
UpdateRoleFailed
|
|
1230
|
-
|
|
1231
|
-
RemoveUserRoleFailed
|
|
1232
|
-
|
|
1233
|
-
ChangeActiveStateFailed
|
|
1234
|
-
|
|
1235
|
-
RemoveRoleFailed
|
|
1236
|
-
|
|
1237
|
-
UserNotFound
|
|
1238
|
-
|
|
1239
|
-
RoleNotFound
|
|
1240
|
-
|
|
1241
|
-
EmailNotConfirmed
|
|
1242
|
-
|
|
1243
|
-
DuplicateEmailError
|
|
1244
|
-
|
|
1245
|
-
InvalidPassword
|
|
1246
|
-
|
|
1247
|
-
RoleExists
|
|
1248
|
-
|
|
1249
|
-
UserExists
|
|
1250
|
-
|
|
1251
|
-
UserLockedError
|
|
1252
|
-
|
|
1253
|
-
InvalidEmail
|
|
1254
|
-
|
|
1255
|
-
InvalidUsername
|
|
1256
|
-
|
|
1257
|
-
Unauthorized
|
|
1258
|
-
|
|
1259
|
-
EmailNotChanged
|
|
1260
|
-
|
|
1261
|
-
EmailNotSet
|
|
1262
|
-
*/
|
|
1133
|
+
* Error status code.
|
|
1134
|
+
*/
|
|
1263
1135
|
export declare enum ErrorType {
|
|
1264
1136
|
NotSpecified = "NotSpecified",
|
|
1265
1137
|
LimitError = "LimitError",
|
|
@@ -1292,73 +1164,6 @@ export declare enum ErrorType {
|
|
|
1292
1164
|
EmailNotChanged = "EmailNotChanged",
|
|
1293
1165
|
EmailNotSet = "EmailNotSet"
|
|
1294
1166
|
}
|
|
1295
|
-
/**
|
|
1296
|
-
* The {EvaluatedOperation} describes evaluated operation.
|
|
1297
|
-
*/
|
|
1298
|
-
export interface EvaluatedOperation {
|
|
1299
|
-
/** Name of the operation. */
|
|
1300
|
-
operation?: string;
|
|
1301
|
-
/**
|
|
1302
|
-
* Amount of the operation.
|
|
1303
|
-
* @format double
|
|
1304
|
-
*/
|
|
1305
|
-
amount?: number;
|
|
1306
|
-
}
|
|
1307
|
-
/**
|
|
1308
|
-
* The {EvaluatedTool} describes evaluated tool.
|
|
1309
|
-
*/
|
|
1310
|
-
export interface EvaluatedTool {
|
|
1311
|
-
/** The name of the tool. */
|
|
1312
|
-
name?: string;
|
|
1313
|
-
/**
|
|
1314
|
-
* Evaluation of the tool.
|
|
1315
|
-
* @format double
|
|
1316
|
-
*/
|
|
1317
|
-
amount?: number;
|
|
1318
|
-
/** Describes promo info. */
|
|
1319
|
-
promo?: PromoInfo;
|
|
1320
|
-
/**
|
|
1321
|
-
* Evaluation of the tool execution with a promo code.
|
|
1322
|
-
* @format double
|
|
1323
|
-
*/
|
|
1324
|
-
promo_amount?: number;
|
|
1325
|
-
/** A list of evaluated operations. */
|
|
1326
|
-
operations?: EvaluatedOperation[];
|
|
1327
|
-
/** A transaction lock. */
|
|
1328
|
-
transaction?: string;
|
|
1329
|
-
}
|
|
1330
|
-
/**
|
|
1331
|
-
* The {EvaluatedToolDc} provides data contract of evaluated tool.
|
|
1332
|
-
*/
|
|
1333
|
-
export interface EvaluatedToolDc {
|
|
1334
|
-
/** Type of the tool. */
|
|
1335
|
-
type?: string;
|
|
1336
|
-
/** Promo code. */
|
|
1337
|
-
promo?: string;
|
|
1338
|
-
/**
|
|
1339
|
-
* Amount.
|
|
1340
|
-
* @format double
|
|
1341
|
-
*/
|
|
1342
|
-
amount?: number;
|
|
1343
|
-
/**
|
|
1344
|
-
* Promo amount.
|
|
1345
|
-
* @format double
|
|
1346
|
-
*/
|
|
1347
|
-
promoAmount?: number;
|
|
1348
|
-
/** Tool operations. */
|
|
1349
|
-
operations?: ToolOperationDc[];
|
|
1350
|
-
}
|
|
1351
|
-
/**
|
|
1352
|
-
* Description of the temp file as a task data storage.
|
|
1353
|
-
*/
|
|
1354
|
-
export declare type ExcelStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
1355
|
-
attributeNameRowNumber?: number;
|
|
1356
|
-
aliasRowNumber?: number;
|
|
1357
|
-
firstDataRowNumber?: number;
|
|
1358
|
-
coordSourceFields: string[];
|
|
1359
|
-
spatialReference: number;
|
|
1360
|
-
type?: string;
|
|
1361
|
-
};
|
|
1362
1167
|
/**
|
|
1363
1168
|
* Result of the eql expression validation.
|
|
1364
1169
|
*/
|
|
@@ -1399,40 +1204,65 @@ export interface ExpressionValidationResultDc {
|
|
|
1399
1204
|
/**
|
|
1400
1205
|
* Project extended configuration data contract.
|
|
1401
1206
|
*/
|
|
1402
|
-
export
|
|
1207
|
+
export interface ExtendedProjectInfoDc {
|
|
1208
|
+
/** Project content configuration. */
|
|
1403
1209
|
content: ProjectConfigurationDc;
|
|
1210
|
+
/** Sets true if project is shared. */
|
|
1211
|
+
isShared?: boolean;
|
|
1212
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1213
|
+
name: string;
|
|
1214
|
+
/** Resource alias. */
|
|
1215
|
+
alias?: string;
|
|
1216
|
+
/** Resource owner. */
|
|
1217
|
+
owner?: string;
|
|
1218
|
+
/** Resource description. */
|
|
1219
|
+
description?: string;
|
|
1220
|
+
/** Resource preview. */
|
|
1221
|
+
preview?: string;
|
|
1222
|
+
/**
|
|
1223
|
+
* The date when resource was created.
|
|
1224
|
+
* @format date-time
|
|
1225
|
+
*/
|
|
1226
|
+
createdDate?: string;
|
|
1227
|
+
/**
|
|
1228
|
+
* The date when resource was last modified.
|
|
1229
|
+
* @format date-time
|
|
1230
|
+
*/
|
|
1231
|
+
changedDate?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* User permissions for server security objects (services, projects etc.)
|
|
1234
|
+
*
|
|
1235
|
+
* none
|
|
1236
|
+
*
|
|
1237
|
+
* configure
|
|
1238
|
+
*
|
|
1239
|
+
* write
|
|
1240
|
+
*
|
|
1241
|
+
* read
|
|
1242
|
+
*
|
|
1243
|
+
* read,configure
|
|
1244
|
+
*
|
|
1245
|
+
* read,write
|
|
1246
|
+
*
|
|
1247
|
+
* read,write,configure
|
|
1248
|
+
*/
|
|
1249
|
+
permissions?: Permissions;
|
|
1250
|
+
/** Access control list. */
|
|
1404
1251
|
acl?: AccessControlListDc;
|
|
1405
|
-
|
|
1252
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1253
|
+
icon?: string;
|
|
1254
|
+
}
|
|
1406
1255
|
/**
|
|
1407
1256
|
* SPCore.Modules.PublicModule.Models.ExtendedProjectLayersInfo provides extended project info with included layers info.
|
|
1408
1257
|
*/
|
|
1409
1258
|
export interface ExtendedProjectLayersInfo {
|
|
1410
|
-
/**
|
|
1411
|
-
projectInfo?: ExtendedProjectInfoDc;
|
|
1259
|
+
/** Extended project info. */
|
|
1260
|
+
projectInfo?: ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
1412
1261
|
/** A collection of layers info. */
|
|
1413
1262
|
layersInfo?: ServiceListItemDc[];
|
|
1414
1263
|
}
|
|
1415
1264
|
/**
|
|
1416
|
-
* Extended
|
|
1417
|
-
*/
|
|
1418
|
-
export declare type ExtendedResourceInfoDc = ResourceInfoDc & {
|
|
1419
|
-
publishedDate?: string;
|
|
1420
|
-
usedByUsers?: string[];
|
|
1421
|
-
};
|
|
1422
|
-
/**
|
|
1423
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ExtendedToolDefinitionDc describes data contract of geotool definition.
|
|
1424
|
-
*/
|
|
1425
|
-
export interface ExtendedToolDefinitionDc {
|
|
1426
|
-
helpDescription?: string;
|
|
1427
|
-
description?: string;
|
|
1428
|
-
/** Parameters of the geotool. */
|
|
1429
|
-
parameters?: Record<string, ArgumentDefinitionDc>;
|
|
1430
|
-
isFree?: boolean;
|
|
1431
|
-
/** SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolGeoParametersDc provides setting of the map. */
|
|
1432
|
-
geoParameters?: ToolGeoParametersDc;
|
|
1433
|
-
}
|
|
1434
|
-
/**
|
|
1435
|
-
* Extended user information.
|
|
1265
|
+
* Extended user information.
|
|
1436
1266
|
*/
|
|
1437
1267
|
export interface ExtendedUserInfoDc {
|
|
1438
1268
|
/**
|
|
@@ -1493,18 +1323,12 @@ export interface ExtendedUserInfoDc {
|
|
|
1493
1323
|
/** The roles of the user. */
|
|
1494
1324
|
roles?: string[];
|
|
1495
1325
|
}
|
|
1496
|
-
/**
|
|
1497
|
-
* The {FailedServiceInfoDc} describes SPCore.Security.Base.Services.FailedServiceInfo data contact.
|
|
1498
|
-
*/
|
|
1499
|
-
export declare type FailedServiceInfoDc = ServiceInfoDc & {
|
|
1500
|
-
errorType?: ConfigurationErrorEnum;
|
|
1501
|
-
};
|
|
1502
1326
|
/**
|
|
1503
1327
|
* Feature object definition.
|
|
1504
1328
|
*/
|
|
1505
1329
|
export interface FeatureDc {
|
|
1506
1330
|
/** Feature geometry definition. */
|
|
1507
|
-
geometry:
|
|
1331
|
+
geometry: GeometryDc;
|
|
1508
1332
|
/** Feature attributes collection. */
|
|
1509
1333
|
attributes: Record<string, any>;
|
|
1510
1334
|
/** Feature unique identifier. */
|
|
@@ -1513,13 +1337,84 @@ export interface FeatureDc {
|
|
|
1513
1337
|
/**
|
|
1514
1338
|
* Service info for a feature layer service.
|
|
1515
1339
|
*/
|
|
1516
|
-
export
|
|
1340
|
+
export interface FeatureLayerServiceInfoDc {
|
|
1341
|
+
/**
|
|
1342
|
+
*
|
|
1343
|
+
*
|
|
1344
|
+
* unknown
|
|
1345
|
+
*
|
|
1346
|
+
* point
|
|
1347
|
+
*
|
|
1348
|
+
* polyline
|
|
1349
|
+
*
|
|
1350
|
+
* polygon
|
|
1351
|
+
*
|
|
1352
|
+
* envelope
|
|
1353
|
+
*
|
|
1354
|
+
* multipoint
|
|
1355
|
+
*/
|
|
1517
1356
|
geometryType: GeometryType;
|
|
1357
|
+
/** Layer attributes definition. */
|
|
1518
1358
|
layerDefinition: LayerDefinitionDc;
|
|
1359
|
+
/** Layer default style. */
|
|
1519
1360
|
style?: StyleDc;
|
|
1361
|
+
/**
|
|
1362
|
+
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
1363
|
+
* 0 is returned.
|
|
1364
|
+
* @format int32
|
|
1365
|
+
*/
|
|
1520
1366
|
objectCount?: number;
|
|
1367
|
+
/** Provides data source type. */
|
|
1521
1368
|
dataSourceType?: string;
|
|
1522
|
-
|
|
1369
|
+
/** The type of the resource. */
|
|
1370
|
+
type: string;
|
|
1371
|
+
/** The category of the service. */
|
|
1372
|
+
categories?: string[];
|
|
1373
|
+
/** Configuration of the service. */
|
|
1374
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
1375
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1376
|
+
name: string;
|
|
1377
|
+
/** Resource alias. */
|
|
1378
|
+
alias?: string;
|
|
1379
|
+
/** Resource owner. */
|
|
1380
|
+
owner?: string;
|
|
1381
|
+
/** Resource description. */
|
|
1382
|
+
description?: string;
|
|
1383
|
+
/** Resource preview. */
|
|
1384
|
+
preview?: string;
|
|
1385
|
+
/**
|
|
1386
|
+
* The date when resource was created.
|
|
1387
|
+
* @format date-time
|
|
1388
|
+
*/
|
|
1389
|
+
createdDate?: string;
|
|
1390
|
+
/**
|
|
1391
|
+
* The date when resource was last modified.
|
|
1392
|
+
* @format date-time
|
|
1393
|
+
*/
|
|
1394
|
+
changedDate?: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* User permissions for server security objects (services, projects etc.)
|
|
1397
|
+
*
|
|
1398
|
+
* none
|
|
1399
|
+
*
|
|
1400
|
+
* configure
|
|
1401
|
+
*
|
|
1402
|
+
* write
|
|
1403
|
+
*
|
|
1404
|
+
* read
|
|
1405
|
+
*
|
|
1406
|
+
* read,configure
|
|
1407
|
+
*
|
|
1408
|
+
* read,write
|
|
1409
|
+
*
|
|
1410
|
+
* read,write,configure
|
|
1411
|
+
*/
|
|
1412
|
+
permissions?: Permissions;
|
|
1413
|
+
/** Access control list. */
|
|
1414
|
+
acl?: AccessControlListDc;
|
|
1415
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1416
|
+
icon?: string;
|
|
1417
|
+
}
|
|
1523
1418
|
export interface FeatureSelectionDc {
|
|
1524
1419
|
layerName: string;
|
|
1525
1420
|
groupName?: string;
|
|
@@ -1542,32 +1437,24 @@ export interface FeatureSelectionEntryDc {
|
|
|
1542
1437
|
/** @format int32 */
|
|
1543
1438
|
symbolId?: number;
|
|
1544
1439
|
}
|
|
1545
|
-
/**
|
|
1546
|
-
* The response that contains a list of features.
|
|
1547
|
-
*/
|
|
1548
|
-
export interface FeaturesListDc {
|
|
1549
|
-
/** The features list. */
|
|
1550
|
-
items: FeatureDc[];
|
|
1551
|
-
/**
|
|
1552
|
-
* Total count features.
|
|
1553
|
-
* @format int64
|
|
1554
|
-
*/
|
|
1555
|
-
totalCount: number;
|
|
1556
|
-
}
|
|
1557
1440
|
export interface FeatureSymbolDc {
|
|
1558
1441
|
/** @format int32 */
|
|
1559
1442
|
id: number;
|
|
1560
1443
|
/** Feature symbol. */
|
|
1561
|
-
definition?:
|
|
1444
|
+
definition?: SymbolDc;
|
|
1562
1445
|
image?: string;
|
|
1563
1446
|
}
|
|
1564
1447
|
/**
|
|
1565
1448
|
* Task parameters for tasks that operate on features.
|
|
1566
1449
|
*/
|
|
1567
|
-
export
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1450
|
+
export interface FeatureTaskParametersDc {
|
|
1451
|
+
/** Storage that is to be used as a data source for the task. */
|
|
1452
|
+
source: BaseTaskDataStorageDc;
|
|
1453
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
1454
|
+
target: BaseTaskDataStorageDc;
|
|
1455
|
+
/** Type of the task. */
|
|
1456
|
+
type?: string;
|
|
1457
|
+
}
|
|
1571
1458
|
/**
|
|
1572
1459
|
* Type of the feature.
|
|
1573
1460
|
|
|
@@ -1579,6 +1466,18 @@ export declare enum FeatureType {
|
|
|
1579
1466
|
Unknown = "Unknown",
|
|
1580
1467
|
GeometricFeature = "GeometricFeature"
|
|
1581
1468
|
}
|
|
1469
|
+
/**
|
|
1470
|
+
* The response that contains a list of features.
|
|
1471
|
+
*/
|
|
1472
|
+
export interface FeaturesListDc {
|
|
1473
|
+
/** The features list. */
|
|
1474
|
+
items: FeatureDc[];
|
|
1475
|
+
/**
|
|
1476
|
+
* Total count features.
|
|
1477
|
+
* @format int64
|
|
1478
|
+
*/
|
|
1479
|
+
totalCount: number;
|
|
1480
|
+
}
|
|
1582
1481
|
/**
|
|
1583
1482
|
* The result of uploading a file.
|
|
1584
1483
|
*/
|
|
@@ -1591,28 +1490,39 @@ export interface FileUploadResponse {
|
|
|
1591
1490
|
/**
|
|
1592
1491
|
* Defines the brush for the fill.
|
|
1593
1492
|
*/
|
|
1594
|
-
export
|
|
1493
|
+
export interface FillBrushDc {
|
|
1494
|
+
/**
|
|
1495
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1496
|
+
* as an object with a "type" parameter specified.
|
|
1497
|
+
*/
|
|
1595
1498
|
color?: ParameterDcColor;
|
|
1596
|
-
|
|
1499
|
+
/** Type of the brush. */
|
|
1500
|
+
type?: string;
|
|
1501
|
+
}
|
|
1597
1502
|
/**
|
|
1598
1503
|
* Server task that copies the objects from the source storage that satisfy the filter conditions to the target layer.
|
|
1599
1504
|
*/
|
|
1600
|
-
export
|
|
1505
|
+
export interface FilterCopyTaskParametersDc {
|
|
1601
1506
|
type?: string;
|
|
1602
|
-
|
|
1507
|
+
/** Mapping of source attribute fields and target attribute fields. */
|
|
1508
|
+
attributeMapping?: Record<string, string | null>;
|
|
1509
|
+
/** Attribute filter string that must be satisfied. */
|
|
1603
1510
|
condition?: string;
|
|
1511
|
+
/** If set true, copy objects that do not intersect objects from GeometryFilterStorage. */
|
|
1604
1512
|
reverseGeometryFilter?: boolean;
|
|
1605
|
-
|
|
1606
|
-
|
|
1513
|
+
/**
|
|
1514
|
+
* The service that contains geometries for filtering objects by geometry. If set, only the features that intersect with the
|
|
1515
|
+
* geometries in this storage will be copied.
|
|
1516
|
+
*/
|
|
1517
|
+
geometryFilterStorage?: LayerTaskDataStorageDc | BaseTaskDataStorageDc;
|
|
1518
|
+
/** Storage that is to be used as a data source for the task. */
|
|
1519
|
+
source: BaseTaskDataStorageDc;
|
|
1520
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
1521
|
+
target: BaseTaskDataStorageDc;
|
|
1522
|
+
}
|
|
1607
1523
|
/**
|
|
1608
|
-
* Sets whether font should be styled.
|
|
1609
|
-
|
|
1610
|
-
normal
|
|
1611
|
-
|
|
1612
|
-
oblique
|
|
1613
|
-
|
|
1614
|
-
italic
|
|
1615
|
-
*/
|
|
1524
|
+
* Sets whether font should be styled.
|
|
1525
|
+
*/
|
|
1616
1526
|
export declare enum FontStyle {
|
|
1617
1527
|
Normal = "normal",
|
|
1618
1528
|
Oblique = "oblique",
|
|
@@ -1731,13 +1641,6 @@ export declare enum GeometryType {
|
|
|
1731
1641
|
Envelope = "envelope",
|
|
1732
1642
|
Multipoint = "multipoint"
|
|
1733
1643
|
}
|
|
1734
|
-
/**
|
|
1735
|
-
* Map element data contract.
|
|
1736
|
-
*/
|
|
1737
|
-
export declare type GridElementDc = ModelElementDc & {
|
|
1738
|
-
color?: string;
|
|
1739
|
-
gridThickness?: number;
|
|
1740
|
-
};
|
|
1741
1644
|
/**
|
|
1742
1645
|
* Resource group.
|
|
1743
1646
|
|
|
@@ -1758,160 +1661,41 @@ export declare enum Group {
|
|
|
1758
1661
|
/**
|
|
1759
1662
|
* Defines the brush for the hatch fill.
|
|
1760
1663
|
*/
|
|
1761
|
-
export
|
|
1664
|
+
export interface HatchBrushDc {
|
|
1762
1665
|
type?: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1668
|
+
* as an object with a "type" parameter specified.
|
|
1669
|
+
*/
|
|
1763
1670
|
hatchColor?: ParameterDcColor;
|
|
1764
|
-
hatchAngle?: CalculatedParameterDc;
|
|
1765
|
-
hatchWidth?: number;
|
|
1766
|
-
scalingFactor: number[];
|
|
1767
|
-
};
|
|
1768
|
-
/**
|
|
1769
|
-
* <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.HexGridSymbol" />
|
|
1770
|
-
*/
|
|
1771
|
-
export declare type HexGridSymbolDc = SymbolDc & {
|
|
1772
|
-
type?: string;
|
|
1773
|
-
gridHeight?: number;
|
|
1774
|
-
gridWidth?: number;
|
|
1775
|
-
hexagonOrientation?: number;
|
|
1776
|
-
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
1777
|
-
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
1778
|
-
aggregations?: Record<string, AggregationFunction>;
|
|
1779
|
-
};
|
|
1780
|
-
export declare enum HttpStatusCode {
|
|
1781
|
-
Continue = "Continue",
|
|
1782
|
-
SwitchingProtocols = "SwitchingProtocols",
|
|
1783
|
-
Processing = "Processing",
|
|
1784
|
-
EarlyHints = "EarlyHints",
|
|
1785
|
-
OK = "OK",
|
|
1786
|
-
Created = "Created",
|
|
1787
|
-
Accepted = "Accepted",
|
|
1788
|
-
NonAuthoritativeInformation = "NonAuthoritativeInformation",
|
|
1789
|
-
NoContent = "NoContent",
|
|
1790
|
-
ResetContent = "ResetContent",
|
|
1791
|
-
PartialContent = "PartialContent",
|
|
1792
|
-
MultiStatus = "MultiStatus",
|
|
1793
|
-
AlreadyReported = "AlreadyReported",
|
|
1794
|
-
IMUsed = "IMUsed",
|
|
1795
|
-
MultipleChoices = "Ambiguous",
|
|
1796
|
-
Ambiguous = "Moved",
|
|
1797
|
-
MovedPermanently = "Redirect",
|
|
1798
|
-
Moved = "RedirectMethod",
|
|
1799
|
-
Found = "NotModified",
|
|
1800
|
-
Redirect = "UseProxy",
|
|
1801
|
-
SeeOther = "Unused",
|
|
1802
|
-
RedirectMethod = "TemporaryRedirect",
|
|
1803
|
-
NotModified = "PermanentRedirect",
|
|
1804
|
-
UseProxy = "BadRequest",
|
|
1805
|
-
Unused = "Unauthorized",
|
|
1806
|
-
TemporaryRedirect = "PaymentRequired",
|
|
1807
|
-
RedirectKeepVerb = "Forbidden",
|
|
1808
|
-
PermanentRedirect = "NotFound",
|
|
1809
|
-
BadRequest = "MethodNotAllowed",
|
|
1810
|
-
Unauthorized = "NotAcceptable",
|
|
1811
|
-
PaymentRequired = "ProxyAuthenticationRequired",
|
|
1812
|
-
Forbidden = "RequestTimeout",
|
|
1813
|
-
NotFound = "Conflict",
|
|
1814
|
-
MethodNotAllowed = "Gone",
|
|
1815
|
-
NotAcceptable = "LengthRequired",
|
|
1816
|
-
ProxyAuthenticationRequired = "PreconditionFailed",
|
|
1817
|
-
RequestTimeout = "RequestEntityTooLarge",
|
|
1818
|
-
Conflict = "RequestUriTooLong",
|
|
1819
|
-
Gone = "UnsupportedMediaType",
|
|
1820
|
-
LengthRequired = "RequestedRangeNotSatisfiable",
|
|
1821
|
-
PreconditionFailed = "ExpectationFailed",
|
|
1822
|
-
RequestEntityTooLarge = "MisdirectedRequest",
|
|
1823
|
-
RequestUriTooLong = "UnprocessableEntity",
|
|
1824
|
-
UnsupportedMediaType = "Locked",
|
|
1825
|
-
RequestedRangeNotSatisfiable = "FailedDependency",
|
|
1826
|
-
ExpectationFailed = "UpgradeRequired",
|
|
1827
|
-
MisdirectedRequest = "PreconditionRequired",
|
|
1828
|
-
UnprocessableEntity = "TooManyRequests",
|
|
1829
|
-
Locked = "RequestHeaderFieldsTooLarge",
|
|
1830
|
-
FailedDependency = "UnavailableForLegalReasons",
|
|
1831
|
-
UpgradeRequired = "InternalServerError",
|
|
1832
|
-
PreconditionRequired = "NotImplemented",
|
|
1833
|
-
TooManyRequests = "BadGateway",
|
|
1834
|
-
RequestHeaderFieldsTooLarge = "ServiceUnavailable",
|
|
1835
|
-
UnavailableForLegalReasons = "GatewayTimeout",
|
|
1836
|
-
InternalServerError = "HttpVersionNotSupported",
|
|
1837
|
-
NotImplemented = "VariantAlsoNegotiates",
|
|
1838
|
-
BadGateway = "InsufficientStorage",
|
|
1839
|
-
ServiceUnavailable = "LoopDetected",
|
|
1840
|
-
GatewayTimeout = "NotExtended",
|
|
1841
|
-
HttpVersionNotSupported = "NetworkAuthenticationRequired",
|
|
1842
|
-
VariantAlsoNegotiates = "VariantAlsoNegotiates",
|
|
1843
|
-
InsufficientStorage = "InsufficientStorage",
|
|
1844
|
-
LoopDetected = "LoopDetected",
|
|
1845
|
-
NotExtended = "NotExtended",
|
|
1846
|
-
NetworkAuthenticationRequired = "NetworkAuthenticationRequired"
|
|
1847
|
-
}
|
|
1848
|
-
/**
|
|
1849
|
-
* Attributes provides by router to describe route.
|
|
1850
|
-
*/
|
|
1851
|
-
export interface IceRouteAttributesDc {
|
|
1852
|
-
/** Gets route builder mode. */
|
|
1853
|
-
type?: string;
|
|
1854
|
-
/** Gets route title. */
|
|
1855
|
-
title?: string;
|
|
1856
1671
|
/**
|
|
1857
|
-
*
|
|
1858
|
-
*
|
|
1672
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1673
|
+
* as an object with a "type" parameter specified.
|
|
1859
1674
|
*/
|
|
1860
|
-
|
|
1675
|
+
hatchAngle?: ParameterDcDouble;
|
|
1861
1676
|
/**
|
|
1862
|
-
*
|
|
1863
|
-
* @format
|
|
1677
|
+
* Specifies the stroke width of the hatch lines.
|
|
1678
|
+
* @format float
|
|
1864
1679
|
*/
|
|
1865
|
-
|
|
1866
|
-
}
|
|
1867
|
-
/**
|
|
1868
|
-
* Provides description of result of ice router.
|
|
1869
|
-
*/
|
|
1870
|
-
export interface IceRouteDc {
|
|
1871
|
-
/** Attributes provides by router to describe route. */
|
|
1872
|
-
attributes?: IceRouteAttributesDc;
|
|
1873
|
-
/** Route geometry. */
|
|
1874
|
-
geometry?: IceRouteGeometryDc;
|
|
1875
|
-
/** Gets false if route build process failed. */
|
|
1876
|
-
isSuccess?: boolean;
|
|
1877
|
-
/** Gets error message if route build process failed. */
|
|
1878
|
-
error?: string;
|
|
1879
|
-
}
|
|
1880
|
-
/**
|
|
1881
|
-
* Route geometry.
|
|
1882
|
-
*/
|
|
1883
|
-
export interface IceRouteGeometryDc {
|
|
1884
|
-
/** Gets type of geometry. */
|
|
1885
|
-
type?: string;
|
|
1886
|
-
/** Gets polyline coordinates. */
|
|
1887
|
-
coordinates?: number[][];
|
|
1888
|
-
}
|
|
1889
|
-
/**
|
|
1890
|
-
* Provides result of ice route builder.
|
|
1891
|
-
*/
|
|
1892
|
-
export interface IceRouterResultDc {
|
|
1893
|
-
/** Gets status the task is done. */
|
|
1894
|
-
isDone?: boolean;
|
|
1680
|
+
hatchWidth?: number;
|
|
1895
1681
|
/**
|
|
1896
|
-
*
|
|
1897
|
-
*
|
|
1898
|
-
*
|
|
1899
|
-
*
|
|
1900
|
-
*
|
|
1901
|
-
* 3. Fast.
|
|
1902
|
-
*
|
|
1682
|
+
* Specifies the pixel increment that uses to space the hatch lines. The separation between the lines is the scaling factor minus the hatch width.
|
|
1683
|
+
* If the scaling factor is less than or equal to the hatch width, there will be no space between the hatch lines, and the area will appear to be filled.
|
|
1684
|
+
* Specify the same value for horizontal and vertical scaling.
|
|
1685
|
+
* For example, specified a hatch lines with a hatch width of 3 pixels with a scaling factor indicating that they are spaced 6 pixels apart.
|
|
1686
|
+
* The separation between the lines is therefore three pixels.
|
|
1903
1687
|
*/
|
|
1904
|
-
|
|
1688
|
+
scalingFactor: number[];
|
|
1689
|
+
/**
|
|
1690
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1691
|
+
* as an object with a "type" parameter specified.
|
|
1692
|
+
*/
|
|
1693
|
+
color?: ParameterDcColor;
|
|
1905
1694
|
}
|
|
1906
1695
|
/**
|
|
1907
|
-
*
|
|
1696
|
+
* Defines the brush.
|
|
1908
1697
|
*/
|
|
1909
|
-
export
|
|
1910
|
-
/** Gets or sets start point. */
|
|
1911
|
-
start: number[];
|
|
1912
|
-
/** Gets or sets end point. */
|
|
1913
|
-
end: number[];
|
|
1914
|
-
}
|
|
1698
|
+
export declare type IBrushDc = object;
|
|
1915
1699
|
export interface IDatum {
|
|
1916
1700
|
/** @format double */
|
|
1917
1701
|
semimajor?: number;
|
|
@@ -1980,78 +1764,31 @@ export interface IGeometry {
|
|
|
1980
1764
|
envelope?: IEnvelopeGeometry;
|
|
1981
1765
|
}
|
|
1982
1766
|
export interface ILineEndingDc {
|
|
1983
|
-
/**
|
|
1984
|
-
* Type of the line ending.
|
|
1985
|
-
*
|
|
1986
|
-
* none
|
|
1987
|
-
*
|
|
1988
|
-
* arrow
|
|
1989
|
-
*
|
|
1990
|
-
* filledArrow
|
|
1991
|
-
*
|
|
1992
|
-
* square
|
|
1993
|
-
*
|
|
1994
|
-
* filledSquare
|
|
1995
|
-
*
|
|
1996
|
-
* circle
|
|
1997
|
-
*
|
|
1998
|
-
* filledCircle
|
|
1999
|
-
*/
|
|
1767
|
+
/** Type of the line ending. */
|
|
2000
1768
|
type?: LineEndingType;
|
|
2001
1769
|
}
|
|
2002
1770
|
/**
|
|
2003
|
-
*
|
|
2004
|
-
*/
|
|
2005
|
-
export declare type ImagePointSymbolDc = SymbolDc & {
|
|
2006
|
-
type?: string;
|
|
2007
|
-
image?: string;
|
|
2008
|
-
width?: CalculatedParameterDc;
|
|
2009
|
-
height?: CalculatedParameterDc;
|
|
2010
|
-
offset?: CalculatedParameterDc[];
|
|
2011
|
-
angle?: CalculatedParameterDc;
|
|
2012
|
-
};
|
|
2013
|
-
/**
|
|
2014
|
-
* Image polygon symbol.
|
|
2015
|
-
*/
|
|
2016
|
-
export declare type ImagePolygonSymbolDc = SymbolDc & {
|
|
2017
|
-
type?: string;
|
|
2018
|
-
image?: string;
|
|
2019
|
-
fillColor?: ParameterDcColor;
|
|
2020
|
-
strokeColor?: ParameterDcColor;
|
|
2021
|
-
strokeWidth?: CalculatedParameterDc;
|
|
2022
|
-
};
|
|
2023
|
-
/**
|
|
2024
|
-
* Data schema of a file for import.
|
|
2025
|
-
*/
|
|
2026
|
-
export interface ImportDataSchema {
|
|
2027
|
-
/** List of layers in the data-set. */
|
|
2028
|
-
layers: ImportLayerDataSchema[];
|
|
2029
|
-
}
|
|
2030
|
-
/**
|
|
2031
|
-
* Schema of a layer in an imported file.
|
|
1771
|
+
* The response that contains a paged list of items.
|
|
2032
1772
|
*/
|
|
2033
|
-
export interface
|
|
2034
|
-
/**
|
|
2035
|
-
|
|
1773
|
+
export interface IListResponse {
|
|
1774
|
+
/** The items of the response. */
|
|
1775
|
+
items?: any[];
|
|
2036
1776
|
/**
|
|
2037
|
-
*
|
|
1777
|
+
* Total count of the list in all pages.
|
|
2038
1778
|
* @format int64
|
|
2039
1779
|
*/
|
|
2040
|
-
|
|
2041
|
-
/**
|
|
2042
|
-
|
|
1780
|
+
totalCount?: number;
|
|
1781
|
+
/**
|
|
1782
|
+
* The index of the first item in the list that is returned in the response.
|
|
1783
|
+
* @format int64
|
|
1784
|
+
*/
|
|
1785
|
+
offset?: number;
|
|
1786
|
+
/**
|
|
1787
|
+
* The max number of items that can be on one page in this response.
|
|
1788
|
+
* @format int64
|
|
1789
|
+
*/
|
|
1790
|
+
limit?: number;
|
|
2043
1791
|
}
|
|
2044
|
-
/**
|
|
2045
|
-
* The description of the temporary features list as a server task data storage.
|
|
2046
|
-
*/
|
|
2047
|
-
export declare type InMemoryTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
2048
|
-
type?: string;
|
|
2049
|
-
features: FeatureDc[];
|
|
2050
|
-
idAttribute: string;
|
|
2051
|
-
geometryAttribute: string;
|
|
2052
|
-
geometryType: GeometryType;
|
|
2053
|
-
spatialReference?: number;
|
|
2054
|
-
};
|
|
2055
1792
|
/**
|
|
2056
1793
|
* Configuration of an SP service.
|
|
2057
1794
|
*/
|
|
@@ -2069,76 +1806,167 @@ export interface ISpatialReference {
|
|
|
2069
1806
|
dimensions?: number;
|
|
2070
1807
|
datum?: IDatum;
|
|
2071
1808
|
}
|
|
2072
|
-
/**
|
|
2073
|
-
* {IValidationError} describe errors while validate model.
|
|
2074
|
-
*/
|
|
2075
|
-
export interface IValidationError {
|
|
2076
|
-
/** Name of the property. */
|
|
2077
|
-
name?: string;
|
|
2078
|
-
/** Validation errors. */
|
|
2079
|
-
message?: string;
|
|
2080
|
-
}
|
|
2081
1809
|
export interface IVector {
|
|
2082
1810
|
/** @format int32 */
|
|
2083
1811
|
dimensions?: number;
|
|
2084
1812
|
}
|
|
2085
1813
|
/**
|
|
2086
|
-
*
|
|
1814
|
+
* Attributes provides by router to describe route.
|
|
2087
1815
|
*/
|
|
2088
|
-
export
|
|
2089
|
-
|
|
2090
|
-
fontFamily?: string;
|
|
2091
|
-
fontStyle?: FontStyle;
|
|
2092
|
-
fontWeight?: FontWeight;
|
|
2093
|
-
fontColor?: ParameterDcColor;
|
|
2094
|
-
fontSize?: CalculatedParameterDc;
|
|
2095
|
-
horizontalAlignment?: TextAlignment;
|
|
2096
|
-
verticalAlignment?: TextVerticalAlignment;
|
|
2097
|
-
haloColor?: ParameterDcColor;
|
|
2098
|
-
haloWidth?: number;
|
|
2099
|
-
offset?: CalculatedParameterDc[];
|
|
2100
|
-
textBackground?: TextBackgroundDc;
|
|
2101
|
-
};
|
|
2102
|
-
export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
|
|
1816
|
+
export interface IceRouteAttributesDc {
|
|
1817
|
+
/** Gets route builder mode. */
|
|
2103
1818
|
type?: string;
|
|
2104
|
-
|
|
2105
|
-
|
|
1819
|
+
/** Gets route title. */
|
|
1820
|
+
title?: string;
|
|
1821
|
+
/**
|
|
1822
|
+
* Gets route build time.
|
|
1823
|
+
* @format double
|
|
1824
|
+
*/
|
|
1825
|
+
time?: number;
|
|
1826
|
+
/**
|
|
1827
|
+
* Gets route distance.
|
|
1828
|
+
* @format double
|
|
1829
|
+
*/
|
|
1830
|
+
distance?: number;
|
|
1831
|
+
}
|
|
2106
1832
|
/**
|
|
2107
|
-
*
|
|
1833
|
+
* Provides description of result of ice router.
|
|
2108
1834
|
*/
|
|
2109
|
-
export interface
|
|
2110
|
-
/**
|
|
2111
|
-
|
|
2112
|
-
/**
|
|
2113
|
-
|
|
2114
|
-
/** Gets
|
|
1835
|
+
export interface IceRouteDc {
|
|
1836
|
+
/** Attributes provides by router to describe route. */
|
|
1837
|
+
attributes?: IceRouteAttributesDc;
|
|
1838
|
+
/** Route geometry. */
|
|
1839
|
+
geometry?: IceRouteGeometryDc;
|
|
1840
|
+
/** Gets false if route build process failed. */
|
|
1841
|
+
isSuccess?: boolean;
|
|
1842
|
+
/** Gets error message if route build process failed. */
|
|
2115
1843
|
error?: string;
|
|
1844
|
+
}
|
|
1845
|
+
/**
|
|
1846
|
+
* Route geometry.
|
|
1847
|
+
*/
|
|
1848
|
+
export interface IceRouteGeometryDc {
|
|
1849
|
+
/** Gets type of geometry. */
|
|
1850
|
+
type?: string;
|
|
1851
|
+
/** Gets polyline coordinates. */
|
|
1852
|
+
coordinates?: number[][];
|
|
1853
|
+
}
|
|
1854
|
+
/**
|
|
1855
|
+
* Data contract to start ice routing task.
|
|
1856
|
+
*/
|
|
1857
|
+
export interface IceRouteTaskDc {
|
|
1858
|
+
/** Gets or sets start point. */
|
|
1859
|
+
start: number[];
|
|
1860
|
+
/** Gets or sets end point. */
|
|
1861
|
+
end: number[];
|
|
1862
|
+
}
|
|
1863
|
+
/**
|
|
1864
|
+
* Provides result of ice route builder.
|
|
1865
|
+
*/
|
|
1866
|
+
export interface IceRouterResultDc {
|
|
1867
|
+
/** Gets status the task is done. */
|
|
1868
|
+
isDone?: boolean;
|
|
2116
1869
|
/**
|
|
2117
|
-
*
|
|
2118
|
-
*
|
|
2119
|
-
*
|
|
2120
|
-
*
|
|
2121
|
-
*
|
|
2122
|
-
*
|
|
2123
|
-
* Delivered
|
|
2124
|
-
*
|
|
2125
|
-
* Failed
|
|
2126
|
-
*
|
|
2127
|
-
* Completed
|
|
1870
|
+
* Gets list of the result tasks. Provides with status "completed".
|
|
1871
|
+
* <br>
|
|
1872
|
+
* Routes array contains three routes of types.
|
|
1873
|
+
* 1. Economic.
|
|
1874
|
+
* 2. Optimum.
|
|
1875
|
+
* 3. Fast.
|
|
2128
1876
|
*
|
|
2129
|
-
* Canceled
|
|
2130
1877
|
*/
|
|
2131
|
-
|
|
1878
|
+
routes?: IceRouteDc[];
|
|
1879
|
+
}
|
|
1880
|
+
/**
|
|
1881
|
+
* A single image point symbol with an outer stroke.
|
|
1882
|
+
*/
|
|
1883
|
+
export interface ImagePointSymbolDc {
|
|
1884
|
+
type?: string;
|
|
1885
|
+
/** Image in base64 string. */
|
|
1886
|
+
image?: string;
|
|
2132
1887
|
/**
|
|
2133
|
-
*
|
|
2134
|
-
*
|
|
1888
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1889
|
+
* as an object with a "type" parameter specified.
|
|
2135
1890
|
*/
|
|
2136
|
-
|
|
1891
|
+
width?: ParameterDcDouble;
|
|
2137
1892
|
/**
|
|
2138
|
-
*
|
|
2139
|
-
*
|
|
1893
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1894
|
+
* as an object with a "type" parameter specified.
|
|
1895
|
+
*/
|
|
1896
|
+
height?: ParameterDcDouble;
|
|
1897
|
+
/** Offset of the image center from the geographic point. */
|
|
1898
|
+
offset?: ParameterDcDouble[];
|
|
1899
|
+
/**
|
|
1900
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1901
|
+
* as an object with a "type" parameter specified.
|
|
1902
|
+
*/
|
|
1903
|
+
angle?: ParameterDcDouble;
|
|
1904
|
+
}
|
|
1905
|
+
/**
|
|
1906
|
+
* Data schema of a file for import.
|
|
1907
|
+
*/
|
|
1908
|
+
export interface ImportDataSchema {
|
|
1909
|
+
/** List of layers in the data-set. */
|
|
1910
|
+
layers: ImportLayerDataSchema[];
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* Schema of a layer in an imported file.
|
|
1914
|
+
*/
|
|
1915
|
+
export interface ImportLayerDataSchema {
|
|
1916
|
+
/** Name of the layer. */
|
|
1917
|
+
name: string;
|
|
1918
|
+
/**
|
|
1919
|
+
* Number of objects in the layer.
|
|
1920
|
+
* @format int64
|
|
1921
|
+
*/
|
|
1922
|
+
objectCount?: number;
|
|
1923
|
+
/** Information about the attributes of the layer. */
|
|
1924
|
+
layerDefinition?: LayerDefinitionDc;
|
|
1925
|
+
/** Schema of a inner layers. */
|
|
1926
|
+
children?: ImportLayerDataSchema[];
|
|
1927
|
+
}
|
|
1928
|
+
/**
|
|
1929
|
+
* Base class for labels.
|
|
1930
|
+
*/
|
|
1931
|
+
export interface LabelSymbolDc {
|
|
1932
|
+
/** Label text format. */
|
|
1933
|
+
fieldFormat?: string;
|
|
1934
|
+
/** Label text font family. */
|
|
1935
|
+
fontFamily?: string;
|
|
1936
|
+
/** Sets whether font should be styled. */
|
|
1937
|
+
fontStyle?: FontStyle;
|
|
1938
|
+
/** Specifies the weight (or boldness) of the font. */
|
|
1939
|
+
fontWeight?: FontWeight;
|
|
1940
|
+
/**
|
|
1941
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1942
|
+
* as an object with a "type" parameter specified.
|
|
1943
|
+
*/
|
|
1944
|
+
fontColor?: ParameterDcColor;
|
|
1945
|
+
/**
|
|
1946
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1947
|
+
* as an object with a "type" parameter specified.
|
|
2140
1948
|
*/
|
|
2141
|
-
|
|
1949
|
+
fontSize?: ParameterDcDouble;
|
|
1950
|
+
/** Sets the horizontal alignment of text. */
|
|
1951
|
+
horizontalAlignment?: TextAlignment;
|
|
1952
|
+
/** Sets the vertical alignment of text. */
|
|
1953
|
+
verticalAlignment?: TextVerticalAlignment;
|
|
1954
|
+
/**
|
|
1955
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1956
|
+
* as an object with a "type" parameter specified.
|
|
1957
|
+
*/
|
|
1958
|
+
haloColor?: ParameterDcColor;
|
|
1959
|
+
/**
|
|
1960
|
+
* Width of label stroke (halo).
|
|
1961
|
+
* @format float
|
|
1962
|
+
*/
|
|
1963
|
+
haloWidth?: number;
|
|
1964
|
+
/** Offset of the label center from the geographic point. */
|
|
1965
|
+
offset?: ParameterDcDouble[];
|
|
1966
|
+
/** Specifies text background. */
|
|
1967
|
+
textBackground?: TextBackgroundDc;
|
|
1968
|
+
/** Type of the symbol. */
|
|
1969
|
+
type?: string;
|
|
2142
1970
|
}
|
|
2143
1971
|
/**
|
|
2144
1972
|
* Information about the layer attributes and their configuration.
|
|
@@ -2174,54 +2002,22 @@ export interface LayerDefinitionDc {
|
|
|
2174
2002
|
/** Sets false if the layer is readonly. */
|
|
2175
2003
|
isEditable?: boolean;
|
|
2176
2004
|
/** The description of the attributes of the layer. */
|
|
2177
|
-
attributes: Record<string, AttributeDefinitionDc>;
|
|
2178
|
-
}
|
|
2179
|
-
/**
|
|
2180
|
-
* Map element data contract.
|
|
2181
|
-
*/
|
|
2182
|
-
export declare type LayerMapElementDc = ModelElementDc & {
|
|
2183
|
-
layers?: LayerModelDc[];
|
|
2184
|
-
mapCenter?: Vector2;
|
|
2185
|
-
paperWidth?: number;
|
|
2186
|
-
paperHeight?: number;
|
|
2187
|
-
spatialReference?: number;
|
|
2188
|
-
resolution?: number;
|
|
2189
|
-
gridElement?: GridElementDc;
|
|
2190
|
-
scaleBar?: ScaleBarElementDc;
|
|
2191
|
-
};
|
|
2192
|
-
/**
|
|
2193
|
-
* Layer model data contract.
|
|
2194
|
-
*/
|
|
2195
|
-
export interface LayerModelDc {
|
|
2196
|
-
/** Gets or sets name of layer service. */
|
|
2197
|
-
layerServiceName?: string;
|
|
2198
|
-
/**
|
|
2199
|
-
* Gets or sets layer opacity.
|
|
2200
|
-
* @format float
|
|
2201
|
-
*/
|
|
2202
|
-
layerOpacity?: number;
|
|
2203
|
-
/** Condition to apply to the layer to filter the features. */
|
|
2204
|
-
condition?: string;
|
|
2205
|
-
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
2206
|
-
styleId?: string;
|
|
2005
|
+
attributes: Record<string, AttributeDefinitionDc | null>;
|
|
2207
2006
|
}
|
|
2208
2007
|
/**
|
|
2209
2008
|
* The description of the layer service as a server task data storage.
|
|
2210
2009
|
*/
|
|
2211
|
-
export
|
|
2010
|
+
export interface LayerTaskDataStorageDc {
|
|
2011
|
+
/** The name of the layer service. If 'temp' namespace. */
|
|
2212
2012
|
serviceName: string;
|
|
2013
|
+
/**
|
|
2014
|
+
* If set to true, a new service with the given LayerServiceName will be created before the task is executed.
|
|
2015
|
+
* If create new service within 'temp' namespace, name of the table will be equal to LayerServiceName.
|
|
2016
|
+
* In this case LayerServiceName have to not longer 31 symbols.
|
|
2017
|
+
*/
|
|
2213
2018
|
createNewService?: boolean;
|
|
2214
2019
|
type?: string;
|
|
2215
|
-
}
|
|
2216
|
-
/**
|
|
2217
|
-
* Layer template model data contract.
|
|
2218
|
-
*/
|
|
2219
|
-
export declare type LayerTemplateModelDc = TemplateModelDc & {
|
|
2220
|
-
type?: string;
|
|
2221
|
-
map?: LayerMapElementDc;
|
|
2222
|
-
legendEnabled?: boolean;
|
|
2223
|
-
legendLayers?: LegendLayerDc[];
|
|
2224
|
-
};
|
|
2020
|
+
}
|
|
2225
2021
|
/**
|
|
2226
2022
|
* Information about layer update.
|
|
2227
2023
|
Includes ids of modified features and their bbox.
|
|
@@ -2237,73 +2033,17 @@ export interface LayerUpdateInfoDc {
|
|
|
2237
2033
|
/** Array of deleted ids. */
|
|
2238
2034
|
deletedIds?: ObjectId[];
|
|
2239
2035
|
}
|
|
2240
|
-
/**
|
|
2241
|
-
* Legend layer attribute condition data contract.
|
|
2242
|
-
*/
|
|
2243
|
-
export interface LegendLayerAttributeConditionDc {
|
|
2244
|
-
/** Simply Base64 string. */
|
|
2245
|
-
symbol?: Base64String;
|
|
2246
|
-
/** Legend layer attribute condition string. */
|
|
2247
|
-
value?: string;
|
|
2248
|
-
}
|
|
2249
|
-
/**
|
|
2250
|
-
* Legend layer attribute data contract.
|
|
2251
|
-
*/
|
|
2252
|
-
export interface LegendLayerAttributeDc {
|
|
2253
|
-
/** Legend layer attribute name. */
|
|
2254
|
-
name?: string;
|
|
2255
|
-
/** Legend layer attribute conditions. */
|
|
2256
|
-
conditions?: LegendLayerAttributeConditionDc[];
|
|
2257
|
-
}
|
|
2258
|
-
/**
|
|
2259
|
-
* Legend layer data contract.
|
|
2260
|
-
*/
|
|
2261
|
-
export interface LegendLayerDc {
|
|
2262
|
-
/** Simply Base64 string. */
|
|
2263
|
-
symbol?: Base64String;
|
|
2264
|
-
/** Legend layer name. */
|
|
2265
|
-
name?: string;
|
|
2266
|
-
/** Legend layer attributes. */
|
|
2267
|
-
attributes?: LegendLayerAttributeDc[];
|
|
2268
|
-
}
|
|
2269
|
-
/**
|
|
2270
|
-
* Legend template model data contract.
|
|
2271
|
-
*/
|
|
2272
|
-
export declare type LegendTemplateModelDc = TemplateModelDc & {
|
|
2273
|
-
layers?: LayerModelDc[];
|
|
2274
|
-
legendEnabled?: boolean;
|
|
2275
|
-
legendLayers?: LegendLayerDc[];
|
|
2276
|
-
type?: string;
|
|
2277
|
-
};
|
|
2278
2036
|
/**
|
|
2279
2037
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
2280
2038
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
2281
|
-
|
|
2282
|
-
small
|
|
2283
|
-
|
|
2284
|
-
large
|
|
2285
2039
|
*/
|
|
2286
2040
|
export declare enum LineEndingSize {
|
|
2287
2041
|
Small = "small",
|
|
2288
2042
|
Large = "large"
|
|
2289
2043
|
}
|
|
2290
2044
|
/**
|
|
2291
|
-
* Type of the line ending.
|
|
2292
|
-
|
|
2293
|
-
none
|
|
2294
|
-
|
|
2295
|
-
arrow
|
|
2296
|
-
|
|
2297
|
-
filledArrow
|
|
2298
|
-
|
|
2299
|
-
square
|
|
2300
|
-
|
|
2301
|
-
filledSquare
|
|
2302
|
-
|
|
2303
|
-
circle
|
|
2304
|
-
|
|
2305
|
-
filledCircle
|
|
2306
|
-
*/
|
|
2045
|
+
* Type of the line ending.
|
|
2046
|
+
*/
|
|
2307
2047
|
export declare enum LineEndingType {
|
|
2308
2048
|
None = "none",
|
|
2309
2049
|
Arrow = "arrow",
|
|
@@ -2326,19 +2066,6 @@ export interface ListResponseExtendedUserInfoDc {
|
|
|
2326
2066
|
/** @format int64 */
|
|
2327
2067
|
limit?: number;
|
|
2328
2068
|
}
|
|
2329
|
-
/**
|
|
2330
|
-
* The response that contains a paged list of items.
|
|
2331
|
-
*/
|
|
2332
|
-
export interface ListResponseFeatureDc {
|
|
2333
|
-
/** The items of the response. */
|
|
2334
|
-
items?: FeatureDc[];
|
|
2335
|
-
/** @format int64 */
|
|
2336
|
-
totalCount?: number;
|
|
2337
|
-
/** @format int64 */
|
|
2338
|
-
offset?: number;
|
|
2339
|
-
/** @format int64 */
|
|
2340
|
-
limit?: number;
|
|
2341
|
-
}
|
|
2342
2069
|
/**
|
|
2343
2070
|
* The response that contains a paged list of items.
|
|
2344
2071
|
*/
|
|
@@ -2368,9 +2095,9 @@ export interface ListResponseNamespaceInfoDc {
|
|
|
2368
2095
|
/**
|
|
2369
2096
|
* The response that contains a paged list of items.
|
|
2370
2097
|
*/
|
|
2371
|
-
export interface
|
|
2098
|
+
export interface ListResponseProjectInfoDc {
|
|
2372
2099
|
/** The items of the response. */
|
|
2373
|
-
items?:
|
|
2100
|
+
items?: (ProjectInfoDc | ResourceInfoDc)[];
|
|
2374
2101
|
/** @format int64 */
|
|
2375
2102
|
totalCount?: number;
|
|
2376
2103
|
/** @format int64 */
|
|
@@ -2391,58 +2118,6 @@ export interface ListResponseRoleInfoDc {
|
|
|
2391
2118
|
/** @format int64 */
|
|
2392
2119
|
limit?: number;
|
|
2393
2120
|
}
|
|
2394
|
-
/**
|
|
2395
|
-
* The response that contains a paged list of items.
|
|
2396
|
-
*/
|
|
2397
|
-
export interface ListResponseServiceInfoPubDc {
|
|
2398
|
-
/** The items of the response. */
|
|
2399
|
-
items?: ServiceInfoPubDc[];
|
|
2400
|
-
/** @format int64 */
|
|
2401
|
-
totalCount?: number;
|
|
2402
|
-
/** @format int64 */
|
|
2403
|
-
offset?: number;
|
|
2404
|
-
/** @format int64 */
|
|
2405
|
-
limit?: number;
|
|
2406
|
-
}
|
|
2407
|
-
/**
|
|
2408
|
-
* The response that contains a paged list of items.
|
|
2409
|
-
*/
|
|
2410
|
-
export interface ListResponseServiceListItemDc {
|
|
2411
|
-
/** The items of the response. */
|
|
2412
|
-
items?: ServiceListItemDc[];
|
|
2413
|
-
/** @format int64 */
|
|
2414
|
-
totalCount?: number;
|
|
2415
|
-
/** @format int64 */
|
|
2416
|
-
offset?: number;
|
|
2417
|
-
/** @format int64 */
|
|
2418
|
-
limit?: number;
|
|
2419
|
-
}
|
|
2420
|
-
/**
|
|
2421
|
-
* The response that contains a paged list of items.
|
|
2422
|
-
*/
|
|
2423
|
-
export interface ListResponseTableInfoDc {
|
|
2424
|
-
/** The items of the response. */
|
|
2425
|
-
items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
|
|
2426
|
-
/** @format int64 */
|
|
2427
|
-
totalCount?: number;
|
|
2428
|
-
/** @format int64 */
|
|
2429
|
-
offset?: number;
|
|
2430
|
-
/** @format int64 */
|
|
2431
|
-
limit?: number;
|
|
2432
|
-
}
|
|
2433
|
-
/**
|
|
2434
|
-
* The response that contains a paged list of items.
|
|
2435
|
-
*/
|
|
2436
|
-
export interface ListResponseTableInfoPubDc {
|
|
2437
|
-
/** The items of the response. */
|
|
2438
|
-
items?: TableInfoPubDc[];
|
|
2439
|
-
/** @format int64 */
|
|
2440
|
-
totalCount?: number;
|
|
2441
|
-
/** @format int64 */
|
|
2442
|
-
offset?: number;
|
|
2443
|
-
/** @format int64 */
|
|
2444
|
-
limit?: number;
|
|
2445
|
-
}
|
|
2446
2121
|
/**
|
|
2447
2122
|
* The response that contains a paged list of items.
|
|
2448
2123
|
*/
|
|
@@ -2459,10 +2134,27 @@ export interface ListResponseUserInfoDc {
|
|
|
2459
2134
|
/**
|
|
2460
2135
|
* Configuration for the local tile service.
|
|
2461
2136
|
*/
|
|
2462
|
-
export
|
|
2137
|
+
export interface LocalTileServiceConfigurationDc {
|
|
2138
|
+
/** Tile schema of the service. */
|
|
2463
2139
|
tileInfo?: TileInfoDc;
|
|
2464
|
-
|
|
2465
|
-
|
|
2140
|
+
/** Name of the service. */
|
|
2141
|
+
name: string;
|
|
2142
|
+
/** Human friendly name of the service. */
|
|
2143
|
+
alias?: string;
|
|
2144
|
+
/** Description of the service. */
|
|
2145
|
+
description?: string;
|
|
2146
|
+
/** Service access control list. */
|
|
2147
|
+
acl?: AccessControlListDc;
|
|
2148
|
+
/** Base64 encoded image - icon of the resource. */
|
|
2149
|
+
icon?: string;
|
|
2150
|
+
/**
|
|
2151
|
+
* <br>
|
|
2152
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
2153
|
+
* Administrator permissions are required to perform this operation.
|
|
2154
|
+
*
|
|
2155
|
+
*/
|
|
2156
|
+
owner?: string;
|
|
2157
|
+
}
|
|
2466
2158
|
/**
|
|
2467
2159
|
* Tile LOD structure.
|
|
2468
2160
|
*/
|
|
@@ -2490,9 +2182,16 @@ export interface LoginDc {
|
|
|
2490
2182
|
/**
|
|
2491
2183
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
|
|
2492
2184
|
*/
|
|
2493
|
-
export
|
|
2185
|
+
export interface MapRemoteTableInfoDc {
|
|
2186
|
+
/** Remote data provider name. */
|
|
2494
2187
|
dataProvider: string;
|
|
2495
|
-
|
|
2188
|
+
/** Name of the table, materialized view or view. */
|
|
2189
|
+
name: string;
|
|
2190
|
+
/** Create datasource alias. */
|
|
2191
|
+
alias?: string;
|
|
2192
|
+
/** Create datasource description. */
|
|
2193
|
+
description?: string;
|
|
2194
|
+
}
|
|
2496
2195
|
/**
|
|
2497
2196
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
|
|
2498
2197
|
<br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
|
|
@@ -2508,53 +2207,46 @@ export interface MapTableInfoDc {
|
|
|
2508
2207
|
/**
|
|
2509
2208
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapViewInfoDc provides map view data source data contract.
|
|
2510
2209
|
*/
|
|
2511
|
-
export
|
|
2210
|
+
export interface MapViewInfoDc {
|
|
2211
|
+
/** Name of the table, materialized view or view. */
|
|
2212
|
+
name: string;
|
|
2213
|
+
/** Create datasource alias. */
|
|
2214
|
+
alias?: string;
|
|
2215
|
+
/** Create datasource description. */
|
|
2216
|
+
description?: string;
|
|
2217
|
+
}
|
|
2512
2218
|
/**
|
|
2513
2219
|
* The point symbol drawing as image with the mask.
|
|
2514
2220
|
*/
|
|
2515
|
-
export
|
|
2221
|
+
export interface MaskedImagePointSymbolDc {
|
|
2516
2222
|
type?: string;
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
*/
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
fillColor?: ParameterDcColor;
|
|
2531
|
-
strokeColor?: ParameterDcColor;
|
|
2532
|
-
strokeWidth?: CalculatedParameterDc;
|
|
2223
|
+
/**
|
|
2224
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2225
|
+
* as an object with a "type" parameter specified.
|
|
2226
|
+
*/
|
|
2227
|
+
width?: ParameterDcDouble;
|
|
2228
|
+
/**
|
|
2229
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2230
|
+
* as an object with a "type" parameter specified.
|
|
2231
|
+
*/
|
|
2232
|
+
height?: ParameterDcDouble;
|
|
2233
|
+
/** Offset of the image center from the geographic point. */
|
|
2234
|
+
offset?: ParameterDcDouble[];
|
|
2235
|
+
/** Image in base64 string. */
|
|
2533
2236
|
image?: string;
|
|
2237
|
+
/** Image mask in base64 string. */
|
|
2534
2238
|
imageMask?: string;
|
|
2239
|
+
/**
|
|
2240
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2241
|
+
* as an object with a "type" parameter specified.
|
|
2242
|
+
*/
|
|
2535
2243
|
maskedColor?: ParameterDcColor;
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
/** Check what this model element enabled. */
|
|
2542
|
-
enabled?: boolean;
|
|
2244
|
+
/**
|
|
2245
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2246
|
+
* as an object with a "type" parameter specified.
|
|
2247
|
+
*/
|
|
2248
|
+
angle?: ParameterDcDouble;
|
|
2543
2249
|
}
|
|
2544
|
-
/**
|
|
2545
|
-
* Multipoint geometry object definition.
|
|
2546
|
-
*/
|
|
2547
|
-
export declare type MultiPointDc = GeometryDc & {
|
|
2548
|
-
coordinates: PositionDc[];
|
|
2549
|
-
type?: GeometryType;
|
|
2550
|
-
};
|
|
2551
|
-
/**
|
|
2552
|
-
* A multipoint symbol.
|
|
2553
|
-
*/
|
|
2554
|
-
export declare type MultipointSymbolDc = SymbolDc & {
|
|
2555
|
-
type?: string;
|
|
2556
|
-
pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2557
|
-
};
|
|
2558
2250
|
/**
|
|
2559
2251
|
* Information about a namespace .
|
|
2560
2252
|
*/
|
|
@@ -2570,39 +2262,9 @@ export interface NamespaceInfoDc {
|
|
|
2570
2262
|
* @format date-time
|
|
2571
2263
|
*/
|
|
2572
2264
|
created?: string;
|
|
2573
|
-
/**
|
|
2574
|
-
* Given a security object (like a service or a project) this class provides the list of permissions the different
|
|
2575
|
-
* user roles have for this object.
|
|
2576
|
-
*/
|
|
2265
|
+
/** Access control list. */
|
|
2577
2266
|
acl?: Record<string, Permissions>;
|
|
2578
2267
|
}
|
|
2579
|
-
/**
|
|
2580
|
-
* The {NewResourcesTypesDc} data contract provides information
|
|
2581
|
-
about new types of the resources in catalog for current user.
|
|
2582
|
-
*/
|
|
2583
|
-
export interface NewResourcesTypesDc {
|
|
2584
|
-
/**
|
|
2585
|
-
* The {ResourceType} represents resource manager supports types.
|
|
2586
|
-
*
|
|
2587
|
-
* Unknown
|
|
2588
|
-
*
|
|
2589
|
-
* table
|
|
2590
|
-
*
|
|
2591
|
-
* layer
|
|
2592
|
-
*
|
|
2593
|
-
* project
|
|
2594
|
-
*
|
|
2595
|
-
* file
|
|
2596
|
-
*
|
|
2597
|
-
* feature
|
|
2598
|
-
*/
|
|
2599
|
-
resourceType?: ResourceType;
|
|
2600
|
-
/**
|
|
2601
|
-
* Count of resources of the given type.
|
|
2602
|
-
* @format int32
|
|
2603
|
-
*/
|
|
2604
|
-
count?: number;
|
|
2605
|
-
}
|
|
2606
2268
|
/**
|
|
2607
2269
|
* Id of any geographical or abstract object.
|
|
2608
2270
|
*/
|
|
@@ -2630,15 +2292,42 @@ export declare enum Operation {
|
|
|
2630
2292
|
/**
|
|
2631
2293
|
* Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
|
|
2632
2294
|
*/
|
|
2633
|
-
export
|
|
2295
|
+
export interface OverlayTaskParametersDc {
|
|
2634
2296
|
type?: string;
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
*
|
|
2300
|
+
* Unknown
|
|
2301
|
+
*
|
|
2302
|
+
* union
|
|
2303
|
+
*
|
|
2304
|
+
* intersection
|
|
2305
|
+
*
|
|
2306
|
+
* subtraction
|
|
2307
|
+
*
|
|
2308
|
+
* symDifference
|
|
2309
|
+
*/
|
|
2635
2310
|
operation: Operation;
|
|
2636
|
-
|
|
2637
|
-
|
|
2311
|
+
/** Feature storage to use as a tool for subtraction. */
|
|
2312
|
+
toolLayer?: LayerTaskDataStorageDc | BaseTaskDataStorageDc;
|
|
2313
|
+
/** Storage that is to be used as a data source for the task. */
|
|
2314
|
+
source: BaseTaskDataStorageDc;
|
|
2315
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
2316
|
+
target: BaseTaskDataStorageDc;
|
|
2317
|
+
}
|
|
2638
2318
|
/**
|
|
2639
2319
|
* Features list definition.
|
|
2640
2320
|
*/
|
|
2641
|
-
export
|
|
2321
|
+
export interface PagedFeaturesListDc {
|
|
2322
|
+
/** The items of the response. */
|
|
2323
|
+
items?: FeatureDc[];
|
|
2324
|
+
/** @format int64 */
|
|
2325
|
+
totalCount?: number;
|
|
2326
|
+
/** @format int64 */
|
|
2327
|
+
offset?: number;
|
|
2328
|
+
/** @format int64 */
|
|
2329
|
+
limit?: number;
|
|
2330
|
+
}
|
|
2642
2331
|
/**
|
|
2643
2332
|
* A list of items that is returned for filtered paged requests.
|
|
2644
2333
|
*/
|
|
@@ -2680,13 +2369,28 @@ export interface ParameterDcDouble extends BrandedType<'ParameterDcDouble'> {
|
|
|
2680
2369
|
/**
|
|
2681
2370
|
* Provides image pattern brush properties.
|
|
2682
2371
|
*/
|
|
2683
|
-
export
|
|
2372
|
+
export interface PatternBrushDc {
|
|
2684
2373
|
type: string;
|
|
2374
|
+
/** Specifies image in base64. */
|
|
2685
2375
|
pattern: string;
|
|
2376
|
+
/**
|
|
2377
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2378
|
+
* as an object with a "type" parameter specified.
|
|
2379
|
+
*/
|
|
2686
2380
|
patternColor?: ParameterDcColor;
|
|
2381
|
+
/**
|
|
2382
|
+
* Specifies pattern rotation angle in radians.
|
|
2383
|
+
* @format float
|
|
2384
|
+
*/
|
|
2687
2385
|
angle?: number;
|
|
2386
|
+
/** Specifies pattern size scaling. */
|
|
2688
2387
|
scalingFactor?: number[];
|
|
2689
|
-
|
|
2388
|
+
/**
|
|
2389
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2390
|
+
* as an object with a "type" parameter specified.
|
|
2391
|
+
*/
|
|
2392
|
+
color?: ParameterDcColor;
|
|
2393
|
+
}
|
|
2690
2394
|
/**
|
|
2691
2395
|
* User permissions for server security objects (services, projects etc.)
|
|
2692
2396
|
|
|
@@ -2716,23 +2420,53 @@ export declare enum Permissions {
|
|
|
2716
2420
|
/**
|
|
2717
2421
|
* Pipeline of server tasks. The tasks given in the InnerTasks property are executed one after another inside one server task.
|
|
2718
2422
|
*/
|
|
2719
|
-
export
|
|
2423
|
+
export interface PipelineTaskParametersDc {
|
|
2720
2424
|
type?: string;
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
* Spatial point geometry object representation.
|
|
2725
|
-
*/
|
|
2726
|
-
export declare type PointDc = GeometryDc & {
|
|
2727
|
-
coordinates: PositionDc;
|
|
2728
|
-
type?: GeometryType;
|
|
2729
|
-
};
|
|
2425
|
+
/** The tasks to execute in the pipeline. */
|
|
2426
|
+
innerTasks: TaskParametersDc[];
|
|
2427
|
+
}
|
|
2730
2428
|
/**
|
|
2731
2429
|
* Label of a point object.
|
|
2732
2430
|
*/
|
|
2733
|
-
export
|
|
2431
|
+
export interface PointLabelSymbolDc {
|
|
2734
2432
|
type?: string;
|
|
2735
|
-
|
|
2433
|
+
/** Label text format. */
|
|
2434
|
+
fieldFormat?: string;
|
|
2435
|
+
/** Label text font family. */
|
|
2436
|
+
fontFamily?: string;
|
|
2437
|
+
/** Sets whether font should be styled. */
|
|
2438
|
+
fontStyle?: FontStyle;
|
|
2439
|
+
/** Specifies the weight (or boldness) of the font. */
|
|
2440
|
+
fontWeight?: FontWeight;
|
|
2441
|
+
/**
|
|
2442
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2443
|
+
* as an object with a "type" parameter specified.
|
|
2444
|
+
*/
|
|
2445
|
+
fontColor?: ParameterDcColor;
|
|
2446
|
+
/**
|
|
2447
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2448
|
+
* as an object with a "type" parameter specified.
|
|
2449
|
+
*/
|
|
2450
|
+
fontSize?: ParameterDcDouble;
|
|
2451
|
+
/** Sets the horizontal alignment of text. */
|
|
2452
|
+
horizontalAlignment?: TextAlignment;
|
|
2453
|
+
/** Sets the vertical alignment of text. */
|
|
2454
|
+
verticalAlignment?: TextVerticalAlignment;
|
|
2455
|
+
/**
|
|
2456
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2457
|
+
* as an object with a "type" parameter specified.
|
|
2458
|
+
*/
|
|
2459
|
+
haloColor?: ParameterDcColor;
|
|
2460
|
+
/**
|
|
2461
|
+
* Width of label stroke (halo).
|
|
2462
|
+
* @format float
|
|
2463
|
+
*/
|
|
2464
|
+
haloWidth?: number;
|
|
2465
|
+
/** Offset of the label center from the geographic point. */
|
|
2466
|
+
offset?: ParameterDcDouble[];
|
|
2467
|
+
/** Specifies text background. */
|
|
2468
|
+
textBackground?: TextBackgroundDc;
|
|
2469
|
+
}
|
|
2736
2470
|
export interface PolicyDc {
|
|
2737
2471
|
/**
|
|
2738
2472
|
* Type of the authorization policy.
|
|
@@ -2772,69 +2506,129 @@ export declare enum PolicyType {
|
|
|
2772
2506
|
CreateProject = "CreateProject",
|
|
2773
2507
|
MaxFeaturesInOneTable = "MaxFeaturesInOneTable"
|
|
2774
2508
|
}
|
|
2775
|
-
/**
|
|
2776
|
-
* Polyline and Polygon base geometry object definition.
|
|
2777
|
-
*/
|
|
2778
|
-
export declare type PolyDc = GeometryDc & {
|
|
2779
|
-
coordinates: PositionDc[][];
|
|
2780
|
-
};
|
|
2781
|
-
/**
|
|
2782
|
-
* Polygon geometry object definition.
|
|
2783
|
-
*/
|
|
2784
|
-
export declare type PolygonDc = PolyDc & {
|
|
2785
|
-
type?: GeometryType;
|
|
2786
|
-
};
|
|
2787
|
-
/**
|
|
2788
|
-
* <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.PolygonGridSymbol" />
|
|
2789
|
-
*/
|
|
2790
|
-
export declare type PolygonGridSymbolDc = SymbolDc & {
|
|
2791
|
-
type?: string;
|
|
2792
|
-
gridSize?: number;
|
|
2793
|
-
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
2794
|
-
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
2795
|
-
aggregations?: Record<string, AggregationFunction>;
|
|
2796
|
-
};
|
|
2797
2509
|
/**
|
|
2798
2510
|
* Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
|
|
2799
2511
|
*/
|
|
2800
|
-
export
|
|
2512
|
+
export interface PolygonLabelSymbolDc {
|
|
2801
2513
|
type?: string;
|
|
2802
|
-
|
|
2514
|
+
/** Label text format. */
|
|
2515
|
+
fieldFormat?: string;
|
|
2516
|
+
/** Label text font family. */
|
|
2517
|
+
fontFamily?: string;
|
|
2518
|
+
/** Sets whether font should be styled. */
|
|
2519
|
+
fontStyle?: FontStyle;
|
|
2520
|
+
/** Specifies the weight (or boldness) of the font. */
|
|
2521
|
+
fontWeight?: FontWeight;
|
|
2522
|
+
/**
|
|
2523
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2524
|
+
* as an object with a "type" parameter specified.
|
|
2525
|
+
*/
|
|
2526
|
+
fontColor?: ParameterDcColor;
|
|
2527
|
+
/**
|
|
2528
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2529
|
+
* as an object with a "type" parameter specified.
|
|
2530
|
+
*/
|
|
2531
|
+
fontSize?: ParameterDcDouble;
|
|
2532
|
+
/** Sets the horizontal alignment of text. */
|
|
2533
|
+
horizontalAlignment?: TextAlignment;
|
|
2534
|
+
/** Sets the vertical alignment of text. */
|
|
2535
|
+
verticalAlignment?: TextVerticalAlignment;
|
|
2536
|
+
/**
|
|
2537
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2538
|
+
* as an object with a "type" parameter specified.
|
|
2539
|
+
*/
|
|
2540
|
+
haloColor?: ParameterDcColor;
|
|
2541
|
+
/**
|
|
2542
|
+
* Width of label stroke (halo).
|
|
2543
|
+
* @format float
|
|
2544
|
+
*/
|
|
2545
|
+
haloWidth?: number;
|
|
2546
|
+
/** Offset of the label center from the geographic point. */
|
|
2547
|
+
offset?: ParameterDcDouble[];
|
|
2548
|
+
/** Specifies text background. */
|
|
2549
|
+
textBackground?: TextBackgroundDc;
|
|
2550
|
+
}
|
|
2803
2551
|
/**
|
|
2804
2552
|
* A simple polygon symbol.
|
|
2805
2553
|
*/
|
|
2806
|
-
export
|
|
2554
|
+
export interface PolygonSymbolDc {
|
|
2807
2555
|
type?: string;
|
|
2808
|
-
stroke
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
*/
|
|
2814
|
-
export declare type PolylineDc = PolyDc & {
|
|
2815
|
-
type?: GeometryType;
|
|
2816
|
-
};
|
|
2556
|
+
/** Specifies stroke style. */
|
|
2557
|
+
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
2558
|
+
/** Specifies stroke style. */
|
|
2559
|
+
fill?: BrushDc | FillBrushDc | IBrushDc;
|
|
2560
|
+
}
|
|
2817
2561
|
/**
|
|
2818
2562
|
* Label for polyline objects. It is drawn repeatedly along a line.
|
|
2819
2563
|
*/
|
|
2820
|
-
export
|
|
2564
|
+
export interface PolylineLabelSymbolDc {
|
|
2821
2565
|
type?: string;
|
|
2566
|
+
/**
|
|
2567
|
+
* Distance in pixels after which the label will be repeated along the line.
|
|
2568
|
+
* @format float
|
|
2569
|
+
*/
|
|
2822
2570
|
labelRepeatDistance?: number;
|
|
2571
|
+
/**
|
|
2572
|
+
* Maximum angle of the line in one point the label can bend for.
|
|
2573
|
+
* @format int32
|
|
2574
|
+
*/
|
|
2823
2575
|
criticalAngle?: number;
|
|
2576
|
+
/** If set to true, the label will be drawn in the direction opposite to the default one. */
|
|
2824
2577
|
invertLabelDirection?: boolean;
|
|
2578
|
+
/** If set to true, the label will be drawn in the direction opposite to the default one. */
|
|
2825
2579
|
offsetFromSymbol?: boolean;
|
|
2580
|
+
/** Distance from the line to offset the symbol. */
|
|
2826
2581
|
offset?: number[];
|
|
2582
|
+
/**
|
|
2583
|
+
* Maximum with of the label in pixels.
|
|
2584
|
+
* @format float
|
|
2585
|
+
*/
|
|
2827
2586
|
maxWidth?: number;
|
|
2828
|
-
|
|
2587
|
+
/** Label text format. */
|
|
2588
|
+
fieldFormat?: string;
|
|
2589
|
+
/** Label text font family. */
|
|
2590
|
+
fontFamily?: string;
|
|
2591
|
+
/** Sets whether font should be styled. */
|
|
2592
|
+
fontStyle?: FontStyle;
|
|
2593
|
+
/** Specifies the weight (or boldness) of the font. */
|
|
2594
|
+
fontWeight?: FontWeight;
|
|
2595
|
+
/**
|
|
2596
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2597
|
+
* as an object with a "type" parameter specified.
|
|
2598
|
+
*/
|
|
2599
|
+
fontColor?: ParameterDcColor;
|
|
2600
|
+
/**
|
|
2601
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2602
|
+
* as an object with a "type" parameter specified.
|
|
2603
|
+
*/
|
|
2604
|
+
fontSize?: ParameterDcDouble;
|
|
2605
|
+
/** Sets the horizontal alignment of text. */
|
|
2606
|
+
horizontalAlignment?: TextAlignment;
|
|
2607
|
+
/** Sets the vertical alignment of text. */
|
|
2608
|
+
verticalAlignment?: TextVerticalAlignment;
|
|
2609
|
+
/**
|
|
2610
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2611
|
+
* as an object with a "type" parameter specified.
|
|
2612
|
+
*/
|
|
2613
|
+
haloColor?: ParameterDcColor;
|
|
2614
|
+
/**
|
|
2615
|
+
* Width of label stroke (halo).
|
|
2616
|
+
* @format float
|
|
2617
|
+
*/
|
|
2618
|
+
haloWidth?: number;
|
|
2619
|
+
/** Specifies text background. */
|
|
2620
|
+
textBackground?: TextBackgroundDc;
|
|
2621
|
+
}
|
|
2829
2622
|
/**
|
|
2830
2623
|
* The symbol that draws a feature as a square.
|
|
2831
2624
|
*/
|
|
2832
|
-
export
|
|
2625
|
+
export interface PolylineSymbolDc {
|
|
2833
2626
|
type?: string;
|
|
2834
|
-
stroke
|
|
2627
|
+
/** Specifies stroke style. */
|
|
2628
|
+
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
2835
2629
|
beginning?: ILineEndingDc;
|
|
2836
2630
|
ending?: ILineEndingDc;
|
|
2837
|
-
}
|
|
2631
|
+
}
|
|
2838
2632
|
/**
|
|
2839
2633
|
* The position at the map in [X, Y] format.
|
|
2840
2634
|
*/
|
|
@@ -2842,31 +2636,94 @@ export declare type PositionDc = number[];
|
|
|
2842
2636
|
/**
|
|
2843
2637
|
* Configuration of a postgres feature layer service.
|
|
2844
2638
|
*/
|
|
2845
|
-
export
|
|
2639
|
+
export interface PostgresLayerServiceConfigurationDc {
|
|
2640
|
+
/** Configuration of the attributes of the layer. */
|
|
2846
2641
|
attributesConfiguration: AttributesConfigurationDc;
|
|
2642
|
+
/** Style of the layer. */
|
|
2847
2643
|
style?: StyleDc;
|
|
2644
|
+
/** Condition to filter returned features. */
|
|
2848
2645
|
condition?: string;
|
|
2646
|
+
/**
|
|
2647
|
+
* Maximum number of features, that the service can return in a single request.
|
|
2648
|
+
* @format int32
|
|
2649
|
+
*/
|
|
2849
2650
|
featuresLimit?: number;
|
|
2850
|
-
|
|
2651
|
+
/**
|
|
2652
|
+
* Adds additional extent offset in pixels to feature selection.
|
|
2653
|
+
* @format int32
|
|
2654
|
+
*/
|
|
2655
|
+
extentOffset?: number;
|
|
2656
|
+
/** Name of the service. */
|
|
2657
|
+
name: string;
|
|
2658
|
+
/** Human friendly name of the service. */
|
|
2659
|
+
alias?: string;
|
|
2660
|
+
/** Description of the service. */
|
|
2661
|
+
description?: string;
|
|
2662
|
+
/** Service access control list. */
|
|
2663
|
+
acl?: AccessControlListDc;
|
|
2664
|
+
/** Base64 encoded image - icon of the resource. */
|
|
2665
|
+
icon?: string;
|
|
2666
|
+
/**
|
|
2667
|
+
* <br>
|
|
2668
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
2669
|
+
* Administrator permissions are required to perform this operation.
|
|
2670
|
+
*
|
|
2671
|
+
*/
|
|
2672
|
+
owner?: string;
|
|
2673
|
+
}
|
|
2851
2674
|
/**
|
|
2852
2675
|
* Configuration of a postgres tile catalog service.
|
|
2853
2676
|
*/
|
|
2854
|
-
export
|
|
2677
|
+
export interface PostgresTileCatalogServiceConfigurationDc {
|
|
2678
|
+
/** Configuration of the attributes of the layer. */
|
|
2855
2679
|
attributesConfiguration: AttributesConfigurationDc;
|
|
2680
|
+
/** Style of the layer. */
|
|
2856
2681
|
style?: StyleDc;
|
|
2682
|
+
/** Condition to filter returned features. */
|
|
2857
2683
|
condition?: string;
|
|
2684
|
+
/**
|
|
2685
|
+
* Maximum number of features, that the service can return in a single request.
|
|
2686
|
+
* @format int32
|
|
2687
|
+
*/
|
|
2858
2688
|
featuresLimit?: number;
|
|
2689
|
+
/**
|
|
2690
|
+
* Min lod level.
|
|
2691
|
+
* @format int32
|
|
2692
|
+
*/
|
|
2859
2693
|
minLodLevel?: number;
|
|
2694
|
+
/**
|
|
2695
|
+
* Max lod level.
|
|
2696
|
+
* @format int32
|
|
2697
|
+
*/
|
|
2860
2698
|
maxLodLevel?: number;
|
|
2861
|
-
|
|
2699
|
+
/** Name of the service. */
|
|
2700
|
+
name: string;
|
|
2701
|
+
/** Human friendly name of the service. */
|
|
2702
|
+
alias?: string;
|
|
2703
|
+
/** Description of the service. */
|
|
2704
|
+
description?: string;
|
|
2705
|
+
/** Service access control list. */
|
|
2706
|
+
acl?: AccessControlListDc;
|
|
2707
|
+
/** Base64 encoded image - icon of the resource. */
|
|
2708
|
+
icon?: string;
|
|
2709
|
+
/**
|
|
2710
|
+
* <br>
|
|
2711
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
2712
|
+
* Administrator permissions are required to perform this operation.
|
|
2713
|
+
*
|
|
2714
|
+
*/
|
|
2715
|
+
owner?: string;
|
|
2716
|
+
}
|
|
2862
2717
|
/**
|
|
2863
2718
|
* Print operation print map and map elements to png files.
|
|
2864
2719
|
*/
|
|
2865
|
-
export
|
|
2720
|
+
export interface PrintTaskParametersDc {
|
|
2866
2721
|
taskType?: string;
|
|
2722
|
+
/** Task data storage that works with import and export provider to give access to data stored in static files. */
|
|
2867
2723
|
targetStorageDescription: SessionStaticTaskDataStorageDescription;
|
|
2868
|
-
|
|
2869
|
-
|
|
2724
|
+
/** Input template models for printing. */
|
|
2725
|
+
templates?: TemplateModelDc[];
|
|
2726
|
+
}
|
|
2870
2727
|
export interface ProblemDetails {
|
|
2871
2728
|
type?: string;
|
|
2872
2729
|
title?: string;
|
|
@@ -2885,7 +2742,7 @@ export interface ProjectConfigurationDc {
|
|
|
2885
2742
|
* @format double
|
|
2886
2743
|
*/
|
|
2887
2744
|
resolution?: number;
|
|
2888
|
-
/**
|
|
2745
|
+
/** Map position coordinates. */
|
|
2889
2746
|
position?: PositionDc;
|
|
2890
2747
|
/**
|
|
2891
2748
|
* Map spatial reference code.
|
|
@@ -2907,7 +2764,7 @@ export interface ProjectContentItemDc {
|
|
|
2907
2764
|
name: string;
|
|
2908
2765
|
/**
|
|
2909
2766
|
* Opacity level of item.
|
|
2910
|
-
* @format
|
|
2767
|
+
* @format float
|
|
2911
2768
|
*/
|
|
2912
2769
|
opacity?: number;
|
|
2913
2770
|
/** Indicates if item is visible. */
|
|
@@ -2932,14 +2789,9 @@ export interface ProjectContentItemDc {
|
|
|
2932
2789
|
/**
|
|
2933
2790
|
* A project configuration data contract.
|
|
2934
2791
|
*/
|
|
2935
|
-
export
|
|
2936
|
-
export interface ProjectInfoPubDc {
|
|
2792
|
+
export interface ProjectInfoDc {
|
|
2937
2793
|
/** Sets true if project is shared. */
|
|
2938
2794
|
isShared?: boolean;
|
|
2939
|
-
/** Sets {True} if project is favorite by user. */
|
|
2940
|
-
isFavorite?: boolean;
|
|
2941
|
-
/** Sets {true} if project is new. */
|
|
2942
|
-
isNew?: boolean;
|
|
2943
2795
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
2944
2796
|
name: string;
|
|
2945
2797
|
/** Resource alias. */
|
|
@@ -2978,45 +2830,11 @@ export interface ProjectInfoPubDc {
|
|
|
2978
2830
|
* read,write,configure
|
|
2979
2831
|
*/
|
|
2980
2832
|
permissions?: Permissions;
|
|
2833
|
+
/** Access control list. */
|
|
2834
|
+
acl?: AccessControlListDc;
|
|
2981
2835
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
2982
2836
|
icon?: string;
|
|
2983
2837
|
}
|
|
2984
|
-
/**
|
|
2985
|
-
* Describes promo info.
|
|
2986
|
-
*/
|
|
2987
|
-
export interface PromoInfo {
|
|
2988
|
-
/**
|
|
2989
|
-
* Id.
|
|
2990
|
-
* @format int32
|
|
2991
|
-
*/
|
|
2992
|
-
id?: number;
|
|
2993
|
-
/** System name. */
|
|
2994
|
-
name?: string;
|
|
2995
|
-
/** Checks is active. */
|
|
2996
|
-
is_active?: boolean;
|
|
2997
|
-
/**
|
|
2998
|
-
* Kind code.
|
|
2999
|
-
* @format int32
|
|
3000
|
-
*/
|
|
3001
|
-
kind?: number;
|
|
3002
|
-
/** Kind display. */
|
|
3003
|
-
kind_display?: string;
|
|
3004
|
-
/**
|
|
3005
|
-
* Discount value.
|
|
3006
|
-
* @format double
|
|
3007
|
-
*/
|
|
3008
|
-
discount_value?: number;
|
|
3009
|
-
/**
|
|
3010
|
-
* Start date.
|
|
3011
|
-
* @format date-time
|
|
3012
|
-
*/
|
|
3013
|
-
start_date?: string;
|
|
3014
|
-
/**
|
|
3015
|
-
* End date.
|
|
3016
|
-
* @format date-time
|
|
3017
|
-
*/
|
|
3018
|
-
end_date?: string;
|
|
3019
|
-
}
|
|
3020
2838
|
/**
|
|
3021
2839
|
* Data contract for inner layer Legend.
|
|
3022
2840
|
*/
|
|
@@ -3047,29 +2865,107 @@ export interface ProxyLayerLegendItemDc {
|
|
|
3047
2865
|
/**
|
|
3048
2866
|
* Configuration for the proxy service.
|
|
3049
2867
|
*/
|
|
3050
|
-
export
|
|
2868
|
+
export interface ProxyServiceConfigurationDc {
|
|
2869
|
+
/** Source system type, e.g. "ArcGIS". */
|
|
3051
2870
|
sourceType: string;
|
|
2871
|
+
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
3052
2872
|
sourceUrl: string;
|
|
2873
|
+
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3053
2874
|
layers: string[];
|
|
2875
|
+
/** Copyright text. */
|
|
3054
2876
|
copyrightText?: string;
|
|
3055
|
-
|
|
2877
|
+
/** Name of the service. */
|
|
2878
|
+
name: string;
|
|
2879
|
+
/** Human friendly name of the service. */
|
|
2880
|
+
alias?: string;
|
|
2881
|
+
/** Description of the service. */
|
|
2882
|
+
description?: string;
|
|
2883
|
+
/** Service access control list. */
|
|
2884
|
+
acl?: AccessControlListDc;
|
|
2885
|
+
/** Base64 encoded image - icon of the resource. */
|
|
2886
|
+
icon?: string;
|
|
2887
|
+
/**
|
|
2888
|
+
* <br>
|
|
2889
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
2890
|
+
* Administrator permissions are required to perform this operation.
|
|
2891
|
+
*
|
|
2892
|
+
*/
|
|
2893
|
+
owner?: string;
|
|
2894
|
+
}
|
|
3056
2895
|
/**
|
|
3057
2896
|
* Service info for a Proxy service.
|
|
3058
2897
|
*/
|
|
3059
|
-
export
|
|
2898
|
+
export interface ProxyServiceInfoDc {
|
|
2899
|
+
/** Source system type, e.g. "ArcGIS". */
|
|
3060
2900
|
sourceType: string;
|
|
2901
|
+
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
3061
2902
|
sourceUrl: string;
|
|
2903
|
+
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3062
2904
|
layers: string[];
|
|
2905
|
+
/** Copyright text. */
|
|
3063
2906
|
copyrightText?: string;
|
|
2907
|
+
/** Layer legend. */
|
|
3064
2908
|
legend?: ProxyLayerLegendDc;
|
|
3065
|
-
|
|
2909
|
+
/** The type of the resource. */
|
|
2910
|
+
type: string;
|
|
2911
|
+
/** The category of the service. */
|
|
2912
|
+
categories?: string[];
|
|
2913
|
+
/** Configuration of the service. */
|
|
2914
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
2915
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
2916
|
+
name: string;
|
|
2917
|
+
/** Resource alias. */
|
|
2918
|
+
alias?: string;
|
|
2919
|
+
/** Resource owner. */
|
|
2920
|
+
owner?: string;
|
|
2921
|
+
/** Resource description. */
|
|
2922
|
+
description?: string;
|
|
2923
|
+
/** Resource preview. */
|
|
2924
|
+
preview?: string;
|
|
2925
|
+
/**
|
|
2926
|
+
* The date when resource was created.
|
|
2927
|
+
* @format date-time
|
|
2928
|
+
*/
|
|
2929
|
+
createdDate?: string;
|
|
2930
|
+
/**
|
|
2931
|
+
* The date when resource was last modified.
|
|
2932
|
+
* @format date-time
|
|
2933
|
+
*/
|
|
2934
|
+
changedDate?: string;
|
|
2935
|
+
/**
|
|
2936
|
+
* User permissions for server security objects (services, projects etc.)
|
|
2937
|
+
*
|
|
2938
|
+
* none
|
|
2939
|
+
*
|
|
2940
|
+
* configure
|
|
2941
|
+
*
|
|
2942
|
+
* write
|
|
2943
|
+
*
|
|
2944
|
+
* read
|
|
2945
|
+
*
|
|
2946
|
+
* read,configure
|
|
2947
|
+
*
|
|
2948
|
+
* read,write
|
|
2949
|
+
*
|
|
2950
|
+
* read,write,configure
|
|
2951
|
+
*/
|
|
2952
|
+
permissions?: Permissions;
|
|
2953
|
+
/** Access control list. */
|
|
2954
|
+
acl?: AccessControlListDc;
|
|
2955
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
2956
|
+
icon?: string;
|
|
2957
|
+
}
|
|
3066
2958
|
/**
|
|
3067
2959
|
* The symbol that draws a raster.
|
|
3068
2960
|
*/
|
|
3069
|
-
export
|
|
2961
|
+
export interface RasterSymbolDc {
|
|
3070
2962
|
type?: string;
|
|
3071
|
-
|
|
3072
|
-
|
|
2963
|
+
/**
|
|
2964
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2965
|
+
* as an object with a "type" parameter specified.
|
|
2966
|
+
*/
|
|
2967
|
+
opacity?: ParameterDcDouble;
|
|
2968
|
+
}
|
|
3073
2969
|
export interface Rectangle2 {
|
|
3074
2970
|
/** @format double */
|
|
3075
2971
|
x1?: number;
|
|
@@ -3102,25 +2998,51 @@ export interface RegisterUserDc {
|
|
|
3102
2998
|
/** Password. */
|
|
3103
2999
|
password: string;
|
|
3104
3000
|
}
|
|
3105
|
-
/**
|
|
3106
|
-
* SPCore.Connectors.Connectors.Base.Models.Data.Configurations.RemoteTableConfigurationDc provides remote table configuration data contract.
|
|
3107
|
-
*/
|
|
3108
|
-
export declare type RemoteTableConfigurationDc = TableConfigurationBaseDc & {
|
|
3109
|
-
type?: string;
|
|
3110
|
-
dataProvider?: string;
|
|
3111
|
-
};
|
|
3112
3001
|
/**
|
|
3113
3002
|
* Configuration for the remote tile service.
|
|
3114
3003
|
*/
|
|
3115
|
-
export
|
|
3004
|
+
export interface RemoteTileServiceConfigurationDc {
|
|
3005
|
+
/** Tile schema of the service. */
|
|
3116
3006
|
tileInfo?: TileInfoDc;
|
|
3007
|
+
/**
|
|
3008
|
+
* SourceBatch url mask. Like http://{0}.website.ru/{1}/{2}/{3}.png
|
|
3009
|
+
* Where: {0} - SubDomains, {1} - Z, {2} - X, {3} - Y.
|
|
3010
|
+
*/
|
|
3117
3011
|
urlFormat: string;
|
|
3012
|
+
/**
|
|
3013
|
+
* Max tile count for caching.
|
|
3014
|
+
* @format int32
|
|
3015
|
+
*/
|
|
3118
3016
|
tileCacheLimit?: number;
|
|
3017
|
+
/**
|
|
3018
|
+
* Subdomains. To get tiles from different servers.
|
|
3019
|
+
* Will be inserted into the UrlFormat {0}.
|
|
3020
|
+
*/
|
|
3119
3021
|
subDomains?: string[];
|
|
3022
|
+
/** Copyright text. */
|
|
3120
3023
|
copyrightText?: string;
|
|
3024
|
+
/** Allows the client to receive tiles directly from the source server. */
|
|
3121
3025
|
allowDirectAccess?: boolean;
|
|
3026
|
+
/** @format int32 */
|
|
3122
3027
|
RequestTimeout?: number;
|
|
3123
|
-
|
|
3028
|
+
/** Name of the service. */
|
|
3029
|
+
name: string;
|
|
3030
|
+
/** Human friendly name of the service. */
|
|
3031
|
+
alias?: string;
|
|
3032
|
+
/** Description of the service. */
|
|
3033
|
+
description?: string;
|
|
3034
|
+
/** Service access control list. */
|
|
3035
|
+
acl?: AccessControlListDc;
|
|
3036
|
+
/** Base64 encoded image - icon of the resource. */
|
|
3037
|
+
icon?: string;
|
|
3038
|
+
/**
|
|
3039
|
+
* <br>
|
|
3040
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
3041
|
+
* Administrator permissions are required to perform this operation.
|
|
3042
|
+
*
|
|
3043
|
+
*/
|
|
3044
|
+
owner?: string;
|
|
3045
|
+
}
|
|
3124
3046
|
export interface RemoteTileServiceInfo {
|
|
3125
3047
|
/** Description of a service in the Spatial Processor. */
|
|
3126
3048
|
layerInfo?: ServiceInfo;
|
|
@@ -3138,46 +3060,77 @@ export interface RemoteTileServiceInfo {
|
|
|
3138
3060
|
/**
|
|
3139
3061
|
* Service info for a tile service.
|
|
3140
3062
|
*/
|
|
3141
|
-
export
|
|
3063
|
+
export interface RemoteTileServiceInfoDc {
|
|
3064
|
+
/** SourceBatch server address. */
|
|
3142
3065
|
sourceUrl?: string;
|
|
3066
|
+
/** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
|
|
3143
3067
|
sourceUrlMask?: string;
|
|
3068
|
+
/** SourceBatch servers, what can be placed at source url mask, instead {s}. */
|
|
3144
3069
|
sourceServers?: string[];
|
|
3070
|
+
/** Copyright text. */
|
|
3145
3071
|
copyrightText?: string;
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
/**
|
|
3157
|
-
|
|
3158
|
-
*/
|
|
3159
|
-
|
|
3072
|
+
/** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
|
|
3073
|
+
tileInfo: TileInfoDc;
|
|
3074
|
+
/** The type of the resource. */
|
|
3075
|
+
type: string;
|
|
3076
|
+
/** The category of the service. */
|
|
3077
|
+
categories?: string[];
|
|
3078
|
+
/** Configuration of the service. */
|
|
3079
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
3080
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3081
|
+
name: string;
|
|
3082
|
+
/** Resource alias. */
|
|
3083
|
+
alias?: string;
|
|
3084
|
+
/** Resource owner. */
|
|
3085
|
+
owner?: string;
|
|
3086
|
+
/** Resource description. */
|
|
3087
|
+
description?: string;
|
|
3088
|
+
/** Resource preview. */
|
|
3089
|
+
preview?: string;
|
|
3090
|
+
/**
|
|
3091
|
+
* The date when resource was created.
|
|
3092
|
+
* @format date-time
|
|
3093
|
+
*/
|
|
3094
|
+
createdDate?: string;
|
|
3095
|
+
/**
|
|
3096
|
+
* The date when resource was last modified.
|
|
3097
|
+
* @format date-time
|
|
3098
|
+
*/
|
|
3099
|
+
changedDate?: string;
|
|
3160
3100
|
/**
|
|
3161
|
-
*
|
|
3101
|
+
* User permissions for server security objects (services, projects etc.)
|
|
3162
3102
|
*
|
|
3163
|
-
*
|
|
3103
|
+
* none
|
|
3164
3104
|
*
|
|
3165
|
-
*
|
|
3105
|
+
* configure
|
|
3166
3106
|
*
|
|
3167
|
-
*
|
|
3107
|
+
* write
|
|
3168
3108
|
*
|
|
3169
|
-
*
|
|
3109
|
+
* read
|
|
3170
3110
|
*
|
|
3171
|
-
*
|
|
3111
|
+
* read,configure
|
|
3172
3112
|
*
|
|
3173
|
-
*
|
|
3113
|
+
* read,write
|
|
3114
|
+
*
|
|
3115
|
+
* read,write,configure
|
|
3174
3116
|
*/
|
|
3175
|
-
|
|
3176
|
-
/**
|
|
3177
|
-
|
|
3117
|
+
permissions?: Permissions;
|
|
3118
|
+
/** Access control list. */
|
|
3119
|
+
acl?: AccessControlListDc;
|
|
3120
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3121
|
+
icon?: string;
|
|
3122
|
+
}
|
|
3123
|
+
/**
|
|
3124
|
+
* Provides resource and its acl.
|
|
3125
|
+
*/
|
|
3126
|
+
export interface ResourceAclDc {
|
|
3127
|
+
/** Name of the resource to apply acl. */
|
|
3128
|
+
objectName: string;
|
|
3129
|
+
/** All available permissions list. */
|
|
3130
|
+
data: RolePermissionDc[];
|
|
3178
3131
|
}
|
|
3179
3132
|
/**
|
|
3180
|
-
* The
|
|
3133
|
+
* The `ResourceDependenciesDc` describes resource dependencies.
|
|
3181
3134
|
*/
|
|
3182
3135
|
export interface ResourceDependenciesDc {
|
|
3183
3136
|
/** Resource name. */
|
|
@@ -3186,7 +3139,7 @@ export interface ResourceDependenciesDc {
|
|
|
3186
3139
|
dependencies: DependentResourceDc[];
|
|
3187
3140
|
}
|
|
3188
3141
|
/**
|
|
3189
|
-
* The
|
|
3142
|
+
* The `ResourceInfoDc` provides information about resource.
|
|
3190
3143
|
*/
|
|
3191
3144
|
export interface ResourceInfoDc {
|
|
3192
3145
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
@@ -3227,11 +3180,13 @@ export interface ResourceInfoDc {
|
|
|
3227
3180
|
* read,write,configure
|
|
3228
3181
|
*/
|
|
3229
3182
|
permissions?: Permissions;
|
|
3183
|
+
/** Access control list. */
|
|
3184
|
+
acl?: AccessControlListDc;
|
|
3230
3185
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3231
3186
|
icon?: string;
|
|
3232
3187
|
}
|
|
3233
3188
|
/**
|
|
3234
|
-
* The
|
|
3189
|
+
* The `ResourceType` represents resource manager supports types.
|
|
3235
3190
|
|
|
3236
3191
|
Unknown
|
|
3237
3192
|
|
|
@@ -3253,15 +3208,6 @@ export declare enum ResourceType {
|
|
|
3253
3208
|
File = "file",
|
|
3254
3209
|
Feature = "feature"
|
|
3255
3210
|
}
|
|
3256
|
-
/**
|
|
3257
|
-
*
|
|
3258
|
-
|
|
3259
|
-
tables
|
|
3260
|
-
|
|
3261
|
-
layers
|
|
3262
|
-
|
|
3263
|
-
projects
|
|
3264
|
-
*/
|
|
3265
3211
|
export declare enum ResourceTypeLink {
|
|
3266
3212
|
Table = "tables",
|
|
3267
3213
|
Layer = "layers",
|
|
@@ -3330,16 +3276,6 @@ export interface RoutingProviderInfoDc {
|
|
|
3330
3276
|
/** Routing profile (e.g. car, walking, bicycle etc.) */
|
|
3331
3277
|
profile?: string;
|
|
3332
3278
|
}
|
|
3333
|
-
/**
|
|
3334
|
-
* ScaleBar element data contract.
|
|
3335
|
-
*/
|
|
3336
|
-
export declare type ScaleBarElementDc = ModelElementDc & {
|
|
3337
|
-
width?: number;
|
|
3338
|
-
height?: number;
|
|
3339
|
-
thickness?: number;
|
|
3340
|
-
font?: string;
|
|
3341
|
-
fontSize?: number;
|
|
3342
|
-
};
|
|
3343
3279
|
/**
|
|
3344
3280
|
* Suggest user information.
|
|
3345
3281
|
*/
|
|
@@ -3410,7 +3346,7 @@ export interface ServiceConfigurationBaseDc {
|
|
|
3410
3346
|
alias?: string;
|
|
3411
3347
|
/** Description of the service. */
|
|
3412
3348
|
description?: string;
|
|
3413
|
-
/**
|
|
3349
|
+
/** Service access control list. */
|
|
3414
3350
|
acl?: AccessControlListDc;
|
|
3415
3351
|
/** Base64 encoded image - icon of the resource. */
|
|
3416
3352
|
icon?: string;
|
|
@@ -3431,7 +3367,7 @@ export interface ServiceInfo {
|
|
|
3431
3367
|
/** Configuration of an SP service. */
|
|
3432
3368
|
configuration?: IServiceConfiguration;
|
|
3433
3369
|
/**
|
|
3434
|
-
* The
|
|
3370
|
+
* The `ResourceType` represents resource manager supports types.
|
|
3435
3371
|
*
|
|
3436
3372
|
* Unknown
|
|
3437
3373
|
*
|
|
@@ -3488,18 +3424,59 @@ export interface ServiceInfo {
|
|
|
3488
3424
|
preview?: string;
|
|
3489
3425
|
}
|
|
3490
3426
|
/**
|
|
3491
|
-
* The
|
|
3427
|
+
* The `ServiceInfoDc` provides information about the service.
|
|
3492
3428
|
*/
|
|
3493
|
-
export
|
|
3429
|
+
export interface ServiceInfoDc {
|
|
3430
|
+
/** The type of the resource. */
|
|
3494
3431
|
type: string;
|
|
3432
|
+
/** The category of the service. */
|
|
3495
3433
|
categories?: string[];
|
|
3496
|
-
|
|
3497
|
-
|
|
3434
|
+
/** Configuration of the service. */
|
|
3435
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
3436
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3437
|
+
name: string;
|
|
3438
|
+
/** Resource alias. */
|
|
3439
|
+
alias?: string;
|
|
3440
|
+
/** Resource owner. */
|
|
3441
|
+
owner?: string;
|
|
3442
|
+
/** Resource description. */
|
|
3443
|
+
description?: string;
|
|
3444
|
+
/** Resource preview. */
|
|
3445
|
+
preview?: string;
|
|
3446
|
+
/**
|
|
3447
|
+
* The date when resource was created.
|
|
3448
|
+
* @format date-time
|
|
3449
|
+
*/
|
|
3450
|
+
createdDate?: string;
|
|
3451
|
+
/**
|
|
3452
|
+
* The date when resource was last modified.
|
|
3453
|
+
* @format date-time
|
|
3454
|
+
*/
|
|
3455
|
+
changedDate?: string;
|
|
3456
|
+
/**
|
|
3457
|
+
* User permissions for server security objects (services, projects etc.)
|
|
3458
|
+
*
|
|
3459
|
+
* none
|
|
3460
|
+
*
|
|
3461
|
+
* configure
|
|
3462
|
+
*
|
|
3463
|
+
* write
|
|
3464
|
+
*
|
|
3465
|
+
* read
|
|
3466
|
+
*
|
|
3467
|
+
* read,configure
|
|
3468
|
+
*
|
|
3469
|
+
* read,write
|
|
3470
|
+
*
|
|
3471
|
+
* read,write,configure
|
|
3472
|
+
*/
|
|
3473
|
+
permissions?: Permissions;
|
|
3474
|
+
/** Access control list. */
|
|
3475
|
+
acl?: AccessControlListDc;
|
|
3476
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3477
|
+
icon?: string;
|
|
3478
|
+
}
|
|
3498
3479
|
export interface ServiceInfoPubDc {
|
|
3499
|
-
/** Gets or sets {True} if service is favorite by user. */
|
|
3500
|
-
isFavorite?: boolean;
|
|
3501
|
-
/** Sets {true} if service is new. */
|
|
3502
|
-
isNew?: boolean;
|
|
3503
3480
|
/**
|
|
3504
3481
|
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
3505
3482
|
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
@@ -3544,7 +3521,7 @@ export interface ServiceInfoPubDc {
|
|
|
3544
3521
|
/** The category of the service. */
|
|
3545
3522
|
categories?: string[];
|
|
3546
3523
|
/** Configuration of the service. */
|
|
3547
|
-
configuration?: ServiceConfigurationBaseDc
|
|
3524
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
3548
3525
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3549
3526
|
name: string;
|
|
3550
3527
|
/** Resource alias. */
|
|
@@ -3583,26 +3560,37 @@ export interface ServiceInfoPubDc {
|
|
|
3583
3560
|
* read,write,configure
|
|
3584
3561
|
*/
|
|
3585
3562
|
permissions?: Permissions;
|
|
3563
|
+
/** Access control list. */
|
|
3564
|
+
acl?: AccessControlListDc;
|
|
3586
3565
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3587
3566
|
icon?: string;
|
|
3588
3567
|
}
|
|
3589
3568
|
/**
|
|
3590
3569
|
* List of the services in service manager.
|
|
3591
3570
|
*/
|
|
3592
|
-
export
|
|
3571
|
+
export interface ServiceListDc {
|
|
3572
|
+
/** The items of the response. */
|
|
3573
|
+
items?: ServiceListItemDc[];
|
|
3574
|
+
/** @format int64 */
|
|
3575
|
+
totalCount?: number;
|
|
3576
|
+
/** @format int64 */
|
|
3577
|
+
offset?: number;
|
|
3578
|
+
/** @format int64 */
|
|
3579
|
+
limit?: number;
|
|
3580
|
+
}
|
|
3593
3581
|
export interface ServiceListItemDc {
|
|
3594
|
-
name
|
|
3595
|
-
type
|
|
3582
|
+
name?: string;
|
|
3583
|
+
type?: string;
|
|
3596
3584
|
alias?: string;
|
|
3597
3585
|
description?: string;
|
|
3598
3586
|
/** System name of the resource owner. */
|
|
3599
|
-
owner
|
|
3587
|
+
owner?: string;
|
|
3600
3588
|
/** User name of the resource owner (human friendly name). */
|
|
3601
3589
|
ownerName?: string;
|
|
3602
3590
|
/** @format date-time */
|
|
3603
|
-
createdDate
|
|
3591
|
+
createdDate?: string;
|
|
3604
3592
|
/** @format date-time */
|
|
3605
|
-
changedDate
|
|
3593
|
+
changedDate?: string;
|
|
3606
3594
|
/**
|
|
3607
3595
|
* User permissions for server security objects (services, projects etc.)
|
|
3608
3596
|
*
|
|
@@ -3620,7 +3608,7 @@ export interface ServiceListItemDc {
|
|
|
3620
3608
|
*
|
|
3621
3609
|
* read,write,configure
|
|
3622
3610
|
*/
|
|
3623
|
-
permissions
|
|
3611
|
+
permissions?: Permissions;
|
|
3624
3612
|
/** Name of the preview file in the resource preview storage. */
|
|
3625
3613
|
preview?: string;
|
|
3626
3614
|
/**
|
|
@@ -3655,7 +3643,7 @@ export interface ServiceListItemDc {
|
|
|
3655
3643
|
*
|
|
3656
3644
|
* multipoint
|
|
3657
3645
|
*/
|
|
3658
|
-
geometryType
|
|
3646
|
+
geometryType?: GeometryType;
|
|
3659
3647
|
/**
|
|
3660
3648
|
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
3661
3649
|
* 0 is returned.
|
|
@@ -3673,7 +3661,7 @@ export interface SessionStaticTaskDataStorageDescription {
|
|
|
3673
3661
|
folderName?: string;
|
|
3674
3662
|
}
|
|
3675
3663
|
/**
|
|
3676
|
-
* The
|
|
3664
|
+
* The `SharedProjectConfigurationDc` describes shared project configuration.
|
|
3677
3665
|
*/
|
|
3678
3666
|
export interface SharedProjectConfigurationDc {
|
|
3679
3667
|
/** Gets map position. */
|
|
@@ -3690,7 +3678,7 @@ export interface SharedProjectConfigurationDc {
|
|
|
3690
3678
|
srid?: number;
|
|
3691
3679
|
/** Gets or sets base map service name. */
|
|
3692
3680
|
baseMapName?: string;
|
|
3693
|
-
/** The
|
|
3681
|
+
/** The `SharedProjectMapOptionsDc` class describes shared project additional options. */
|
|
3694
3682
|
options?: SharedProjectMapOptionsDc;
|
|
3695
3683
|
/**
|
|
3696
3684
|
* Minimum map level.
|
|
@@ -3712,7 +3700,7 @@ export interface SharedProjectConfigurationDc {
|
|
|
3712
3700
|
alias?: string;
|
|
3713
3701
|
/** Description of the service. */
|
|
3714
3702
|
description?: string;
|
|
3715
|
-
/**
|
|
3703
|
+
/** Service access control list. */
|
|
3716
3704
|
acl?: AccessControlListDc;
|
|
3717
3705
|
/** Base64 encoded image - icon of the resource. */
|
|
3718
3706
|
icon?: string;
|
|
@@ -3725,7 +3713,7 @@ export interface SharedProjectConfigurationDc {
|
|
|
3725
3713
|
owner?: string;
|
|
3726
3714
|
}
|
|
3727
3715
|
/**
|
|
3728
|
-
* The
|
|
3716
|
+
* The `SharedProjectInfoDc` describes shared project info data contract.
|
|
3729
3717
|
*/
|
|
3730
3718
|
export interface SharedProjectInfoDc {
|
|
3731
3719
|
/** The name of the source project. */
|
|
@@ -3744,7 +3732,7 @@ export interface SharedProjectInfoDc {
|
|
|
3744
3732
|
srid?: number;
|
|
3745
3733
|
/** Gets or sets base map service name. */
|
|
3746
3734
|
baseMapName?: string;
|
|
3747
|
-
/** The
|
|
3735
|
+
/** The `SharedProjectMapOptionsDc` class describes shared project additional options. */
|
|
3748
3736
|
options?: SharedProjectMapOptionsDc;
|
|
3749
3737
|
/**
|
|
3750
3738
|
* Minimum map level.
|
|
@@ -3763,7 +3751,7 @@ export interface SharedProjectInfoDc {
|
|
|
3763
3751
|
/** The category of the service. */
|
|
3764
3752
|
categories?: string[];
|
|
3765
3753
|
/** Configuration of the service. */
|
|
3766
|
-
configuration?: ServiceConfigurationBaseDc
|
|
3754
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
3767
3755
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3768
3756
|
name: string;
|
|
3769
3757
|
/** Resource alias. */
|
|
@@ -3802,11 +3790,13 @@ export interface SharedProjectInfoDc {
|
|
|
3802
3790
|
* read,write,configure
|
|
3803
3791
|
*/
|
|
3804
3792
|
permissions?: Permissions;
|
|
3793
|
+
/** Access control list. */
|
|
3794
|
+
acl?: AccessControlListDc;
|
|
3805
3795
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3806
3796
|
icon?: string;
|
|
3807
3797
|
}
|
|
3808
3798
|
/**
|
|
3809
|
-
* The
|
|
3799
|
+
* The `SharedProjectMapOptionsDc` class describes shared project additional options.
|
|
3810
3800
|
*/
|
|
3811
3801
|
export interface SharedProjectMapOptionsDc {
|
|
3812
3802
|
/** Sets true if user has access to change projects basemap. */
|
|
@@ -3816,14 +3806,25 @@ export interface SharedProjectMapOptionsDc {
|
|
|
3816
3806
|
/** Sets true if user has access to layers visibility change. */
|
|
3817
3807
|
visibilityChangeEnabled?: boolean;
|
|
3818
3808
|
}
|
|
3819
|
-
export
|
|
3809
|
+
export interface SimplePolylineSymbolDc {
|
|
3820
3810
|
type?: string;
|
|
3821
|
-
|
|
3811
|
+
/** Defines the brush for the stroke. */
|
|
3812
|
+
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
3813
|
+
/** Type of the line ending. */
|
|
3822
3814
|
beginning?: LineEndingType;
|
|
3815
|
+
/** Type of the line ending. */
|
|
3823
3816
|
ending?: LineEndingType;
|
|
3817
|
+
/**
|
|
3818
|
+
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
3819
|
+
* of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
3820
|
+
*/
|
|
3824
3821
|
beginningSize?: LineEndingSize;
|
|
3822
|
+
/**
|
|
3823
|
+
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
3824
|
+
* of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
3825
|
+
*/
|
|
3825
3826
|
endingSize?: LineEndingSize;
|
|
3826
|
-
}
|
|
3827
|
+
}
|
|
3827
3828
|
/**
|
|
3828
3829
|
* User social network information.
|
|
3829
3830
|
*/
|
|
@@ -3836,65 +3837,60 @@ export interface SocialNetworkInfoDc {
|
|
|
3836
3837
|
/**
|
|
3837
3838
|
* Defines the brush for the solid fill.
|
|
3838
3839
|
*/
|
|
3839
|
-
export
|
|
3840
|
+
export interface SolidFillBrushDc {
|
|
3840
3841
|
type?: string;
|
|
3841
|
-
|
|
3842
|
+
/**
|
|
3843
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3844
|
+
* as an object with a "type" parameter specified.
|
|
3845
|
+
*/
|
|
3846
|
+
color?: ParameterDcColor;
|
|
3847
|
+
}
|
|
3842
3848
|
/**
|
|
3843
3849
|
* Defines the brush for the solid stroke.
|
|
3844
3850
|
*/
|
|
3845
|
-
export
|
|
3851
|
+
export interface SolidStrokeBrushDc {
|
|
3846
3852
|
type?: string;
|
|
3847
|
-
|
|
3853
|
+
/**
|
|
3854
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3855
|
+
* as an object with a "type" parameter specified.
|
|
3856
|
+
*/
|
|
3857
|
+
color?: ParameterDcColor;
|
|
3858
|
+
/**
|
|
3859
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3860
|
+
* as an object with a "type" parameter specified.
|
|
3861
|
+
*/
|
|
3862
|
+
width?: ParameterDcDouble;
|
|
3863
|
+
}
|
|
3848
3864
|
/**
|
|
3849
3865
|
* The symbol that draws a feature as a square.
|
|
3850
3866
|
*/
|
|
3851
|
-
export
|
|
3867
|
+
export interface SquarePointSymbolDc {
|
|
3852
3868
|
type?: string;
|
|
3853
|
-
|
|
3869
|
+
/**
|
|
3870
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3871
|
+
* as an object with a "type" parameter specified.
|
|
3872
|
+
*/
|
|
3873
|
+
size?: ParameterDcDouble;
|
|
3874
|
+
/**
|
|
3875
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3876
|
+
* as an object with a "type" parameter specified.
|
|
3877
|
+
*/
|
|
3854
3878
|
fillColor?: ParameterDcColor;
|
|
3879
|
+
/**
|
|
3880
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3881
|
+
* as an object with a "type" parameter specified.
|
|
3882
|
+
*/
|
|
3855
3883
|
strokeColor?: ParameterDcColor;
|
|
3856
|
-
strokeWidth?: CalculatedParameterDc;
|
|
3857
|
-
offset?: CalculatedParameterDc[];
|
|
3858
|
-
};
|
|
3859
|
-
/**
|
|
3860
|
-
* Description of the temp file as a task data storage.
|
|
3861
|
-
*/
|
|
3862
|
-
export declare type StaticTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
3863
|
-
fileName: string;
|
|
3864
|
-
layerName?: string;
|
|
3865
|
-
type?: string;
|
|
3866
|
-
};
|
|
3867
|
-
/**
|
|
3868
|
-
* The result of a server task step execution.
|
|
3869
|
-
*/
|
|
3870
|
-
export declare type StepResultDc = BaseStepResultDc & {
|
|
3871
|
-
stepName?: string;
|
|
3872
|
-
inputSource?: string;
|
|
3873
|
-
outSource?: string;
|
|
3874
|
-
startedTime?: string;
|
|
3875
|
-
endedTime?: string;
|
|
3876
|
-
batchErrors?: string[];
|
|
3877
|
-
batchCount?: number;
|
|
3878
|
-
inputObjectCount?: number;
|
|
3879
|
-
errorCount?: number;
|
|
3880
|
-
outputObjectCount?: number;
|
|
3881
|
-
resultDetails?: Record<string, number>;
|
|
3882
|
-
};
|
|
3883
|
-
/**
|
|
3884
|
-
* Describes a storage where task will save result.
|
|
3885
|
-
*/
|
|
3886
|
-
export interface StorageResultInfoDc {
|
|
3887
3884
|
/**
|
|
3888
|
-
*
|
|
3889
|
-
*
|
|
3890
|
-
* staticStorage
|
|
3891
|
-
*
|
|
3892
|
-
* layersStorage
|
|
3885
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3886
|
+
* as an object with a "type" parameter specified.
|
|
3893
3887
|
*/
|
|
3894
|
-
|
|
3888
|
+
strokeWidth?: ParameterDcDouble;
|
|
3889
|
+
/** Offset of the square center from the geographic point. */
|
|
3890
|
+
offset?: ParameterDcDouble[];
|
|
3895
3891
|
}
|
|
3896
3892
|
/**
|
|
3897
|
-
* The
|
|
3893
|
+
* The `StringSubType` provides information about string attribute subtype.
|
|
3898
3894
|
|
|
3899
3895
|
None
|
|
3900
3896
|
|
|
@@ -3910,10 +3906,20 @@ export declare enum StringSubType {
|
|
|
3910
3906
|
/**
|
|
3911
3907
|
* Defines the brush for the stroke.
|
|
3912
3908
|
*/
|
|
3913
|
-
export
|
|
3909
|
+
export interface StrokeBrushDc {
|
|
3910
|
+
/**
|
|
3911
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3912
|
+
* as an object with a "type" parameter specified.
|
|
3913
|
+
*/
|
|
3914
3914
|
color?: ParameterDcColor;
|
|
3915
|
-
|
|
3916
|
-
|
|
3915
|
+
/**
|
|
3916
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3917
|
+
* as an object with a "type" parameter specified.
|
|
3918
|
+
*/
|
|
3919
|
+
width?: ParameterDcDouble;
|
|
3920
|
+
/** Type of the brush. */
|
|
3921
|
+
type?: string;
|
|
3922
|
+
}
|
|
3917
3923
|
/**
|
|
3918
3924
|
* Server response for the creation of a style in style service.
|
|
3919
3925
|
*/
|
|
@@ -3933,7 +3939,7 @@ export interface StyleDc {
|
|
|
3933
3939
|
*/
|
|
3934
3940
|
condition?: string;
|
|
3935
3941
|
/** Symbol that is used to draw the features of the layer. */
|
|
3936
|
-
symbol?:
|
|
3942
|
+
symbol?: SymbolDc;
|
|
3937
3943
|
/**
|
|
3938
3944
|
* Child styles. Before rendering a feature, the children style conditions are checked. If none
|
|
3939
3945
|
* of the child styles were applied, then the paren style is used to draw the feature.
|
|
@@ -3954,10 +3960,29 @@ export interface StyleDc {
|
|
|
3954
3960
|
* Configuration of a styled layer service. This service type is a visual feature layer,
|
|
3955
3961
|
that overrides the base layer styling with its' own style.
|
|
3956
3962
|
*/
|
|
3957
|
-
export
|
|
3963
|
+
export interface StyledLayerServiceConfigurationDc {
|
|
3964
|
+
/** Style of the service. */
|
|
3958
3965
|
style: StyleDc;
|
|
3966
|
+
/** The name of the base service. */
|
|
3959
3967
|
baseServiceName: string;
|
|
3960
|
-
|
|
3968
|
+
/** Name of the service. */
|
|
3969
|
+
name: string;
|
|
3970
|
+
/** Human friendly name of the service. */
|
|
3971
|
+
alias?: string;
|
|
3972
|
+
/** Description of the service. */
|
|
3973
|
+
description?: string;
|
|
3974
|
+
/** Service access control list. */
|
|
3975
|
+
acl?: AccessControlListDc;
|
|
3976
|
+
/** Base64 encoded image - icon of the resource. */
|
|
3977
|
+
icon?: string;
|
|
3978
|
+
/**
|
|
3979
|
+
* <br>
|
|
3980
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
3981
|
+
* Administrator permissions are required to perform this operation.
|
|
3982
|
+
*
|
|
3983
|
+
*/
|
|
3984
|
+
owner?: string;
|
|
3985
|
+
}
|
|
3961
3986
|
/**
|
|
3962
3987
|
* Feature symbol.
|
|
3963
3988
|
*/
|
|
@@ -3975,17 +4000,7 @@ export interface TableConfigurationBaseDc {
|
|
|
3975
4000
|
/**
|
|
3976
4001
|
* Table description.
|
|
3977
4002
|
*/
|
|
3978
|
-
export
|
|
3979
|
-
rowCount?: number;
|
|
3980
|
-
geometries?: GeometryType[];
|
|
3981
|
-
type?: string;
|
|
3982
|
-
configuration?: DefaultTableConfigurationDc | RemoteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
|
|
3983
|
-
};
|
|
3984
|
-
export interface TableInfoPubDc {
|
|
3985
|
-
/** Gets or sets {True} if table is favorite by user. */
|
|
3986
|
-
isFavorite?: boolean;
|
|
3987
|
-
/** Sets {true} if table is new. */
|
|
3988
|
-
isNew?: boolean;
|
|
4003
|
+
export interface TableInfoDc {
|
|
3989
4004
|
/**
|
|
3990
4005
|
* Row count.
|
|
3991
4006
|
* @format int64
|
|
@@ -3996,7 +4011,7 @@ export interface TableInfoPubDc {
|
|
|
3996
4011
|
/** The type of the table. */
|
|
3997
4012
|
type?: string;
|
|
3998
4013
|
/** Configuration of the table. */
|
|
3999
|
-
configuration?:
|
|
4014
|
+
configuration?: TableConfigurationBaseDc;
|
|
4000
4015
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4001
4016
|
name: string;
|
|
4002
4017
|
/** Resource alias. */
|
|
@@ -4035,13 +4050,24 @@ export interface TableInfoPubDc {
|
|
|
4035
4050
|
* read,write,configure
|
|
4036
4051
|
*/
|
|
4037
4052
|
permissions?: Permissions;
|
|
4053
|
+
/** Access control list. */
|
|
4054
|
+
acl?: AccessControlListDc;
|
|
4038
4055
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4039
4056
|
icon?: string;
|
|
4040
4057
|
}
|
|
4041
4058
|
/**
|
|
4042
|
-
* The
|
|
4059
|
+
* The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
|
|
4043
4060
|
*/
|
|
4044
|
-
export
|
|
4061
|
+
export interface TableListDc {
|
|
4062
|
+
/** The items of the response. */
|
|
4063
|
+
items?: (TableInfoDc | ResourceInfoDc)[];
|
|
4064
|
+
/** @format int64 */
|
|
4065
|
+
totalCount?: number;
|
|
4066
|
+
/** @format int64 */
|
|
4067
|
+
offset?: number;
|
|
4068
|
+
/** @format int64 */
|
|
4069
|
+
limit?: number;
|
|
4070
|
+
}
|
|
4045
4071
|
/**
|
|
4046
4072
|
* Configuration of a related table for feature layer.
|
|
4047
4073
|
*/
|
|
@@ -4057,13 +4083,6 @@ export interface TableReferenceConfigurationDc {
|
|
|
4057
4083
|
/** Child related tables configurations. */
|
|
4058
4084
|
tableReferences?: TableReferenceConfigurationDc[];
|
|
4059
4085
|
}
|
|
4060
|
-
/**
|
|
4061
|
-
* Data storage that allows accessing features directly from the tables.
|
|
4062
|
-
*/
|
|
4063
|
-
export declare type TableTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
4064
|
-
tableName: string;
|
|
4065
|
-
type?: string;
|
|
4066
|
-
};
|
|
4067
4086
|
/**
|
|
4068
4087
|
* Detailed information about a server task.
|
|
4069
4088
|
*/
|
|
@@ -4096,7 +4115,7 @@ export interface TaskInfoDc {
|
|
|
4096
4115
|
*/
|
|
4097
4116
|
status?: ServerTaskStatus;
|
|
4098
4117
|
/** Parameters of the task. */
|
|
4099
|
-
parameters?:
|
|
4118
|
+
parameters?: TaskParametersDc;
|
|
4100
4119
|
/**
|
|
4101
4120
|
* Date and time when the task was created.
|
|
4102
4121
|
* @format date-time
|
|
@@ -4149,7 +4168,7 @@ export interface TaskProgressDc {
|
|
|
4149
4168
|
* Timeout
|
|
4150
4169
|
*/
|
|
4151
4170
|
status?: ServerTaskStatus;
|
|
4152
|
-
/**
|
|
4171
|
+
/** Information about the task execution process and result. */
|
|
4153
4172
|
taskResult?: TaskResultDc;
|
|
4154
4173
|
/**
|
|
4155
4174
|
* Count of task steps.
|
|
@@ -4175,14 +4194,14 @@ export interface TaskProgressDc {
|
|
|
4175
4194
|
* Some task batches may choose to report additional details about the execution process and result. These
|
|
4176
4195
|
* details are written in the format: { "Value description": int_value }.
|
|
4177
4196
|
*/
|
|
4178
|
-
resultDetails?: Record<string, number>;
|
|
4197
|
+
resultDetails?: Record<string, number | null>;
|
|
4179
4198
|
}
|
|
4180
4199
|
/**
|
|
4181
4200
|
* The result of the server task execution.
|
|
4182
4201
|
*/
|
|
4183
4202
|
export interface TaskResultDc {
|
|
4184
4203
|
message?: string;
|
|
4185
|
-
stepResults?:
|
|
4204
|
+
stepResults?: BaseStepResultDc[];
|
|
4186
4205
|
/** @format int64 */
|
|
4187
4206
|
inputObjectCount?: number;
|
|
4188
4207
|
/** @format int64 */
|
|
@@ -4219,9 +4238,16 @@ export interface TaskStatusDataDc {
|
|
|
4219
4238
|
* Timeout
|
|
4220
4239
|
*/
|
|
4221
4240
|
status?: ServerTaskStatus;
|
|
4222
|
-
/**
|
|
4241
|
+
/** Information about the task execution process or result. */
|
|
4223
4242
|
taskResult?: TaskResultDc;
|
|
4224
4243
|
}
|
|
4244
|
+
/**
|
|
4245
|
+
* Localization contains fields that should be localized on printing template.
|
|
4246
|
+
*/
|
|
4247
|
+
export interface TemplateLocalizationDc {
|
|
4248
|
+
/** Flag of english localization. */
|
|
4249
|
+
isEng?: boolean;
|
|
4250
|
+
}
|
|
4225
4251
|
/**
|
|
4226
4252
|
* Base template model data contract.
|
|
4227
4253
|
*/
|
|
@@ -4253,18 +4279,14 @@ export interface TemplateModelDc {
|
|
|
4253
4279
|
dpi?: number;
|
|
4254
4280
|
/** Gets or sets paper margin. */
|
|
4255
4281
|
margin?: number[];
|
|
4282
|
+
/** Localization of map. */
|
|
4283
|
+
localization?: TemplateLocalizationDc;
|
|
4284
|
+
/** Checks if title enabled. */
|
|
4285
|
+
titleEnabled?: boolean;
|
|
4256
4286
|
}
|
|
4257
4287
|
/**
|
|
4258
|
-
* Sets the horizontal alignment of text.
|
|
4259
|
-
|
|
4260
|
-
right
|
|
4261
|
-
|
|
4262
|
-
left
|
|
4263
|
-
|
|
4264
|
-
center
|
|
4265
|
-
|
|
4266
|
-
justified
|
|
4267
|
-
*/
|
|
4288
|
+
* Sets the horizontal alignment of text.
|
|
4289
|
+
*/
|
|
4268
4290
|
export declare enum TextAlignment {
|
|
4269
4291
|
Right = "right",
|
|
4270
4292
|
Left = "left",
|
|
@@ -4273,42 +4295,21 @@ export declare enum TextAlignment {
|
|
|
4273
4295
|
}
|
|
4274
4296
|
export interface TextBackgroundDc {
|
|
4275
4297
|
/** Defines the brush for the fill. */
|
|
4276
|
-
fill?:
|
|
4298
|
+
fill?: BrushDc | FillBrushDc | IBrushDc;
|
|
4277
4299
|
/** Defines the brush for the stroke. */
|
|
4278
|
-
stroke?:
|
|
4300
|
+
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
4279
4301
|
offset?: number[];
|
|
4280
4302
|
/** @format float */
|
|
4281
4303
|
rounding?: number;
|
|
4282
4304
|
}
|
|
4283
4305
|
/**
|
|
4284
|
-
* Sets the vertical alignment of text.
|
|
4285
|
-
|
|
4286
|
-
top
|
|
4287
|
-
|
|
4288
|
-
bottom
|
|
4289
|
-
|
|
4290
|
-
middle
|
|
4291
|
-
*/
|
|
4306
|
+
* Sets the vertical alignment of text.
|
|
4307
|
+
*/
|
|
4292
4308
|
export declare enum TextVerticalAlignment {
|
|
4293
4309
|
Top = "top",
|
|
4294
4310
|
Bottom = "bottom",
|
|
4295
4311
|
Middle = "middle"
|
|
4296
4312
|
}
|
|
4297
|
-
/**
|
|
4298
|
-
* Service info for a tile catalog layer service.
|
|
4299
|
-
*/
|
|
4300
|
-
export declare type TileCatalogServiceInfoDc = ServiceInfoDc & {
|
|
4301
|
-
geometryType?: GeometryType;
|
|
4302
|
-
layerDefinition: LayerDefinitionDc;
|
|
4303
|
-
style?: StyleDc;
|
|
4304
|
-
tileInfo: TileInfoDc;
|
|
4305
|
-
};
|
|
4306
|
-
/**
|
|
4307
|
-
* Configuration of a table for tile catalog layer.
|
|
4308
|
-
*/
|
|
4309
|
-
export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc & {
|
|
4310
|
-
type?: string;
|
|
4311
|
-
};
|
|
4312
4313
|
/**
|
|
4313
4314
|
* Tile info structure.
|
|
4314
4315
|
*/
|
|
@@ -4385,280 +4386,68 @@ export interface TileInfoDc {
|
|
|
4385
4386
|
/**
|
|
4386
4387
|
* Service info for a tile service.
|
|
4387
4388
|
*/
|
|
4388
|
-
export
|
|
4389
|
+
export interface TileServiceInfoDc {
|
|
4390
|
+
/** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
|
|
4389
4391
|
tileInfo: TileInfoDc;
|
|
4390
|
-
|
|
4391
|
-
/**
|
|
4392
|
-
* The description of the tile feature layer service as a server task data storage.
|
|
4393
|
-
*/
|
|
4394
|
-
export declare type TilingTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
4395
|
-
serviceName: string;
|
|
4396
|
-
createNewService?: boolean;
|
|
4397
|
-
type?: string;
|
|
4398
|
-
};
|
|
4399
|
-
/**
|
|
4400
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolGeoParametersDc provides setting of the map.
|
|
4401
|
-
*/
|
|
4402
|
-
export interface ToolGeoParametersDc {
|
|
4403
|
-
/**
|
|
4404
|
-
* Left longitude.
|
|
4405
|
-
* @format float
|
|
4406
|
-
*/
|
|
4407
|
-
leftLon?: number;
|
|
4408
|
-
/**
|
|
4409
|
-
* Bottom latitude.
|
|
4410
|
-
* @format float
|
|
4411
|
-
*/
|
|
4412
|
-
bottomLat?: number;
|
|
4413
|
-
/**
|
|
4414
|
-
* Right latitude.
|
|
4415
|
-
* @format float
|
|
4416
|
-
*/
|
|
4417
|
-
rightLon?: number;
|
|
4418
|
-
/**
|
|
4419
|
-
* Top latitude.
|
|
4420
|
-
* @format float
|
|
4421
|
-
*/
|
|
4422
|
-
topLat?: number;
|
|
4423
|
-
/**
|
|
4424
|
-
* Maximum scale.
|
|
4425
|
-
* @format float
|
|
4426
|
-
*/
|
|
4427
|
-
maxScale?: number;
|
|
4428
|
-
/**
|
|
4429
|
-
* Minimum scale.
|
|
4430
|
-
* @format float
|
|
4431
|
-
*/
|
|
4432
|
-
minScale?: number;
|
|
4433
|
-
}
|
|
4434
|
-
export interface ToolGroupInfoDc {
|
|
4435
|
-
/** @format int64 */
|
|
4436
|
-
id?: number;
|
|
4437
|
-
name?: string;
|
|
4438
|
-
tools?: string[];
|
|
4439
|
-
}
|
|
4440
|
-
/**
|
|
4441
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolGroupItemDc tool group info.
|
|
4442
|
-
*/
|
|
4443
|
-
export interface ToolGroupItemDc {
|
|
4444
|
-
/** @format int64 */
|
|
4445
|
-
id?: number;
|
|
4446
|
-
name?: string;
|
|
4447
|
-
}
|
|
4448
|
-
/**
|
|
4449
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolInfoDc provides geotool info.
|
|
4450
|
-
*/
|
|
4451
|
-
export interface ToolInfoDc {
|
|
4452
|
-
/** Type of the geotool configuration. */
|
|
4392
|
+
/** The type of the resource. */
|
|
4453
4393
|
type: string;
|
|
4454
|
-
/**
|
|
4455
|
-
|
|
4456
|
-
/**
|
|
4457
|
-
|
|
4458
|
-
/**
|
|
4394
|
+
/** The category of the service. */
|
|
4395
|
+
categories?: string[];
|
|
4396
|
+
/** Configuration of the service. */
|
|
4397
|
+
configuration?: ServiceConfigurationBaseDc;
|
|
4398
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4459
4399
|
name: string;
|
|
4460
|
-
/**
|
|
4461
|
-
|
|
4462
|
-
/**
|
|
4463
|
-
|
|
4464
|
-
/**
|
|
4465
|
-
specificationDescription?: string;
|
|
4466
|
-
/** Description of how geotool works. */
|
|
4467
|
-
helpDescription?: string;
|
|
4468
|
-
/** Image preview of the geotool. */
|
|
4469
|
-
preview?: string;
|
|
4470
|
-
/** Options describes parameters of the geotool. */
|
|
4471
|
-
options?: ToolOptionDc[];
|
|
4472
|
-
/** SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolGeoParametersDc provides setting of the map. */
|
|
4473
|
-
geoParameters?: ToolGeoParametersDc;
|
|
4474
|
-
/** A set of identifiers for the groups that the geo tool is a member of. */
|
|
4475
|
-
groups?: number[];
|
|
4476
|
-
/** Access control list for a security object. */
|
|
4477
|
-
permissions?: AccessControlListDc;
|
|
4478
|
-
}
|
|
4479
|
-
/**
|
|
4480
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolItemInfoDc provides data contract of geotool short info.
|
|
4481
|
-
*/
|
|
4482
|
-
export interface ToolItemInfoDc {
|
|
4483
|
-
systemName?: string;
|
|
4484
|
-
type?: string;
|
|
4485
|
-
headerName?: string;
|
|
4400
|
+
/** Resource alias. */
|
|
4401
|
+
alias?: string;
|
|
4402
|
+
/** Resource owner. */
|
|
4403
|
+
owner?: string;
|
|
4404
|
+
/** Resource description. */
|
|
4486
4405
|
description?: string;
|
|
4406
|
+
/** Resource preview. */
|
|
4487
4407
|
preview?: string;
|
|
4488
|
-
isFree?: boolean;
|
|
4489
|
-
groups?: ToolGroupItemDc[];
|
|
4490
|
-
}
|
|
4491
|
-
/**
|
|
4492
|
-
* SPCore.Modules.AnalyticsTools.Tools.ToolLaunchInfo describes entity of launched geotool.
|
|
4493
|
-
*/
|
|
4494
|
-
export interface ToolLaunchInfo {
|
|
4495
|
-
/** @format uuid */
|
|
4496
|
-
taskId?: string;
|
|
4497
|
-
name?: string;
|
|
4498
|
-
type?: string;
|
|
4499
|
-
/**
|
|
4500
|
-
* The {ToolStatus} describes state of the tool.
|
|
4501
|
-
*
|
|
4502
|
-
* Pending
|
|
4503
|
-
*
|
|
4504
|
-
* Running
|
|
4505
|
-
*
|
|
4506
|
-
* Delivered
|
|
4507
|
-
*
|
|
4508
|
-
* Failed
|
|
4509
|
-
*
|
|
4510
|
-
* Completed
|
|
4511
|
-
*
|
|
4512
|
-
* Canceled
|
|
4513
|
-
*/
|
|
4514
|
-
status?: ToolStatus;
|
|
4515
|
-
startedBy?: string;
|
|
4516
|
-
message?: string;
|
|
4517
|
-
results?: string[];
|
|
4518
|
-
/** @format date-time */
|
|
4519
|
-
startedAt?: string;
|
|
4520
|
-
/** @format date-time */
|
|
4521
|
-
completedAt?: string;
|
|
4522
|
-
operations?: ToolOperation[];
|
|
4523
|
-
/** The {EvaluatedTool} describes evaluated tool. */
|
|
4524
|
-
evaluatedTool?: EvaluatedTool;
|
|
4525
|
-
}
|
|
4526
|
-
/**
|
|
4527
|
-
* The {ToolOperation} describes tool operation to evaluate.
|
|
4528
|
-
*/
|
|
4529
|
-
export interface ToolOperation {
|
|
4530
|
-
/** Operation name. */
|
|
4531
|
-
operation?: string;
|
|
4532
4408
|
/**
|
|
4533
|
-
*
|
|
4534
|
-
* @format
|
|
4409
|
+
* The date when resource was created.
|
|
4410
|
+
* @format date-time
|
|
4535
4411
|
*/
|
|
4536
|
-
|
|
4537
|
-
}
|
|
4538
|
-
/**
|
|
4539
|
-
* Describes tool operation.
|
|
4540
|
-
*/
|
|
4541
|
-
export interface ToolOperationDc {
|
|
4542
|
-
/** Name of the operation. */
|
|
4543
|
-
operationName?: string;
|
|
4412
|
+
createdDate?: string;
|
|
4544
4413
|
/**
|
|
4545
|
-
*
|
|
4546
|
-
* @format
|
|
4414
|
+
* The date when resource was last modified.
|
|
4415
|
+
* @format date-time
|
|
4547
4416
|
*/
|
|
4548
|
-
|
|
4549
|
-
}
|
|
4550
|
-
export interface ToolOptionDc {
|
|
4551
|
-
name?: string;
|
|
4552
|
-
header?: string;
|
|
4553
|
-
description?: string;
|
|
4554
|
-
extra?: string;
|
|
4555
|
-
}
|
|
4556
|
-
/**
|
|
4557
|
-
* Tool gets result task info.
|
|
4558
|
-
*/
|
|
4559
|
-
export interface ToolResultInfoDc {
|
|
4560
|
-
/** @format uuid */
|
|
4561
|
-
taskId?: string;
|
|
4417
|
+
changedDate?: string;
|
|
4562
4418
|
/**
|
|
4563
|
-
*
|
|
4564
|
-
*
|
|
4565
|
-
* None
|
|
4566
|
-
*
|
|
4567
|
-
* Scheduled
|
|
4568
|
-
*
|
|
4569
|
-
* Planning
|
|
4419
|
+
* User permissions for server security objects (services, projects etc.)
|
|
4570
4420
|
*
|
|
4571
|
-
*
|
|
4421
|
+
* none
|
|
4572
4422
|
*
|
|
4573
|
-
*
|
|
4423
|
+
* configure
|
|
4574
4424
|
*
|
|
4575
|
-
*
|
|
4425
|
+
* write
|
|
4576
4426
|
*
|
|
4577
|
-
*
|
|
4427
|
+
* read
|
|
4578
4428
|
*
|
|
4579
|
-
*
|
|
4580
|
-
*/
|
|
4581
|
-
status?: ServerTaskStatus;
|
|
4582
|
-
message?: string;
|
|
4583
|
-
/** Describes a storage where task will save result. */
|
|
4584
|
-
resultInfo?: StorageResultInfoDc;
|
|
4585
|
-
}
|
|
4586
|
-
/**
|
|
4587
|
-
* SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolsPagedListDc provides paged list of SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolItemInfoDc.
|
|
4588
|
-
*/
|
|
4589
|
-
export interface ToolsPagedListDc {
|
|
4590
|
-
/** List of SPCore.Modules.AnalyticsTools.DataContracts.ToolsCatalog.ToolItemInfoDc. */
|
|
4591
|
-
results?: ToolItemInfoDc[];
|
|
4592
|
-
/** Next page link. */
|
|
4593
|
-
next?: string;
|
|
4594
|
-
/** Previous page link. */
|
|
4595
|
-
previous?: string;
|
|
4596
|
-
/**
|
|
4597
|
-
* Total count of items.
|
|
4598
|
-
* @format int64
|
|
4599
|
-
*/
|
|
4600
|
-
count?: number;
|
|
4601
|
-
}
|
|
4602
|
-
/**
|
|
4603
|
-
* The {ToolStatus} describes state of the tool.
|
|
4604
|
-
|
|
4605
|
-
Pending
|
|
4606
|
-
|
|
4607
|
-
Running
|
|
4608
|
-
|
|
4609
|
-
Delivered
|
|
4610
|
-
|
|
4611
|
-
Failed
|
|
4612
|
-
|
|
4613
|
-
Completed
|
|
4614
|
-
|
|
4615
|
-
Canceled
|
|
4616
|
-
*/
|
|
4617
|
-
export declare enum ToolStatus {
|
|
4618
|
-
Pending = "Pending",
|
|
4619
|
-
Running = "Running",
|
|
4620
|
-
Delivered = "Delivered",
|
|
4621
|
-
Failed = "Failed",
|
|
4622
|
-
Completed = "Completed",
|
|
4623
|
-
Canceled = "Canceled"
|
|
4624
|
-
}
|
|
4625
|
-
export interface ToolStorageSettingsDc {
|
|
4626
|
-
/**
|
|
4627
|
-
* Tool result storage type.
|
|
4429
|
+
* read,configure
|
|
4628
4430
|
*
|
|
4629
|
-
*
|
|
4431
|
+
* read,write
|
|
4630
4432
|
*
|
|
4631
|
-
*
|
|
4433
|
+
* read,write,configure
|
|
4632
4434
|
*/
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
staticStorage
|
|
4639
|
-
|
|
4640
|
-
layersStorage
|
|
4641
|
-
*/
|
|
4642
|
-
export declare enum ToolStorageType {
|
|
4643
|
-
StaticStorage = "staticStorage",
|
|
4644
|
-
LayersStorage = "layersStorage"
|
|
4435
|
+
permissions?: Permissions;
|
|
4436
|
+
/** Access control list. */
|
|
4437
|
+
acl?: AccessControlListDc;
|
|
4438
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4439
|
+
icon?: string;
|
|
4645
4440
|
}
|
|
4646
|
-
export declare type TracksSymbolDc = TrackSymbolBaseDc & {
|
|
4647
|
-
type?: string;
|
|
4648
|
-
pointSymbol?: CirclePointSymbolDc;
|
|
4649
|
-
lineSymbol?: PolylineSymbolDc;
|
|
4650
|
-
};
|
|
4651
|
-
export declare type TrackSymbolBaseDc = SymbolDc & {
|
|
4652
|
-
groupAttribute?: string;
|
|
4653
|
-
sourceAttribute?: string;
|
|
4654
|
-
maxSelectionSize?: number;
|
|
4655
|
-
};
|
|
4656
4441
|
/**
|
|
4657
4442
|
* The operation that unites the features in the storage.
|
|
4658
4443
|
*/
|
|
4659
|
-
export
|
|
4444
|
+
export interface UnionTaskParametersDc {
|
|
4660
4445
|
type?: string;
|
|
4661
|
-
|
|
4446
|
+
/** Storage that is to be used as a data source for the task. */
|
|
4447
|
+
source: BaseTaskDataStorageDc;
|
|
4448
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
4449
|
+
target: BaseTaskDataStorageDc;
|
|
4450
|
+
}
|
|
4662
4451
|
/**
|
|
4663
4452
|
* Update role data contract.
|
|
4664
4453
|
*/
|
|
@@ -4673,16 +4462,64 @@ export interface UpdateRoleDc {
|
|
|
4673
4462
|
/**
|
|
4674
4463
|
* Table description with columns what must be added and deleted.
|
|
4675
4464
|
*/
|
|
4676
|
-
export
|
|
4465
|
+
export interface UpdateTableDc {
|
|
4466
|
+
/** Description of table columns what must be added. */
|
|
4677
4467
|
columnsAdd?: ColumnDescriptionDc[];
|
|
4468
|
+
/** Table columns what must be deleted. */
|
|
4678
4469
|
columnsDelete?: string[];
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
/**
|
|
4470
|
+
/**
|
|
4471
|
+
* Row count.
|
|
4472
|
+
* @format int64
|
|
4473
|
+
*/
|
|
4474
|
+
rowCount?: number;
|
|
4475
|
+
/** The geometry of the table. */
|
|
4476
|
+
geometries?: GeometryType[];
|
|
4477
|
+
/** The type of the table. */
|
|
4478
|
+
type?: string;
|
|
4479
|
+
/** Configuration of the table. */
|
|
4480
|
+
configuration?: TableConfigurationBaseDc;
|
|
4481
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4685
4482
|
name: string;
|
|
4483
|
+
/** Resource alias. */
|
|
4484
|
+
alias?: string;
|
|
4485
|
+
/** Resource owner. */
|
|
4486
|
+
owner?: string;
|
|
4487
|
+
/** Resource description. */
|
|
4488
|
+
description?: string;
|
|
4489
|
+
/** Resource preview. */
|
|
4490
|
+
preview?: string;
|
|
4491
|
+
/**
|
|
4492
|
+
* The date when resource was created.
|
|
4493
|
+
* @format date-time
|
|
4494
|
+
*/
|
|
4495
|
+
createdDate?: string;
|
|
4496
|
+
/**
|
|
4497
|
+
* The date when resource was last modified.
|
|
4498
|
+
* @format date-time
|
|
4499
|
+
*/
|
|
4500
|
+
changedDate?: string;
|
|
4501
|
+
/**
|
|
4502
|
+
* User permissions for server security objects (services, projects etc.)
|
|
4503
|
+
*
|
|
4504
|
+
* none
|
|
4505
|
+
*
|
|
4506
|
+
* configure
|
|
4507
|
+
*
|
|
4508
|
+
* write
|
|
4509
|
+
*
|
|
4510
|
+
* read
|
|
4511
|
+
*
|
|
4512
|
+
* read,configure
|
|
4513
|
+
*
|
|
4514
|
+
* read,write
|
|
4515
|
+
*
|
|
4516
|
+
* read,write,configure
|
|
4517
|
+
*/
|
|
4518
|
+
permissions?: Permissions;
|
|
4519
|
+
/** Access control list. */
|
|
4520
|
+
acl?: AccessControlListDc;
|
|
4521
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4522
|
+
icon?: string;
|
|
4686
4523
|
}
|
|
4687
4524
|
/**
|
|
4688
4525
|
* Update user data contract.
|
|
@@ -4725,14 +4562,22 @@ export interface UpdateUserDc {
|
|
|
4725
4562
|
/**
|
|
4726
4563
|
* Upload raster task parameters data contract.
|
|
4727
4564
|
*/
|
|
4728
|
-
export
|
|
4729
|
-
|
|
4565
|
+
export interface UploadRasterTaskParametersDc {
|
|
4566
|
+
/** Storage that is to be used as a target for writing the task result. */
|
|
4567
|
+
target: BaseTaskDataStorageDc;
|
|
4568
|
+
/** Names of the image files to tile. */
|
|
4730
4569
|
files: string[];
|
|
4570
|
+
/** Feature attributes collection. */
|
|
4731
4571
|
attributes?: Record<string, any>;
|
|
4572
|
+
/**
|
|
4573
|
+
* Max zoom level to read.
|
|
4574
|
+
* @format int32
|
|
4575
|
+
*/
|
|
4732
4576
|
maxZoomLevel: number;
|
|
4577
|
+
/** Get geometry from bbox or polygonize. */
|
|
4733
4578
|
polygonize?: boolean;
|
|
4734
4579
|
type?: string;
|
|
4735
|
-
}
|
|
4580
|
+
}
|
|
4736
4581
|
/**
|
|
4737
4582
|
* Set used project.
|
|
4738
4583
|
*/
|
|
@@ -4781,96 +4626,8 @@ export interface UserOrRoleDc {
|
|
|
4781
4626
|
/** true if item is role otherwise false. */
|
|
4782
4627
|
isRole?: boolean;
|
|
4783
4628
|
/** User own role. */
|
|
4784
|
-
|
|
4785
|
-
}
|
|
4786
|
-
/**
|
|
4787
|
-
* Error rise to validate invalid parameters.
|
|
4788
|
-
*/
|
|
4789
|
-
export interface ValidationErrorsException {
|
|
4790
|
-
/**
|
|
4791
|
-
* Error status code.
|
|
4792
|
-
*
|
|
4793
|
-
* NotSpecified
|
|
4794
|
-
*
|
|
4795
|
-
* LimitError
|
|
4796
|
-
*
|
|
4797
|
-
* ValidationError
|
|
4798
|
-
*
|
|
4799
|
-
* JwtExpired
|
|
4800
|
-
*
|
|
4801
|
-
* TokenInvalid
|
|
4802
|
-
*
|
|
4803
|
-
* RefreshTokenExpired
|
|
4804
|
-
*
|
|
4805
|
-
* RefreshTokenInvalid
|
|
4806
|
-
*
|
|
4807
|
-
* CreateUserFailed
|
|
4808
|
-
*
|
|
4809
|
-
* SetUserPasswordFailed
|
|
4810
|
-
*
|
|
4811
|
-
* SetUserRoleFailed
|
|
4812
|
-
*
|
|
4813
|
-
* UpdateUserFailed
|
|
4814
|
-
*
|
|
4815
|
-
* RemoveUserFailed
|
|
4816
|
-
*
|
|
4817
|
-
* CreateRoleFailed
|
|
4818
|
-
*
|
|
4819
|
-
* UpdateRoleFailed
|
|
4820
|
-
*
|
|
4821
|
-
* RemoveUserRoleFailed
|
|
4822
|
-
*
|
|
4823
|
-
* ChangeActiveStateFailed
|
|
4824
|
-
*
|
|
4825
|
-
* RemoveRoleFailed
|
|
4826
|
-
*
|
|
4827
|
-
* UserNotFound
|
|
4828
|
-
*
|
|
4829
|
-
* RoleNotFound
|
|
4830
|
-
*
|
|
4831
|
-
* EmailNotConfirmed
|
|
4832
|
-
*
|
|
4833
|
-
* DuplicateEmailError
|
|
4834
|
-
*
|
|
4835
|
-
* InvalidPassword
|
|
4836
|
-
*
|
|
4837
|
-
* RoleExists
|
|
4838
|
-
*
|
|
4839
|
-
* UserExists
|
|
4840
|
-
*
|
|
4841
|
-
* UserLockedError
|
|
4842
|
-
*
|
|
4843
|
-
* InvalidEmail
|
|
4844
|
-
*
|
|
4845
|
-
* InvalidUsername
|
|
4846
|
-
*
|
|
4847
|
-
* Unauthorized
|
|
4848
|
-
*
|
|
4849
|
-
* EmailNotChanged
|
|
4850
|
-
*
|
|
4851
|
-
* EmailNotSet
|
|
4852
|
-
*/
|
|
4853
|
-
ErrorType?: ErrorType;
|
|
4854
|
-
StatusCode?: HttpStatusCode;
|
|
4855
|
-
/** Validation errors. */
|
|
4856
|
-
Errors?: IValidationError[];
|
|
4857
|
-
/** Exception message. */
|
|
4858
|
-
ExceptionMessage?: string;
|
|
4859
|
-
}
|
|
4860
|
-
export interface Vector2 {
|
|
4861
|
-
/** @format int32 */
|
|
4862
|
-
dimensions?: number;
|
|
4863
|
-
/** @format double */
|
|
4864
|
-
x?: number;
|
|
4865
|
-
/** @format double */
|
|
4866
|
-
y?: number;
|
|
4867
|
-
}
|
|
4868
|
-
/**
|
|
4869
|
-
* Configuration of a table for feature layer.
|
|
4870
|
-
*/
|
|
4871
|
-
export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
4872
|
-
type?: string;
|
|
4873
|
-
};
|
|
4629
|
+
aclRole?: string;
|
|
4630
|
+
}
|
|
4874
4631
|
/**
|
|
4875
4632
|
* Workspace limits data contract.
|
|
4876
4633
|
*/
|
|
@@ -5030,18 +4787,10 @@ export interface UploadPreviewPayload {
|
|
|
5030
4787
|
/** @format binary */
|
|
5031
4788
|
file?: File;
|
|
5032
4789
|
}
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
name: string;
|
|
5038
|
-
}
|
|
5039
|
-
export interface IsAutoshareListExistsParams {
|
|
5040
|
-
/** Type of the resource. */
|
|
5041
|
-
type: string;
|
|
5042
|
-
/** Name of the resource. */
|
|
5043
|
-
name: string;
|
|
5044
|
-
}
|
|
4790
|
+
/**
|
|
4791
|
+
* Provides resources with their acl.
|
|
4792
|
+
*/
|
|
4793
|
+
export declare type BatchResourcesPermissionsSetPayload = BatchResourcesAclDc;
|
|
5045
4794
|
export interface GetConfigurationsListParams {
|
|
5046
4795
|
/**
|
|
5047
4796
|
* Offset.
|
|
@@ -5069,21 +4818,6 @@ export interface RemoveConfigurationParams {
|
|
|
5069
4818
|
/** URL path. */
|
|
5070
4819
|
urlPath: string;
|
|
5071
4820
|
}
|
|
5072
|
-
export declare type AddFavoritesPayload = string[];
|
|
5073
|
-
export interface RemoveFavoritesParams {
|
|
5074
|
-
/** A list of resources to add. */
|
|
5075
|
-
resources?: string[];
|
|
5076
|
-
/**
|
|
5077
|
-
* Type of the resource.
|
|
5078
|
-
*
|
|
5079
|
-
* tables
|
|
5080
|
-
*
|
|
5081
|
-
* layers
|
|
5082
|
-
*
|
|
5083
|
-
* projects
|
|
5084
|
-
*/
|
|
5085
|
-
resourceType: ResourceTypeLink;
|
|
5086
|
-
}
|
|
5087
4821
|
export interface IncreaseResourcesLimitParams {
|
|
5088
4822
|
/**
|
|
5089
4823
|
* Additional maps count.
|
|
@@ -5178,6 +4912,10 @@ export interface GetCsvDataSchemaParams {
|
|
|
5178
4912
|
/** Coord source fields. */
|
|
5179
4913
|
coordSourceFields?: string[];
|
|
5180
4914
|
}
|
|
4915
|
+
export interface GetKmlDataSchemaParams {
|
|
4916
|
+
/** Id of the kml file in the temporary static storage. */
|
|
4917
|
+
fileId?: string;
|
|
4918
|
+
}
|
|
5181
4919
|
export interface GetRasterAttributesParams {
|
|
5182
4920
|
/** File name in the temporary static storage. */
|
|
5183
4921
|
fileName?: string;
|
|
@@ -5187,7 +4925,7 @@ export interface GetLayersListParams {
|
|
|
5187
4925
|
* Full text query filter that allow to query in alias and name fields.
|
|
5188
4926
|
* <remarks>
|
|
5189
4927
|
* Additional, query string may contains special symbols for filter (by default query by full match)
|
|
5190
|
-
* <br
|
|
4928
|
+
* <br>`^` - query any value that begins with query.<br>`@` - query any value that contains query.</remarks>
|
|
5191
4929
|
*/
|
|
5192
4930
|
filter?: string;
|
|
5193
4931
|
/** Filter by a collection of layers types. Sends in comma separated way. */
|
|
@@ -5216,18 +4954,69 @@ export interface GetLayersListParams {
|
|
|
5216
4954
|
group?: Group;
|
|
5217
4955
|
/** Strict list of names of the resources to get. */
|
|
5218
4956
|
names?: string[];
|
|
5219
|
-
/** A list of
|
|
4957
|
+
/** A list of `ServiceInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
|
|
5220
4958
|
orderByFields?: string[];
|
|
5221
4959
|
/** Filters layers by geometry types. */
|
|
5222
4960
|
geometryFilter?: string[];
|
|
5223
|
-
/** Filters layers list by users favorite. */
|
|
5224
|
-
isFavorite?: boolean;
|
|
5225
4961
|
}
|
|
5226
4962
|
export declare type SetPermissionsBatchPayload = ResourceAclDc[];
|
|
5227
4963
|
export interface DeleteResourcesParams {
|
|
5228
4964
|
/** Resource names. */
|
|
5229
4965
|
names?: string[];
|
|
5230
4966
|
}
|
|
4967
|
+
/**
|
|
4968
|
+
* Configuration for the proxy service.
|
|
4969
|
+
*/
|
|
4970
|
+
export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4971
|
+
/**
|
|
4972
|
+
* Configuration for the remote tile service.
|
|
4973
|
+
*/
|
|
4974
|
+
export declare type PublishRemoteTileServicePayload = RemoteTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4975
|
+
/**
|
|
4976
|
+
* Configuration for the local tile service.
|
|
4977
|
+
*/
|
|
4978
|
+
export declare type PublishLocalTileServicePayload = LocalTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4979
|
+
/**
|
|
4980
|
+
* Configuration of a postgres feature layer service.
|
|
4981
|
+
*/
|
|
4982
|
+
export declare type PublishPostgresLayerServicePayload = PostgresLayerServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4983
|
+
/**
|
|
4984
|
+
* Configuration of a postgres tile catalog service.
|
|
4985
|
+
*/
|
|
4986
|
+
export declare type PublishPostgresTileCatalogServicePayload = PostgresTileCatalogServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4987
|
+
/**
|
|
4988
|
+
* Configuration for the proxy service.
|
|
4989
|
+
*/
|
|
4990
|
+
export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4991
|
+
/**
|
|
4992
|
+
* Configuration of a postgres tile catalog service.
|
|
4993
|
+
*/
|
|
4994
|
+
export declare type UpdateTileCatalogServicePayload = PostgresTileCatalogServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
4995
|
+
/**
|
|
4996
|
+
* Configuration of a styled layer service. This service type is a visual feature layer,
|
|
4997
|
+
that overrides the base layer styling with its' own style.
|
|
4998
|
+
*/
|
|
4999
|
+
export declare type PublishStyledLayerServicePayload = StyledLayerServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5000
|
+
/**
|
|
5001
|
+
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
5002
|
+
*/
|
|
5003
|
+
export declare type PublishCompositeServicePayload = CompositeServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5004
|
+
/**
|
|
5005
|
+
* Configuration for the remote tile service.
|
|
5006
|
+
*/
|
|
5007
|
+
export declare type UpdateRemoteTileServicePayload = RemoteTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5008
|
+
/**
|
|
5009
|
+
* Configuration for the local tile service.
|
|
5010
|
+
*/
|
|
5011
|
+
export declare type UpdateLocalTileServicePayload = LocalTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5012
|
+
/**
|
|
5013
|
+
* Configuration of a postgres feature layer service.
|
|
5014
|
+
*/
|
|
5015
|
+
export declare type UpdatePostgresLayerServicePayload = PostgresLayerServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5016
|
+
/**
|
|
5017
|
+
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
5018
|
+
*/
|
|
5019
|
+
export declare type UpdateCompositeServicePayload = CompositeServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5231
5020
|
export interface GetFeaturesParams {
|
|
5232
5021
|
/** Sets features filtering query. */
|
|
5233
5022
|
query?: string;
|
|
@@ -5314,7 +5103,7 @@ export interface GetByIdParams {
|
|
|
5314
5103
|
/**
|
|
5315
5104
|
* Geometry object.
|
|
5316
5105
|
*/
|
|
5317
|
-
export declare type UnitePayload =
|
|
5106
|
+
export declare type UnitePayload = GeometryDc;
|
|
5318
5107
|
export interface UniteParams {
|
|
5319
5108
|
/**
|
|
5320
5109
|
* Spatial reference of result feature.
|
|
@@ -5329,7 +5118,7 @@ export interface UniteParams {
|
|
|
5329
5118
|
/**
|
|
5330
5119
|
* Geometry object.
|
|
5331
5120
|
*/
|
|
5332
|
-
export declare type SubtractPayload =
|
|
5121
|
+
export declare type SubtractPayload = GeometryDc;
|
|
5333
5122
|
export interface SubtractParams {
|
|
5334
5123
|
/**
|
|
5335
5124
|
* Spatial reference id of result features.
|
|
@@ -5374,6 +5163,11 @@ export interface GetLayerImageParams {
|
|
|
5374
5163
|
extentSr?: number;
|
|
5375
5164
|
/** Condition to apply to the layer to filter the features. */
|
|
5376
5165
|
condition?: string;
|
|
5166
|
+
/**
|
|
5167
|
+
* Opacity to apply to the layer image.
|
|
5168
|
+
* @format float
|
|
5169
|
+
*/
|
|
5170
|
+
opacity?: number;
|
|
5377
5171
|
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
5378
5172
|
styleId?: string;
|
|
5379
5173
|
/** Full name of the layer. */
|
|
@@ -5413,7 +5207,7 @@ export interface GetByGeometryParams {
|
|
|
5413
5207
|
/**
|
|
5414
5208
|
* Geometry object.
|
|
5415
5209
|
*/
|
|
5416
|
-
export declare type GetByGeometryPostPayload =
|
|
5210
|
+
export declare type GetByGeometryPostPayload = GeometryDc;
|
|
5417
5211
|
export interface GetByGeometryPostParams {
|
|
5418
5212
|
/**
|
|
5419
5213
|
* Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
|
|
@@ -5434,6 +5228,14 @@ export interface DeleteFeaturesParams {
|
|
|
5434
5228
|
/** Full name of the layer. */
|
|
5435
5229
|
name: string;
|
|
5436
5230
|
}
|
|
5231
|
+
export interface DeleteByConditionParams {
|
|
5232
|
+
/** Filtering query. */
|
|
5233
|
+
condition?: string;
|
|
5234
|
+
/** Excluded ids. */
|
|
5235
|
+
excludedIds?: string[];
|
|
5236
|
+
/** Full name of the layer. */
|
|
5237
|
+
name: string;
|
|
5238
|
+
}
|
|
5437
5239
|
export interface GetByGeometryGetParams {
|
|
5438
5240
|
/** Screen image bbox rectangle. */
|
|
5439
5241
|
imageRectangle?: number[];
|
|
@@ -5526,6 +5328,12 @@ export interface AggregateAttributeParams {
|
|
|
5526
5328
|
* Count
|
|
5527
5329
|
*
|
|
5528
5330
|
* OnlyValue
|
|
5331
|
+
*
|
|
5332
|
+
* WeightedAvg
|
|
5333
|
+
*
|
|
5334
|
+
* DensityIndicators
|
|
5335
|
+
*
|
|
5336
|
+
* DividedSum
|
|
5529
5337
|
*/
|
|
5530
5338
|
aggregationFunctionName?: AggregationFunction;
|
|
5531
5339
|
/** A list of attributes to group. */
|
|
@@ -5547,6 +5355,10 @@ export interface GetFilteredFeaturesCountParams {
|
|
|
5547
5355
|
/** Layer name. */
|
|
5548
5356
|
name: string;
|
|
5549
5357
|
}
|
|
5358
|
+
/**
|
|
5359
|
+
* Provides attributes edit info.
|
|
5360
|
+
*/
|
|
5361
|
+
export declare type EditAttributesPayload = EditAttributesInfoDc;
|
|
5550
5362
|
export interface SelectFeaturesParams {
|
|
5551
5363
|
/** Comma separated list of layer names. */
|
|
5552
5364
|
layers?: string[];
|
|
@@ -5580,6 +5392,14 @@ export interface SetPreviewPayload {
|
|
|
5580
5392
|
/** @format binary */
|
|
5581
5393
|
file?: File;
|
|
5582
5394
|
}
|
|
5395
|
+
/**
|
|
5396
|
+
* Access control list for a security object.
|
|
5397
|
+
*/
|
|
5398
|
+
export declare type AddPermissionsPayload = AccessControlListDc;
|
|
5399
|
+
/**
|
|
5400
|
+
* Access control list for a security object.
|
|
5401
|
+
*/
|
|
5402
|
+
export declare type SetPermissionsPayload = AccessControlListDc;
|
|
5583
5403
|
export interface GetNamespacesParams {
|
|
5584
5404
|
/** String filter for the namespace (uses % and _ wild cards like SQL). */
|
|
5585
5405
|
filter?: string;
|
|
@@ -5617,11 +5437,11 @@ export declare type UnsubscribeListOperationPayload = string[];
|
|
|
5617
5437
|
/**
|
|
5618
5438
|
* Base template model data contract.
|
|
5619
5439
|
*/
|
|
5620
|
-
export declare type PrintPayload =
|
|
5440
|
+
export declare type PrintPayload = TemplateModelDc;
|
|
5621
5441
|
/**
|
|
5622
5442
|
* Base template model data contract.
|
|
5623
5443
|
*/
|
|
5624
|
-
export declare type PrintToHtmlPayload =
|
|
5444
|
+
export declare type PrintToHtmlPayload = TemplateModelDc;
|
|
5625
5445
|
export interface UploadTemplatePayload {
|
|
5626
5446
|
/** @format binary */
|
|
5627
5447
|
template?: File;
|
|
@@ -5632,6 +5452,10 @@ export interface UploadTemplateParams {
|
|
|
5632
5452
|
/** Rewrite if exits. */
|
|
5633
5453
|
rewrite?: boolean;
|
|
5634
5454
|
}
|
|
5455
|
+
/**
|
|
5456
|
+
* The `SharedProjectConfigurationDc` describes shared project configuration.
|
|
5457
|
+
*/
|
|
5458
|
+
export declare type CreateShareProjectPayload = SharedProjectConfigurationDc | ServiceConfigurationBaseDc | CompositeServiceConfigurationDc;
|
|
5635
5459
|
export interface GetProjectsListParams {
|
|
5636
5460
|
/** Project name filter (support % and _ wildcards). */
|
|
5637
5461
|
filter?: string;
|
|
@@ -5657,115 +5481,34 @@ export interface GetProjectsListParams {
|
|
|
5657
5481
|
* all
|
|
5658
5482
|
*/
|
|
5659
5483
|
group?: Group;
|
|
5660
|
-
/** A list of
|
|
5484
|
+
/** A list of `ProjectInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
|
|
5661
5485
|
orderByFields?: string[];
|
|
5662
|
-
/** Filters projects list by users favorite. */
|
|
5663
|
-
isFavorite?: boolean;
|
|
5664
5486
|
}
|
|
5487
|
+
/**
|
|
5488
|
+
* Project extended configuration data contract.
|
|
5489
|
+
*/
|
|
5490
|
+
export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
5665
5491
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5492
|
+
/**
|
|
5493
|
+
* Project extended configuration data contract.
|
|
5494
|
+
*/
|
|
5495
|
+
export declare type UpdateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
5666
5496
|
export interface SetPreviewBody {
|
|
5667
5497
|
/** @format binary */
|
|
5668
5498
|
file?: File;
|
|
5669
5499
|
}
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5680
|
-
* @format int32
|
|
5681
|
-
*/
|
|
5682
|
-
offset?: number;
|
|
5683
|
-
/**
|
|
5684
|
-
* Objects count have to skip.
|
|
5685
|
-
* @format int32
|
|
5686
|
-
*/
|
|
5687
|
-
limit?: number;
|
|
5688
|
-
/** A list of {ResourceInfoDc} fields for sorting. If a field starts with {-} ordering is by descending. */
|
|
5689
|
-
orderByFields?: string[];
|
|
5690
|
-
/** Filters projects list by users favorite. */
|
|
5691
|
-
isFavorite?: boolean;
|
|
5692
|
-
}
|
|
5693
|
-
export interface GetTablesParams {
|
|
5694
|
-
/**
|
|
5695
|
-
* Full text search filter that allow to query in alias and name fields.
|
|
5696
|
-
* Additional, query string may contains special symbols for filter (by default search by full match)
|
|
5697
|
-
* 1. '^' - search any value that begins with query.
|
|
5698
|
-
* 2. '@' - search any value that contains query.
|
|
5699
|
-
*/
|
|
5700
|
-
filter?: string;
|
|
5701
|
-
/**
|
|
5702
|
-
* Objects limit per response.
|
|
5703
|
-
* @format int32
|
|
5704
|
-
*/
|
|
5705
|
-
offset?: number;
|
|
5706
|
-
/**
|
|
5707
|
-
* Objects count have to skip.
|
|
5708
|
-
* @format int32
|
|
5709
|
-
*/
|
|
5710
|
-
limit?: number;
|
|
5711
|
-
/** A list of {ResourceInfoDc} fields for sorting. If a field starts with {-} ordering is by descending. */
|
|
5712
|
-
orderByFields?: string[];
|
|
5713
|
-
/** Filters layers by geometry types. */
|
|
5714
|
-
geometryFilter?: string[];
|
|
5715
|
-
/** Filters projects list by users favorite. */
|
|
5716
|
-
isFavorite?: boolean;
|
|
5717
|
-
}
|
|
5718
|
-
export interface GetLayersParams {
|
|
5719
|
-
/**
|
|
5720
|
-
* Full text search filter that allow to query in alias and name fields.
|
|
5721
|
-
* Additional, query string may contains special symbols for filter (by default search by full match)
|
|
5722
|
-
* 1. '^' - search any value that begins with query.
|
|
5723
|
-
* 2. '@' - search any value that contains query.
|
|
5724
|
-
*/
|
|
5725
|
-
filter?: string;
|
|
5726
|
-
/** Filter by services types in comma separated way. */
|
|
5727
|
-
types?: string[];
|
|
5728
|
-
/**
|
|
5729
|
-
* Objects limit per response.
|
|
5730
|
-
* @format int32
|
|
5731
|
-
*/
|
|
5732
|
-
offset?: number;
|
|
5733
|
-
/**
|
|
5734
|
-
* Objects count have to skip.
|
|
5735
|
-
* @format int32
|
|
5736
|
-
*/
|
|
5737
|
-
limit?: number;
|
|
5738
|
-
/** A list of {ResourceInfoDc} fields for sorting. If a field starts with {-} ordering is by descending. */
|
|
5739
|
-
orderByFields?: string[];
|
|
5740
|
-
/** Filters layers by geometry types. */
|
|
5741
|
-
geometryFilter?: string[];
|
|
5742
|
-
/** Filter favorite resources. */
|
|
5743
|
-
isFavorite?: boolean;
|
|
5744
|
-
}
|
|
5745
|
-
export declare type AddResourcesPayload = ResourceDc[];
|
|
5746
|
-
export interface AddResourcesParams {
|
|
5747
|
-
/** Name of the user. */
|
|
5500
|
+
/**
|
|
5501
|
+
* Access control list for a security object.
|
|
5502
|
+
*/
|
|
5503
|
+
export declare type AddPermissionsBody = AccessControlListDc;
|
|
5504
|
+
/**
|
|
5505
|
+
* Access control list for a security object.
|
|
5506
|
+
*/
|
|
5507
|
+
export declare type SetPermissionsBody = AccessControlListDc;
|
|
5508
|
+
export interface CheckLimitsParams {
|
|
5509
|
+
/** Workspace. */
|
|
5748
5510
|
userName?: string;
|
|
5749
5511
|
}
|
|
5750
|
-
export declare type TouchResourcesPayload = string[];
|
|
5751
|
-
export declare type ShareResourcesPayload = string[];
|
|
5752
|
-
export declare type UnshareResourcesPayload = string[];
|
|
5753
|
-
export interface RemoveResource1Params {
|
|
5754
|
-
/** Full name of the resource. */
|
|
5755
|
-
resource?: string;
|
|
5756
|
-
/** A list of users. */
|
|
5757
|
-
users?: string[];
|
|
5758
|
-
/**
|
|
5759
|
-
* Catalog resource type SPCore.Connectors.Connectors.Base.Models.ResourceTypeLink.
|
|
5760
|
-
*
|
|
5761
|
-
* tables
|
|
5762
|
-
*
|
|
5763
|
-
* layers
|
|
5764
|
-
*
|
|
5765
|
-
* projects
|
|
5766
|
-
*/
|
|
5767
|
-
resourceType: ResourceTypeLink;
|
|
5768
|
-
}
|
|
5769
5512
|
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
5770
5513
|
export interface GetResourceParams {
|
|
5771
5514
|
/** Object name. */
|
|
@@ -5814,12 +5557,49 @@ export interface GetTaskListParams {
|
|
|
5814
5557
|
*/
|
|
5815
5558
|
limit?: number;
|
|
5816
5559
|
}
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
|
|
5560
|
+
/**
|
|
5561
|
+
* Server task that copies the objects from one storage to another.
|
|
5562
|
+
*/
|
|
5563
|
+
export declare type StartCopyTaskPayload = CopyTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5564
|
+
/**
|
|
5565
|
+
* Server task that aggregate the objects from one storage to another by polygon geometry.
|
|
5566
|
+
*/
|
|
5567
|
+
export declare type StartAggregateTaskPayload = AggregateTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5568
|
+
/**
|
|
5569
|
+
* Buffer operation calculates the buffer geometries around the input geometries and writes them
|
|
5570
|
+
into the target storage.
|
|
5571
|
+
*/
|
|
5572
|
+
export declare type StartBufferTaskPayload = BufferTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5573
|
+
/**
|
|
5574
|
+
* Print operation print map and map elements to png files.
|
|
5575
|
+
*/
|
|
5576
|
+
export declare type StartPrintTaskPayload = PrintTaskParametersDc | TaskParametersDc;
|
|
5577
|
+
/**
|
|
5578
|
+
* Upload raster task parameters data contract.
|
|
5579
|
+
*/
|
|
5580
|
+
export declare type StartTilingTaskPayload = UploadRasterTaskParametersDc | TaskParametersDc;
|
|
5581
|
+
/**
|
|
5582
|
+
* Availability area builder operation considers the nearest availability zones around the input geometries and writes them
|
|
5583
|
+
into the target storage.
|
|
5584
|
+
*/
|
|
5585
|
+
export declare type StartRouteTaskPayload = AvailabilityAreaTaskDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5586
|
+
/**
|
|
5587
|
+
* The operation that unites the features in the storage.
|
|
5588
|
+
*/
|
|
5589
|
+
export declare type StartUnionTaskPayload = UnionTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5590
|
+
/**
|
|
5591
|
+
* Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
|
|
5592
|
+
*/
|
|
5593
|
+
export declare type StartOverlayTaskPayload = OverlayTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5594
|
+
/**
|
|
5595
|
+
* Server task that copies the objects from the source storage that satisfy the filter conditions to the target layer.
|
|
5596
|
+
*/
|
|
5597
|
+
export declare type StartFilterCopyTaskPayload = FilterCopyTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
5598
|
+
/**
|
|
5599
|
+
* Pipeline of server tasks. The tasks given in the InnerTasks property are executed one after another inside one server task.
|
|
5600
|
+
*/
|
|
5601
|
+
export declare type StartPipelineTaskPayload = PipelineTaskParametersDc | TaskParametersDc;
|
|
5602
|
+
export declare type StartEditAttributesBatchPayload = EditAttributesTaskParametersDc | TaskParametersDc;
|
|
5823
5603
|
export interface FindUserByNameByRolesParams {
|
|
5824
5604
|
/** Roles. */
|
|
5825
5605
|
roles?: string[];
|
|
@@ -5866,6 +5646,7 @@ export interface RemovePolicyParams {
|
|
|
5866
5646
|
/** Use role the policy is applied to. */
|
|
5867
5647
|
role?: string;
|
|
5868
5648
|
}
|
|
5649
|
+
export declare type SetPolicyPayload = PolicyDc;
|
|
5869
5650
|
export interface DownloadFileParams {
|
|
5870
5651
|
/** Id of the file in the temporary static storage. */
|
|
5871
5652
|
fileName?: string;
|
|
@@ -5886,6 +5667,14 @@ export interface DeleteFileParams {
|
|
|
5886
5667
|
/** File id to delete. */
|
|
5887
5668
|
fileid?: string;
|
|
5888
5669
|
}
|
|
5670
|
+
/**
|
|
5671
|
+
* Feature layer rendering style.
|
|
5672
|
+
*/
|
|
5673
|
+
export declare type UpdateStylePayload = StyleDc;
|
|
5674
|
+
/**
|
|
5675
|
+
* Feature layer rendering style.
|
|
5676
|
+
*/
|
|
5677
|
+
export declare type CreateStylePayload = StyleDc;
|
|
5889
5678
|
export interface GetTableListParams {
|
|
5890
5679
|
/** Table name filter (support % and _ wildcards). */
|
|
5891
5680
|
filter?: string;
|
|
@@ -5913,14 +5702,20 @@ export interface GetTableListParams {
|
|
|
5913
5702
|
group?: Group;
|
|
5914
5703
|
/** Strict list of names of the resources to get. */
|
|
5915
5704
|
names?: string[];
|
|
5916
|
-
/** A list of
|
|
5705
|
+
/** A list of `TableListDc` fields for sorting. If a field starts with `-` ordering is by descending. */
|
|
5917
5706
|
orderByFields?: string[];
|
|
5918
|
-
/** Filters tables list by users favorite. */
|
|
5919
|
-
isFavorite?: boolean;
|
|
5920
5707
|
/** Filters layers by geometry types. */
|
|
5921
5708
|
geometryFilter?: string[];
|
|
5922
5709
|
}
|
|
5710
|
+
/**
|
|
5711
|
+
* Table description with columns and access control list.
|
|
5712
|
+
*/
|
|
5713
|
+
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
5923
5714
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
5715
|
+
/**
|
|
5716
|
+
* Table description with columns what must be added and deleted.
|
|
5717
|
+
*/
|
|
5718
|
+
export declare type UpdateTablePayload = UpdateTableDc | ResourceInfoDc | TableInfoDc;
|
|
5924
5719
|
export interface GetTableDataParams {
|
|
5925
5720
|
/** String filter for the all text column (uses % and _ wild cards like SQL). */
|
|
5926
5721
|
filter?: string;
|
|
@@ -5947,6 +5742,7 @@ export interface GetTableDataParams {
|
|
|
5947
5742
|
/** Name of the table. */
|
|
5948
5743
|
name: string;
|
|
5949
5744
|
}
|
|
5745
|
+
export declare type WriteTableDataPayload = Record<string, any>[];
|
|
5950
5746
|
export declare type UpdateTableDataPayload = Record<string, any>[];
|
|
5951
5747
|
export interface UpdateTableDataParams {
|
|
5952
5748
|
/** Id column name. */
|
|
@@ -5974,15 +5770,23 @@ export interface GetUniqueDataRowsParams {
|
|
|
5974
5770
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
|
|
5975
5771
|
<br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
|
|
5976
5772
|
*/
|
|
5977
|
-
export declare type MapTablePayload = MapTableInfoDc
|
|
5773
|
+
export declare type MapTablePayload = MapTableInfoDc;
|
|
5978
5774
|
export interface MapTableParams {
|
|
5979
5775
|
/** Type of data source. */
|
|
5980
5776
|
type?: string;
|
|
5981
5777
|
}
|
|
5778
|
+
/**
|
|
5779
|
+
* SPCore.Connectors.Connectors.Base.Models.Data.MapViewInfoDc provides map view data source data contract.
|
|
5780
|
+
*/
|
|
5781
|
+
export declare type MapViewPayload = MapViewInfoDc | MapTableInfoDc;
|
|
5982
5782
|
export interface MapViewParams {
|
|
5983
5783
|
/** Type of data source. */
|
|
5984
5784
|
type?: string;
|
|
5985
5785
|
}
|
|
5786
|
+
/**
|
|
5787
|
+
* SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
|
|
5788
|
+
*/
|
|
5789
|
+
export declare type MapRemoteTablePayload = MapRemoteTableInfoDc | MapTableInfoDc;
|
|
5986
5790
|
export interface MapRemoteTableParams {
|
|
5987
5791
|
/** Type of data source. */
|
|
5988
5792
|
type?: string;
|
|
@@ -5991,92 +5795,14 @@ export interface SetPreviewInput {
|
|
|
5991
5795
|
/** @format binary */
|
|
5992
5796
|
file?: File;
|
|
5993
5797
|
}
|
|
5994
|
-
export interface GetToolsParams {
|
|
5995
|
-
/**
|
|
5996
|
-
* Full text query filter that allow to query in alias and name fields.
|
|
5997
|
-
* <remarks>
|
|
5998
|
-
* Additional, query string may contains special symbols for filter (by default query by full match)
|
|
5999
|
-
* <br>{^} - query any value that begins with query.<br>{@} - query any value that contains query.</remarks>
|
|
6000
|
-
*/
|
|
6001
|
-
filter?: string;
|
|
6002
|
-
}
|
|
6003
|
-
export interface GetToolsNamesParams {
|
|
6004
|
-
/**
|
|
6005
|
-
* Full text query filter that allow to query in alias and name fields.
|
|
6006
|
-
* <remarks>
|
|
6007
|
-
* Additional, query string may contains special symbols for filter (by default query by full match)
|
|
6008
|
-
* <br>{^} - query any value that begins with query.<br>{@} - query any value that contains query.</remarks>
|
|
6009
|
-
*/
|
|
6010
|
-
filter?: string;
|
|
6011
|
-
/**
|
|
6012
|
-
* Limit of returns geotools names. Default limit value 15.
|
|
6013
|
-
* @format int32
|
|
6014
|
-
*/
|
|
6015
|
-
limit?: number;
|
|
6016
|
-
}
|
|
6017
|
-
export interface GetGroupsParams {
|
|
6018
|
-
/**
|
|
6019
|
-
* Full text query filter that allow to query in alias and name fields.
|
|
6020
|
-
* <remarks>
|
|
6021
|
-
* Additional, query string may contains special symbols for filter (by default query by full match)
|
|
6022
|
-
* <br>{^} - query any value that begins with query.<br>{@} - query any value that contains query.</remarks>
|
|
6023
|
-
*/
|
|
6024
|
-
filter?: string;
|
|
6025
|
-
}
|
|
6026
|
-
export interface GetGroupsInfoParams {
|
|
6027
|
-
/**
|
|
6028
|
-
* Full text query filter that allow to query in alias and name fields.
|
|
6029
|
-
* <remarks>
|
|
6030
|
-
* Additional, query string may contains special symbols for filter (by default query by full match)
|
|
6031
|
-
* <br>{^} - query any value that begins with query.<br>{@} - query any value that contains query.</remarks>
|
|
6032
|
-
*/
|
|
6033
|
-
filter?: string;
|
|
6034
|
-
/**
|
|
6035
|
-
* Limit of returns geotools names. Default limit value 15.
|
|
6036
|
-
* @format int32
|
|
6037
|
-
*/
|
|
6038
|
-
limit?: number;
|
|
6039
|
-
}
|
|
6040
5798
|
/**
|
|
6041
|
-
*
|
|
5799
|
+
* Access control list for a security object.
|
|
6042
5800
|
*/
|
|
6043
|
-
export declare type
|
|
6044
|
-
export interface EvaluateToolParams {
|
|
6045
|
-
/** Promo. */
|
|
6046
|
-
promo?: string;
|
|
6047
|
-
/** Name of the tool. */
|
|
6048
|
-
name: string;
|
|
6049
|
-
}
|
|
5801
|
+
export declare type AddPermissionsInput = AccessControlListDc;
|
|
6050
5802
|
/**
|
|
6051
|
-
*
|
|
5803
|
+
* Access control list for a security object.
|
|
6052
5804
|
*/
|
|
6053
|
-
export declare type
|
|
6054
|
-
export interface ExecuteToolParams {
|
|
6055
|
-
/** Promo. */
|
|
6056
|
-
promo?: string;
|
|
6057
|
-
/** Name of the tool. */
|
|
6058
|
-
name: string;
|
|
6059
|
-
}
|
|
6060
|
-
export interface GetToolsListsParams {
|
|
6061
|
-
/** Filters tools by name. */
|
|
6062
|
-
types?: string[];
|
|
6063
|
-
/**
|
|
6064
|
-
* Filters tools by status.
|
|
6065
|
-
*
|
|
6066
|
-
* Pending
|
|
6067
|
-
*
|
|
6068
|
-
* Running
|
|
6069
|
-
*
|
|
6070
|
-
* Delivered
|
|
6071
|
-
*
|
|
6072
|
-
* Failed
|
|
6073
|
-
*
|
|
6074
|
-
* Completed
|
|
6075
|
-
*
|
|
6076
|
-
* Canceled
|
|
6077
|
-
*/
|
|
6078
|
-
status?: ToolStatus;
|
|
6079
|
-
}
|
|
5805
|
+
export declare type SetPermissionsInput = AccessControlListDc;
|
|
6080
5806
|
export interface GetCapabilitiesParams {
|
|
6081
5807
|
/** Name of the service. */
|
|
6082
5808
|
Service?: string;
|
|
@@ -6087,7 +5813,7 @@ export interface GetCapabilitiesParams {
|
|
|
6087
5813
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6088
5814
|
AcceptFormats?: string[];
|
|
6089
5815
|
}
|
|
6090
|
-
export interface
|
|
5816
|
+
export interface GetCapabilitiesParams7 {
|
|
6091
5817
|
/** Output format of service metadata. */
|
|
6092
5818
|
Format?: string;
|
|
6093
5819
|
/** Must be WMS. */
|
|
@@ -6290,7 +6016,7 @@ export interface GetLegendGraphicParams {
|
|
|
6290
6016
|
/** Request version. */
|
|
6291
6017
|
Version?: string;
|
|
6292
6018
|
}
|
|
6293
|
-
export interface
|
|
6019
|
+
export interface GetCapabilities1Params {
|
|
6294
6020
|
/** Output format of service metadata. */
|
|
6295
6021
|
Format?: string;
|
|
6296
6022
|
/** Must be WMS. */
|