@evergis/api 3.0.92 → 3.0.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/__generated__/AccountService.d.ts +4 -4
- package/dist/__generated__/BulkOperationsService.d.ts +2 -2
- package/dist/__generated__/FiltersService.d.ts +3 -3
- package/dist/__generated__/GeneralService.d.ts +13 -2
- package/dist/__generated__/ImportService.d.ts +2 -2
- package/dist/__generated__/LayersService.d.ts +56 -23
- package/dist/__generated__/NamespaceService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +8 -8
- package/dist/__generated__/SchedulerService.d.ts +12 -12
- package/dist/__generated__/SecurityService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/StyleService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +12 -12
- package/dist/__generated__/TagsService.d.ts +31 -0
- package/dist/__generated__/WfsServerService.d.ts +23 -1
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +1128 -2135
- package/dist/api.cjs.development.js +83 -19
- 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 +292 -120
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Layers.d.ts +5 -5
- package/dist/services/Projects.d.ts +4 -4
- package/dist/services/Statistic.d.ts +2 -2
- package/dist/services/Tables.d.ts +3 -3
- package/package.json +2 -2
|
@@ -11,17 +11,18 @@ export interface AccessControlListDc {
|
|
|
11
11
|
/**
|
|
12
12
|
* Server task that aggregate the objects from one storage to another by polygon geometry.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
14
|
+
export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
|
|
15
15
|
type?: string;
|
|
16
|
-
|
|
17
|
-
geometry: BaseTaskDataStorageDc;
|
|
18
|
-
/** Storage that is to be used as a data source for the task. */
|
|
16
|
+
geometry: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
19
17
|
aggregationSettings: AggregationSettingDc[];
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
18
|
+
};
|
|
19
|
+
export declare type AggregatedClusterSymbolDc = SymbolDc & {
|
|
20
|
+
type?: string;
|
|
21
|
+
pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
22
|
+
gridSize?: number;
|
|
23
|
+
fixedCenter?: boolean;
|
|
24
|
+
aggregations?: Record<string, AggregationFunction>;
|
|
25
|
+
};
|
|
25
26
|
/**
|
|
26
27
|
* Describes data contract of aggregation result.
|
|
27
28
|
*/
|
|
@@ -49,6 +50,10 @@ export interface AggregationDataResultDc {
|
|
|
49
50
|
*
|
|
50
51
|
* Count
|
|
51
52
|
*
|
|
53
|
+
* TotalCount
|
|
54
|
+
*
|
|
55
|
+
* DistinctCount
|
|
56
|
+
*
|
|
52
57
|
* First
|
|
53
58
|
*
|
|
54
59
|
* Last
|
|
@@ -75,41 +80,45 @@ export interface AggregationDataResultDc {
|
|
|
75
80
|
}
|
|
76
81
|
/**
|
|
77
82
|
*
|
|
78
|
-
|
|
83
|
+
|
|
79
84
|
None
|
|
80
|
-
|
|
85
|
+
|
|
81
86
|
Array
|
|
82
|
-
|
|
87
|
+
|
|
83
88
|
Min
|
|
84
|
-
|
|
89
|
+
|
|
85
90
|
Max
|
|
86
|
-
|
|
91
|
+
|
|
87
92
|
Avg
|
|
88
|
-
|
|
93
|
+
|
|
89
94
|
Sum
|
|
90
|
-
|
|
95
|
+
|
|
91
96
|
Extent
|
|
92
|
-
|
|
97
|
+
|
|
93
98
|
Count
|
|
94
|
-
|
|
99
|
+
|
|
100
|
+
TotalCount
|
|
101
|
+
|
|
102
|
+
DistinctCount
|
|
103
|
+
|
|
95
104
|
First
|
|
96
|
-
|
|
105
|
+
|
|
97
106
|
Last
|
|
98
|
-
|
|
107
|
+
|
|
99
108
|
Median
|
|
100
|
-
|
|
109
|
+
|
|
101
110
|
Mod
|
|
102
|
-
|
|
111
|
+
|
|
103
112
|
StdDeviation
|
|
104
|
-
|
|
113
|
+
|
|
105
114
|
SumOfProduct
|
|
106
|
-
|
|
115
|
+
|
|
107
116
|
OnlyValue
|
|
108
|
-
|
|
117
|
+
|
|
109
118
|
WeightedAvg
|
|
110
|
-
|
|
119
|
+
|
|
111
120
|
DensityIndicators
|
|
112
|
-
|
|
121
|
+
|
|
113
122
|
DividedSum
|
|
114
123
|
*/
|
|
115
124
|
export declare enum AggregationFunction {
|
|
@@ -121,6 +130,8 @@ export declare enum AggregationFunction {
|
|
|
121
130
|
Sum = "Sum",
|
|
122
131
|
Extent = "Extent",
|
|
123
132
|
Count = "Count",
|
|
133
|
+
TotalCount = "TotalCount",
|
|
134
|
+
DistinctCount = "DistinctCount",
|
|
124
135
|
First = "First",
|
|
125
136
|
Last = "Last",
|
|
126
137
|
Median = "Median",
|
|
@@ -161,6 +172,10 @@ export interface AggregationSettingDc {
|
|
|
161
172
|
*
|
|
162
173
|
* Count
|
|
163
174
|
*
|
|
175
|
+
* TotalCount
|
|
176
|
+
*
|
|
177
|
+
* DistinctCount
|
|
178
|
+
*
|
|
164
179
|
* First
|
|
165
180
|
*
|
|
166
181
|
* Last
|
|
@@ -226,6 +241,10 @@ export interface AttributeConfigurationDc {
|
|
|
226
241
|
*
|
|
227
242
|
* Count
|
|
228
243
|
*
|
|
244
|
+
* TotalCount
|
|
245
|
+
*
|
|
246
|
+
* DistinctCount
|
|
247
|
+
*
|
|
229
248
|
* First
|
|
230
249
|
*
|
|
231
250
|
* Last
|
|
@@ -249,7 +268,7 @@ export interface AttributeConfigurationDc {
|
|
|
249
268
|
aggregation?: AggregationFunction;
|
|
250
269
|
/** Eql expression. Provides dynamic calculated value of the attribute. */
|
|
251
270
|
expression?: string;
|
|
252
|
-
/**
|
|
271
|
+
/** Sets attribute format settings. */
|
|
253
272
|
stringFormat?: AttributeFormatDc;
|
|
254
273
|
}
|
|
255
274
|
/**
|
|
@@ -304,7 +323,7 @@ export interface AttributeDefinitionDc {
|
|
|
304
323
|
isUnique?: boolean;
|
|
305
324
|
/** Sets true if attribute calculate on the fly. */
|
|
306
325
|
isCalculated?: boolean;
|
|
307
|
-
/** Provides
|
|
326
|
+
/** Provides attributes format definition settings. */
|
|
308
327
|
stringFormat?: AttributeFormatDefinitionDc;
|
|
309
328
|
}
|
|
310
329
|
/**
|
|
@@ -408,27 +427,27 @@ export interface AttributeFormatDefinitionDc {
|
|
|
408
427
|
}
|
|
409
428
|
/**
|
|
410
429
|
* Types of the attributes that are supported by the system.
|
|
411
|
-
|
|
430
|
+
|
|
412
431
|
Unknown
|
|
413
|
-
|
|
432
|
+
|
|
414
433
|
String
|
|
415
|
-
|
|
434
|
+
|
|
416
435
|
Int32
|
|
417
|
-
|
|
436
|
+
|
|
418
437
|
Int64
|
|
419
|
-
|
|
438
|
+
|
|
420
439
|
Double
|
|
421
|
-
|
|
440
|
+
|
|
422
441
|
DateTime
|
|
423
|
-
|
|
442
|
+
|
|
424
443
|
Boolean
|
|
425
|
-
|
|
444
|
+
|
|
426
445
|
Point
|
|
427
|
-
|
|
446
|
+
|
|
428
447
|
Polyline
|
|
429
|
-
|
|
448
|
+
|
|
430
449
|
Polygon
|
|
431
|
-
|
|
450
|
+
|
|
432
451
|
Multipoint
|
|
433
452
|
*/
|
|
434
453
|
export declare enum AttributeType {
|
|
@@ -453,7 +472,7 @@ export interface AttributesConfigurationDc {
|
|
|
453
472
|
/** The name of the attribute that is used for setting feature name (optional). */
|
|
454
473
|
titleAttribute?: string;
|
|
455
474
|
/** The name of the attribute that contains the feature geometry. */
|
|
456
|
-
geometryAttribute
|
|
475
|
+
geometryAttribute?: string;
|
|
457
476
|
/** The name of the table in data source service, that contains the data for this layer. */
|
|
458
477
|
tableName: string;
|
|
459
478
|
/** Configuration of the attributes of the layer. */
|
|
@@ -465,29 +484,17 @@ export interface AttributesConfigurationDc {
|
|
|
465
484
|
* Availability area builder operation considers the nearest availability zones around the input geometries and writes them
|
|
466
485
|
into the target storage.
|
|
467
486
|
*/
|
|
468
|
-
export
|
|
487
|
+
export declare type AvailabilityAreaTaskDc = FeatureTaskParametersDc & {
|
|
469
488
|
type?: string;
|
|
470
|
-
/** Duration from start point in seconds or expression. */
|
|
471
489
|
duration: string;
|
|
472
|
-
/** Provider name. */
|
|
473
490
|
providerType: string;
|
|
474
|
-
/** Name of attribute of the duration. Default name is 'duration'. */
|
|
475
491
|
durationAttributeName?: string;
|
|
476
|
-
/** Name of attribute of the route x center. Default name is 'center_x'. */
|
|
477
492
|
routeCenterXAttributeName?: string;
|
|
478
|
-
/** Name of attribute of the route y center. Default name is 'center_y'. */
|
|
479
493
|
routeCenterYAttributeName?: string;
|
|
480
|
-
/** Name of attribute of the base object id. Default name is 'base_object'. */
|
|
481
494
|
baseObjectIdAttributeName?: string;
|
|
482
|
-
/** Name of attribute of the id attribute. */
|
|
483
495
|
idAttributeName?: string;
|
|
484
|
-
/** Name of attribute of the radius. */
|
|
485
496
|
geometryAttributeName?: string;
|
|
486
|
-
|
|
487
|
-
source: BaseTaskDataStorageDc;
|
|
488
|
-
/** Storage that is to be used as a target for writing the task result. */
|
|
489
|
-
target: BaseTaskDataStorageDc;
|
|
490
|
-
}
|
|
497
|
+
};
|
|
491
498
|
/**
|
|
492
499
|
* Simply Base64 string.
|
|
493
500
|
*/
|
|
@@ -534,7 +541,7 @@ export interface BatchResourcesCatalogDc {
|
|
|
534
541
|
export interface BookmarkDc {
|
|
535
542
|
/** The title of the bookmark. */
|
|
536
543
|
title?: string;
|
|
537
|
-
/** The position at the map. */
|
|
544
|
+
/** The position at the map in [X, Y] format. */
|
|
538
545
|
position?: PositionDc;
|
|
539
546
|
/**
|
|
540
547
|
* Resolution of the map.
|
|
@@ -555,24 +562,16 @@ export interface BrushDc {
|
|
|
555
562
|
* Buffer operation calculates the buffer geometries around the input geometries and writes them
|
|
556
563
|
into the target storage.
|
|
557
564
|
*/
|
|
558
|
-
export
|
|
565
|
+
export declare type BufferTaskParametersDc = FeatureTaskParametersDc & {
|
|
559
566
|
type?: string;
|
|
560
567
|
radii: string[];
|
|
561
568
|
excludeInnerBuffers?: boolean;
|
|
562
569
|
excludeSourcePolygon?: boolean;
|
|
563
|
-
/** Name of attribute of the base object id. Default name is 'base_object'. */
|
|
564
570
|
baseObjectIdAttributeName?: string;
|
|
565
|
-
/** Name of attribute of the radius. Default name is 'buffer_radius'. */
|
|
566
571
|
radiusAttributeName?: string;
|
|
567
|
-
/** Name of attribute of the id attribute. */
|
|
568
572
|
idAttributeName?: string;
|
|
569
|
-
/** Name of attribute of the radius. */
|
|
570
573
|
geometryAttributeName?: string;
|
|
571
|
-
|
|
572
|
-
source: BaseTaskDataStorageDc;
|
|
573
|
-
/** Storage that is to be used as a target for writing the task result. */
|
|
574
|
-
target: BaseTaskDataStorageDc;
|
|
575
|
-
}
|
|
574
|
+
};
|
|
576
575
|
/**
|
|
577
576
|
* Provides set resources bulk operation status.
|
|
578
577
|
*/
|
|
@@ -584,12 +583,11 @@ export interface BulkOperationResultDc {
|
|
|
584
583
|
/** Sets true. */
|
|
585
584
|
isSuccess?: boolean;
|
|
586
585
|
}
|
|
587
|
-
export
|
|
586
|
+
export declare type CalculatedParameterDc = ParameterDcDouble & {
|
|
588
587
|
type?: string;
|
|
589
588
|
expression?: string;
|
|
590
|
-
/** @format double */
|
|
591
589
|
defaultValue?: number;
|
|
592
|
-
}
|
|
590
|
+
};
|
|
593
591
|
/**
|
|
594
592
|
* Provides catalog resources with users.
|
|
595
593
|
*/
|
|
@@ -602,49 +600,26 @@ export interface CatalogResourceDc {
|
|
|
602
600
|
/**
|
|
603
601
|
* The symbol that draws a feature as a circle.
|
|
604
602
|
*/
|
|
605
|
-
export
|
|
603
|
+
export declare type CirclePointSymbolDc = SymbolDc & {
|
|
606
604
|
type?: string;
|
|
607
|
-
|
|
608
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
609
|
-
* as an object with a "type" parameter specified.
|
|
610
|
-
*/
|
|
611
|
-
size?: ParameterDcDouble;
|
|
612
|
-
/**
|
|
613
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
614
|
-
* as an object with a "type" parameter specified.
|
|
615
|
-
*/
|
|
605
|
+
size?: CalculatedParameterDc;
|
|
616
606
|
fillColor?: ParameterDcColor;
|
|
617
|
-
/**
|
|
618
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
619
|
-
* as an object with a "type" parameter specified.
|
|
620
|
-
*/
|
|
621
607
|
strokeColor?: ParameterDcColor;
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
strokeWidth?: ParameterDcDouble;
|
|
627
|
-
/** Offset of the circle center from the actual feature position (in pixels). */
|
|
628
|
-
offset?: ParameterDcDouble[];
|
|
629
|
-
/**
|
|
630
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
631
|
-
* as an object with a "type" parameter specified.
|
|
632
|
-
*/
|
|
633
|
-
angle?: ParameterDcDouble;
|
|
634
|
-
/** If set true symbol will not be rendered. */
|
|
635
|
-
disabled?: boolean;
|
|
636
|
-
}
|
|
608
|
+
strokeWidth?: CalculatedParameterDc;
|
|
609
|
+
offset?: CalculatedParameterDc[];
|
|
610
|
+
angle?: CalculatedParameterDc;
|
|
611
|
+
};
|
|
637
612
|
/**
|
|
638
613
|
* Describes classification methods.
|
|
639
|
-
|
|
614
|
+
|
|
640
615
|
none
|
|
641
|
-
|
|
616
|
+
|
|
642
617
|
naturalBreaks
|
|
643
|
-
|
|
618
|
+
|
|
644
619
|
equalInterval
|
|
645
|
-
|
|
620
|
+
|
|
646
621
|
quantile
|
|
647
|
-
|
|
622
|
+
|
|
648
623
|
unique
|
|
649
624
|
*/
|
|
650
625
|
export declare enum ClassificationType {
|
|
@@ -652,15 +627,15 @@ export declare enum ClassificationType {
|
|
|
652
627
|
NaturalBreaks = "naturalBreaks",
|
|
653
628
|
EqualInterval = "equalInterval",
|
|
654
629
|
Quantile = "quantile",
|
|
655
|
-
|
|
630
|
+
Unique = "unique"
|
|
656
631
|
}
|
|
657
632
|
/**
|
|
658
633
|
* Type of attribute.
|
|
659
|
-
|
|
634
|
+
|
|
660
635
|
decimal
|
|
661
|
-
|
|
636
|
+
|
|
662
637
|
dateTime
|
|
663
|
-
|
|
638
|
+
|
|
664
639
|
text
|
|
665
640
|
*/
|
|
666
641
|
export declare enum ClassifyAttributeType {
|
|
@@ -683,12 +658,21 @@ export interface ClassifyDc {
|
|
|
683
658
|
export interface ClassifyResultObject {
|
|
684
659
|
/** Value. */
|
|
685
660
|
value?: any;
|
|
686
|
-
/**
|
|
687
|
-
|
|
688
|
-
* @format int64
|
|
689
|
-
*/
|
|
690
|
-
count?: number;
|
|
661
|
+
/** Count. */
|
|
662
|
+
count?: any;
|
|
691
663
|
}
|
|
664
|
+
export declare type ClusterSymbolDc = SymbolDc & {
|
|
665
|
+
type?: string;
|
|
666
|
+
labelSymbol?: PointLabelSymbolDc;
|
|
667
|
+
singleObjectSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
668
|
+
fillColor?: ParameterDcColor;
|
|
669
|
+
strokeColor?: ParameterDcColor;
|
|
670
|
+
strokeWidth?: CalculatedParameterDc;
|
|
671
|
+
maxClusterSize?: number;
|
|
672
|
+
minClusterSize?: number;
|
|
673
|
+
maxObjectCount?: number;
|
|
674
|
+
gridSize?: number;
|
|
675
|
+
};
|
|
692
676
|
/**
|
|
693
677
|
* Description of a table column.
|
|
694
678
|
*/
|
|
@@ -799,29 +783,9 @@ export interface CompositeLayerInfoDc {
|
|
|
799
783
|
/**
|
|
800
784
|
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
801
785
|
*/
|
|
802
|
-
export
|
|
803
|
-
/** Composite service layers list. */
|
|
786
|
+
export declare type CompositeServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
804
787
|
layers: CompositeLayerConfigurationDc[];
|
|
805
|
-
|
|
806
|
-
name: string;
|
|
807
|
-
/** Human friendly name of the service. */
|
|
808
|
-
alias?: string;
|
|
809
|
-
/** Description of the service. */
|
|
810
|
-
description?: string;
|
|
811
|
-
/** Service access control list. */
|
|
812
|
-
acl?: AccessControlListDc;
|
|
813
|
-
/** Base64 encoded image - icon of the resource. */
|
|
814
|
-
icon?: string;
|
|
815
|
-
/**
|
|
816
|
-
* <br>
|
|
817
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
818
|
-
* Administrator permissions are required to perform this operation.
|
|
819
|
-
*
|
|
820
|
-
*/
|
|
821
|
-
owner?: string;
|
|
822
|
-
/** Copyright text. */
|
|
823
|
-
copyrightText?: string;
|
|
824
|
-
}
|
|
788
|
+
};
|
|
825
789
|
/**
|
|
826
790
|
* Information about composite service.
|
|
827
791
|
*/
|
|
@@ -872,7 +836,7 @@ export interface CompositeServiceInfoDc {
|
|
|
872
836
|
/** The category of the service. */
|
|
873
837
|
categories?: string[];
|
|
874
838
|
/** Configuration of the service. */
|
|
875
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
839
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
876
840
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
877
841
|
name: string;
|
|
878
842
|
/** Resource alias. */
|
|
@@ -911,21 +875,20 @@ export interface CompositeServiceInfoDc {
|
|
|
911
875
|
* read,write,configure
|
|
912
876
|
*/
|
|
913
877
|
permissions?: Permissions;
|
|
914
|
-
/** Access control list. */
|
|
878
|
+
/** Access control list for a security object. */
|
|
915
879
|
acl?: AccessControlListDc;
|
|
916
880
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
917
881
|
icon?: string;
|
|
882
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
883
|
+
invisibleInCatalog?: boolean;
|
|
918
884
|
}
|
|
919
885
|
/**
|
|
920
886
|
* Composite symbol.
|
|
921
887
|
*/
|
|
922
|
-
export
|
|
888
|
+
export declare type CompositeSymbolDc = SymbolDc & {
|
|
923
889
|
type?: string;
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
/** If set true symbol will not be rendered. */
|
|
927
|
-
disabled?: boolean;
|
|
928
|
-
}
|
|
890
|
+
childSymbols?: (CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
|
|
891
|
+
};
|
|
929
892
|
/**
|
|
930
893
|
* Get configuration information.
|
|
931
894
|
*/
|
|
@@ -936,8 +899,50 @@ export interface ConfigDc {
|
|
|
936
899
|
urlPath?: string;
|
|
937
900
|
}
|
|
938
901
|
/**
|
|
939
|
-
|
|
940
|
-
|
|
902
|
+
* Types of errors that can occur during layer initialize.
|
|
903
|
+
|
|
904
|
+
Unknown
|
|
905
|
+
|
|
906
|
+
SerializeError
|
|
907
|
+
|
|
908
|
+
InvalidDataService
|
|
909
|
+
|
|
910
|
+
InvalidConfiguration
|
|
911
|
+
|
|
912
|
+
InvalidDataServiceName
|
|
913
|
+
|
|
914
|
+
InvalidTableName
|
|
915
|
+
|
|
916
|
+
ResourceNotFound
|
|
917
|
+
|
|
918
|
+
InvalidCondition
|
|
919
|
+
|
|
920
|
+
InvalidAttributes
|
|
921
|
+
|
|
922
|
+
InvalidIdAttribute
|
|
923
|
+
|
|
924
|
+
InvalidGeometryAttribute
|
|
925
|
+
|
|
926
|
+
InvalidGeometryAttributeType
|
|
927
|
+
|
|
928
|
+
InvalidColumnName
|
|
929
|
+
|
|
930
|
+
InvalidIdColumnSettings
|
|
931
|
+
|
|
932
|
+
ColumnNotExistsInTable
|
|
933
|
+
|
|
934
|
+
InvalidStyle
|
|
935
|
+
|
|
936
|
+
InvalidLayerType
|
|
937
|
+
|
|
938
|
+
ColumnLoadingError
|
|
939
|
+
|
|
940
|
+
InvalidAttributeFormat
|
|
941
|
+
|
|
942
|
+
DataSourceNotFound
|
|
943
|
+
|
|
944
|
+
DuplicateColumns
|
|
945
|
+
*/
|
|
941
946
|
export declare enum ConfigurationErrorEnum {
|
|
942
947
|
Unknown = "Unknown",
|
|
943
948
|
SerializeError = "SerializeError",
|
|
@@ -958,8 +963,17 @@ export declare enum ConfigurationErrorEnum {
|
|
|
958
963
|
InvalidLayerType = "InvalidLayerType",
|
|
959
964
|
ColumnLoadingError = "ColumnLoadingError",
|
|
960
965
|
InvalidAttributeFormat = "InvalidAttributeFormat",
|
|
961
|
-
DataSourceNotFound = "DataSourceNotFound"
|
|
966
|
+
DataSourceNotFound = "DataSourceNotFound",
|
|
967
|
+
DuplicateColumns = "DuplicateColumns"
|
|
962
968
|
}
|
|
969
|
+
/**
|
|
970
|
+
* SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
|
|
971
|
+
*/
|
|
972
|
+
export declare type ConfiguredLayerDataStorageDc = BaseTaskDataStorageDc & {
|
|
973
|
+
type?: string;
|
|
974
|
+
serviceName: string;
|
|
975
|
+
attributesConfiguration?: AttributesConfigurationDc;
|
|
976
|
+
};
|
|
963
977
|
/**
|
|
964
978
|
* Describes resource to copy.
|
|
965
979
|
*/
|
|
@@ -980,6 +994,8 @@ export interface CopyResourceDc {
|
|
|
980
994
|
* file
|
|
981
995
|
*
|
|
982
996
|
* feature
|
|
997
|
+
*
|
|
998
|
+
* tag
|
|
983
999
|
*/
|
|
984
1000
|
type: ResourceType;
|
|
985
1001
|
/** Resource copy name. */
|
|
@@ -1011,6 +1027,8 @@ export interface CopyResourceResultDc {
|
|
|
1011
1027
|
* file
|
|
1012
1028
|
*
|
|
1013
1029
|
* feature
|
|
1030
|
+
*
|
|
1031
|
+
* tag
|
|
1014
1032
|
*/
|
|
1015
1033
|
type: ResourceType;
|
|
1016
1034
|
/** Name of resource to copy. */
|
|
@@ -1019,22 +1037,17 @@ export interface CopyResourceResultDc {
|
|
|
1019
1037
|
isSuccess?: boolean;
|
|
1020
1038
|
/** Copied resources. */
|
|
1021
1039
|
copiedResources?: string[];
|
|
1022
|
-
/**
|
|
1040
|
+
/** Resource error details. */
|
|
1023
1041
|
errorDetails?: ErrorDetailsDc;
|
|
1024
1042
|
}
|
|
1025
1043
|
/**
|
|
1026
1044
|
* Server task that copies the objects from one storage to another.
|
|
1027
1045
|
*/
|
|
1028
|
-
export
|
|
1046
|
+
export declare type CopyTaskParametersDc = FeatureTaskParametersDc & {
|
|
1029
1047
|
type?: string;
|
|
1030
1048
|
condition?: string;
|
|
1031
|
-
/** Mapping of source attribute fields and target attribute fields. */
|
|
1032
1049
|
attributeMapping?: Record<string, string | null>;
|
|
1033
|
-
|
|
1034
|
-
source: BaseTaskDataStorageDc;
|
|
1035
|
-
/** Storage that is to be used as a target for writing the task result. */
|
|
1036
|
-
target: BaseTaskDataStorageDc;
|
|
1037
|
-
}
|
|
1050
|
+
};
|
|
1038
1051
|
/**
|
|
1039
1052
|
* Data contract for create new role.
|
|
1040
1053
|
*/
|
|
@@ -1079,68 +1092,30 @@ export interface CreateUserDc {
|
|
|
1079
1092
|
/**
|
|
1080
1093
|
* Description of the temp file as a task data storage.
|
|
1081
1094
|
*/
|
|
1082
|
-
export
|
|
1083
|
-
/**
|
|
1084
|
-
* Attribute name row number.
|
|
1085
|
-
* @format int32
|
|
1086
|
-
*/
|
|
1095
|
+
export declare type CsvStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
1087
1096
|
attributeNameRowNumber?: number;
|
|
1088
|
-
/** If set true - second row will be read as alias row. */
|
|
1089
1097
|
containsAliasRow?: boolean;
|
|
1090
|
-
/**
|
|
1091
|
-
* First data row number.
|
|
1092
|
-
* @format int32
|
|
1093
|
-
*/
|
|
1094
1098
|
firstDataRowNumber?: number;
|
|
1095
|
-
/** Coord source fields. */
|
|
1096
1099
|
coordSourceFields: string[];
|
|
1097
|
-
/** CSV column delimiter. */
|
|
1098
1100
|
columnDelimiter?: string;
|
|
1099
|
-
/**
|
|
1100
|
-
* Spatial reference.
|
|
1101
|
-
* @format int32
|
|
1102
|
-
*/
|
|
1103
1101
|
spatialReference?: number;
|
|
1104
|
-
/** Export geometry as Wkt. */
|
|
1105
1102
|
isWkt?: boolean;
|
|
1106
1103
|
type?: string;
|
|
1107
|
-
|
|
1108
|
-
fileName: string;
|
|
1109
|
-
/** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
|
|
1110
|
-
layerName?: string;
|
|
1111
|
-
}
|
|
1104
|
+
};
|
|
1112
1105
|
/**
|
|
1113
1106
|
* Describes stroked dashed brush.
|
|
1114
1107
|
*/
|
|
1115
|
-
export
|
|
1108
|
+
export declare type DashedBrushDc = StrokeBrushDc & {
|
|
1116
1109
|
type: string;
|
|
1117
|
-
/**
|
|
1118
|
-
* Specifies alternating between lengths of dashes and lengths of gaps between the dashes.
|
|
1119
|
-
* 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 }.
|
|
1120
|
-
* The ends of the dashes are affected by the `LineEnding` property of `PolylineSymbolDc`.
|
|
1121
|
-
* For specifying round the ends of the dashes it is necessary to sets `LineEnding.Round` property.
|
|
1122
|
-
* In case of `LineEnding.Round` the values in the intervals array do not include the extra length resulting from the rounding.
|
|
1123
|
-
* This fact means that a circular dot requires specifying a width of zero.
|
|
1124
|
-
* 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 }.
|
|
1125
|
-
*/
|
|
1126
1110
|
intervals: number[];
|
|
1127
|
-
/**
|
|
1128
|
-
* Specifies where within the dash pattern the line begins
|
|
1129
|
-
* 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.
|
|
1130
|
-
* @format float
|
|
1131
|
-
*/
|
|
1132
1111
|
phase?: number;
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
* as an object with a "type" parameter specified.
|
|
1141
|
-
*/
|
|
1142
|
-
width?: ParameterDcDouble;
|
|
1143
|
-
}
|
|
1112
|
+
};
|
|
1113
|
+
/**
|
|
1114
|
+
* Configuration of a table for feature layer.
|
|
1115
|
+
*/
|
|
1116
|
+
export declare type DefaultTableConfigurationDc = TableConfigurationBaseDc & {
|
|
1117
|
+
type?: string;
|
|
1118
|
+
};
|
|
1144
1119
|
/**
|
|
1145
1120
|
* Dependent resource description.
|
|
1146
1121
|
*/
|
|
@@ -1153,63 +1128,9 @@ export interface DependentResourceDc {
|
|
|
1153
1128
|
/**
|
|
1154
1129
|
* Table description with columns and access control list.
|
|
1155
1130
|
*/
|
|
1156
|
-
export
|
|
1157
|
-
/** Description of table columns. */
|
|
1131
|
+
export declare type DetailedTableInfoDc = TableInfoDc & {
|
|
1158
1132
|
columns: ColumnDescriptionDc[];
|
|
1159
|
-
|
|
1160
|
-
* Row count.
|
|
1161
|
-
* @format int64
|
|
1162
|
-
*/
|
|
1163
|
-
rowCount?: number;
|
|
1164
|
-
/** The geometry of the table. */
|
|
1165
|
-
geometries?: GeometryType[];
|
|
1166
|
-
/** The type of the table. */
|
|
1167
|
-
type?: string;
|
|
1168
|
-
/** Configuration of the table. */
|
|
1169
|
-
configuration?: TableConfigurationBaseDc;
|
|
1170
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1171
|
-
name: string;
|
|
1172
|
-
/** Resource alias. */
|
|
1173
|
-
alias?: string;
|
|
1174
|
-
/** Resource owner. */
|
|
1175
|
-
owner?: string;
|
|
1176
|
-
/** Resource description. */
|
|
1177
|
-
description?: string;
|
|
1178
|
-
/** Resource preview. */
|
|
1179
|
-
preview?: string;
|
|
1180
|
-
/**
|
|
1181
|
-
* The date when resource was created.
|
|
1182
|
-
* @format date-time
|
|
1183
|
-
*/
|
|
1184
|
-
createdDate?: string;
|
|
1185
|
-
/**
|
|
1186
|
-
* The date when resource was last modified.
|
|
1187
|
-
* @format date-time
|
|
1188
|
-
*/
|
|
1189
|
-
changedDate?: string;
|
|
1190
|
-
/**
|
|
1191
|
-
* User permissions for server security objects (services, projects etc.)
|
|
1192
|
-
*
|
|
1193
|
-
* none
|
|
1194
|
-
*
|
|
1195
|
-
* configure
|
|
1196
|
-
*
|
|
1197
|
-
* write
|
|
1198
|
-
*
|
|
1199
|
-
* read
|
|
1200
|
-
*
|
|
1201
|
-
* read,configure
|
|
1202
|
-
*
|
|
1203
|
-
* read,write
|
|
1204
|
-
*
|
|
1205
|
-
* read,write,configure
|
|
1206
|
-
*/
|
|
1207
|
-
permissions?: Permissions;
|
|
1208
|
-
/** Access control list. */
|
|
1209
|
-
acl?: AccessControlListDc;
|
|
1210
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1211
|
-
icon?: string;
|
|
1212
|
-
}
|
|
1133
|
+
};
|
|
1213
1134
|
/**
|
|
1214
1135
|
* Provides attributes edit info.
|
|
1215
1136
|
*/
|
|
@@ -1221,69 +1142,22 @@ export interface EditAttributesInfoDc {
|
|
|
1221
1142
|
/** Expression to edit. */
|
|
1222
1143
|
editExpression: string;
|
|
1223
1144
|
}
|
|
1224
|
-
export
|
|
1145
|
+
export declare type EditAttributesTaskParametersDc = TaskParametersDc & {
|
|
1225
1146
|
type?: string;
|
|
1226
1147
|
condition?: string;
|
|
1227
1148
|
attribute: string;
|
|
1228
1149
|
editExpression: string;
|
|
1229
1150
|
createNewAttribute?: boolean;
|
|
1230
|
-
/**
|
|
1231
|
-
* Types of the attributes that are supported by the system.
|
|
1232
|
-
*
|
|
1233
|
-
* Unknown
|
|
1234
|
-
*
|
|
1235
|
-
* String
|
|
1236
|
-
*
|
|
1237
|
-
* Int32
|
|
1238
|
-
*
|
|
1239
|
-
* Int64
|
|
1240
|
-
*
|
|
1241
|
-
* Double
|
|
1242
|
-
*
|
|
1243
|
-
* DateTime
|
|
1244
|
-
*
|
|
1245
|
-
* Boolean
|
|
1246
|
-
*
|
|
1247
|
-
* Point
|
|
1248
|
-
*
|
|
1249
|
-
* Polyline
|
|
1250
|
-
*
|
|
1251
|
-
* Polygon
|
|
1252
|
-
*
|
|
1253
|
-
* Multipoint
|
|
1254
|
-
*/
|
|
1255
1151
|
attributeType: AttributeType;
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
}
|
|
1152
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1153
|
+
};
|
|
1259
1154
|
/**
|
|
1260
1155
|
* Envelope geometry.
|
|
1261
1156
|
*/
|
|
1262
|
-
export
|
|
1263
|
-
/** Coordinates of the envelope. Always has exactly 2 points: left bottom and right top. */
|
|
1157
|
+
export declare type EnvelopeDc = GeometryDc & {
|
|
1264
1158
|
coordinates: PositionDc[];
|
|
1265
|
-
/**
|
|
1266
|
-
*
|
|
1267
|
-
*
|
|
1268
|
-
* unknown
|
|
1269
|
-
*
|
|
1270
|
-
* point
|
|
1271
|
-
*
|
|
1272
|
-
* polyline
|
|
1273
|
-
*
|
|
1274
|
-
* polygon
|
|
1275
|
-
*
|
|
1276
|
-
* envelope
|
|
1277
|
-
*
|
|
1278
|
-
* multipoint
|
|
1279
|
-
*/
|
|
1280
1159
|
type?: GeometryType;
|
|
1281
|
-
|
|
1282
|
-
* Spatial reference id.
|
|
1283
|
-
* @format int32
|
|
1284
|
-
*/
|
|
1285
|
-
sr?: number;
|
|
1286
|
-
}
|
|
1160
|
+
};
|
|
1287
1161
|
/**
|
|
1288
1162
|
* Resource error details.
|
|
1289
1163
|
*/
|
|
@@ -1312,15 +1186,15 @@ export interface ErrorDetailsDc {
|
|
|
1312
1186
|
}
|
|
1313
1187
|
/**
|
|
1314
1188
|
* Type of the error.
|
|
1315
|
-
|
|
1189
|
+
|
|
1316
1190
|
ResourceLimitExceeded
|
|
1317
|
-
|
|
1191
|
+
|
|
1318
1192
|
ResourceNotFound
|
|
1319
|
-
|
|
1193
|
+
|
|
1320
1194
|
InternalError
|
|
1321
|
-
|
|
1195
|
+
|
|
1322
1196
|
BadRequest
|
|
1323
|
-
|
|
1197
|
+
|
|
1324
1198
|
DuplicateContent
|
|
1325
1199
|
*/
|
|
1326
1200
|
export declare enum ErrorDetailsType {
|
|
@@ -1368,37 +1242,15 @@ export declare enum ErrorType {
|
|
|
1368
1242
|
/**
|
|
1369
1243
|
* Description of the temp file as a task data storage.
|
|
1370
1244
|
*/
|
|
1371
|
-
export
|
|
1372
|
-
/**
|
|
1373
|
-
* Attribute name row number.
|
|
1374
|
-
* @format int32
|
|
1375
|
-
*/
|
|
1245
|
+
export declare type ExcelStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
1376
1246
|
attributeNameRowNumber?: number;
|
|
1377
|
-
/**
|
|
1378
|
-
* Alias row number.
|
|
1379
|
-
* @format int32
|
|
1380
|
-
*/
|
|
1381
1247
|
aliasRowNumber?: number;
|
|
1382
|
-
/**
|
|
1383
|
-
* First data row number.
|
|
1384
|
-
* @format int32
|
|
1385
|
-
*/
|
|
1386
1248
|
firstDataRowNumber?: number;
|
|
1387
|
-
/** Coord source fields. */
|
|
1388
1249
|
coordSourceFields: string[];
|
|
1389
|
-
/**
|
|
1390
|
-
* Spatial reference.
|
|
1391
|
-
* @format int32
|
|
1392
|
-
*/
|
|
1393
1250
|
spatialReference: number;
|
|
1394
|
-
/** Export geometry as Wkt. */
|
|
1395
1251
|
isWkt?: boolean;
|
|
1396
1252
|
type?: string;
|
|
1397
|
-
|
|
1398
|
-
fileName: string;
|
|
1399
|
-
/** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
|
|
1400
|
-
layerName?: string;
|
|
1401
|
-
}
|
|
1253
|
+
};
|
|
1402
1254
|
/**
|
|
1403
1255
|
* Result of the eql expression validation.
|
|
1404
1256
|
*/
|
|
@@ -1439,68 +1291,25 @@ export interface ExpressionValidationResultDc {
|
|
|
1439
1291
|
/**
|
|
1440
1292
|
* Project extended configuration data contract.
|
|
1441
1293
|
*/
|
|
1442
|
-
export
|
|
1443
|
-
/** Project content configuration. */
|
|
1294
|
+
export declare type ExtendedProjectInfoDc = ProjectInfoDc & {
|
|
1444
1295
|
content: ProjectConfigurationDc;
|
|
1445
|
-
|
|
1446
|
-
isShared?: boolean;
|
|
1447
|
-
/**
|
|
1448
|
-
* Count of the layers in project.
|
|
1449
|
-
* @format int32
|
|
1450
|
-
*/
|
|
1451
|
-
layersCount?: number;
|
|
1452
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1453
|
-
name: string;
|
|
1454
|
-
/** Resource alias. */
|
|
1455
|
-
alias?: string;
|
|
1456
|
-
/** Resource owner. */
|
|
1457
|
-
owner?: string;
|
|
1458
|
-
/** Resource description. */
|
|
1459
|
-
description?: string;
|
|
1460
|
-
/** Resource preview. */
|
|
1461
|
-
preview?: string;
|
|
1462
|
-
/**
|
|
1463
|
-
* The date when resource was created.
|
|
1464
|
-
* @format date-time
|
|
1465
|
-
*/
|
|
1466
|
-
createdDate?: string;
|
|
1467
|
-
/**
|
|
1468
|
-
* The date when resource was last modified.
|
|
1469
|
-
* @format date-time
|
|
1470
|
-
*/
|
|
1471
|
-
changedDate?: string;
|
|
1472
|
-
/**
|
|
1473
|
-
* User permissions for server security objects (services, projects etc.)
|
|
1474
|
-
*
|
|
1475
|
-
* none
|
|
1476
|
-
*
|
|
1477
|
-
* configure
|
|
1478
|
-
*
|
|
1479
|
-
* write
|
|
1480
|
-
*
|
|
1481
|
-
* read
|
|
1482
|
-
*
|
|
1483
|
-
* read,configure
|
|
1484
|
-
*
|
|
1485
|
-
* read,write
|
|
1486
|
-
*
|
|
1487
|
-
* read,write,configure
|
|
1488
|
-
*/
|
|
1489
|
-
permissions?: Permissions;
|
|
1490
|
-
/** Access control list. */
|
|
1491
|
-
acl?: AccessControlListDc;
|
|
1492
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1493
|
-
icon?: string;
|
|
1494
|
-
}
|
|
1296
|
+
};
|
|
1495
1297
|
/**
|
|
1496
1298
|
* SPCore.Connectors.Connectors.Base.Models.Projects.ExtendedProjectLayersInfo provides extended project info with included layers info.
|
|
1497
1299
|
*/
|
|
1498
1300
|
export interface ExtendedProjectLayersInfo {
|
|
1499
|
-
/**
|
|
1500
|
-
projectInfo?: ExtendedProjectInfoDc
|
|
1301
|
+
/** Project extended configuration data contract. */
|
|
1302
|
+
projectInfo?: ExtendedProjectInfoDc;
|
|
1501
1303
|
/** A collection of layers info. */
|
|
1502
1304
|
layersInfo?: ServiceListItemDc[];
|
|
1503
1305
|
}
|
|
1306
|
+
/**
|
|
1307
|
+
* Extended resource info data contract.
|
|
1308
|
+
*/
|
|
1309
|
+
export declare type ExtendedResourceInfoDc = ResourceInfoDc & {
|
|
1310
|
+
publishedDate?: string;
|
|
1311
|
+
usedByUsers?: string[];
|
|
1312
|
+
};
|
|
1504
1313
|
/**
|
|
1505
1314
|
* Extended user information.
|
|
1506
1315
|
*/
|
|
@@ -1567,9 +1376,53 @@ export interface ExtendedUserInfoDc {
|
|
|
1567
1376
|
* The `FailedServiceInfoDc` describes SPCore.Security.Base.Services.FailedServiceInfo data contact.
|
|
1568
1377
|
*/
|
|
1569
1378
|
export interface FailedServiceInfoDc {
|
|
1570
|
-
/**
|
|
1571
|
-
|
|
1572
|
-
|
|
1379
|
+
/**
|
|
1380
|
+
* Types of errors that can occur during layer initialize.
|
|
1381
|
+
*
|
|
1382
|
+
* Unknown
|
|
1383
|
+
*
|
|
1384
|
+
* SerializeError
|
|
1385
|
+
*
|
|
1386
|
+
* InvalidDataService
|
|
1387
|
+
*
|
|
1388
|
+
* InvalidConfiguration
|
|
1389
|
+
*
|
|
1390
|
+
* InvalidDataServiceName
|
|
1391
|
+
*
|
|
1392
|
+
* InvalidTableName
|
|
1393
|
+
*
|
|
1394
|
+
* ResourceNotFound
|
|
1395
|
+
*
|
|
1396
|
+
* InvalidCondition
|
|
1397
|
+
*
|
|
1398
|
+
* InvalidAttributes
|
|
1399
|
+
*
|
|
1400
|
+
* InvalidIdAttribute
|
|
1401
|
+
*
|
|
1402
|
+
* InvalidGeometryAttribute
|
|
1403
|
+
*
|
|
1404
|
+
* InvalidGeometryAttributeType
|
|
1405
|
+
*
|
|
1406
|
+
* InvalidColumnName
|
|
1407
|
+
*
|
|
1408
|
+
* InvalidIdColumnSettings
|
|
1409
|
+
*
|
|
1410
|
+
* ColumnNotExistsInTable
|
|
1411
|
+
*
|
|
1412
|
+
* InvalidStyle
|
|
1413
|
+
*
|
|
1414
|
+
* InvalidLayerType
|
|
1415
|
+
*
|
|
1416
|
+
* ColumnLoadingError
|
|
1417
|
+
*
|
|
1418
|
+
* InvalidAttributeFormat
|
|
1419
|
+
*
|
|
1420
|
+
* DataSourceNotFound
|
|
1421
|
+
*
|
|
1422
|
+
* DuplicateColumns
|
|
1423
|
+
*/
|
|
1424
|
+
errorType?: ConfigurationErrorEnum;
|
|
1425
|
+
/** The type of the resource. */
|
|
1573
1426
|
type: string;
|
|
1574
1427
|
/**
|
|
1575
1428
|
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
@@ -1613,7 +1466,7 @@ export interface FailedServiceInfoDc {
|
|
|
1613
1466
|
/** The category of the service. */
|
|
1614
1467
|
categories?: string[];
|
|
1615
1468
|
/** Configuration of the service. */
|
|
1616
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
1469
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1617
1470
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1618
1471
|
name: string;
|
|
1619
1472
|
/** Resource alias. */
|
|
@@ -1652,17 +1505,19 @@ export interface FailedServiceInfoDc {
|
|
|
1652
1505
|
* read,write,configure
|
|
1653
1506
|
*/
|
|
1654
1507
|
permissions?: Permissions;
|
|
1655
|
-
/** Access control list. */
|
|
1508
|
+
/** Access control list for a security object. */
|
|
1656
1509
|
acl?: AccessControlListDc;
|
|
1657
1510
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1658
1511
|
icon?: string;
|
|
1512
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
1513
|
+
invisibleInCatalog?: boolean;
|
|
1659
1514
|
}
|
|
1660
1515
|
/**
|
|
1661
1516
|
* Feature object definition.
|
|
1662
1517
|
*/
|
|
1663
1518
|
export interface FeatureDc {
|
|
1664
1519
|
/** Feature geometry definition. */
|
|
1665
|
-
geometry
|
|
1520
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
1666
1521
|
/** Feature attributes collection. */
|
|
1667
1522
|
attributes: Record<string, any>;
|
|
1668
1523
|
/** Feature unique identifier. */
|
|
@@ -1672,9 +1527,9 @@ export interface FeatureDc {
|
|
|
1672
1527
|
* Service info for a feature layer service.
|
|
1673
1528
|
*/
|
|
1674
1529
|
export interface FeatureLayerServiceInfoDc {
|
|
1675
|
-
/**
|
|
1530
|
+
/** Information about the layer attributes and their configuration. */
|
|
1676
1531
|
layerDefinition: LayerDefinitionDc;
|
|
1677
|
-
/**
|
|
1532
|
+
/** Feature layer rendering style. */
|
|
1678
1533
|
style?: StyleDc;
|
|
1679
1534
|
/** Provides data source type. */
|
|
1680
1535
|
dataSourceType?: string;
|
|
@@ -1724,7 +1579,7 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1724
1579
|
/** The category of the service. */
|
|
1725
1580
|
categories?: string[];
|
|
1726
1581
|
/** Configuration of the service. */
|
|
1727
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
1582
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1728
1583
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1729
1584
|
name: string;
|
|
1730
1585
|
/** Resource alias. */
|
|
@@ -1763,10 +1618,12 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1763
1618
|
* read,write,configure
|
|
1764
1619
|
*/
|
|
1765
1620
|
permissions?: Permissions;
|
|
1766
|
-
/** Access control list. */
|
|
1621
|
+
/** Access control list for a security object. */
|
|
1767
1622
|
acl?: AccessControlListDc;
|
|
1768
1623
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1769
1624
|
icon?: string;
|
|
1625
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
1626
|
+
invisibleInCatalog?: boolean;
|
|
1770
1627
|
}
|
|
1771
1628
|
export interface FeatureSelectionDc {
|
|
1772
1629
|
layerName: string;
|
|
@@ -1794,25 +1651,21 @@ export interface FeatureSymbolDc {
|
|
|
1794
1651
|
/** @format int32 */
|
|
1795
1652
|
id: number;
|
|
1796
1653
|
/** Feature symbol. */
|
|
1797
|
-
definition?:
|
|
1654
|
+
definition?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
1798
1655
|
image?: string;
|
|
1799
1656
|
}
|
|
1800
1657
|
/**
|
|
1801
1658
|
* Task parameters for tasks that operate on features.
|
|
1802
1659
|
*/
|
|
1803
|
-
export
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
target: BaseTaskDataStorageDc;
|
|
1808
|
-
/** Type of the task. */
|
|
1809
|
-
type?: string;
|
|
1810
|
-
}
|
|
1660
|
+
export declare type FeatureTaskParametersDc = TaskParametersDc & {
|
|
1661
|
+
source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1662
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1663
|
+
};
|
|
1811
1664
|
/**
|
|
1812
1665
|
* Type of the feature.
|
|
1813
|
-
|
|
1666
|
+
|
|
1814
1667
|
Unknown
|
|
1815
|
-
|
|
1668
|
+
|
|
1816
1669
|
GeometricFeature
|
|
1817
1670
|
*/
|
|
1818
1671
|
export declare enum FeatureType {
|
|
@@ -1843,36 +1696,19 @@ export interface FileUploadResponse {
|
|
|
1843
1696
|
/**
|
|
1844
1697
|
* Defines the brush for the fill.
|
|
1845
1698
|
*/
|
|
1846
|
-
export
|
|
1847
|
-
/**
|
|
1848
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
1849
|
-
* as an object with a "type" parameter specified.
|
|
1850
|
-
*/
|
|
1699
|
+
export declare type FillBrushDc = BrushDc & {
|
|
1851
1700
|
color?: ParameterDcColor;
|
|
1852
|
-
|
|
1853
|
-
type?: string;
|
|
1854
|
-
}
|
|
1701
|
+
};
|
|
1855
1702
|
/**
|
|
1856
1703
|
* Server task that copies the objects from the source storage that satisfy the filter conditions to the target layer.
|
|
1857
1704
|
*/
|
|
1858
|
-
export
|
|
1705
|
+
export declare type FilterCopyTaskParametersDc = FeatureTaskParametersDc & {
|
|
1859
1706
|
type?: string;
|
|
1860
|
-
/** Mapping of source attribute fields and target attribute fields. */
|
|
1861
1707
|
attributeMapping?: Record<string, string | null>;
|
|
1862
|
-
/** Attribute filter string that must be satisfied. */
|
|
1863
1708
|
condition?: string;
|
|
1864
|
-
/** If set true, copy objects that do not intersect objects from GeometryFilterStorage. */
|
|
1865
1709
|
reverseGeometryFilter?: boolean;
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
* geometries in this storage will be copied.
|
|
1869
|
-
*/
|
|
1870
|
-
geometryFilterStorage?: LayerTaskDataStorageDc | BaseTaskDataStorageDc;
|
|
1871
|
-
/** Storage that is to be used as a data source for the task. */
|
|
1872
|
-
source: BaseTaskDataStorageDc;
|
|
1873
|
-
/** Storage that is to be used as a target for writing the task result. */
|
|
1874
|
-
target: BaseTaskDataStorageDc;
|
|
1875
|
-
}
|
|
1710
|
+
geometryFilterStorage?: LayerTaskDataStorageDc;
|
|
1711
|
+
};
|
|
1876
1712
|
/**
|
|
1877
1713
|
* Server response for the creation of a filter in filter service.
|
|
1878
1714
|
*/
|
|
@@ -1888,16 +1724,44 @@ export interface FilterDc {
|
|
|
1888
1724
|
filterString: string;
|
|
1889
1725
|
}
|
|
1890
1726
|
/**
|
|
1891
|
-
|
|
1892
|
-
|
|
1727
|
+
* Sets whether font should be styled.
|
|
1728
|
+
|
|
1729
|
+
normal
|
|
1730
|
+
|
|
1731
|
+
oblique
|
|
1732
|
+
|
|
1733
|
+
italic
|
|
1734
|
+
*/
|
|
1893
1735
|
export declare enum FontStyle {
|
|
1894
1736
|
Normal = "normal",
|
|
1895
1737
|
Oblique = "oblique",
|
|
1896
1738
|
Italic = "italic"
|
|
1897
1739
|
}
|
|
1898
1740
|
/**
|
|
1899
|
-
|
|
1900
|
-
|
|
1741
|
+
* Specifies the weight (or boldness) of the font.
|
|
1742
|
+
|
|
1743
|
+
Thin
|
|
1744
|
+
|
|
1745
|
+
ExtraLight
|
|
1746
|
+
|
|
1747
|
+
Light
|
|
1748
|
+
|
|
1749
|
+
SemiLight
|
|
1750
|
+
|
|
1751
|
+
Normal
|
|
1752
|
+
|
|
1753
|
+
Medium
|
|
1754
|
+
|
|
1755
|
+
DemiBold
|
|
1756
|
+
|
|
1757
|
+
Bold
|
|
1758
|
+
|
|
1759
|
+
ExtraBold
|
|
1760
|
+
|
|
1761
|
+
Black
|
|
1762
|
+
|
|
1763
|
+
ExtraBlack
|
|
1764
|
+
*/
|
|
1901
1765
|
export declare enum FontWeight {
|
|
1902
1766
|
Thin = "Thin",
|
|
1903
1767
|
ExtraLight = "ExtraLight",
|
|
@@ -1929,6 +1793,12 @@ export interface FunctionInfoDc {
|
|
|
1929
1793
|
/** List of function arguments. */
|
|
1930
1794
|
arguments?: FunctionArgumentInfoDc[];
|
|
1931
1795
|
}
|
|
1796
|
+
/**
|
|
1797
|
+
* Description of the temp file as a task data storage.
|
|
1798
|
+
*/
|
|
1799
|
+
export declare type GdbStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
1800
|
+
type?: string;
|
|
1801
|
+
};
|
|
1932
1802
|
/**
|
|
1933
1803
|
* Geocode result.
|
|
1934
1804
|
*/
|
|
@@ -1942,10 +1812,10 @@ export interface GeocodeResultDc {
|
|
|
1942
1812
|
* @format double
|
|
1943
1813
|
*/
|
|
1944
1814
|
score?: number;
|
|
1945
|
-
/**
|
|
1815
|
+
/** The position at the map in [X, Y] format. */
|
|
1946
1816
|
center?: PositionDc;
|
|
1947
1817
|
/** Result geometry. */
|
|
1948
|
-
geometry?:
|
|
1818
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
1949
1819
|
}
|
|
1950
1820
|
/**
|
|
1951
1821
|
* Geocode suggest result.
|
|
@@ -1984,17 +1854,17 @@ export interface GeometryDc {
|
|
|
1984
1854
|
}
|
|
1985
1855
|
/**
|
|
1986
1856
|
*
|
|
1987
|
-
|
|
1857
|
+
|
|
1988
1858
|
unknown
|
|
1989
|
-
|
|
1859
|
+
|
|
1990
1860
|
point
|
|
1991
|
-
|
|
1861
|
+
|
|
1992
1862
|
polyline
|
|
1993
|
-
|
|
1863
|
+
|
|
1994
1864
|
polygon
|
|
1995
|
-
|
|
1865
|
+
|
|
1996
1866
|
envelope
|
|
1997
|
-
|
|
1867
|
+
|
|
1998
1868
|
multipoint
|
|
1999
1869
|
*/
|
|
2000
1870
|
export declare enum GeometryType {
|
|
@@ -2008,26 +1878,19 @@ export declare enum GeometryType {
|
|
|
2008
1878
|
/**
|
|
2009
1879
|
* Map element data contract.
|
|
2010
1880
|
*/
|
|
2011
|
-
export
|
|
2012
|
-
/** Grid color. */
|
|
1881
|
+
export declare type GridElementDc = ModelElementDc & {
|
|
2013
1882
|
color?: string;
|
|
2014
|
-
/**
|
|
2015
|
-
* Grid width.
|
|
2016
|
-
* @format int32
|
|
2017
|
-
*/
|
|
2018
1883
|
gridThickness?: number;
|
|
2019
|
-
|
|
2020
|
-
enabled?: boolean;
|
|
2021
|
-
}
|
|
1884
|
+
};
|
|
2022
1885
|
/**
|
|
2023
1886
|
* Resource group.
|
|
2024
|
-
|
|
1887
|
+
|
|
2025
1888
|
my
|
|
2026
|
-
|
|
1889
|
+
|
|
2027
1890
|
role
|
|
2028
|
-
|
|
1891
|
+
|
|
2029
1892
|
public
|
|
2030
|
-
|
|
1893
|
+
|
|
2031
1894
|
all
|
|
2032
1895
|
*/
|
|
2033
1896
|
export declare enum Group {
|
|
@@ -2039,41 +1902,25 @@ export declare enum Group {
|
|
|
2039
1902
|
/**
|
|
2040
1903
|
* Defines the brush for the hatch fill.
|
|
2041
1904
|
*/
|
|
2042
|
-
export
|
|
1905
|
+
export declare type HatchBrushDc = FillBrushDc & {
|
|
2043
1906
|
type?: string;
|
|
2044
|
-
/**
|
|
2045
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2046
|
-
* as an object with a "type" parameter specified.
|
|
2047
|
-
*/
|
|
2048
1907
|
hatchColor?: ParameterDcColor;
|
|
2049
|
-
|
|
2050
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2051
|
-
* as an object with a "type" parameter specified.
|
|
2052
|
-
*/
|
|
2053
|
-
hatchAngle?: ParameterDcDouble;
|
|
2054
|
-
/**
|
|
2055
|
-
* Specifies the stroke width of the hatch lines.
|
|
2056
|
-
* @format float
|
|
2057
|
-
*/
|
|
1908
|
+
hatchAngle?: CalculatedParameterDc;
|
|
2058
1909
|
hatchWidth?: number;
|
|
2059
|
-
/**
|
|
2060
|
-
* Specifies the pixel increment that uses to space the hatch lines. The separation between the lines is the scaling factor minus the hatch width.
|
|
2061
|
-
* 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.
|
|
2062
|
-
* Specify the same value for horizontal and vertical scaling.
|
|
2063
|
-
* 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.
|
|
2064
|
-
* The separation between the lines is therefore three pixels.
|
|
2065
|
-
*/
|
|
2066
1910
|
scalingFactor: number[];
|
|
2067
|
-
|
|
2068
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2069
|
-
* as an object with a "type" parameter specified.
|
|
2070
|
-
*/
|
|
2071
|
-
color?: ParameterDcColor;
|
|
2072
|
-
}
|
|
1911
|
+
};
|
|
2073
1912
|
/**
|
|
2074
|
-
*
|
|
1913
|
+
* <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.HexGridSymbol" />
|
|
2075
1914
|
*/
|
|
2076
|
-
export declare type
|
|
1915
|
+
export declare type HexGridSymbolDc = SymbolDc & {
|
|
1916
|
+
type?: string;
|
|
1917
|
+
gridHeight?: number;
|
|
1918
|
+
gridWidth?: number;
|
|
1919
|
+
hexagonOrientation?: number;
|
|
1920
|
+
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
1921
|
+
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
1922
|
+
aggregations?: Record<string, AggregationFunction>;
|
|
1923
|
+
};
|
|
2077
1924
|
export interface IDatum {
|
|
2078
1925
|
/** @format double */
|
|
2079
1926
|
semimajor?: number;
|
|
@@ -2121,30 +1968,24 @@ export interface IEnvelopeGeometry {
|
|
|
2121
1968
|
envelope?: IEnvelopeGeometry;
|
|
2122
1969
|
}
|
|
2123
1970
|
export interface ILineEndingDc {
|
|
2124
|
-
/** Type of the line ending. */
|
|
2125
|
-
type?: LineEndingType;
|
|
2126
|
-
}
|
|
2127
|
-
/**
|
|
2128
|
-
* The response that contains a paged list of items.
|
|
2129
|
-
*/
|
|
2130
|
-
export interface IListResponse {
|
|
2131
|
-
/** The items of the response. */
|
|
2132
|
-
items?: any[];
|
|
2133
|
-
/**
|
|
2134
|
-
* Total count of the list in all pages.
|
|
2135
|
-
* @format int64
|
|
2136
|
-
*/
|
|
2137
|
-
totalCount?: number;
|
|
2138
1971
|
/**
|
|
2139
|
-
*
|
|
2140
|
-
*
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
*
|
|
2145
|
-
*
|
|
1972
|
+
* Type of the line ending.
|
|
1973
|
+
*
|
|
1974
|
+
* none
|
|
1975
|
+
*
|
|
1976
|
+
* arrow
|
|
1977
|
+
*
|
|
1978
|
+
* filledArrow
|
|
1979
|
+
*
|
|
1980
|
+
* square
|
|
1981
|
+
*
|
|
1982
|
+
* filledSquare
|
|
1983
|
+
*
|
|
1984
|
+
* circle
|
|
1985
|
+
*
|
|
1986
|
+
* filledCircle
|
|
2146
1987
|
*/
|
|
2147
|
-
|
|
1988
|
+
type?: LineEndingType;
|
|
2148
1989
|
}
|
|
2149
1990
|
/**
|
|
2150
1991
|
* Configuration of an SP service.
|
|
@@ -2237,30 +2078,24 @@ export interface IceRouterResultDc {
|
|
|
2237
2078
|
/**
|
|
2238
2079
|
* A single image point symbol with an outer stroke.
|
|
2239
2080
|
*/
|
|
2240
|
-
export
|
|
2081
|
+
export declare type ImagePointSymbolDc = SymbolDc & {
|
|
2241
2082
|
type?: string;
|
|
2242
|
-
/** Image in base64 string. */
|
|
2243
2083
|
image?: string;
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
*/
|
|
2260
|
-
angle?: ParameterDcDouble;
|
|
2261
|
-
/** If set true symbol will not be rendered. */
|
|
2262
|
-
disabled?: boolean;
|
|
2263
|
-
}
|
|
2084
|
+
width?: CalculatedParameterDc;
|
|
2085
|
+
height?: CalculatedParameterDc;
|
|
2086
|
+
offset?: CalculatedParameterDc[];
|
|
2087
|
+
angle?: CalculatedParameterDc;
|
|
2088
|
+
};
|
|
2089
|
+
/**
|
|
2090
|
+
* Image polygon symbol.
|
|
2091
|
+
*/
|
|
2092
|
+
export declare type ImagePolygonSymbolDc = SymbolDc & {
|
|
2093
|
+
type?: string;
|
|
2094
|
+
image?: string;
|
|
2095
|
+
fillColor?: ParameterDcColor;
|
|
2096
|
+
strokeColor?: ParameterDcColor;
|
|
2097
|
+
strokeWidth?: CalculatedParameterDc;
|
|
2098
|
+
};
|
|
2264
2099
|
/**
|
|
2265
2100
|
* Data schema of a file for import.
|
|
2266
2101
|
*/
|
|
@@ -2294,7 +2129,7 @@ export interface ImportLayerDataSchema {
|
|
|
2294
2129
|
* @format int64
|
|
2295
2130
|
*/
|
|
2296
2131
|
objectCount?: number;
|
|
2297
|
-
/** Information about the attributes
|
|
2132
|
+
/** Information about the layer attributes and their configuration. */
|
|
2298
2133
|
layerDefinition?: LayerDefinitionDc;
|
|
2299
2134
|
/** Schema of a inner layers. */
|
|
2300
2135
|
children?: ImportLayerDataSchema[];
|
|
@@ -2302,91 +2137,41 @@ export interface ImportLayerDataSchema {
|
|
|
2302
2137
|
/**
|
|
2303
2138
|
* The description of the temporary features list as a server task data storage.
|
|
2304
2139
|
*/
|
|
2305
|
-
export
|
|
2140
|
+
export declare type InMemoryTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
2306
2141
|
type?: string;
|
|
2307
|
-
/** List of features to save in storage. */
|
|
2308
2142
|
features: FeatureDc[];
|
|
2309
|
-
/** The name of the attribute that is used to uniquely identify a feature in the layer. */
|
|
2310
2143
|
idAttribute: string;
|
|
2311
|
-
/** The name of the attribute that is used for assigning geometry value for the feature. */
|
|
2312
2144
|
geometryAttribute: string;
|
|
2313
|
-
/**
|
|
2314
|
-
*
|
|
2315
|
-
*
|
|
2316
|
-
* unknown
|
|
2317
|
-
*
|
|
2318
|
-
* point
|
|
2319
|
-
*
|
|
2320
|
-
* polyline
|
|
2321
|
-
*
|
|
2322
|
-
* polygon
|
|
2323
|
-
*
|
|
2324
|
-
* envelope
|
|
2325
|
-
*
|
|
2326
|
-
* multipoint
|
|
2327
|
-
*/
|
|
2328
2145
|
geometryType: GeometryType;
|
|
2329
|
-
/**
|
|
2330
|
-
* The spatial reference of the layer.
|
|
2331
|
-
* @format int32
|
|
2332
|
-
*/
|
|
2333
2146
|
spatialReference?: number;
|
|
2334
|
-
}
|
|
2147
|
+
};
|
|
2335
2148
|
/**
|
|
2336
2149
|
* Description of the temp file as a task data storage.
|
|
2337
2150
|
*/
|
|
2338
|
-
export
|
|
2151
|
+
export declare type KmlStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
2339
2152
|
type?: string;
|
|
2340
|
-
|
|
2341
|
-
fileName: string;
|
|
2342
|
-
/** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
|
|
2343
|
-
layerName?: string;
|
|
2344
|
-
}
|
|
2153
|
+
};
|
|
2345
2154
|
/**
|
|
2346
2155
|
* Base class for labels.
|
|
2347
2156
|
*/
|
|
2348
|
-
export
|
|
2349
|
-
/** Label text format. */
|
|
2157
|
+
export declare type LabelSymbolDc = SymbolDc & {
|
|
2350
2158
|
fieldFormat?: string;
|
|
2351
|
-
/** Label text font family. */
|
|
2352
2159
|
fontFamily?: string;
|
|
2353
|
-
/** Sets whether font should be styled. */
|
|
2354
2160
|
fontStyle?: FontStyle;
|
|
2355
|
-
/** Specifies the weight (or boldness) of the font. */
|
|
2356
2161
|
fontWeight?: FontWeight;
|
|
2357
|
-
/**
|
|
2358
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2359
|
-
* as an object with a "type" parameter specified.
|
|
2360
|
-
*/
|
|
2361
2162
|
fontColor?: ParameterDcColor;
|
|
2362
|
-
|
|
2363
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2364
|
-
* as an object with a "type" parameter specified.
|
|
2365
|
-
*/
|
|
2366
|
-
fontSize?: ParameterDcDouble;
|
|
2367
|
-
/** Sets the horizontal alignment of text. */
|
|
2163
|
+
fontSize?: CalculatedParameterDc;
|
|
2368
2164
|
horizontalAlignment?: TextAlignment;
|
|
2369
|
-
/** Sets the vertical alignment of text. */
|
|
2370
2165
|
verticalAlignment?: TextVerticalAlignment;
|
|
2371
|
-
/**
|
|
2372
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2373
|
-
* as an object with a "type" parameter specified.
|
|
2374
|
-
*/
|
|
2375
2166
|
haloColor?: ParameterDcColor;
|
|
2376
|
-
/**
|
|
2377
|
-
* Width of label stroke (halo).
|
|
2378
|
-
* @format float
|
|
2379
|
-
*/
|
|
2380
2167
|
haloWidth?: number;
|
|
2381
|
-
|
|
2382
|
-
offset?: ParameterDcDouble[];
|
|
2383
|
-
/** Specifies text background. */
|
|
2168
|
+
offset?: CalculatedParameterDc[];
|
|
2384
2169
|
textBackground?: TextBackgroundDc;
|
|
2385
|
-
|
|
2170
|
+
};
|
|
2171
|
+
export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
|
|
2386
2172
|
type?: string;
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
}
|
|
2173
|
+
symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2174
|
+
};
|
|
2390
2175
|
/**
|
|
2391
2176
|
* Information about the layer attributes and their configuration.
|
|
2392
2177
|
*/
|
|
@@ -2421,42 +2206,21 @@ export interface LayerDefinitionDc {
|
|
|
2421
2206
|
/** Sets false if the layer is readonly. */
|
|
2422
2207
|
isEditable?: boolean;
|
|
2423
2208
|
/** The description of the attributes of the layer. */
|
|
2424
|
-
attributes: Record<string, AttributeDefinitionDc
|
|
2209
|
+
attributes: Record<string, AttributeDefinitionDc>;
|
|
2425
2210
|
}
|
|
2426
2211
|
/**
|
|
2427
2212
|
* Map element data contract.
|
|
2428
2213
|
*/
|
|
2429
|
-
export
|
|
2430
|
-
/** Gets or sets layers for printing. */
|
|
2214
|
+
export declare type LayerMapElementDc = ModelElementDc & {
|
|
2431
2215
|
layers?: LayerModelDc[];
|
|
2432
2216
|
mapCenter?: Vector2;
|
|
2433
|
-
/**
|
|
2434
|
-
* Gets or sets map width.
|
|
2435
|
-
* @format int32
|
|
2436
|
-
*/
|
|
2437
2217
|
paperWidth?: number;
|
|
2438
|
-
/**
|
|
2439
|
-
* Gets or sets map height.
|
|
2440
|
-
* @format int32
|
|
2441
|
-
*/
|
|
2442
2218
|
paperHeight?: number;
|
|
2443
|
-
/**
|
|
2444
|
-
* Gets or sets spatial reference.
|
|
2445
|
-
* @format int32
|
|
2446
|
-
*/
|
|
2447
2219
|
spatialReference?: number;
|
|
2448
|
-
/**
|
|
2449
|
-
* Gets or sets map resolution.
|
|
2450
|
-
* @format double
|
|
2451
|
-
*/
|
|
2452
2220
|
resolution?: number;
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
scaleBar?: ScaleBarElementDc | ModelElementDc;
|
|
2457
|
-
/** Check what this model element enabled. */
|
|
2458
|
-
enabled?: boolean;
|
|
2459
|
-
}
|
|
2221
|
+
gridElement?: GridElementDc;
|
|
2222
|
+
scaleBar?: ScaleBarElementDc;
|
|
2223
|
+
};
|
|
2460
2224
|
/**
|
|
2461
2225
|
* Layer model data contract.
|
|
2462
2226
|
*/
|
|
@@ -2478,62 +2242,51 @@ export interface LayerModelDc {
|
|
|
2478
2242
|
/**
|
|
2479
2243
|
* The description of the layer service as a server task data storage.
|
|
2480
2244
|
*/
|
|
2481
|
-
export
|
|
2482
|
-
/** The name of the layer service. If 'temp' namespace. */
|
|
2245
|
+
export declare type LayerTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
2483
2246
|
serviceName: string;
|
|
2484
|
-
/** Condition. */
|
|
2485
2247
|
condition?: string;
|
|
2486
|
-
/**
|
|
2487
|
-
* If set to true, a new service with the given LayerServiceName will be created before the task is executed.
|
|
2488
|
-
* If create new service within 'temp' namespace, name of the table will be equal to LayerServiceName.
|
|
2489
|
-
* In this case LayerServiceName have to not longer 31 symbols.
|
|
2490
|
-
*/
|
|
2491
2248
|
createNewService?: boolean;
|
|
2492
2249
|
type?: string;
|
|
2493
|
-
}
|
|
2250
|
+
};
|
|
2494
2251
|
/**
|
|
2495
2252
|
* Layer template model data contract.
|
|
2496
2253
|
*/
|
|
2497
|
-
export
|
|
2254
|
+
export declare type LayerTemplateModelDc = TemplateModelDc & {
|
|
2498
2255
|
type?: string;
|
|
2499
|
-
|
|
2500
|
-
map?: LayerMapElementDc | ModelElementDc;
|
|
2501
|
-
/** Check if legend enabled. */
|
|
2256
|
+
map?: LayerMapElementDc;
|
|
2502
2257
|
legendEnabled?: boolean;
|
|
2503
|
-
/**
|
|
2504
|
-
* Legend layers from client.
|
|
2505
|
-
* Set null for using serverSide generated legend.
|
|
2506
|
-
*/
|
|
2507
2258
|
legendLayers?: LegendLayerDc[];
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
/**
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2259
|
+
};
|
|
2260
|
+
/**
|
|
2261
|
+
* Information about layer update.
|
|
2262
|
+
Includes ids of modified features and their bbox.
|
|
2263
|
+
*/
|
|
2264
|
+
export interface LayerUpdateInfo {
|
|
2265
|
+
/** Updated layer service name. */
|
|
2266
|
+
layerServiceName?: string;
|
|
2267
|
+
boundingBox?: IEnvelopeGeometry;
|
|
2268
|
+
/** Array of created ids. */
|
|
2269
|
+
createdIds?: ObjectId[];
|
|
2270
|
+
/** Array of updated ids. */
|
|
2271
|
+
updatedIds?: ObjectId[];
|
|
2272
|
+
/** Array of deleted ids. */
|
|
2273
|
+
deletedIds?: ObjectId[];
|
|
2274
|
+
/** Array of failed ids. */
|
|
2275
|
+
failedIds?: number[];
|
|
2521
2276
|
/**
|
|
2522
|
-
*
|
|
2523
|
-
* @format
|
|
2277
|
+
* Total objects count.
|
|
2278
|
+
* @format int64
|
|
2524
2279
|
*/
|
|
2525
|
-
|
|
2280
|
+
totalCount?: number;
|
|
2281
|
+
/** Is layer deleted flag. */
|
|
2282
|
+
isLayerDeleted?: boolean;
|
|
2283
|
+
/** Layer update exceptions. */
|
|
2284
|
+
exceptions?: ValueTupleStringString[];
|
|
2526
2285
|
/**
|
|
2527
|
-
*
|
|
2286
|
+
* Failed features count.
|
|
2528
2287
|
* @format int32
|
|
2529
2288
|
*/
|
|
2530
|
-
|
|
2531
|
-
/** Gets or sets paper margin. */
|
|
2532
|
-
margin?: number[];
|
|
2533
|
-
/** Localization of map. */
|
|
2534
|
-
localization?: TemplateLocalizationDc;
|
|
2535
|
-
/** Checks if title enabled. */
|
|
2536
|
-
titleEnabled?: boolean;
|
|
2289
|
+
failedCount?: number;
|
|
2537
2290
|
}
|
|
2538
2291
|
/**
|
|
2539
2292
|
* Information about layer update.
|
|
@@ -2584,58 +2337,41 @@ export interface LegendLayerDc {
|
|
|
2584
2337
|
/**
|
|
2585
2338
|
* Legend template model data contract.
|
|
2586
2339
|
*/
|
|
2587
|
-
export
|
|
2588
|
-
/** Gets or sets layers for printing. */
|
|
2340
|
+
export declare type LegendTemplateModelDc = TemplateModelDc & {
|
|
2589
2341
|
layers?: LayerModelDc[];
|
|
2590
|
-
/** Check if legend enabled. */
|
|
2591
2342
|
legendEnabled?: boolean;
|
|
2592
|
-
/**
|
|
2593
|
-
* Legend layers from client.
|
|
2594
|
-
* Set null for using serverSide generated legend.
|
|
2595
|
-
*/
|
|
2596
2343
|
legendLayers?: LegendLayerDc[];
|
|
2597
2344
|
type?: string;
|
|
2598
|
-
|
|
2599
|
-
fileName?: string;
|
|
2600
|
-
/** File Format. */
|
|
2601
|
-
fileFormat?: string;
|
|
2602
|
-
/** Gets or sets template name. */
|
|
2603
|
-
templateName?: string;
|
|
2604
|
-
/** Gets or sets template title. */
|
|
2605
|
-
title?: string;
|
|
2606
|
-
/**
|
|
2607
|
-
* Gets or sets paper width.
|
|
2608
|
-
* @format int32
|
|
2609
|
-
*/
|
|
2610
|
-
paperWidth?: number;
|
|
2611
|
-
/**
|
|
2612
|
-
* Gets or sets paper height.
|
|
2613
|
-
* @format int32
|
|
2614
|
-
*/
|
|
2615
|
-
paperHeight?: number;
|
|
2616
|
-
/**
|
|
2617
|
-
* Gets or sets dpi.
|
|
2618
|
-
* @format int32
|
|
2619
|
-
*/
|
|
2620
|
-
dpi?: number;
|
|
2621
|
-
/** Gets or sets paper margin. */
|
|
2622
|
-
margin?: number[];
|
|
2623
|
-
/** Localization of map. */
|
|
2624
|
-
localization?: TemplateLocalizationDc;
|
|
2625
|
-
/** Checks if title enabled. */
|
|
2626
|
-
titleEnabled?: boolean;
|
|
2627
|
-
}
|
|
2345
|
+
};
|
|
2628
2346
|
/**
|
|
2629
2347
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
2630
2348
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
2349
|
+
|
|
2350
|
+
small
|
|
2351
|
+
|
|
2352
|
+
large
|
|
2631
2353
|
*/
|
|
2632
2354
|
export declare enum LineEndingSize {
|
|
2633
2355
|
Small = "small",
|
|
2634
2356
|
Large = "large"
|
|
2635
2357
|
}
|
|
2636
2358
|
/**
|
|
2637
|
-
|
|
2638
|
-
|
|
2359
|
+
* Type of the line ending.
|
|
2360
|
+
|
|
2361
|
+
none
|
|
2362
|
+
|
|
2363
|
+
arrow
|
|
2364
|
+
|
|
2365
|
+
filledArrow
|
|
2366
|
+
|
|
2367
|
+
square
|
|
2368
|
+
|
|
2369
|
+
filledSquare
|
|
2370
|
+
|
|
2371
|
+
circle
|
|
2372
|
+
|
|
2373
|
+
filledCircle
|
|
2374
|
+
*/
|
|
2639
2375
|
export declare enum LineEndingType {
|
|
2640
2376
|
None = "none",
|
|
2641
2377
|
Arrow = "arrow",
|
|
@@ -2645,6 +2381,16 @@ export declare enum LineEndingType {
|
|
|
2645
2381
|
Circle = "circle",
|
|
2646
2382
|
FilledCircle = "filledCircle"
|
|
2647
2383
|
}
|
|
2384
|
+
/**
|
|
2385
|
+
* Linear service configuration Dc.
|
|
2386
|
+
*/
|
|
2387
|
+
export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
2388
|
+
attributesConfiguration: AttributesConfigurationDc;
|
|
2389
|
+
style?: StyleDc;
|
|
2390
|
+
condition?: string;
|
|
2391
|
+
featuresLimit?: number;
|
|
2392
|
+
extentOffset?: number;
|
|
2393
|
+
};
|
|
2648
2394
|
/**
|
|
2649
2395
|
* The response that contains a paged list of items.
|
|
2650
2396
|
*/
|
|
@@ -2661,9 +2407,9 @@ export interface ListResponseExtendedUserInfoDc {
|
|
|
2661
2407
|
/**
|
|
2662
2408
|
* The response that contains a paged list of items.
|
|
2663
2409
|
*/
|
|
2664
|
-
export interface
|
|
2410
|
+
export interface ListResponseFeatureDc {
|
|
2665
2411
|
/** The items of the response. */
|
|
2666
|
-
items?:
|
|
2412
|
+
items?: FeatureDc[];
|
|
2667
2413
|
/** @format int64 */
|
|
2668
2414
|
totalCount?: number;
|
|
2669
2415
|
/** @format int64 */
|
|
@@ -2674,9 +2420,22 @@ export interface ListResponseIEnumerable1 {
|
|
|
2674
2420
|
/**
|
|
2675
2421
|
* The response that contains a paged list of items.
|
|
2676
2422
|
*/
|
|
2677
|
-
export interface
|
|
2423
|
+
export interface ListResponseIEnumerable1 {
|
|
2678
2424
|
/** The items of the response. */
|
|
2679
|
-
items?:
|
|
2425
|
+
items?: Record<string, any>[][];
|
|
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 ListResponseNamespaceInfoDc {
|
|
2437
|
+
/** The items of the response. */
|
|
2438
|
+
items?: NamespaceInfoDc[];
|
|
2680
2439
|
/** @format int64 */
|
|
2681
2440
|
totalCount?: number;
|
|
2682
2441
|
/** @format int64 */
|
|
@@ -2689,7 +2448,7 @@ export interface ListResponseNamespaceInfoDc {
|
|
|
2689
2448
|
*/
|
|
2690
2449
|
export interface ListResponseProjectInfoDc {
|
|
2691
2450
|
/** The items of the response. */
|
|
2692
|
-
items?: (ProjectInfoDc |
|
|
2451
|
+
items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
|
|
2693
2452
|
/** @format int64 */
|
|
2694
2453
|
totalCount?: number;
|
|
2695
2454
|
/** @format int64 */
|
|
@@ -2710,6 +2469,32 @@ export interface ListResponseRoleInfoDc {
|
|
|
2710
2469
|
/** @format int64 */
|
|
2711
2470
|
limit?: number;
|
|
2712
2471
|
}
|
|
2472
|
+
/**
|
|
2473
|
+
* The response that contains a paged list of items.
|
|
2474
|
+
*/
|
|
2475
|
+
export interface ListResponseServiceListItemDc {
|
|
2476
|
+
/** The items of the response. */
|
|
2477
|
+
items?: ServiceListItemDc[];
|
|
2478
|
+
/** @format int64 */
|
|
2479
|
+
totalCount?: number;
|
|
2480
|
+
/** @format int64 */
|
|
2481
|
+
offset?: number;
|
|
2482
|
+
/** @format int64 */
|
|
2483
|
+
limit?: number;
|
|
2484
|
+
}
|
|
2485
|
+
/**
|
|
2486
|
+
* The response that contains a paged list of items.
|
|
2487
|
+
*/
|
|
2488
|
+
export interface ListResponseTableInfoDc {
|
|
2489
|
+
/** The items of the response. */
|
|
2490
|
+
items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
|
|
2491
|
+
/** @format int64 */
|
|
2492
|
+
totalCount?: number;
|
|
2493
|
+
/** @format int64 */
|
|
2494
|
+
offset?: number;
|
|
2495
|
+
/** @format int64 */
|
|
2496
|
+
limit?: number;
|
|
2497
|
+
}
|
|
2713
2498
|
/**
|
|
2714
2499
|
* The response that contains a paged list of items.
|
|
2715
2500
|
*/
|
|
@@ -2726,29 +2511,11 @@ export interface ListResponseUserInfoDc {
|
|
|
2726
2511
|
/**
|
|
2727
2512
|
* Configuration for the local tile service.
|
|
2728
2513
|
*/
|
|
2729
|
-
export
|
|
2730
|
-
/** Tile schema of the service. */
|
|
2514
|
+
export declare type LocalTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
2731
2515
|
tileInfo?: TileInfoDc;
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
alias?: string;
|
|
2736
|
-
/** Description of the service. */
|
|
2737
|
-
description?: string;
|
|
2738
|
-
/** Service access control list. */
|
|
2739
|
-
acl?: AccessControlListDc;
|
|
2740
|
-
/** Base64 encoded image - icon of the resource. */
|
|
2741
|
-
icon?: string;
|
|
2742
|
-
/**
|
|
2743
|
-
* <br>
|
|
2744
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
2745
|
-
* Administrator permissions are required to perform this operation.
|
|
2746
|
-
*
|
|
2747
|
-
*/
|
|
2748
|
-
owner?: string;
|
|
2749
|
-
/** Copyright text. */
|
|
2750
|
-
copyrightText?: string;
|
|
2751
|
-
}
|
|
2516
|
+
useRedisCache?: boolean;
|
|
2517
|
+
cacheExpire?: number;
|
|
2518
|
+
};
|
|
2752
2519
|
/**
|
|
2753
2520
|
* Tile LOD structure.
|
|
2754
2521
|
*/
|
|
@@ -2776,18 +2543,9 @@ export interface LoginDc {
|
|
|
2776
2543
|
/**
|
|
2777
2544
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
|
|
2778
2545
|
*/
|
|
2779
|
-
export
|
|
2780
|
-
/** Remote data provider name. */
|
|
2546
|
+
export declare type MapRemoteTableInfoDc = MapTableInfoDc & {
|
|
2781
2547
|
dataProvider: string;
|
|
2782
|
-
|
|
2783
|
-
name: string;
|
|
2784
|
-
/** Owner of the table. */
|
|
2785
|
-
owner: string;
|
|
2786
|
-
/** Create datasource alias. */
|
|
2787
|
-
alias?: string;
|
|
2788
|
-
/** Create datasource description. */
|
|
2789
|
-
description?: string;
|
|
2790
|
-
}
|
|
2548
|
+
};
|
|
2791
2549
|
/**
|
|
2792
2550
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
|
|
2793
2551
|
<br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
|
|
@@ -2805,50 +2563,32 @@ export interface MapTableInfoDc {
|
|
|
2805
2563
|
/**
|
|
2806
2564
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapViewInfoDc provides map view data source data contract.
|
|
2807
2565
|
*/
|
|
2808
|
-
export
|
|
2809
|
-
/** Name of the table, materialized view or view. */
|
|
2810
|
-
name: string;
|
|
2811
|
-
/** Owner of the table. */
|
|
2812
|
-
owner: string;
|
|
2813
|
-
/** Create datasource alias. */
|
|
2814
|
-
alias?: string;
|
|
2815
|
-
/** Create datasource description. */
|
|
2816
|
-
description?: string;
|
|
2817
|
-
}
|
|
2566
|
+
export declare type MapViewInfoDc = MapTableInfoDc;
|
|
2818
2567
|
/**
|
|
2819
2568
|
* The point symbol drawing as image with the mask.
|
|
2820
2569
|
*/
|
|
2821
|
-
export
|
|
2570
|
+
export declare type MaskedImagePointSymbolDc = SymbolDc & {
|
|
2822
2571
|
type?: string;
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
*/
|
|
2827
|
-
width?: ParameterDcDouble;
|
|
2828
|
-
/**
|
|
2829
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2830
|
-
* as an object with a "type" parameter specified.
|
|
2831
|
-
*/
|
|
2832
|
-
height?: ParameterDcDouble;
|
|
2833
|
-
/** Offset of the image center from the geographic point. */
|
|
2834
|
-
offset?: ParameterDcDouble[];
|
|
2835
|
-
/** Image in base64 string. */
|
|
2572
|
+
width?: CalculatedParameterDc;
|
|
2573
|
+
height?: CalculatedParameterDc;
|
|
2574
|
+
offset?: CalculatedParameterDc[];
|
|
2836
2575
|
image?: string;
|
|
2837
|
-
/** Image mask in base64 string. */
|
|
2838
2576
|
imageMask?: string;
|
|
2839
|
-
/**
|
|
2840
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2841
|
-
* as an object with a "type" parameter specified.
|
|
2842
|
-
*/
|
|
2843
2577
|
maskedColor?: ParameterDcColor;
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2578
|
+
angle?: CalculatedParameterDc;
|
|
2579
|
+
};
|
|
2580
|
+
/**
|
|
2581
|
+
* Polygon symbol drawing as image with the mask.
|
|
2582
|
+
*/
|
|
2583
|
+
export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
|
|
2584
|
+
type?: string;
|
|
2585
|
+
fillColor?: ParameterDcColor;
|
|
2586
|
+
strokeColor?: ParameterDcColor;
|
|
2587
|
+
strokeWidth?: CalculatedParameterDc;
|
|
2588
|
+
image?: string;
|
|
2589
|
+
imageMask?: string;
|
|
2590
|
+
maskedColor?: ParameterDcColor;
|
|
2591
|
+
};
|
|
2852
2592
|
/**
|
|
2853
2593
|
* Base template model data contract.
|
|
2854
2594
|
*/
|
|
@@ -2856,16 +2596,20 @@ export interface ModelElementDc {
|
|
|
2856
2596
|
/** Check what this model element enabled. */
|
|
2857
2597
|
enabled?: boolean;
|
|
2858
2598
|
}
|
|
2599
|
+
/**
|
|
2600
|
+
* Multipoint geometry object definition.
|
|
2601
|
+
*/
|
|
2602
|
+
export declare type MultiPointDc = GeometryDc & {
|
|
2603
|
+
coordinates: PositionDc[];
|
|
2604
|
+
type?: GeometryType;
|
|
2605
|
+
};
|
|
2859
2606
|
/**
|
|
2860
2607
|
* A multipoint symbol.
|
|
2861
2608
|
*/
|
|
2862
|
-
export
|
|
2609
|
+
export declare type MultipointSymbolDc = SymbolDc & {
|
|
2863
2610
|
type?: string;
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
/** If set true symbol will not be rendered. */
|
|
2867
|
-
disabled?: boolean;
|
|
2868
|
-
}
|
|
2611
|
+
pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2612
|
+
};
|
|
2869
2613
|
/**
|
|
2870
2614
|
* Information about a namespace .
|
|
2871
2615
|
*/
|
|
@@ -2890,15 +2634,15 @@ export interface NamespaceInfoDc {
|
|
|
2890
2634
|
export declare type ObjectId = object;
|
|
2891
2635
|
/**
|
|
2892
2636
|
*
|
|
2893
|
-
|
|
2637
|
+
|
|
2894
2638
|
Unknown
|
|
2895
|
-
|
|
2639
|
+
|
|
2896
2640
|
union
|
|
2897
|
-
|
|
2641
|
+
|
|
2898
2642
|
intersection
|
|
2899
|
-
|
|
2643
|
+
|
|
2900
2644
|
subtraction
|
|
2901
|
-
|
|
2645
|
+
|
|
2902
2646
|
symDifference
|
|
2903
2647
|
*/
|
|
2904
2648
|
export declare enum Operation {
|
|
@@ -2911,46 +2655,41 @@ export declare enum Operation {
|
|
|
2911
2655
|
/**
|
|
2912
2656
|
* Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
|
|
2913
2657
|
*/
|
|
2914
|
-
export
|
|
2658
|
+
export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
|
|
2915
2659
|
type?: string;
|
|
2916
|
-
/**
|
|
2917
|
-
*
|
|
2918
|
-
*
|
|
2919
|
-
* Unknown
|
|
2920
|
-
*
|
|
2921
|
-
* union
|
|
2922
|
-
*
|
|
2923
|
-
* intersection
|
|
2924
|
-
*
|
|
2925
|
-
* subtraction
|
|
2926
|
-
*
|
|
2927
|
-
* symDifference
|
|
2928
|
-
*/
|
|
2929
2660
|
operation: Operation;
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
/** Storage that is to be used as a data source for the task. */
|
|
2933
|
-
source: BaseTaskDataStorageDc;
|
|
2934
|
-
/** Storage that is to be used as a target for writing the task result. */
|
|
2935
|
-
target: BaseTaskDataStorageDc;
|
|
2936
|
-
}
|
|
2661
|
+
toolLayer?: LayerTaskDataStorageDc;
|
|
2662
|
+
};
|
|
2937
2663
|
/**
|
|
2938
2664
|
* Features list definition.
|
|
2939
2665
|
*/
|
|
2940
|
-
export
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2666
|
+
export declare type PagedFeaturesListDc = ListResponseFeatureDc;
|
|
2667
|
+
/**
|
|
2668
|
+
* A list of items that is returned for filtered paged requests.
|
|
2669
|
+
*/
|
|
2670
|
+
export interface PagedListConfigDc {
|
|
2671
|
+
/**
|
|
2672
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2673
|
+
* @format int64
|
|
2674
|
+
*/
|
|
2944
2675
|
totalCount?: number;
|
|
2945
|
-
/**
|
|
2676
|
+
/**
|
|
2677
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2678
|
+
* @format int32
|
|
2679
|
+
*/
|
|
2946
2680
|
offset?: number;
|
|
2947
|
-
/**
|
|
2681
|
+
/**
|
|
2682
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2683
|
+
* @format int32
|
|
2684
|
+
*/
|
|
2948
2685
|
limit?: number;
|
|
2686
|
+
/** The retrieved items in the list. */
|
|
2687
|
+
items?: ConfigDc[];
|
|
2949
2688
|
}
|
|
2950
2689
|
/**
|
|
2951
2690
|
* A list of items that is returned for filtered paged requests.
|
|
2952
2691
|
*/
|
|
2953
|
-
export interface
|
|
2692
|
+
export interface PagedListTagInfoDc {
|
|
2954
2693
|
/**
|
|
2955
2694
|
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2956
2695
|
* @format int64
|
|
@@ -2967,7 +2706,7 @@ export interface PagedListConfigDc {
|
|
|
2967
2706
|
*/
|
|
2968
2707
|
limit?: number;
|
|
2969
2708
|
/** The retrieved items in the list. */
|
|
2970
|
-
items?:
|
|
2709
|
+
items?: TagInfoDc[];
|
|
2971
2710
|
}
|
|
2972
2711
|
/**
|
|
2973
2712
|
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
@@ -2988,43 +2727,28 @@ export interface ParameterDcDouble extends BrandedType<'ParameterDcDouble'> {
|
|
|
2988
2727
|
/**
|
|
2989
2728
|
* Provides image pattern brush properties.
|
|
2990
2729
|
*/
|
|
2991
|
-
export
|
|
2730
|
+
export declare type PatternBrushDc = FillBrushDc & {
|
|
2992
2731
|
type: string;
|
|
2993
|
-
/** Specifies image in base64. */
|
|
2994
2732
|
pattern: string;
|
|
2995
|
-
/**
|
|
2996
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
2997
|
-
* as an object with a "type" parameter specified.
|
|
2998
|
-
*/
|
|
2999
2733
|
patternColor?: ParameterDcColor;
|
|
3000
|
-
/**
|
|
3001
|
-
* Specifies pattern rotation angle in radians.
|
|
3002
|
-
* @format float
|
|
3003
|
-
*/
|
|
3004
2734
|
angle?: number;
|
|
3005
|
-
/** Specifies pattern size scaling. */
|
|
3006
2735
|
scalingFactor?: number[];
|
|
3007
|
-
|
|
3008
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3009
|
-
* as an object with a "type" parameter specified.
|
|
3010
|
-
*/
|
|
3011
|
-
color?: ParameterDcColor;
|
|
3012
|
-
}
|
|
2736
|
+
};
|
|
3013
2737
|
/**
|
|
3014
2738
|
* User permissions for server security objects (services, projects etc.)
|
|
3015
|
-
|
|
2739
|
+
|
|
3016
2740
|
none
|
|
3017
|
-
|
|
2741
|
+
|
|
3018
2742
|
configure
|
|
3019
|
-
|
|
2743
|
+
|
|
3020
2744
|
write
|
|
3021
|
-
|
|
2745
|
+
|
|
3022
2746
|
read
|
|
3023
|
-
|
|
2747
|
+
|
|
3024
2748
|
read,configure
|
|
3025
|
-
|
|
2749
|
+
|
|
3026
2750
|
read,write
|
|
3027
|
-
|
|
2751
|
+
|
|
3028
2752
|
read,write,configure
|
|
3029
2753
|
*/
|
|
3030
2754
|
export declare enum Permissions {
|
|
@@ -3039,83 +2763,23 @@ export declare enum Permissions {
|
|
|
3039
2763
|
/**
|
|
3040
2764
|
* Pipeline of server tasks. The tasks given in the InnerTasks property are executed one after another inside one server task.
|
|
3041
2765
|
*/
|
|
3042
|
-
export
|
|
2766
|
+
export declare type PipelineTaskParametersDc = TaskParametersDc & {
|
|
3043
2767
|
type?: string;
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
}
|
|
2768
|
+
innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc)[];
|
|
2769
|
+
};
|
|
3047
2770
|
/**
|
|
3048
2771
|
* Spatial point geometry object representation.
|
|
3049
2772
|
*/
|
|
3050
|
-
export
|
|
3051
|
-
/** Point coordinates. */
|
|
2773
|
+
export declare type PointDc = GeometryDc & {
|
|
3052
2774
|
coordinates: PositionDc;
|
|
3053
|
-
/**
|
|
3054
|
-
*
|
|
3055
|
-
*
|
|
3056
|
-
* unknown
|
|
3057
|
-
*
|
|
3058
|
-
* point
|
|
3059
|
-
*
|
|
3060
|
-
* polyline
|
|
3061
|
-
*
|
|
3062
|
-
* polygon
|
|
3063
|
-
*
|
|
3064
|
-
* envelope
|
|
3065
|
-
*
|
|
3066
|
-
* multipoint
|
|
3067
|
-
*/
|
|
3068
2775
|
type?: GeometryType;
|
|
3069
|
-
|
|
3070
|
-
* Spatial reference id.
|
|
3071
|
-
* @format int32
|
|
3072
|
-
*/
|
|
3073
|
-
sr?: number;
|
|
3074
|
-
}
|
|
2776
|
+
};
|
|
3075
2777
|
/**
|
|
3076
2778
|
* Label of a point object.
|
|
3077
2779
|
*/
|
|
3078
|
-
export
|
|
2780
|
+
export declare type PointLabelSymbolDc = LabelSymbolDc & {
|
|
3079
2781
|
type?: string;
|
|
3080
|
-
|
|
3081
|
-
fieldFormat?: string;
|
|
3082
|
-
/** Label text font family. */
|
|
3083
|
-
fontFamily?: string;
|
|
3084
|
-
/** Sets whether font should be styled. */
|
|
3085
|
-
fontStyle?: FontStyle;
|
|
3086
|
-
/** Specifies the weight (or boldness) of the font. */
|
|
3087
|
-
fontWeight?: FontWeight;
|
|
3088
|
-
/**
|
|
3089
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3090
|
-
* as an object with a "type" parameter specified.
|
|
3091
|
-
*/
|
|
3092
|
-
fontColor?: ParameterDcColor;
|
|
3093
|
-
/**
|
|
3094
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3095
|
-
* as an object with a "type" parameter specified.
|
|
3096
|
-
*/
|
|
3097
|
-
fontSize?: ParameterDcDouble;
|
|
3098
|
-
/** Sets the horizontal alignment of text. */
|
|
3099
|
-
horizontalAlignment?: TextAlignment;
|
|
3100
|
-
/** Sets the vertical alignment of text. */
|
|
3101
|
-
verticalAlignment?: TextVerticalAlignment;
|
|
3102
|
-
/**
|
|
3103
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3104
|
-
* as an object with a "type" parameter specified.
|
|
3105
|
-
*/
|
|
3106
|
-
haloColor?: ParameterDcColor;
|
|
3107
|
-
/**
|
|
3108
|
-
* Width of label stroke (halo).
|
|
3109
|
-
* @format float
|
|
3110
|
-
*/
|
|
3111
|
-
haloWidth?: number;
|
|
3112
|
-
/** Offset of the label center from the geographic point. */
|
|
3113
|
-
offset?: ParameterDcDouble[];
|
|
3114
|
-
/** Specifies text background. */
|
|
3115
|
-
textBackground?: TextBackgroundDc;
|
|
3116
|
-
/** If set true symbol will not be rendered. */
|
|
3117
|
-
disabled?: boolean;
|
|
3118
|
-
}
|
|
2782
|
+
};
|
|
3119
2783
|
export interface PolicyDc {
|
|
3120
2784
|
/**
|
|
3121
2785
|
* Type of the authorization policy.
|
|
@@ -3139,17 +2803,17 @@ export interface PolicyDc {
|
|
|
3139
2803
|
}
|
|
3140
2804
|
/**
|
|
3141
2805
|
* Type of the authorization policy.
|
|
3142
|
-
|
|
2806
|
+
|
|
3143
2807
|
Unknown
|
|
3144
|
-
|
|
2808
|
+
|
|
3145
2809
|
CreateTable
|
|
3146
|
-
|
|
2810
|
+
|
|
3147
2811
|
CreateLayer
|
|
3148
|
-
|
|
2812
|
+
|
|
3149
2813
|
CreateProject
|
|
3150
|
-
|
|
2814
|
+
|
|
3151
2815
|
MaxFeaturesInOneTable
|
|
3152
|
-
|
|
2816
|
+
|
|
3153
2817
|
MaxObjectsToExport
|
|
3154
2818
|
*/
|
|
3155
2819
|
export declare enum PolicyType {
|
|
@@ -3163,264 +2827,73 @@ export declare enum PolicyType {
|
|
|
3163
2827
|
/**
|
|
3164
2828
|
* Polyline and Polygon base geometry object definition.
|
|
3165
2829
|
*/
|
|
3166
|
-
export
|
|
3167
|
-
/** Poly coordinates. */
|
|
2830
|
+
export declare type PolyDc = GeometryDc & {
|
|
3168
2831
|
coordinates: PositionDc[][];
|
|
3169
|
-
|
|
3170
|
-
*
|
|
3171
|
-
*
|
|
3172
|
-
* unknown
|
|
3173
|
-
*
|
|
3174
|
-
* point
|
|
3175
|
-
*
|
|
3176
|
-
* polyline
|
|
3177
|
-
*
|
|
3178
|
-
* polygon
|
|
3179
|
-
*
|
|
3180
|
-
* envelope
|
|
3181
|
-
*
|
|
3182
|
-
* multipoint
|
|
3183
|
-
*/
|
|
3184
|
-
type: GeometryType;
|
|
3185
|
-
/**
|
|
3186
|
-
* Spatial reference id.
|
|
3187
|
-
* @format int32
|
|
3188
|
-
*/
|
|
3189
|
-
sr?: number;
|
|
3190
|
-
}
|
|
2832
|
+
};
|
|
3191
2833
|
/**
|
|
3192
2834
|
* Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
|
|
3193
2835
|
*/
|
|
3194
|
-
export
|
|
3195
|
-
/** Is sets true label center fixed and not accept envelope. */
|
|
2836
|
+
export declare type PolygonCenterLabelSymbolDc = LabelSymbolDc & {
|
|
3196
2837
|
fixCenter?: boolean;
|
|
3197
2838
|
type?: string;
|
|
3198
|
-
|
|
3199
|
-
fieldFormat?: string;
|
|
3200
|
-
/** Label text font family. */
|
|
3201
|
-
fontFamily?: string;
|
|
3202
|
-
/** Sets whether font should be styled. */
|
|
3203
|
-
fontStyle?: FontStyle;
|
|
3204
|
-
/** Specifies the weight (or boldness) of the font. */
|
|
3205
|
-
fontWeight?: FontWeight;
|
|
3206
|
-
/**
|
|
3207
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3208
|
-
* as an object with a "type" parameter specified.
|
|
3209
|
-
*/
|
|
3210
|
-
fontColor?: ParameterDcColor;
|
|
3211
|
-
/**
|
|
3212
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3213
|
-
* as an object with a "type" parameter specified.
|
|
3214
|
-
*/
|
|
3215
|
-
fontSize?: ParameterDcDouble;
|
|
3216
|
-
/** Sets the horizontal alignment of text. */
|
|
3217
|
-
horizontalAlignment?: TextAlignment;
|
|
3218
|
-
/** Sets the vertical alignment of text. */
|
|
3219
|
-
verticalAlignment?: TextVerticalAlignment;
|
|
3220
|
-
/**
|
|
3221
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3222
|
-
* as an object with a "type" parameter specified.
|
|
3223
|
-
*/
|
|
3224
|
-
haloColor?: ParameterDcColor;
|
|
3225
|
-
/**
|
|
3226
|
-
* Width of label stroke (halo).
|
|
3227
|
-
* @format float
|
|
3228
|
-
*/
|
|
3229
|
-
haloWidth?: number;
|
|
3230
|
-
/** Offset of the label center from the geographic point. */
|
|
3231
|
-
offset?: ParameterDcDouble[];
|
|
3232
|
-
/** Specifies text background. */
|
|
3233
|
-
textBackground?: TextBackgroundDc;
|
|
3234
|
-
/** If set true symbol will not be rendered. */
|
|
3235
|
-
disabled?: boolean;
|
|
3236
|
-
}
|
|
2839
|
+
};
|
|
3237
2840
|
/**
|
|
3238
2841
|
* Polygon geometry object definition.
|
|
3239
2842
|
*/
|
|
3240
|
-
export
|
|
3241
|
-
/**
|
|
3242
|
-
*
|
|
3243
|
-
*
|
|
3244
|
-
* unknown
|
|
3245
|
-
*
|
|
3246
|
-
* point
|
|
3247
|
-
*
|
|
3248
|
-
* polyline
|
|
3249
|
-
*
|
|
3250
|
-
* polygon
|
|
3251
|
-
*
|
|
3252
|
-
* envelope
|
|
3253
|
-
*
|
|
3254
|
-
* multipoint
|
|
3255
|
-
*/
|
|
2843
|
+
export declare type PolygonDc = PolyDc & {
|
|
3256
2844
|
type?: GeometryType;
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
2845
|
+
};
|
|
2846
|
+
/**
|
|
2847
|
+
* <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.PolygonGridSymbol" />
|
|
2848
|
+
*/
|
|
2849
|
+
export declare type PolygonGridSymbolDc = SymbolDc & {
|
|
2850
|
+
type?: string;
|
|
2851
|
+
gridSize?: number;
|
|
2852
|
+
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
2853
|
+
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
2854
|
+
aggregations?: Record<string, AggregationFunction>;
|
|
2855
|
+
};
|
|
3265
2856
|
/**
|
|
3266
2857
|
* Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
|
|
3267
2858
|
*/
|
|
3268
|
-
export
|
|
2859
|
+
export declare type PolygonLabelSymbolDc = LabelSymbolDc & {
|
|
3269
2860
|
type?: string;
|
|
3270
|
-
|
|
3271
|
-
fieldFormat?: string;
|
|
3272
|
-
/** Label text font family. */
|
|
3273
|
-
fontFamily?: string;
|
|
3274
|
-
/** Sets whether font should be styled. */
|
|
3275
|
-
fontStyle?: FontStyle;
|
|
3276
|
-
/** Specifies the weight (or boldness) of the font. */
|
|
3277
|
-
fontWeight?: FontWeight;
|
|
3278
|
-
/**
|
|
3279
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3280
|
-
* as an object with a "type" parameter specified.
|
|
3281
|
-
*/
|
|
3282
|
-
fontColor?: ParameterDcColor;
|
|
3283
|
-
/**
|
|
3284
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3285
|
-
* as an object with a "type" parameter specified.
|
|
3286
|
-
*/
|
|
3287
|
-
fontSize?: ParameterDcDouble;
|
|
3288
|
-
/** Sets the horizontal alignment of text. */
|
|
3289
|
-
horizontalAlignment?: TextAlignment;
|
|
3290
|
-
/** Sets the vertical alignment of text. */
|
|
3291
|
-
verticalAlignment?: TextVerticalAlignment;
|
|
3292
|
-
/**
|
|
3293
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3294
|
-
* as an object with a "type" parameter specified.
|
|
3295
|
-
*/
|
|
3296
|
-
haloColor?: ParameterDcColor;
|
|
3297
|
-
/**
|
|
3298
|
-
* Width of label stroke (halo).
|
|
3299
|
-
* @format float
|
|
3300
|
-
*/
|
|
3301
|
-
haloWidth?: number;
|
|
3302
|
-
/** Offset of the label center from the geographic point. */
|
|
3303
|
-
offset?: ParameterDcDouble[];
|
|
3304
|
-
/** Specifies text background. */
|
|
3305
|
-
textBackground?: TextBackgroundDc;
|
|
3306
|
-
/** If set true symbol will not be rendered. */
|
|
3307
|
-
disabled?: boolean;
|
|
3308
|
-
}
|
|
2861
|
+
};
|
|
3309
2862
|
/**
|
|
3310
2863
|
* A simple polygon symbol.
|
|
3311
2864
|
*/
|
|
3312
|
-
export
|
|
2865
|
+
export declare type PolygonSymbolDc = SymbolDc & {
|
|
3313
2866
|
type?: string;
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
fill?: BrushDc | FillBrushDc | IBrushDc;
|
|
3318
|
-
/** If set true symbol will not be rendered. */
|
|
3319
|
-
disabled?: boolean;
|
|
3320
|
-
}
|
|
2867
|
+
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
2868
|
+
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
2869
|
+
};
|
|
3321
2870
|
/**
|
|
3322
2871
|
* Polyline geometry object definition.
|
|
3323
2872
|
*/
|
|
3324
|
-
export
|
|
3325
|
-
/**
|
|
3326
|
-
*
|
|
3327
|
-
*
|
|
3328
|
-
* unknown
|
|
3329
|
-
*
|
|
3330
|
-
* point
|
|
3331
|
-
*
|
|
3332
|
-
* polyline
|
|
3333
|
-
*
|
|
3334
|
-
* polygon
|
|
3335
|
-
*
|
|
3336
|
-
* envelope
|
|
3337
|
-
*
|
|
3338
|
-
* multipoint
|
|
3339
|
-
*/
|
|
2873
|
+
export declare type PolylineDc = PolyDc & {
|
|
3340
2874
|
type?: GeometryType;
|
|
3341
|
-
|
|
3342
|
-
coordinates: PositionDc[][];
|
|
3343
|
-
/**
|
|
3344
|
-
* Spatial reference id.
|
|
3345
|
-
* @format int32
|
|
3346
|
-
*/
|
|
3347
|
-
sr?: number;
|
|
3348
|
-
}
|
|
2875
|
+
};
|
|
3349
2876
|
/**
|
|
3350
2877
|
* Label for polyline objects. It is drawn repeatedly along a line.
|
|
3351
2878
|
*/
|
|
3352
|
-
export
|
|
2879
|
+
export declare type PolylineLabelSymbolDc = LabelSymbolDc & {
|
|
3353
2880
|
type?: string;
|
|
3354
|
-
/**
|
|
3355
|
-
* Distance in pixels after which the label will be repeated along the line.
|
|
3356
|
-
* @format float
|
|
3357
|
-
*/
|
|
3358
2881
|
labelRepeatDistance?: number;
|
|
3359
|
-
/**
|
|
3360
|
-
* Maximum angle of the line in one point the label can bend for.
|
|
3361
|
-
* @format int32
|
|
3362
|
-
*/
|
|
3363
2882
|
criticalAngle?: number;
|
|
3364
|
-
/** If set to true, the label will be drawn in the direction opposite to the default one. */
|
|
3365
2883
|
invertLabelDirection?: boolean;
|
|
3366
|
-
/** If set to true, the label will be drawn in the direction opposite to the default one. */
|
|
3367
2884
|
offsetFromSymbol?: boolean;
|
|
3368
|
-
/** Distance from the line to offset the symbol. */
|
|
3369
2885
|
offset?: number[];
|
|
3370
|
-
/**
|
|
3371
|
-
* Maximum with of the label in pixels.
|
|
3372
|
-
* @format float
|
|
3373
|
-
*/
|
|
3374
2886
|
maxWidth?: number;
|
|
3375
|
-
|
|
3376
|
-
fieldFormat?: string;
|
|
3377
|
-
/** Label text font family. */
|
|
3378
|
-
fontFamily?: string;
|
|
3379
|
-
/** Sets whether font should be styled. */
|
|
3380
|
-
fontStyle?: FontStyle;
|
|
3381
|
-
/** Specifies the weight (or boldness) of the font. */
|
|
3382
|
-
fontWeight?: FontWeight;
|
|
3383
|
-
/**
|
|
3384
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3385
|
-
* as an object with a "type" parameter specified.
|
|
3386
|
-
*/
|
|
3387
|
-
fontColor?: ParameterDcColor;
|
|
3388
|
-
/**
|
|
3389
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3390
|
-
* as an object with a "type" parameter specified.
|
|
3391
|
-
*/
|
|
3392
|
-
fontSize?: ParameterDcDouble;
|
|
3393
|
-
/** Sets the horizontal alignment of text. */
|
|
3394
|
-
horizontalAlignment?: TextAlignment;
|
|
3395
|
-
/** Sets the vertical alignment of text. */
|
|
3396
|
-
verticalAlignment?: TextVerticalAlignment;
|
|
3397
|
-
/**
|
|
3398
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3399
|
-
* as an object with a "type" parameter specified.
|
|
3400
|
-
*/
|
|
3401
|
-
haloColor?: ParameterDcColor;
|
|
3402
|
-
/**
|
|
3403
|
-
* Width of label stroke (halo).
|
|
3404
|
-
* @format float
|
|
3405
|
-
*/
|
|
3406
|
-
haloWidth?: number;
|
|
3407
|
-
/** Specifies text background. */
|
|
3408
|
-
textBackground?: TextBackgroundDc;
|
|
3409
|
-
/** If set true symbol will not be rendered. */
|
|
3410
|
-
disabled?: boolean;
|
|
3411
|
-
}
|
|
2887
|
+
};
|
|
3412
2888
|
/**
|
|
3413
2889
|
* The symbol that draws a feature as a square.
|
|
3414
2890
|
*/
|
|
3415
|
-
export
|
|
2891
|
+
export declare type PolylineSymbolDc = SymbolDc & {
|
|
3416
2892
|
type?: string;
|
|
3417
|
-
|
|
3418
|
-
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
2893
|
+
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
3419
2894
|
beginning?: ILineEndingDc;
|
|
3420
2895
|
ending?: ILineEndingDc;
|
|
3421
|
-
|
|
3422
|
-
disabled?: boolean;
|
|
3423
|
-
}
|
|
2896
|
+
};
|
|
3424
2897
|
/**
|
|
3425
2898
|
* The position at the map in [X, Y] format.
|
|
3426
2899
|
*/
|
|
@@ -3428,100 +2901,33 @@ export declare type PositionDc = number[];
|
|
|
3428
2901
|
/**
|
|
3429
2902
|
* Configuration of a postgres feature layer service.
|
|
3430
2903
|
*/
|
|
3431
|
-
export
|
|
3432
|
-
/** Configuration of the attributes of the layer. */
|
|
2904
|
+
export declare type PostgresLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3433
2905
|
attributesConfiguration: AttributesConfigurationDc;
|
|
3434
|
-
/** Style of the layer. */
|
|
3435
2906
|
style?: StyleDc;
|
|
3436
|
-
/** Condition to filter returned features. */
|
|
3437
2907
|
condition?: string;
|
|
3438
|
-
/**
|
|
3439
|
-
* Maximum number of features, that the service can return in a single request.
|
|
3440
|
-
* @format int32
|
|
3441
|
-
*/
|
|
3442
2908
|
featuresLimit?: number;
|
|
3443
|
-
/**
|
|
3444
|
-
* Adds additional extent offset in pixels to feature selection.
|
|
3445
|
-
* @format int32
|
|
3446
|
-
*/
|
|
3447
2909
|
extentOffset?: number;
|
|
3448
|
-
|
|
3449
|
-
name: string;
|
|
3450
|
-
/** Human friendly name of the service. */
|
|
3451
|
-
alias?: string;
|
|
3452
|
-
/** Description of the service. */
|
|
3453
|
-
description?: string;
|
|
3454
|
-
/** Service access control list. */
|
|
3455
|
-
acl?: AccessControlListDc;
|
|
3456
|
-
/** Base64 encoded image - icon of the resource. */
|
|
3457
|
-
icon?: string;
|
|
3458
|
-
/**
|
|
3459
|
-
* <br>
|
|
3460
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
3461
|
-
* Administrator permissions are required to perform this operation.
|
|
3462
|
-
*
|
|
3463
|
-
*/
|
|
3464
|
-
owner?: string;
|
|
3465
|
-
/** Copyright text. */
|
|
3466
|
-
copyrightText?: string;
|
|
3467
|
-
}
|
|
2910
|
+
};
|
|
3468
2911
|
/**
|
|
3469
2912
|
* Configuration of a postgres tile catalog service.
|
|
3470
2913
|
*/
|
|
3471
|
-
export
|
|
3472
|
-
/** Configuration of the attributes of the layer. */
|
|
2914
|
+
export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3473
2915
|
attributesConfiguration: AttributesConfigurationDc;
|
|
3474
|
-
/** Style of the layer. */
|
|
3475
2916
|
style?: StyleDc;
|
|
3476
|
-
/** Condition to filter returned features. */
|
|
3477
2917
|
condition?: string;
|
|
3478
|
-
/**
|
|
3479
|
-
* Maximum number of features, that the service can return in a single request.
|
|
3480
|
-
* @format int32
|
|
3481
|
-
*/
|
|
3482
2918
|
featuresLimit?: number;
|
|
3483
|
-
/**
|
|
3484
|
-
* Min lod level.
|
|
3485
|
-
* @format int32
|
|
3486
|
-
*/
|
|
3487
2919
|
minLodLevel?: number;
|
|
3488
|
-
/**
|
|
3489
|
-
* Max lod level.
|
|
3490
|
-
* @format int32
|
|
3491
|
-
*/
|
|
3492
2920
|
maxLodLevel?: number;
|
|
3493
|
-
/** IsCogLayer. */
|
|
3494
2921
|
isCogLayer?: boolean;
|
|
3495
|
-
|
|
3496
|
-
name: string;
|
|
3497
|
-
/** Human friendly name of the service. */
|
|
3498
|
-
alias?: string;
|
|
3499
|
-
/** Description of the service. */
|
|
3500
|
-
description?: string;
|
|
3501
|
-
/** Service access control list. */
|
|
3502
|
-
acl?: AccessControlListDc;
|
|
3503
|
-
/** Base64 encoded image - icon of the resource. */
|
|
3504
|
-
icon?: string;
|
|
3505
|
-
/**
|
|
3506
|
-
* <br>
|
|
3507
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
3508
|
-
* Administrator permissions are required to perform this operation.
|
|
3509
|
-
*
|
|
3510
|
-
*/
|
|
3511
|
-
owner?: string;
|
|
3512
|
-
/** Copyright text. */
|
|
3513
|
-
copyrightText?: string;
|
|
3514
|
-
}
|
|
2922
|
+
};
|
|
3515
2923
|
/**
|
|
3516
2924
|
* Print operation print map and map elements to png files.
|
|
3517
2925
|
*/
|
|
3518
|
-
export
|
|
2926
|
+
export declare type PrintTaskParametersDc = TaskParametersDc & {
|
|
3519
2927
|
taskType?: string;
|
|
3520
|
-
/** Task data storage that works with import and export provider to give access to data stored in static files. */
|
|
3521
2928
|
targetStorageDescription: SessionStaticTaskDataStorageDescription;
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
}
|
|
2929
|
+
templates?: (LayerTemplateModelDc | LegendTemplateModelDc)[];
|
|
2930
|
+
};
|
|
3525
2931
|
export interface ProblemDetails {
|
|
3526
2932
|
type?: string;
|
|
3527
2933
|
title?: string;
|
|
@@ -3540,7 +2946,7 @@ export interface ProjectConfigurationDc {
|
|
|
3540
2946
|
* @format double
|
|
3541
2947
|
*/
|
|
3542
2948
|
resolution?: number;
|
|
3543
|
-
/**
|
|
2949
|
+
/** The position at the map in [X, Y] format. */
|
|
3544
2950
|
position?: PositionDc;
|
|
3545
2951
|
/**
|
|
3546
2952
|
* Map spatial reference code.
|
|
@@ -3583,63 +2989,21 @@ export interface ProjectContentItemDc {
|
|
|
3583
2989
|
* @format double
|
|
3584
2990
|
*/
|
|
3585
2991
|
maxScale?: number;
|
|
2992
|
+
/** If set true, item is basemap. */
|
|
2993
|
+
isBasemap?: boolean;
|
|
3586
2994
|
/** Children items. */
|
|
3587
2995
|
children?: ProjectContentItemDc[];
|
|
3588
2996
|
}
|
|
3589
2997
|
/**
|
|
3590
2998
|
* A project configuration data contract.
|
|
3591
2999
|
*/
|
|
3592
|
-
export
|
|
3593
|
-
/** Sets true if project is shared. */
|
|
3594
|
-
isShared?: boolean;
|
|
3595
|
-
/**
|
|
3596
|
-
* Count of the layers in project.
|
|
3597
|
-
* @format int32
|
|
3598
|
-
*/
|
|
3000
|
+
export declare type ProjectInfoDc = ResourceInfoDc & {
|
|
3599
3001
|
layersCount?: number;
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
owner?: string;
|
|
3606
|
-
/** Resource description. */
|
|
3607
|
-
description?: string;
|
|
3608
|
-
/** Resource preview. */
|
|
3609
|
-
preview?: string;
|
|
3610
|
-
/**
|
|
3611
|
-
* The date when resource was created.
|
|
3612
|
-
* @format date-time
|
|
3613
|
-
*/
|
|
3614
|
-
createdDate?: string;
|
|
3615
|
-
/**
|
|
3616
|
-
* The date when resource was last modified.
|
|
3617
|
-
* @format date-time
|
|
3618
|
-
*/
|
|
3619
|
-
changedDate?: string;
|
|
3620
|
-
/**
|
|
3621
|
-
* User permissions for server security objects (services, projects etc.)
|
|
3622
|
-
*
|
|
3623
|
-
* none
|
|
3624
|
-
*
|
|
3625
|
-
* configure
|
|
3626
|
-
*
|
|
3627
|
-
* write
|
|
3628
|
-
*
|
|
3629
|
-
* read
|
|
3630
|
-
*
|
|
3631
|
-
* read,configure
|
|
3632
|
-
*
|
|
3633
|
-
* read,write
|
|
3634
|
-
*
|
|
3635
|
-
* read,write,configure
|
|
3636
|
-
*/
|
|
3637
|
-
permissions?: Permissions;
|
|
3638
|
-
/** Access control list. */
|
|
3639
|
-
acl?: AccessControlListDc;
|
|
3640
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3641
|
-
icon?: string;
|
|
3642
|
-
}
|
|
3002
|
+
};
|
|
3003
|
+
/**
|
|
3004
|
+
* List of the projects in projects manager service.
|
|
3005
|
+
*/
|
|
3006
|
+
export declare type ProjectsListDc = ListResponseProjectInfoDc;
|
|
3643
3007
|
/**
|
|
3644
3008
|
* Data contract for inner layer Legend.
|
|
3645
3009
|
*/
|
|
@@ -3654,267 +3018,39 @@ export interface ProxyInnerLayerLegendDc {
|
|
|
3654
3018
|
/**
|
|
3655
3019
|
* Data contract for layer legend.
|
|
3656
3020
|
*/
|
|
3657
|
-
export interface ProxyLayerLegendDc {
|
|
3658
|
-
/** Inner layers legends. */
|
|
3659
|
-
layers: ProxyInnerLayerLegendDc[];
|
|
3660
|
-
}
|
|
3661
|
-
/**
|
|
3662
|
-
* Data contract for legend item.
|
|
3663
|
-
*/
|
|
3664
|
-
export interface ProxyLayerLegendItemDc {
|
|
3665
|
-
/** Text label of legend item. */
|
|
3666
|
-
label: string;
|
|
3667
|
-
/** Image of item encoded in Base64 string. */
|
|
3668
|
-
image: string;
|
|
3669
|
-
}
|
|
3670
|
-
/**
|
|
3671
|
-
* Configuration for the proxy service.
|
|
3672
|
-
*/
|
|
3673
|
-
export interface ProxyServiceConfigurationDc {
|
|
3674
|
-
/** Source system type, e.g. "ArcGIS". */
|
|
3675
|
-
sourceType: string;
|
|
3676
|
-
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
3677
|
-
sourceUrl: string;
|
|
3678
|
-
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3679
|
-
layers: string[];
|
|
3680
|
-
/** Name of the service. */
|
|
3681
|
-
name: string;
|
|
3682
|
-
/** Human friendly name of the service. */
|
|
3683
|
-
alias?: string;
|
|
3684
|
-
/** Description of the service. */
|
|
3685
|
-
description?: string;
|
|
3686
|
-
/** Service access control list. */
|
|
3687
|
-
acl?: AccessControlListDc;
|
|
3688
|
-
/** Base64 encoded image - icon of the resource. */
|
|
3689
|
-
icon?: string;
|
|
3690
|
-
/**
|
|
3691
|
-
* <br>
|
|
3692
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
3693
|
-
* Administrator permissions are required to perform this operation.
|
|
3694
|
-
*
|
|
3695
|
-
*/
|
|
3696
|
-
owner?: string;
|
|
3697
|
-
/** Copyright text. */
|
|
3698
|
-
copyrightText?: string;
|
|
3699
|
-
}
|
|
3700
|
-
/**
|
|
3701
|
-
* Service info for a Proxy service.
|
|
3702
|
-
*/
|
|
3703
|
-
export interface ProxyServiceInfoDc {
|
|
3704
|
-
/** Source system type, e.g. "ArcGIS". */
|
|
3705
|
-
sourceType: string;
|
|
3706
|
-
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
3707
|
-
sourceUrl: string;
|
|
3708
|
-
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3709
|
-
layers: string[];
|
|
3710
|
-
/** Layer legend. */
|
|
3711
|
-
legend?: ProxyLayerLegendDc;
|
|
3712
|
-
/** Copyright text. */
|
|
3713
|
-
copyrightText?: string;
|
|
3714
|
-
/** The type of the resource. */
|
|
3715
|
-
type: string;
|
|
3716
|
-
/**
|
|
3717
|
-
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
3718
|
-
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
3719
|
-
* @format double
|
|
3720
|
-
*/
|
|
3721
|
-
minResolution?: number;
|
|
3722
|
-
/**
|
|
3723
|
-
* Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
3724
|
-
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
3725
|
-
* @format double
|
|
3726
|
-
*/
|
|
3727
|
-
maxResolution?: number;
|
|
3728
|
-
/**
|
|
3729
|
-
* Filtering condition for the objects in the service. If no condition set or if no such property is available
|
|
3730
|
-
* for the given service type, null is returned.
|
|
3731
|
-
*/
|
|
3732
|
-
condition?: string;
|
|
3733
|
-
/**
|
|
3734
|
-
*
|
|
3735
|
-
*
|
|
3736
|
-
* unknown
|
|
3737
|
-
*
|
|
3738
|
-
* point
|
|
3739
|
-
*
|
|
3740
|
-
* polyline
|
|
3741
|
-
*
|
|
3742
|
-
* polygon
|
|
3743
|
-
*
|
|
3744
|
-
* envelope
|
|
3745
|
-
*
|
|
3746
|
-
* multipoint
|
|
3747
|
-
*/
|
|
3748
|
-
geometryType: GeometryType;
|
|
3749
|
-
/**
|
|
3750
|
-
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
3751
|
-
* 0 is returned.
|
|
3752
|
-
* @format int32
|
|
3753
|
-
*/
|
|
3754
|
-
objectCount?: number;
|
|
3755
|
-
/** The category of the service. */
|
|
3756
|
-
categories?: string[];
|
|
3757
|
-
/** Configuration of the service. */
|
|
3758
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
3759
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3760
|
-
name: string;
|
|
3761
|
-
/** Resource alias. */
|
|
3762
|
-
alias?: string;
|
|
3763
|
-
/** Resource owner. */
|
|
3764
|
-
owner?: string;
|
|
3765
|
-
/** Resource description. */
|
|
3766
|
-
description?: string;
|
|
3767
|
-
/** Resource preview. */
|
|
3768
|
-
preview?: string;
|
|
3769
|
-
/**
|
|
3770
|
-
* The date when resource was created.
|
|
3771
|
-
* @format date-time
|
|
3772
|
-
*/
|
|
3773
|
-
createdDate?: string;
|
|
3774
|
-
/**
|
|
3775
|
-
* The date when resource was last modified.
|
|
3776
|
-
* @format date-time
|
|
3777
|
-
*/
|
|
3778
|
-
changedDate?: string;
|
|
3779
|
-
/**
|
|
3780
|
-
* User permissions for server security objects (services, projects etc.)
|
|
3781
|
-
*
|
|
3782
|
-
* none
|
|
3783
|
-
*
|
|
3784
|
-
* configure
|
|
3785
|
-
*
|
|
3786
|
-
* write
|
|
3787
|
-
*
|
|
3788
|
-
* read
|
|
3789
|
-
*
|
|
3790
|
-
* read,configure
|
|
3791
|
-
*
|
|
3792
|
-
* read,write
|
|
3793
|
-
*
|
|
3794
|
-
* read,write,configure
|
|
3795
|
-
*/
|
|
3796
|
-
permissions?: Permissions;
|
|
3797
|
-
/** Access control list. */
|
|
3798
|
-
acl?: AccessControlListDc;
|
|
3799
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3800
|
-
icon?: string;
|
|
3801
|
-
}
|
|
3802
|
-
/**
|
|
3803
|
-
* The symbol that draws a raster.
|
|
3804
|
-
*/
|
|
3805
|
-
export interface RasterSymbolDc {
|
|
3806
|
-
type?: string;
|
|
3807
|
-
/**
|
|
3808
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3809
|
-
* as an object with a "type" parameter specified.
|
|
3810
|
-
*/
|
|
3811
|
-
opacity?: ParameterDcDouble;
|
|
3812
|
-
/** If set true symbol will not be rendered. */
|
|
3813
|
-
disabled?: boolean;
|
|
3814
|
-
}
|
|
3815
|
-
export interface Rectangle2 {
|
|
3816
|
-
/** @format double */
|
|
3817
|
-
x1?: number;
|
|
3818
|
-
/** @format double */
|
|
3819
|
-
y1?: number;
|
|
3820
|
-
/** @format double */
|
|
3821
|
-
x2?: number;
|
|
3822
|
-
/** @format double */
|
|
3823
|
-
y2?: number;
|
|
3824
|
-
/** @format double */
|
|
3825
|
-
width?: number;
|
|
3826
|
-
/** @format double */
|
|
3827
|
-
height?: number;
|
|
3828
|
-
center?: IVector;
|
|
3829
|
-
halfSize?: IVector;
|
|
3830
|
-
}
|
|
3831
|
-
/**
|
|
3832
|
-
* Data contract for register new user.
|
|
3833
|
-
*/
|
|
3834
|
-
export interface RegisterUserDc {
|
|
3835
|
-
/** Username. */
|
|
3836
|
-
username: string;
|
|
3837
|
-
/**
|
|
3838
|
-
* Email.
|
|
3839
|
-
* @format email
|
|
3840
|
-
*/
|
|
3841
|
-
email?: string;
|
|
3842
|
-
/** Phone number. */
|
|
3843
|
-
phone?: string;
|
|
3844
|
-
/** Password. */
|
|
3845
|
-
password: string;
|
|
3846
|
-
}
|
|
3847
|
-
/**
|
|
3848
|
-
* Configuration for the remote tile service.
|
|
3849
|
-
*/
|
|
3850
|
-
export interface RemoteTileServiceConfigurationDc {
|
|
3851
|
-
/** Tile schema of the service. */
|
|
3852
|
-
tileInfo?: TileInfoDc;
|
|
3853
|
-
/**
|
|
3854
|
-
* SourceBatch url mask. Like http://{0}.website.ru/{1}/{2}/{3}.png
|
|
3855
|
-
* Where: {0} - SubDomains, {1} - Z, {2} - X, {3} - Y.
|
|
3856
|
-
*/
|
|
3857
|
-
urlFormat: string;
|
|
3858
|
-
/**
|
|
3859
|
-
* Max tile count for caching.
|
|
3860
|
-
* @format int32
|
|
3861
|
-
*/
|
|
3862
|
-
tileCacheLimit?: number;
|
|
3863
|
-
/**
|
|
3864
|
-
* Subdomains. To get tiles from different servers.
|
|
3865
|
-
* Will be inserted into the UrlFormat {0}.
|
|
3866
|
-
*/
|
|
3867
|
-
subDomains?: string[];
|
|
3868
|
-
/** Allows the client to receive tiles directly from the source server. */
|
|
3869
|
-
allowDirectAccess?: boolean;
|
|
3870
|
-
/** @format int32 */
|
|
3871
|
-
RequestTimeout?: number;
|
|
3872
|
-
/** Name of the service. */
|
|
3873
|
-
name: string;
|
|
3874
|
-
/** Human friendly name of the service. */
|
|
3875
|
-
alias?: string;
|
|
3876
|
-
/** Description of the service. */
|
|
3877
|
-
description?: string;
|
|
3878
|
-
/** Service access control list. */
|
|
3879
|
-
acl?: AccessControlListDc;
|
|
3880
|
-
/** Base64 encoded image - icon of the resource. */
|
|
3881
|
-
icon?: string;
|
|
3882
|
-
/**
|
|
3883
|
-
* <br>
|
|
3884
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
3885
|
-
* Administrator permissions are required to perform this operation.
|
|
3886
|
-
*
|
|
3887
|
-
*/
|
|
3888
|
-
owner?: string;
|
|
3889
|
-
/** Copyright text. */
|
|
3890
|
-
copyrightText?: string;
|
|
3021
|
+
export interface ProxyLayerLegendDc {
|
|
3022
|
+
/** Inner layers legends. */
|
|
3023
|
+
layers: ProxyInnerLayerLegendDc[];
|
|
3891
3024
|
}
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
sourceUrlMask?: string;
|
|
3901
|
-
/** SourceBatch servers, what can be placed at source url mask, instead {s}. */
|
|
3902
|
-
sourceServers?: string[];
|
|
3903
|
-
/** Copyright text. */
|
|
3904
|
-
copyrightText?: string;
|
|
3025
|
+
/**
|
|
3026
|
+
* Data contract for legend item.
|
|
3027
|
+
*/
|
|
3028
|
+
export interface ProxyLayerLegendItemDc {
|
|
3029
|
+
/** Text label of legend item. */
|
|
3030
|
+
label: string;
|
|
3031
|
+
/** Image of item encoded in Base64 string. */
|
|
3032
|
+
image: string;
|
|
3905
3033
|
}
|
|
3906
3034
|
/**
|
|
3907
|
-
*
|
|
3035
|
+
* Configuration for the proxy service.
|
|
3908
3036
|
*/
|
|
3909
|
-
export
|
|
3910
|
-
|
|
3911
|
-
sourceUrl
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3037
|
+
export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3038
|
+
sourceType: string;
|
|
3039
|
+
sourceUrl: string;
|
|
3040
|
+
layers: string[];
|
|
3041
|
+
};
|
|
3042
|
+
/**
|
|
3043
|
+
* Service info for a Proxy service.
|
|
3044
|
+
*/
|
|
3045
|
+
export interface ProxyServiceInfoDc {
|
|
3046
|
+
/** Source system type, e.g. "ArcGIS". */
|
|
3047
|
+
sourceType: string;
|
|
3048
|
+
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
3049
|
+
sourceUrl: string;
|
|
3050
|
+
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3051
|
+
layers: string[];
|
|
3052
|
+
/** Data contract for layer legend. */
|
|
3053
|
+
legend?: ProxyLayerLegendDc;
|
|
3918
3054
|
/** Copyright text. */
|
|
3919
3055
|
copyrightText?: string;
|
|
3920
3056
|
/** The type of the resource. */
|
|
@@ -3961,7 +3097,7 @@ export interface RemoteTileServiceInfoDc {
|
|
|
3961
3097
|
/** The category of the service. */
|
|
3962
3098
|
categories?: string[];
|
|
3963
3099
|
/** Configuration of the service. */
|
|
3964
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
3100
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
3965
3101
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3966
3102
|
name: string;
|
|
3967
3103
|
/** Resource alias. */
|
|
@@ -4000,11 +3136,94 @@ export interface RemoteTileServiceInfoDc {
|
|
|
4000
3136
|
* read,write,configure
|
|
4001
3137
|
*/
|
|
4002
3138
|
permissions?: Permissions;
|
|
4003
|
-
/** Access control list. */
|
|
3139
|
+
/** Access control list for a security object. */
|
|
4004
3140
|
acl?: AccessControlListDc;
|
|
4005
3141
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4006
3142
|
icon?: string;
|
|
3143
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3144
|
+
invisibleInCatalog?: boolean;
|
|
3145
|
+
}
|
|
3146
|
+
/**
|
|
3147
|
+
* The symbol that draws a raster.
|
|
3148
|
+
*/
|
|
3149
|
+
export declare type RasterSymbolDc = SymbolDc & {
|
|
3150
|
+
type?: string;
|
|
3151
|
+
opacity?: CalculatedParameterDc;
|
|
3152
|
+
};
|
|
3153
|
+
export interface Rectangle2 {
|
|
3154
|
+
/** @format double */
|
|
3155
|
+
x1?: number;
|
|
3156
|
+
/** @format double */
|
|
3157
|
+
y1?: number;
|
|
3158
|
+
/** @format double */
|
|
3159
|
+
x2?: number;
|
|
3160
|
+
/** @format double */
|
|
3161
|
+
y2?: number;
|
|
3162
|
+
/** @format double */
|
|
3163
|
+
width?: number;
|
|
3164
|
+
/** @format double */
|
|
3165
|
+
height?: number;
|
|
3166
|
+
center?: IVector;
|
|
3167
|
+
halfSize?: IVector;
|
|
3168
|
+
}
|
|
3169
|
+
/**
|
|
3170
|
+
* Data contract for register new user.
|
|
3171
|
+
*/
|
|
3172
|
+
export interface RegisterUserDc {
|
|
3173
|
+
/** Username. */
|
|
3174
|
+
username: string;
|
|
3175
|
+
/**
|
|
3176
|
+
* Email.
|
|
3177
|
+
* @format email
|
|
3178
|
+
*/
|
|
3179
|
+
email?: string;
|
|
3180
|
+
/** Phone number. */
|
|
3181
|
+
phone?: string;
|
|
3182
|
+
/** Password. */
|
|
3183
|
+
password: string;
|
|
3184
|
+
}
|
|
3185
|
+
/**
|
|
3186
|
+
* SPCore.Connectors.Connectors.Base.Models.Data.Configurations.RemoteTableConfigurationDc provides remote table configuration data contract.
|
|
3187
|
+
*/
|
|
3188
|
+
export declare type RemoteTableConfigurationDc = TableConfigurationBaseDc & {
|
|
3189
|
+
type?: string;
|
|
3190
|
+
dataProvider?: string;
|
|
3191
|
+
};
|
|
3192
|
+
/**
|
|
3193
|
+
* Configuration for the remote tile service.
|
|
3194
|
+
*/
|
|
3195
|
+
export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3196
|
+
tileInfo?: TileInfoDc;
|
|
3197
|
+
urlFormat: string;
|
|
3198
|
+
tileCacheLimit?: number;
|
|
3199
|
+
useRedisCache?: boolean;
|
|
3200
|
+
cacheExpire?: number;
|
|
3201
|
+
subDomains?: string[];
|
|
3202
|
+
allowDirectAccess?: boolean;
|
|
3203
|
+
RequestTimeout?: number;
|
|
3204
|
+
};
|
|
3205
|
+
export interface RemoteTileServiceInfo {
|
|
3206
|
+
/** Description of a service in the Spatial Processor. */
|
|
3207
|
+
layerInfo?: ServiceInfo;
|
|
3208
|
+
/** Tile info structure. */
|
|
3209
|
+
tileInfo?: TileInfo;
|
|
3210
|
+
/** SourceBatch server address. */
|
|
3211
|
+
sourceUrl?: string;
|
|
3212
|
+
/** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
|
|
3213
|
+
sourceUrlMask?: string;
|
|
3214
|
+
/** SourceBatch servers, what can be placed at source url mask, instead {s}. */
|
|
3215
|
+
sourceServers?: string[];
|
|
3216
|
+
/** Copyright text. */
|
|
3217
|
+
copyrightText?: string;
|
|
4007
3218
|
}
|
|
3219
|
+
/**
|
|
3220
|
+
* Service info for a tile service.
|
|
3221
|
+
*/
|
|
3222
|
+
export declare type RemoteTileServiceInfoDc = TileServiceInfoDc & {
|
|
3223
|
+
sourceUrl?: string;
|
|
3224
|
+
sourceUrlMask?: string;
|
|
3225
|
+
sourceServers?: string[];
|
|
3226
|
+
};
|
|
4008
3227
|
/**
|
|
4009
3228
|
* Provides resource and its acl.
|
|
4010
3229
|
*/
|
|
@@ -4065,25 +3284,29 @@ export interface ResourceInfoDc {
|
|
|
4065
3284
|
* read,write,configure
|
|
4066
3285
|
*/
|
|
4067
3286
|
permissions?: Permissions;
|
|
4068
|
-
/** Access control list. */
|
|
3287
|
+
/** Access control list for a security object. */
|
|
4069
3288
|
acl?: AccessControlListDc;
|
|
4070
3289
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4071
3290
|
icon?: string;
|
|
3291
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3292
|
+
invisibleInCatalog?: boolean;
|
|
4072
3293
|
}
|
|
4073
3294
|
/**
|
|
4074
3295
|
* The `ResourceType` represents resource manager supports types.
|
|
4075
|
-
|
|
3296
|
+
|
|
4076
3297
|
Unknown
|
|
4077
|
-
|
|
3298
|
+
|
|
4078
3299
|
table
|
|
4079
|
-
|
|
3300
|
+
|
|
4080
3301
|
layer
|
|
4081
|
-
|
|
3302
|
+
|
|
4082
3303
|
project
|
|
4083
|
-
|
|
3304
|
+
|
|
4084
3305
|
file
|
|
4085
|
-
|
|
3306
|
+
|
|
4086
3307
|
feature
|
|
3308
|
+
|
|
3309
|
+
tag
|
|
4087
3310
|
*/
|
|
4088
3311
|
export declare enum ResourceType {
|
|
4089
3312
|
Unknown = "Unknown",
|
|
@@ -4091,7 +3314,8 @@ export declare enum ResourceType {
|
|
|
4091
3314
|
Layer = "layer",
|
|
4092
3315
|
Project = "project",
|
|
4093
3316
|
File = "file",
|
|
4094
|
-
Feature = "feature"
|
|
3317
|
+
Feature = "feature",
|
|
3318
|
+
Tag = "tag"
|
|
4095
3319
|
}
|
|
4096
3320
|
export declare enum ResourceTypeLink {
|
|
4097
3321
|
Table = "tables",
|
|
@@ -4147,6 +3371,43 @@ export interface RolePermissionDc {
|
|
|
4147
3371
|
*/
|
|
4148
3372
|
permissions: Permissions;
|
|
4149
3373
|
}
|
|
3374
|
+
/**
|
|
3375
|
+
* Route feature dc.
|
|
3376
|
+
*/
|
|
3377
|
+
export interface RouteFeatureDc {
|
|
3378
|
+
/** Source features links. */
|
|
3379
|
+
sourceFeatures: RouteSourceFeatureDc[];
|
|
3380
|
+
/** Route feature attributes.. */
|
|
3381
|
+
attributes: Record<string, any>;
|
|
3382
|
+
}
|
|
3383
|
+
/**
|
|
3384
|
+
* Route service configuration Dc.
|
|
3385
|
+
*/
|
|
3386
|
+
export declare type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
3387
|
+
attributesConfiguration: AttributesConfigurationDc;
|
|
3388
|
+
style?: StyleDc;
|
|
3389
|
+
condition?: string;
|
|
3390
|
+
featuresLimit?: number;
|
|
3391
|
+
extentOffset?: number;
|
|
3392
|
+
};
|
|
3393
|
+
/**
|
|
3394
|
+
* Describe source feature for route.
|
|
3395
|
+
*/
|
|
3396
|
+
export interface RouteSourceFeatureDc {
|
|
3397
|
+
/** Source layer name. */
|
|
3398
|
+
sourceLayer: string;
|
|
3399
|
+
/**
|
|
3400
|
+
* Source featureId.
|
|
3401
|
+
* @format int64
|
|
3402
|
+
*/
|
|
3403
|
+
featureId: number;
|
|
3404
|
+
}
|
|
3405
|
+
/**
|
|
3406
|
+
* RouteTableConfigurationDc.
|
|
3407
|
+
*/
|
|
3408
|
+
export declare type RouteTableConfigurationDc = TableConfigurationBaseDc & {
|
|
3409
|
+
type?: string;
|
|
3410
|
+
};
|
|
4150
3411
|
/**
|
|
4151
3412
|
* Information about a routing provider.
|
|
4152
3413
|
*/
|
|
@@ -4174,32 +3435,13 @@ export interface RoutingProviderInfoDc {
|
|
|
4174
3435
|
/**
|
|
4175
3436
|
* ScaleBar element data contract.
|
|
4176
3437
|
*/
|
|
4177
|
-
export
|
|
4178
|
-
/**
|
|
4179
|
-
* ScaleBar width.
|
|
4180
|
-
* @format int32
|
|
4181
|
-
*/
|
|
3438
|
+
export declare type ScaleBarElementDc = ModelElementDc & {
|
|
4182
3439
|
width?: number;
|
|
4183
|
-
/**
|
|
4184
|
-
* ScaleBar height.
|
|
4185
|
-
* @format int32
|
|
4186
|
-
*/
|
|
4187
3440
|
height?: number;
|
|
4188
|
-
/**
|
|
4189
|
-
* ScaleBar thickness.
|
|
4190
|
-
* @format int32
|
|
4191
|
-
*/
|
|
4192
3441
|
thickness?: number;
|
|
4193
|
-
/** Font for scaleBar. */
|
|
4194
3442
|
font?: string;
|
|
4195
|
-
/**
|
|
4196
|
-
* Font size for scaleBar.
|
|
4197
|
-
* @format float
|
|
4198
|
-
*/
|
|
4199
3443
|
fontSize?: number;
|
|
4200
|
-
|
|
4201
|
-
enabled?: boolean;
|
|
4202
|
-
}
|
|
3444
|
+
};
|
|
4203
3445
|
/**
|
|
4204
3446
|
* Suggest user information.
|
|
4205
3447
|
*/
|
|
@@ -4233,21 +3475,21 @@ export interface ServerInfoDc {
|
|
|
4233
3475
|
}
|
|
4234
3476
|
/**
|
|
4235
3477
|
* Status of the server task.
|
|
4236
|
-
|
|
3478
|
+
|
|
4237
3479
|
None
|
|
4238
|
-
|
|
3480
|
+
|
|
4239
3481
|
Scheduled
|
|
4240
|
-
|
|
3482
|
+
|
|
4241
3483
|
Planning
|
|
4242
|
-
|
|
3484
|
+
|
|
4243
3485
|
Executing
|
|
4244
|
-
|
|
3486
|
+
|
|
4245
3487
|
Completed
|
|
4246
|
-
|
|
3488
|
+
|
|
4247
3489
|
Failed
|
|
4248
|
-
|
|
3490
|
+
|
|
4249
3491
|
Canceled
|
|
4250
|
-
|
|
3492
|
+
|
|
4251
3493
|
Timeout
|
|
4252
3494
|
*/
|
|
4253
3495
|
export declare enum ServerTaskStatus {
|
|
@@ -4270,7 +3512,7 @@ export interface ServiceConfigurationBaseDc {
|
|
|
4270
3512
|
alias?: string;
|
|
4271
3513
|
/** Description of the service. */
|
|
4272
3514
|
description?: string;
|
|
4273
|
-
/**
|
|
3515
|
+
/** Access control list for a security object. */
|
|
4274
3516
|
acl?: AccessControlListDc;
|
|
4275
3517
|
/** Base64 encoded image - icon of the resource. */
|
|
4276
3518
|
icon?: string;
|
|
@@ -4283,6 +3525,8 @@ export interface ServiceConfigurationBaseDc {
|
|
|
4283
3525
|
owner?: string;
|
|
4284
3526
|
/** Copyright text. */
|
|
4285
3527
|
copyrightText?: string;
|
|
3528
|
+
/** A set of layer tags. */
|
|
3529
|
+
tags?: string[];
|
|
4286
3530
|
}
|
|
4287
3531
|
/**
|
|
4288
3532
|
* Description of a service in the Spatial Processor.
|
|
@@ -4306,6 +3550,8 @@ export interface ServiceInfo {
|
|
|
4306
3550
|
* file
|
|
4307
3551
|
*
|
|
4308
3552
|
* feature
|
|
3553
|
+
*
|
|
3554
|
+
* tag
|
|
4309
3555
|
*/
|
|
4310
3556
|
resourceType?: ResourceType;
|
|
4311
3557
|
/** Categories of the service. */
|
|
@@ -4329,131 +3575,48 @@ export interface ServiceInfo {
|
|
|
4329
3575
|
*/
|
|
4330
3576
|
changedDate?: string;
|
|
4331
3577
|
/** Resource additional parameters. */
|
|
4332
|
-
parameters?: {
|
|
4333
|
-
Category?: string[];
|
|
4334
|
-
Preview?: string[];
|
|
4335
|
-
GeometryType?: string[];
|
|
4336
|
-
DependentResource?: string[];
|
|
4337
|
-
ResolutionFilter?: string[];
|
|
4338
|
-
AttributesFilter?: string[];
|
|
4339
|
-
ObjectsCount?: string[];
|
|
4340
|
-
DataSourceType?: string[];
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
*
|
|
4345
|
-
|
|
4346
|
-
acl?: Record<string, Permissions>;
|
|
4347
|
-
/** Base-64 preview image for the resource. */
|
|
4348
|
-
icon?: string;
|
|
4349
|
-
/** Preview of the resource. */
|
|
4350
|
-
preview?: string;
|
|
4351
|
-
}
|
|
4352
|
-
/**
|
|
4353
|
-
* The `ServiceInfoDc` provides information about the service.
|
|
4354
|
-
*/
|
|
4355
|
-
export interface ServiceInfoDc {
|
|
4356
|
-
/** The type of the resource. */
|
|
4357
|
-
type: string;
|
|
4358
|
-
/**
|
|
4359
|
-
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
4360
|
-
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
4361
|
-
* @format double
|
|
4362
|
-
*/
|
|
4363
|
-
minResolution?: number;
|
|
4364
|
-
/**
|
|
4365
|
-
* Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
4366
|
-
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
4367
|
-
* @format double
|
|
4368
|
-
*/
|
|
4369
|
-
maxResolution?: number;
|
|
4370
|
-
/**
|
|
4371
|
-
* Filtering condition for the objects in the service. If no condition set or if no such property is available
|
|
4372
|
-
* for the given service type, null is returned.
|
|
4373
|
-
*/
|
|
4374
|
-
condition?: string;
|
|
4375
|
-
/**
|
|
4376
|
-
*
|
|
4377
|
-
*
|
|
4378
|
-
* unknown
|
|
4379
|
-
*
|
|
4380
|
-
* point
|
|
4381
|
-
*
|
|
4382
|
-
* polyline
|
|
4383
|
-
*
|
|
4384
|
-
* polygon
|
|
4385
|
-
*
|
|
4386
|
-
* envelope
|
|
4387
|
-
*
|
|
4388
|
-
* multipoint
|
|
4389
|
-
*/
|
|
4390
|
-
geometryType: GeometryType;
|
|
4391
|
-
/**
|
|
4392
|
-
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
4393
|
-
* 0 is returned.
|
|
4394
|
-
* @format int32
|
|
4395
|
-
*/
|
|
4396
|
-
objectCount?: number;
|
|
4397
|
-
/** The category of the service. */
|
|
4398
|
-
categories?: string[];
|
|
4399
|
-
/** Configuration of the service. */
|
|
4400
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
4401
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4402
|
-
name: string;
|
|
4403
|
-
/** Resource alias. */
|
|
4404
|
-
alias?: string;
|
|
4405
|
-
/** Resource owner. */
|
|
4406
|
-
owner?: string;
|
|
4407
|
-
/** Resource description. */
|
|
4408
|
-
description?: string;
|
|
4409
|
-
/** Resource preview. */
|
|
4410
|
-
preview?: string;
|
|
4411
|
-
/**
|
|
4412
|
-
* The date when resource was created.
|
|
4413
|
-
* @format date-time
|
|
4414
|
-
*/
|
|
4415
|
-
createdDate?: string;
|
|
4416
|
-
/**
|
|
4417
|
-
* The date when resource was last modified.
|
|
4418
|
-
* @format date-time
|
|
4419
|
-
*/
|
|
4420
|
-
changedDate?: string;
|
|
4421
|
-
/**
|
|
4422
|
-
* User permissions for server security objects (services, projects etc.)
|
|
4423
|
-
*
|
|
4424
|
-
* none
|
|
4425
|
-
*
|
|
4426
|
-
* configure
|
|
4427
|
-
*
|
|
4428
|
-
* write
|
|
4429
|
-
*
|
|
4430
|
-
* read
|
|
4431
|
-
*
|
|
4432
|
-
* read,configure
|
|
4433
|
-
*
|
|
4434
|
-
* read,write
|
|
4435
|
-
*
|
|
4436
|
-
* read,write,configure
|
|
3578
|
+
parameters?: {
|
|
3579
|
+
Category?: string[];
|
|
3580
|
+
Preview?: string[];
|
|
3581
|
+
GeometryType?: string[];
|
|
3582
|
+
DependentResource?: string[];
|
|
3583
|
+
ResolutionFilter?: string[];
|
|
3584
|
+
AttributesFilter?: string[];
|
|
3585
|
+
ObjectsCount?: string[];
|
|
3586
|
+
DataSourceType?: string[];
|
|
3587
|
+
Extent?: string[];
|
|
3588
|
+
};
|
|
3589
|
+
/**
|
|
3590
|
+
* Given a security object (like a service or a project) this class provides the list of permissions the different
|
|
3591
|
+
* user roles have for this object.
|
|
4437
3592
|
*/
|
|
4438
|
-
|
|
4439
|
-
/**
|
|
4440
|
-
acl?: AccessControlListDc;
|
|
4441
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3593
|
+
acl?: Record<string, Permissions>;
|
|
3594
|
+
/** Base-64 preview image for the resource. */
|
|
4442
3595
|
icon?: string;
|
|
3596
|
+
/** A set of tags. */
|
|
3597
|
+
tags?: string[];
|
|
3598
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3599
|
+
inVisible?: boolean;
|
|
3600
|
+
/** Preview of the resource. */
|
|
3601
|
+
preview?: string;
|
|
4443
3602
|
}
|
|
3603
|
+
/**
|
|
3604
|
+
* The `ServiceInfoDc` provides information about the service.
|
|
3605
|
+
*/
|
|
3606
|
+
export declare type ServiceInfoDc = ResourceInfoDc & {
|
|
3607
|
+
type: string;
|
|
3608
|
+
minResolution?: number;
|
|
3609
|
+
maxResolution?: number;
|
|
3610
|
+
condition?: string;
|
|
3611
|
+
geometryType: GeometryType;
|
|
3612
|
+
objectCount?: number;
|
|
3613
|
+
categories?: string[];
|
|
3614
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
3615
|
+
};
|
|
4444
3616
|
/**
|
|
4445
3617
|
* List of the services in service manager.
|
|
4446
3618
|
*/
|
|
4447
|
-
export
|
|
4448
|
-
/** The items of the response. */
|
|
4449
|
-
items?: ServiceListItemDc[];
|
|
4450
|
-
/** @format int64 */
|
|
4451
|
-
totalCount?: number;
|
|
4452
|
-
/** @format int64 */
|
|
4453
|
-
offset?: number;
|
|
4454
|
-
/** @format int64 */
|
|
4455
|
-
limit?: number;
|
|
4456
|
-
}
|
|
3619
|
+
export declare type ServiceListDc = ListResponseServiceListItemDc;
|
|
4457
3620
|
export interface ServiceListItemDc {
|
|
4458
3621
|
name?: string;
|
|
4459
3622
|
type?: string;
|
|
@@ -4528,6 +3691,10 @@ export interface ServiceListItemDc {
|
|
|
4528
3691
|
objectCount?: number;
|
|
4529
3692
|
/** Provides data source type info. */
|
|
4530
3693
|
dataSourceType?: string;
|
|
3694
|
+
/** A set of tags. */
|
|
3695
|
+
tags?: string[];
|
|
3696
|
+
/** Envelope geometry. */
|
|
3697
|
+
envelope?: EnvelopeDc;
|
|
4531
3698
|
}
|
|
4532
3699
|
/**
|
|
4533
3700
|
* Task data storage that works with import and export provider to give access to data stored in static files.
|
|
@@ -4536,27 +3703,14 @@ export interface SessionStaticTaskDataStorageDescription {
|
|
|
4536
3703
|
/** The name of the folder. */
|
|
4537
3704
|
folderName?: string;
|
|
4538
3705
|
}
|
|
4539
|
-
export
|
|
3706
|
+
export declare type SimplePolylineSymbolDc = SymbolDc & {
|
|
4540
3707
|
type?: string;
|
|
4541
|
-
|
|
4542
|
-
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
4543
|
-
/** Type of the line ending. */
|
|
3708
|
+
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
4544
3709
|
beginning?: LineEndingType;
|
|
4545
|
-
/** Type of the line ending. */
|
|
4546
3710
|
ending?: LineEndingType;
|
|
4547
|
-
/**
|
|
4548
|
-
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
4549
|
-
* of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
4550
|
-
*/
|
|
4551
3711
|
beginningSize?: LineEndingSize;
|
|
4552
|
-
/**
|
|
4553
|
-
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
4554
|
-
* of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
4555
|
-
*/
|
|
4556
3712
|
endingSize?: LineEndingSize;
|
|
4557
|
-
|
|
4558
|
-
disabled?: boolean;
|
|
4559
|
-
}
|
|
3713
|
+
};
|
|
4560
3714
|
/**
|
|
4561
3715
|
* User social network information.
|
|
4562
3716
|
*/
|
|
@@ -4569,70 +3723,34 @@ export interface SocialNetworkInfoDc {
|
|
|
4569
3723
|
/**
|
|
4570
3724
|
* Defines the brush for the solid fill.
|
|
4571
3725
|
*/
|
|
4572
|
-
export
|
|
3726
|
+
export declare type SolidFillBrushDc = FillBrushDc & {
|
|
4573
3727
|
type?: string;
|
|
4574
|
-
|
|
4575
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4576
|
-
* as an object with a "type" parameter specified.
|
|
4577
|
-
*/
|
|
4578
|
-
color?: ParameterDcColor;
|
|
4579
|
-
}
|
|
3728
|
+
};
|
|
4580
3729
|
/**
|
|
4581
3730
|
* Defines the brush for the solid stroke.
|
|
4582
3731
|
*/
|
|
4583
|
-
export
|
|
3732
|
+
export declare type SolidStrokeBrushDc = StrokeBrushDc & {
|
|
4584
3733
|
type?: string;
|
|
4585
|
-
|
|
4586
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4587
|
-
* as an object with a "type" parameter specified.
|
|
4588
|
-
*/
|
|
4589
|
-
color?: ParameterDcColor;
|
|
4590
|
-
/**
|
|
4591
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4592
|
-
* as an object with a "type" parameter specified.
|
|
4593
|
-
*/
|
|
4594
|
-
width?: ParameterDcDouble;
|
|
4595
|
-
}
|
|
3734
|
+
};
|
|
4596
3735
|
/**
|
|
4597
3736
|
* The symbol that draws a feature as a square.
|
|
4598
3737
|
*/
|
|
4599
|
-
export
|
|
3738
|
+
export declare type SquarePointSymbolDc = SymbolDc & {
|
|
4600
3739
|
type?: string;
|
|
4601
|
-
|
|
4602
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4603
|
-
* as an object with a "type" parameter specified.
|
|
4604
|
-
*/
|
|
4605
|
-
size?: ParameterDcDouble;
|
|
4606
|
-
/**
|
|
4607
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4608
|
-
* as an object with a "type" parameter specified.
|
|
4609
|
-
*/
|
|
3740
|
+
size?: CalculatedParameterDc;
|
|
4610
3741
|
fillColor?: ParameterDcColor;
|
|
4611
|
-
/**
|
|
4612
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4613
|
-
* as an object with a "type" parameter specified.
|
|
4614
|
-
*/
|
|
4615
3742
|
strokeColor?: ParameterDcColor;
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
*/
|
|
4620
|
-
strokeWidth?: ParameterDcDouble;
|
|
4621
|
-
/** Offset of the square center from the geographic point. */
|
|
4622
|
-
offset?: ParameterDcDouble[];
|
|
4623
|
-
/** If set true symbol will not be rendered. */
|
|
4624
|
-
disabled?: boolean;
|
|
4625
|
-
}
|
|
3743
|
+
strokeWidth?: CalculatedParameterDc;
|
|
3744
|
+
offset?: CalculatedParameterDc[];
|
|
3745
|
+
};
|
|
4626
3746
|
/**
|
|
4627
3747
|
* Description of the temp file as a task data storage.
|
|
4628
3748
|
*/
|
|
4629
|
-
export
|
|
4630
|
-
/** The id of the file in the temporary session static storage. */
|
|
3749
|
+
export declare type StaticTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
4631
3750
|
fileName: string;
|
|
4632
|
-
/** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
|
|
4633
3751
|
layerName?: string;
|
|
4634
3752
|
type?: string;
|
|
4635
|
-
}
|
|
3753
|
+
};
|
|
4636
3754
|
/**
|
|
4637
3755
|
* Statistics result.
|
|
4638
3756
|
*/
|
|
@@ -4663,6 +3781,10 @@ export interface StatisticsResultObject {
|
|
|
4663
3781
|
*
|
|
4664
3782
|
* Count
|
|
4665
3783
|
*
|
|
3784
|
+
* TotalCount
|
|
3785
|
+
*
|
|
3786
|
+
* DistinctCount
|
|
3787
|
+
*
|
|
4666
3788
|
* First
|
|
4667
3789
|
*
|
|
4668
3790
|
* Last
|
|
@@ -4690,36 +3812,26 @@ export interface StatisticsResultObject {
|
|
|
4690
3812
|
/**
|
|
4691
3813
|
* The result of a server task step execution.
|
|
4692
3814
|
*/
|
|
4693
|
-
export
|
|
3815
|
+
export declare type StepResultDc = BaseStepResultDc & {
|
|
4694
3816
|
stepName?: string;
|
|
4695
3817
|
inputSource?: string;
|
|
4696
3818
|
outSource?: string;
|
|
4697
|
-
/** @format date-time */
|
|
4698
3819
|
startedTime?: string;
|
|
4699
|
-
/** @format date-time */
|
|
4700
3820
|
endedTime?: string;
|
|
4701
3821
|
batchErrors?: string[];
|
|
4702
|
-
/** @format int32 */
|
|
4703
3822
|
batchCount?: number;
|
|
4704
|
-
/** @format int64 */
|
|
4705
3823
|
inputObjectCount?: number;
|
|
4706
|
-
/** @format int64 */
|
|
4707
3824
|
errorCount?: number;
|
|
4708
|
-
/** @format int64 */
|
|
4709
3825
|
outputObjectCount?: number;
|
|
4710
|
-
/**
|
|
4711
|
-
* Some task batches may choose to report additional details about the execution process and result. These
|
|
4712
|
-
* details are written in the format: { "Value description": int_value }.
|
|
4713
|
-
*/
|
|
4714
3826
|
resultDetails?: Record<string, number | null>;
|
|
4715
|
-
}
|
|
3827
|
+
};
|
|
4716
3828
|
/**
|
|
4717
3829
|
* The `StringSubType` provides information about string attribute subtype.
|
|
4718
|
-
|
|
3830
|
+
|
|
4719
3831
|
None
|
|
4720
|
-
|
|
3832
|
+
|
|
4721
3833
|
Image
|
|
4722
|
-
|
|
3834
|
+
|
|
4723
3835
|
PkkCode
|
|
4724
3836
|
*/
|
|
4725
3837
|
export declare enum StringSubType {
|
|
@@ -4730,20 +3842,10 @@ export declare enum StringSubType {
|
|
|
4730
3842
|
/**
|
|
4731
3843
|
* Defines the brush for the stroke.
|
|
4732
3844
|
*/
|
|
4733
|
-
export
|
|
4734
|
-
/**
|
|
4735
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
4736
|
-
* as an object with a "type" parameter specified.
|
|
4737
|
-
*/
|
|
3845
|
+
export declare type StrokeBrushDc = BrushDc & {
|
|
4738
3846
|
color?: ParameterDcColor;
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
* as an object with a "type" parameter specified.
|
|
4742
|
-
*/
|
|
4743
|
-
width?: ParameterDcDouble;
|
|
4744
|
-
/** Type of the brush. */
|
|
4745
|
-
type?: string;
|
|
4746
|
-
}
|
|
3847
|
+
width?: CalculatedParameterDc;
|
|
3848
|
+
};
|
|
4747
3849
|
/**
|
|
4748
3850
|
* Server response for the creation of a style in style service.
|
|
4749
3851
|
*/
|
|
@@ -4763,7 +3865,7 @@ export interface StyleDc {
|
|
|
4763
3865
|
*/
|
|
4764
3866
|
condition?: string;
|
|
4765
3867
|
/** Symbol that is used to draw the features of the layer. */
|
|
4766
|
-
symbol?:
|
|
3868
|
+
symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
4767
3869
|
/**
|
|
4768
3870
|
* Child styles. Before rendering a feature, the children style conditions are checked. If none
|
|
4769
3871
|
* of the child styles were applied, then the paren style is used to draw the feature.
|
|
@@ -4786,31 +3888,10 @@ export interface StyleDc {
|
|
|
4786
3888
|
* Configuration of a styled layer service. This service type is a visual feature layer,
|
|
4787
3889
|
that overrides the base layer styling with its' own style.
|
|
4788
3890
|
*/
|
|
4789
|
-
export
|
|
4790
|
-
/** Style of the service. */
|
|
3891
|
+
export declare type StyledLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4791
3892
|
style: StyleDc;
|
|
4792
|
-
/** The name of the base service. */
|
|
4793
3893
|
baseServiceName: string;
|
|
4794
|
-
|
|
4795
|
-
name: string;
|
|
4796
|
-
/** Human friendly name of the service. */
|
|
4797
|
-
alias?: string;
|
|
4798
|
-
/** Description of the service. */
|
|
4799
|
-
description?: string;
|
|
4800
|
-
/** Service access control list. */
|
|
4801
|
-
acl?: AccessControlListDc;
|
|
4802
|
-
/** Base64 encoded image - icon of the resource. */
|
|
4803
|
-
icon?: string;
|
|
4804
|
-
/**
|
|
4805
|
-
* <br>
|
|
4806
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
4807
|
-
* Administrator permissions are required to perform this operation.
|
|
4808
|
-
*
|
|
4809
|
-
*/
|
|
4810
|
-
owner?: string;
|
|
4811
|
-
/** Copyright text. */
|
|
4812
|
-
copyrightText?: string;
|
|
4813
|
-
}
|
|
3894
|
+
};
|
|
4814
3895
|
/**
|
|
4815
3896
|
* Feature symbol.
|
|
4816
3897
|
*/
|
|
@@ -4830,74 +3911,16 @@ export interface TableConfigurationBaseDc {
|
|
|
4830
3911
|
/**
|
|
4831
3912
|
* Table description.
|
|
4832
3913
|
*/
|
|
4833
|
-
export
|
|
4834
|
-
/**
|
|
4835
|
-
* Row count.
|
|
4836
|
-
* @format int64
|
|
4837
|
-
*/
|
|
3914
|
+
export declare type TableInfoDc = ResourceInfoDc & {
|
|
4838
3915
|
rowCount?: number;
|
|
4839
|
-
/** The geometry of the table. */
|
|
4840
3916
|
geometries?: GeometryType[];
|
|
4841
|
-
/** The type of the table. */
|
|
4842
3917
|
type?: string;
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4846
|
-
name: string;
|
|
4847
|
-
/** Resource alias. */
|
|
4848
|
-
alias?: string;
|
|
4849
|
-
/** Resource owner. */
|
|
4850
|
-
owner?: string;
|
|
4851
|
-
/** Resource description. */
|
|
4852
|
-
description?: string;
|
|
4853
|
-
/** Resource preview. */
|
|
4854
|
-
preview?: string;
|
|
4855
|
-
/**
|
|
4856
|
-
* The date when resource was created.
|
|
4857
|
-
* @format date-time
|
|
4858
|
-
*/
|
|
4859
|
-
createdDate?: string;
|
|
4860
|
-
/**
|
|
4861
|
-
* The date when resource was last modified.
|
|
4862
|
-
* @format date-time
|
|
4863
|
-
*/
|
|
4864
|
-
changedDate?: string;
|
|
4865
|
-
/**
|
|
4866
|
-
* User permissions for server security objects (services, projects etc.)
|
|
4867
|
-
*
|
|
4868
|
-
* none
|
|
4869
|
-
*
|
|
4870
|
-
* configure
|
|
4871
|
-
*
|
|
4872
|
-
* write
|
|
4873
|
-
*
|
|
4874
|
-
* read
|
|
4875
|
-
*
|
|
4876
|
-
* read,configure
|
|
4877
|
-
*
|
|
4878
|
-
* read,write
|
|
4879
|
-
*
|
|
4880
|
-
* read,write,configure
|
|
4881
|
-
*/
|
|
4882
|
-
permissions?: Permissions;
|
|
4883
|
-
/** Access control list. */
|
|
4884
|
-
acl?: AccessControlListDc;
|
|
4885
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4886
|
-
icon?: string;
|
|
4887
|
-
}
|
|
3918
|
+
configuration?: DefaultTableConfigurationDc | RemoteTableConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
|
|
3919
|
+
};
|
|
4888
3920
|
/**
|
|
4889
3921
|
* The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
|
|
4890
3922
|
*/
|
|
4891
|
-
export
|
|
4892
|
-
/** The items of the response. */
|
|
4893
|
-
items?: (TableInfoDc | ResourceInfoDc)[];
|
|
4894
|
-
/** @format int64 */
|
|
4895
|
-
totalCount?: number;
|
|
4896
|
-
/** @format int64 */
|
|
4897
|
-
offset?: number;
|
|
4898
|
-
/** @format int64 */
|
|
4899
|
-
limit?: number;
|
|
4900
|
-
}
|
|
3923
|
+
export declare type TableListDc = ListResponseTableInfoDc;
|
|
4901
3924
|
/**
|
|
4902
3925
|
* Configuration of a related table for feature layer.
|
|
4903
3926
|
*/
|
|
@@ -4916,10 +3939,18 @@ export interface TableReferenceConfigurationDc {
|
|
|
4916
3939
|
/**
|
|
4917
3940
|
* Data storage that allows accessing features directly from the tables.
|
|
4918
3941
|
*/
|
|
4919
|
-
export
|
|
4920
|
-
/** Full name of the table (including namespace if any). */
|
|
3942
|
+
export declare type TableTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
4921
3943
|
tableName: string;
|
|
4922
3944
|
type?: string;
|
|
3945
|
+
};
|
|
3946
|
+
/**
|
|
3947
|
+
* Provides data contract of SPCore.Security.Base.TagInfo.
|
|
3948
|
+
*/
|
|
3949
|
+
export interface TagInfoDc {
|
|
3950
|
+
/** Name of the tag. */
|
|
3951
|
+
name?: string;
|
|
3952
|
+
/** If sets true. */
|
|
3953
|
+
isSystem?: boolean;
|
|
4923
3954
|
}
|
|
4924
3955
|
/**
|
|
4925
3956
|
* Detailed information about a server task.
|
|
@@ -4953,7 +3984,7 @@ export interface TaskInfoDc {
|
|
|
4953
3984
|
*/
|
|
4954
3985
|
status?: ServerTaskStatus;
|
|
4955
3986
|
/** Parameters of the task. */
|
|
4956
|
-
parameters?:
|
|
3987
|
+
parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc;
|
|
4957
3988
|
/**
|
|
4958
3989
|
* Date and time when the task was created.
|
|
4959
3990
|
* @format date-time
|
|
@@ -5006,7 +4037,7 @@ export interface TaskProgressDc {
|
|
|
5006
4037
|
* Timeout
|
|
5007
4038
|
*/
|
|
5008
4039
|
status?: ServerTaskStatus;
|
|
5009
|
-
/**
|
|
4040
|
+
/** The result of the server task execution. */
|
|
5010
4041
|
taskResult?: TaskResultDc;
|
|
5011
4042
|
/**
|
|
5012
4043
|
* Count of task steps.
|
|
@@ -5039,7 +4070,7 @@ export interface TaskProgressDc {
|
|
|
5039
4070
|
*/
|
|
5040
4071
|
export interface TaskResultDc {
|
|
5041
4072
|
message?: string;
|
|
5042
|
-
stepResults?:
|
|
4073
|
+
stepResults?: StepResultDc[];
|
|
5043
4074
|
/** @format int64 */
|
|
5044
4075
|
inputObjectCount?: number;
|
|
5045
4076
|
/** @format int64 */
|
|
@@ -5076,7 +4107,7 @@ export interface TaskStatusDataDc {
|
|
|
5076
4107
|
* Timeout
|
|
5077
4108
|
*/
|
|
5078
4109
|
status?: ServerTaskStatus;
|
|
5079
|
-
/**
|
|
4110
|
+
/** The result of the server task execution. */
|
|
5080
4111
|
taskResult?: TaskResultDc;
|
|
5081
4112
|
}
|
|
5082
4113
|
/**
|
|
@@ -5117,14 +4148,22 @@ export interface TemplateModelDc {
|
|
|
5117
4148
|
dpi?: number;
|
|
5118
4149
|
/** Gets or sets paper margin. */
|
|
5119
4150
|
margin?: number[];
|
|
5120
|
-
/** Localization
|
|
4151
|
+
/** Localization contains fields that should be localized on printing template. */
|
|
5121
4152
|
localization?: TemplateLocalizationDc;
|
|
5122
4153
|
/** Checks if title enabled. */
|
|
5123
4154
|
titleEnabled?: boolean;
|
|
5124
4155
|
}
|
|
5125
4156
|
/**
|
|
5126
|
-
|
|
5127
|
-
|
|
4157
|
+
* Sets the horizontal alignment of text.
|
|
4158
|
+
|
|
4159
|
+
right
|
|
4160
|
+
|
|
4161
|
+
left
|
|
4162
|
+
|
|
4163
|
+
center
|
|
4164
|
+
|
|
4165
|
+
justified
|
|
4166
|
+
*/
|
|
5128
4167
|
export declare enum TextAlignment {
|
|
5129
4168
|
Right = "right",
|
|
5130
4169
|
Left = "left",
|
|
@@ -5133,21 +4172,135 @@ export declare enum TextAlignment {
|
|
|
5133
4172
|
}
|
|
5134
4173
|
export interface TextBackgroundDc {
|
|
5135
4174
|
/** Defines the brush for the fill. */
|
|
5136
|
-
fill?:
|
|
4175
|
+
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
5137
4176
|
/** Defines the brush for the stroke. */
|
|
5138
|
-
stroke?:
|
|
4177
|
+
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
5139
4178
|
offset?: number[];
|
|
5140
4179
|
/** @format float */
|
|
5141
4180
|
rounding?: number;
|
|
5142
4181
|
}
|
|
5143
4182
|
/**
|
|
5144
|
-
|
|
4183
|
+
* Sets the vertical alignment of text.
|
|
4184
|
+
|
|
4185
|
+
top
|
|
4186
|
+
|
|
4187
|
+
bottom
|
|
4188
|
+
|
|
4189
|
+
middle
|
|
4190
|
+
*/
|
|
4191
|
+
export declare enum TextVerticalAlignment {
|
|
4192
|
+
Top = "top",
|
|
4193
|
+
Bottom = "bottom",
|
|
4194
|
+
Middle = "middle"
|
|
4195
|
+
}
|
|
4196
|
+
/**
|
|
4197
|
+
* Service info for a tile catalog layer service.
|
|
4198
|
+
*/
|
|
4199
|
+
export interface TileCatalogServiceInfoDc {
|
|
4200
|
+
/** Information about the layer attributes and their configuration. */
|
|
4201
|
+
layerDefinition: LayerDefinitionDc;
|
|
4202
|
+
/** Feature layer rendering style. */
|
|
4203
|
+
style?: StyleDc;
|
|
4204
|
+
/** Tile info structure. */
|
|
4205
|
+
tileInfo: TileInfoDc;
|
|
4206
|
+
/** Copyright text. */
|
|
4207
|
+
copyrightText?: string;
|
|
4208
|
+
/** The type of the resource. */
|
|
4209
|
+
type: string;
|
|
4210
|
+
/**
|
|
4211
|
+
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
4212
|
+
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
4213
|
+
* @format double
|
|
4214
|
+
*/
|
|
4215
|
+
minResolution?: number;
|
|
4216
|
+
/**
|
|
4217
|
+
* Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
4218
|
+
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
4219
|
+
* @format double
|
|
4220
|
+
*/
|
|
4221
|
+
maxResolution?: number;
|
|
4222
|
+
/**
|
|
4223
|
+
* Filtering condition for the objects in the service. If no condition set or if no such property is available
|
|
4224
|
+
* for the given service type, null is returned.
|
|
4225
|
+
*/
|
|
4226
|
+
condition?: string;
|
|
4227
|
+
/**
|
|
4228
|
+
*
|
|
4229
|
+
*
|
|
4230
|
+
* unknown
|
|
4231
|
+
*
|
|
4232
|
+
* point
|
|
4233
|
+
*
|
|
4234
|
+
* polyline
|
|
4235
|
+
*
|
|
4236
|
+
* polygon
|
|
4237
|
+
*
|
|
4238
|
+
* envelope
|
|
4239
|
+
*
|
|
4240
|
+
* multipoint
|
|
4241
|
+
*/
|
|
4242
|
+
geometryType: GeometryType;
|
|
4243
|
+
/**
|
|
4244
|
+
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
4245
|
+
* 0 is returned.
|
|
4246
|
+
* @format int32
|
|
4247
|
+
*/
|
|
4248
|
+
objectCount?: number;
|
|
4249
|
+
/** The category of the service. */
|
|
4250
|
+
categories?: string[];
|
|
4251
|
+
/** Configuration of the service. */
|
|
4252
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
4253
|
+
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4254
|
+
name: string;
|
|
4255
|
+
/** Resource alias. */
|
|
4256
|
+
alias?: string;
|
|
4257
|
+
/** Resource owner. */
|
|
4258
|
+
owner?: string;
|
|
4259
|
+
/** Resource description. */
|
|
4260
|
+
description?: string;
|
|
4261
|
+
/** Resource preview. */
|
|
4262
|
+
preview?: string;
|
|
4263
|
+
/**
|
|
4264
|
+
* The date when resource was created.
|
|
4265
|
+
* @format date-time
|
|
4266
|
+
*/
|
|
4267
|
+
createdDate?: string;
|
|
4268
|
+
/**
|
|
4269
|
+
* The date when resource was last modified.
|
|
4270
|
+
* @format date-time
|
|
4271
|
+
*/
|
|
4272
|
+
changedDate?: string;
|
|
4273
|
+
/**
|
|
4274
|
+
* User permissions for server security objects (services, projects etc.)
|
|
4275
|
+
*
|
|
4276
|
+
* none
|
|
4277
|
+
*
|
|
4278
|
+
* configure
|
|
4279
|
+
*
|
|
4280
|
+
* write
|
|
4281
|
+
*
|
|
4282
|
+
* read
|
|
4283
|
+
*
|
|
4284
|
+
* read,configure
|
|
4285
|
+
*
|
|
4286
|
+
* read,write
|
|
4287
|
+
*
|
|
4288
|
+
* read,write,configure
|
|
4289
|
+
*/
|
|
4290
|
+
permissions?: Permissions;
|
|
4291
|
+
/** Access control list for a security object. */
|
|
4292
|
+
acl?: AccessControlListDc;
|
|
4293
|
+
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4294
|
+
icon?: string;
|
|
4295
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
4296
|
+
invisibleInCatalog?: boolean;
|
|
4297
|
+
}
|
|
4298
|
+
/**
|
|
4299
|
+
* Configuration of a table for tile catalog layer.
|
|
5145
4300
|
*/
|
|
5146
|
-
export declare
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
Middle = "middle"
|
|
5150
|
-
}
|
|
4301
|
+
export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc & {
|
|
4302
|
+
type?: string;
|
|
4303
|
+
};
|
|
5151
4304
|
/**
|
|
5152
4305
|
* Tile info structure.
|
|
5153
4306
|
*/
|
|
@@ -5225,7 +4378,7 @@ export interface TileInfoDc {
|
|
|
5225
4378
|
* Service info for a tile service.
|
|
5226
4379
|
*/
|
|
5227
4380
|
export interface TileServiceInfoDc {
|
|
5228
|
-
/**
|
|
4381
|
+
/** Tile info structure. */
|
|
5229
4382
|
tileInfo: TileInfoDc;
|
|
5230
4383
|
/** Copyright text. */
|
|
5231
4384
|
copyrightText?: string;
|
|
@@ -5273,7 +4426,7 @@ export interface TileServiceInfoDc {
|
|
|
5273
4426
|
/** The category of the service. */
|
|
5274
4427
|
categories?: string[];
|
|
5275
4428
|
/** Configuration of the service. */
|
|
5276
|
-
configuration?: ServiceConfigurationBaseDc;
|
|
4429
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
5277
4430
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
5278
4431
|
name: string;
|
|
5279
4432
|
/** Resource alias. */
|
|
@@ -5312,30 +4465,47 @@ export interface TileServiceInfoDc {
|
|
|
5312
4465
|
* read,write,configure
|
|
5313
4466
|
*/
|
|
5314
4467
|
permissions?: Permissions;
|
|
5315
|
-
/** Access control list. */
|
|
4468
|
+
/** Access control list for a security object. */
|
|
5316
4469
|
acl?: AccessControlListDc;
|
|
5317
4470
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
5318
4471
|
icon?: string;
|
|
4472
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
4473
|
+
invisibleInCatalog?: boolean;
|
|
5319
4474
|
}
|
|
5320
4475
|
/**
|
|
5321
4476
|
* The description of the tile feature layer service as a server task data storage.
|
|
5322
4477
|
*/
|
|
5323
|
-
export
|
|
5324
|
-
/** The name of the tile feature layer service. */
|
|
4478
|
+
export declare type TilingTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
5325
4479
|
serviceName: string;
|
|
5326
|
-
/** If set to true, a new service with the given LayerServiceName will be created before the task is executed. */
|
|
5327
4480
|
createNewService?: boolean;
|
|
5328
4481
|
type?: string;
|
|
5329
|
-
}
|
|
4482
|
+
};
|
|
4483
|
+
export declare type TrackSymbolBaseDc = SymbolDc & {
|
|
4484
|
+
groupAttribute?: string;
|
|
4485
|
+
sourceAttribute?: string;
|
|
4486
|
+
maxSelectionSize?: number;
|
|
4487
|
+
};
|
|
4488
|
+
export declare type TracksSymbolDc = TrackSymbolBaseDc & {
|
|
4489
|
+
type?: string;
|
|
4490
|
+
pointSymbol?: CirclePointSymbolDc;
|
|
4491
|
+
lineSymbol?: PolylineSymbolDc;
|
|
4492
|
+
};
|
|
5330
4493
|
/**
|
|
5331
4494
|
* The operation that unites the features in the storage.
|
|
5332
4495
|
*/
|
|
5333
|
-
export
|
|
4496
|
+
export declare type UnionTaskParametersDc = FeatureTaskParametersDc & {
|
|
5334
4497
|
type?: string;
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
4498
|
+
};
|
|
4499
|
+
/**
|
|
4500
|
+
* Feature object definition for updating.
|
|
4501
|
+
*/
|
|
4502
|
+
export interface UpdateFeatureDc {
|
|
4503
|
+
/** Feature geometry definition. */
|
|
4504
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
4505
|
+
/** Feature attributes collection. */
|
|
4506
|
+
attributes?: Record<string, any>;
|
|
4507
|
+
/** Feature unique identifier. */
|
|
4508
|
+
id?: string;
|
|
5339
4509
|
}
|
|
5340
4510
|
/**
|
|
5341
4511
|
* Update role data contract.
|
|
@@ -5351,65 +4521,10 @@ export interface UpdateRoleDc {
|
|
|
5351
4521
|
/**
|
|
5352
4522
|
* Table description with columns what must be added and deleted.
|
|
5353
4523
|
*/
|
|
5354
|
-
export
|
|
5355
|
-
/** Description of table columns what must be added. */
|
|
4524
|
+
export declare type UpdateTableDc = TableInfoDc & {
|
|
5356
4525
|
columnsAdd?: ColumnDescriptionDc[];
|
|
5357
|
-
/** Table columns what must be deleted. */
|
|
5358
4526
|
columnsDelete?: string[];
|
|
5359
|
-
|
|
5360
|
-
* Row count.
|
|
5361
|
-
* @format int64
|
|
5362
|
-
*/
|
|
5363
|
-
rowCount?: number;
|
|
5364
|
-
/** The geometry of the table. */
|
|
5365
|
-
geometries?: GeometryType[];
|
|
5366
|
-
/** The type of the table. */
|
|
5367
|
-
type?: string;
|
|
5368
|
-
/** Configuration of the table. */
|
|
5369
|
-
configuration?: TableConfigurationBaseDc;
|
|
5370
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
5371
|
-
name: string;
|
|
5372
|
-
/** Resource alias. */
|
|
5373
|
-
alias?: string;
|
|
5374
|
-
/** Resource owner. */
|
|
5375
|
-
owner?: string;
|
|
5376
|
-
/** Resource description. */
|
|
5377
|
-
description?: string;
|
|
5378
|
-
/** Resource preview. */
|
|
5379
|
-
preview?: string;
|
|
5380
|
-
/**
|
|
5381
|
-
* The date when resource was created.
|
|
5382
|
-
* @format date-time
|
|
5383
|
-
*/
|
|
5384
|
-
createdDate?: string;
|
|
5385
|
-
/**
|
|
5386
|
-
* The date when resource was last modified.
|
|
5387
|
-
* @format date-time
|
|
5388
|
-
*/
|
|
5389
|
-
changedDate?: string;
|
|
5390
|
-
/**
|
|
5391
|
-
* User permissions for server security objects (services, projects etc.)
|
|
5392
|
-
*
|
|
5393
|
-
* none
|
|
5394
|
-
*
|
|
5395
|
-
* configure
|
|
5396
|
-
*
|
|
5397
|
-
* write
|
|
5398
|
-
*
|
|
5399
|
-
* read
|
|
5400
|
-
*
|
|
5401
|
-
* read,configure
|
|
5402
|
-
*
|
|
5403
|
-
* read,write
|
|
5404
|
-
*
|
|
5405
|
-
* read,write,configure
|
|
5406
|
-
*/
|
|
5407
|
-
permissions?: Permissions;
|
|
5408
|
-
/** Access control list. */
|
|
5409
|
-
acl?: AccessControlListDc;
|
|
5410
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
5411
|
-
icon?: string;
|
|
5412
|
-
}
|
|
4527
|
+
};
|
|
5413
4528
|
/**
|
|
5414
4529
|
* Update user data contract.
|
|
5415
4530
|
*/
|
|
@@ -5451,24 +4566,15 @@ export interface UpdateUserDc {
|
|
|
5451
4566
|
/**
|
|
5452
4567
|
* Upload raster task parameters data contract.
|
|
5453
4568
|
*/
|
|
5454
|
-
export
|
|
5455
|
-
|
|
5456
|
-
target: BaseTaskDataStorageDc;
|
|
5457
|
-
/** Names of the image files to tile. */
|
|
4569
|
+
export declare type UploadRasterTaskParametersDc = TaskParametersDc & {
|
|
4570
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
5458
4571
|
files: string[];
|
|
5459
|
-
/** Feature attributes collection. */
|
|
5460
4572
|
attributes?: Record<string, any>;
|
|
5461
|
-
/**
|
|
5462
|
-
* Max zoom level to read.
|
|
5463
|
-
* @format int32
|
|
5464
|
-
*/
|
|
5465
4573
|
maxZoomLevel: number;
|
|
5466
|
-
/** Get geometry from bbox or polygonize. */
|
|
5467
4574
|
polygonize?: boolean;
|
|
5468
|
-
/** Import as COG. */
|
|
5469
4575
|
useCog?: boolean;
|
|
5470
4576
|
type?: string;
|
|
5471
|
-
}
|
|
4577
|
+
};
|
|
5472
4578
|
/**
|
|
5473
4579
|
* Set used project.
|
|
5474
4580
|
*/
|
|
@@ -5519,12 +4625,22 @@ export interface UserOrRoleDc {
|
|
|
5519
4625
|
/** User own role. */
|
|
5520
4626
|
aclRole?: string;
|
|
5521
4627
|
}
|
|
4628
|
+
export interface ValueTupleStringString {
|
|
4629
|
+
item1?: string;
|
|
4630
|
+
item2?: string;
|
|
4631
|
+
}
|
|
5522
4632
|
export interface Vector2 {
|
|
5523
4633
|
/** @format double */
|
|
5524
4634
|
x?: number;
|
|
5525
4635
|
/** @format double */
|
|
5526
4636
|
y?: number;
|
|
5527
4637
|
}
|
|
4638
|
+
/**
|
|
4639
|
+
* Configuration of a table for feature layer.
|
|
4640
|
+
*/
|
|
4641
|
+
export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
4642
|
+
type?: string;
|
|
4643
|
+
};
|
|
5528
4644
|
/**
|
|
5529
4645
|
* Workspace limits data contract.
|
|
5530
4646
|
*/
|
|
@@ -5694,10 +4810,6 @@ export interface UploadPreviewPayload {
|
|
|
5694
4810
|
/** @format binary */
|
|
5695
4811
|
file?: File;
|
|
5696
4812
|
}
|
|
5697
|
-
/**
|
|
5698
|
-
* Provides resources with their acl.
|
|
5699
|
-
*/
|
|
5700
|
-
export declare type BatchResourcesPermissionsSetPayload = BatchResourcesAclDc;
|
|
5701
4813
|
export interface GetConfigurationsListParams {
|
|
5702
4814
|
/**
|
|
5703
4815
|
* Offset.
|
|
@@ -5766,14 +4878,14 @@ export interface FeedbackParams {
|
|
|
5766
4878
|
/** Message text. */
|
|
5767
4879
|
Message?: string;
|
|
5768
4880
|
}
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
|
|
4881
|
+
export interface FaviconParams {
|
|
4882
|
+
/** Bucket name. */
|
|
4883
|
+
bucketName?: string;
|
|
4884
|
+
}
|
|
4885
|
+
export interface LogoParams {
|
|
4886
|
+
/** Bucket name. */
|
|
4887
|
+
bucketName?: string;
|
|
4888
|
+
}
|
|
5777
4889
|
export interface GeocodeParams {
|
|
5778
4890
|
/** Input address. */
|
|
5779
4891
|
address?: string;
|
|
@@ -5817,10 +4929,6 @@ export interface GetDataSchemaParams {
|
|
|
5817
4929
|
/** File id. */
|
|
5818
4930
|
fileId?: string;
|
|
5819
4931
|
}
|
|
5820
|
-
/**
|
|
5821
|
-
* Data schema of a file for import.
|
|
5822
|
-
*/
|
|
5823
|
-
export declare type GetFeaturesCountPayload = ImportFileFeaturesCountDc;
|
|
5824
4932
|
export interface GetExternalWmsLayersParams {
|
|
5825
4933
|
/** WMS service url. */
|
|
5826
4934
|
wmsUrl?: string;
|
|
@@ -5867,6 +4975,8 @@ export interface GetLayersListParams {
|
|
|
5867
4975
|
orderByFields?: string[];
|
|
5868
4976
|
/** Filters layers by geometry types. */
|
|
5869
4977
|
geometryFilter?: string[];
|
|
4978
|
+
/** Filter layers by set of tags. */
|
|
4979
|
+
tags?: string[];
|
|
5870
4980
|
/** ACL in string format `role:permissions;role:permissions`. */
|
|
5871
4981
|
acl?: string;
|
|
5872
4982
|
}
|
|
@@ -5875,59 +4985,6 @@ export interface DeleteResourcesParams {
|
|
|
5875
4985
|
/** Resource names. */
|
|
5876
4986
|
names?: string[];
|
|
5877
4987
|
}
|
|
5878
|
-
/**
|
|
5879
|
-
* Configuration for the proxy service.
|
|
5880
|
-
*/
|
|
5881
|
-
export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5882
|
-
/**
|
|
5883
|
-
* Configuration for the remote tile service.
|
|
5884
|
-
*/
|
|
5885
|
-
export declare type PublishRemoteTileServicePayload = RemoteTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5886
|
-
/**
|
|
5887
|
-
* Configuration for the local tile service.
|
|
5888
|
-
*/
|
|
5889
|
-
export declare type PublishLocalTileServicePayload = LocalTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5890
|
-
/**
|
|
5891
|
-
* Configuration of a postgres feature layer service.
|
|
5892
|
-
*/
|
|
5893
|
-
export declare type PublishPostgresLayerServicePayload = PostgresLayerServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5894
|
-
/**
|
|
5895
|
-
* Configuration of a postgres tile catalog service.
|
|
5896
|
-
*/
|
|
5897
|
-
export declare type PublishPostgresTileCatalogServicePayload = PostgresTileCatalogServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5898
|
-
/**
|
|
5899
|
-
* Configuration for the proxy service.
|
|
5900
|
-
*/
|
|
5901
|
-
export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5902
|
-
/**
|
|
5903
|
-
* Configuration of a postgres tile catalog service.
|
|
5904
|
-
*/
|
|
5905
|
-
export declare type UpdateTileCatalogServicePayload = PostgresTileCatalogServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5906
|
-
/**
|
|
5907
|
-
* Configuration of a styled layer service. This service type is a visual feature layer,
|
|
5908
|
-
that overrides the base layer styling with its' own style.
|
|
5909
|
-
*/
|
|
5910
|
-
export declare type PublishStyledLayerServicePayload = StyledLayerServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5911
|
-
/**
|
|
5912
|
-
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
5913
|
-
*/
|
|
5914
|
-
export declare type PublishCompositeServicePayload = CompositeServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5915
|
-
/**
|
|
5916
|
-
* Configuration for the remote tile service.
|
|
5917
|
-
*/
|
|
5918
|
-
export declare type UpdateRemoteTileServicePayload = RemoteTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5919
|
-
/**
|
|
5920
|
-
* Configuration for the local tile service.
|
|
5921
|
-
*/
|
|
5922
|
-
export declare type UpdateLocalTileServicePayload = LocalTileServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5923
|
-
/**
|
|
5924
|
-
* Configuration of a postgres feature layer service.
|
|
5925
|
-
*/
|
|
5926
|
-
export declare type UpdatePostgresLayerServicePayload = PostgresLayerServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5927
|
-
/**
|
|
5928
|
-
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
5929
|
-
*/
|
|
5930
|
-
export declare type UpdateCompositeServicePayload = CompositeServiceConfigurationDc | ServiceConfigurationBaseDc;
|
|
5931
4988
|
export interface GetFeaturesParams {
|
|
5932
4989
|
/** Sets features filtering query. */
|
|
5933
4990
|
query?: string;
|
|
@@ -5968,7 +5025,7 @@ export interface DeleteFeatureParams {
|
|
|
5968
5025
|
name: string;
|
|
5969
5026
|
}
|
|
5970
5027
|
export declare type CreateFeaturesPayload = FeatureDc[];
|
|
5971
|
-
export declare type UpdateFeaturePayload =
|
|
5028
|
+
export declare type UpdateFeaturePayload = UpdateFeatureDc[];
|
|
5972
5029
|
export interface FeaturesContainsParams {
|
|
5973
5030
|
/** Contains filter within a given filterAttributes. */
|
|
5974
5031
|
filter?: string;
|
|
@@ -6016,7 +5073,7 @@ export interface GetByIdParams {
|
|
|
6016
5073
|
/**
|
|
6017
5074
|
* Geometry object.
|
|
6018
5075
|
*/
|
|
6019
|
-
export declare type UnitePayload =
|
|
5076
|
+
export declare type UnitePayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
6020
5077
|
export interface UniteParams {
|
|
6021
5078
|
/**
|
|
6022
5079
|
* Spatial reference of result feature.
|
|
@@ -6031,7 +5088,7 @@ export interface UniteParams {
|
|
|
6031
5088
|
/**
|
|
6032
5089
|
* Geometry object.
|
|
6033
5090
|
*/
|
|
6034
|
-
export declare type SubtractPayload =
|
|
5091
|
+
export declare type SubtractPayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
6035
5092
|
export interface SubtractParams {
|
|
6036
5093
|
/**
|
|
6037
5094
|
* Spatial reference id of result features.
|
|
@@ -6122,7 +5179,7 @@ export interface GetByGeometryParams {
|
|
|
6122
5179
|
/**
|
|
6123
5180
|
* Geometry object.
|
|
6124
5181
|
*/
|
|
6125
|
-
export declare type GetByGeometryPostPayload =
|
|
5182
|
+
export declare type GetByGeometryPostPayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
6126
5183
|
export interface GetByGeometryPostParams {
|
|
6127
5184
|
/**
|
|
6128
5185
|
* Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
|
|
@@ -6172,8 +5229,6 @@ export interface GetByGeometryGetParams {
|
|
|
6172
5229
|
query?: string;
|
|
6173
5230
|
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
6174
5231
|
styleId?: string;
|
|
6175
|
-
/** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
|
|
6176
|
-
dataFilterId?: string;
|
|
6177
5232
|
/** The name of the layer. */
|
|
6178
5233
|
name: string;
|
|
6179
5234
|
}
|
|
@@ -6246,6 +5301,10 @@ export interface AggregateAttributeParams {
|
|
|
6246
5301
|
*
|
|
6247
5302
|
* Count
|
|
6248
5303
|
*
|
|
5304
|
+
* TotalCount
|
|
5305
|
+
*
|
|
5306
|
+
* DistinctCount
|
|
5307
|
+
*
|
|
6249
5308
|
* First
|
|
6250
5309
|
*
|
|
6251
5310
|
* Last
|
|
@@ -6286,10 +5345,6 @@ export interface GetFilteredFeaturesCountParams {
|
|
|
6286
5345
|
/** Layer name. */
|
|
6287
5346
|
name: string;
|
|
6288
5347
|
}
|
|
6289
|
-
/**
|
|
6290
|
-
* Provides attributes edit info.
|
|
6291
|
-
*/
|
|
6292
|
-
export declare type EditAttributesPayload = EditAttributesInfoDc;
|
|
6293
5348
|
export interface SelectFeaturesParams {
|
|
6294
5349
|
/** Comma separated list of layer names. */
|
|
6295
5350
|
layers?: string[];
|
|
@@ -6325,14 +5380,6 @@ export interface SetPreviewPayload {
|
|
|
6325
5380
|
/** @format binary */
|
|
6326
5381
|
file?: File;
|
|
6327
5382
|
}
|
|
6328
|
-
/**
|
|
6329
|
-
* Access control list for a security object.
|
|
6330
|
-
*/
|
|
6331
|
-
export declare type AddPermissionsPayload = AccessControlListDc;
|
|
6332
|
-
/**
|
|
6333
|
-
* Access control list for a security object.
|
|
6334
|
-
*/
|
|
6335
|
-
export declare type SetPermissionsPayload = AccessControlListDc;
|
|
6336
5383
|
export interface GetNamespacesParams {
|
|
6337
5384
|
/** String filter for the namespace (uses % and _ wild cards like SQL). */
|
|
6338
5385
|
filter?: string;
|
|
@@ -6370,11 +5417,11 @@ export declare type UnsubscribeListOperationPayload = string[];
|
|
|
6370
5417
|
/**
|
|
6371
5418
|
* Base template model data contract.
|
|
6372
5419
|
*/
|
|
6373
|
-
export declare type PrintPayload =
|
|
5420
|
+
export declare type PrintPayload = LayerTemplateModelDc | LegendTemplateModelDc;
|
|
6374
5421
|
/**
|
|
6375
5422
|
* Base template model data contract.
|
|
6376
5423
|
*/
|
|
6377
|
-
export declare type PrintToHtmlPayload =
|
|
5424
|
+
export declare type PrintToHtmlPayload = LayerTemplateModelDc | LegendTemplateModelDc;
|
|
6378
5425
|
export interface UploadTemplatePayload {
|
|
6379
5426
|
/** @format binary */
|
|
6380
5427
|
template?: File;
|
|
@@ -6414,32 +5461,18 @@ export interface GetProjectsListParams {
|
|
|
6414
5461
|
orderByFields?: string[];
|
|
6415
5462
|
/** All available permissions list. */
|
|
6416
5463
|
acl?: string;
|
|
5464
|
+
/** Filter layers by set of tags. */
|
|
5465
|
+
tags?: string[];
|
|
6417
5466
|
}
|
|
6418
|
-
/**
|
|
6419
|
-
* Project extended configuration data contract.
|
|
6420
|
-
*/
|
|
6421
|
-
export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
6422
5467
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
6423
|
-
export interface
|
|
5468
|
+
export interface DeleteResourcesParams5 {
|
|
6424
5469
|
/** Resource names. */
|
|
6425
5470
|
names?: string[];
|
|
6426
5471
|
}
|
|
6427
|
-
/**
|
|
6428
|
-
* Project extended configuration data contract.
|
|
6429
|
-
*/
|
|
6430
|
-
export declare type UpdateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
6431
5472
|
export interface SetPreviewBody {
|
|
6432
5473
|
/** @format binary */
|
|
6433
5474
|
file?: File;
|
|
6434
5475
|
}
|
|
6435
|
-
/**
|
|
6436
|
-
* Access control list for a security object.
|
|
6437
|
-
*/
|
|
6438
|
-
export declare type AddPermissionsBody = AccessControlListDc;
|
|
6439
|
-
/**
|
|
6440
|
-
* Access control list for a security object.
|
|
6441
|
-
*/
|
|
6442
|
-
export declare type SetPermissionsBody = AccessControlListDc;
|
|
6443
5476
|
export interface CheckLimitsParams {
|
|
6444
5477
|
/** Workspace. */
|
|
6445
5478
|
userName?: string;
|
|
@@ -6492,49 +5525,6 @@ export interface GetTaskListParams {
|
|
|
6492
5525
|
*/
|
|
6493
5526
|
limit?: number;
|
|
6494
5527
|
}
|
|
6495
|
-
/**
|
|
6496
|
-
* Server task that copies the objects from one storage to another.
|
|
6497
|
-
*/
|
|
6498
|
-
export declare type StartCopyTaskPayload = CopyTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6499
|
-
/**
|
|
6500
|
-
* Server task that aggregate the objects from one storage to another by polygon geometry.
|
|
6501
|
-
*/
|
|
6502
|
-
export declare type StartAggregateTaskPayload = AggregateTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6503
|
-
/**
|
|
6504
|
-
* Buffer operation calculates the buffer geometries around the input geometries and writes them
|
|
6505
|
-
into the target storage.
|
|
6506
|
-
*/
|
|
6507
|
-
export declare type StartBufferTaskPayload = BufferTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6508
|
-
/**
|
|
6509
|
-
* Print operation print map and map elements to png files.
|
|
6510
|
-
*/
|
|
6511
|
-
export declare type StartPrintTaskPayload = PrintTaskParametersDc | TaskParametersDc;
|
|
6512
|
-
/**
|
|
6513
|
-
* Upload raster task parameters data contract.
|
|
6514
|
-
*/
|
|
6515
|
-
export declare type StartTilingTaskPayload = UploadRasterTaskParametersDc | TaskParametersDc;
|
|
6516
|
-
/**
|
|
6517
|
-
* Availability area builder operation considers the nearest availability zones around the input geometries and writes them
|
|
6518
|
-
into the target storage.
|
|
6519
|
-
*/
|
|
6520
|
-
export declare type StartRouteTaskPayload = AvailabilityAreaTaskDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6521
|
-
/**
|
|
6522
|
-
* The operation that unites the features in the storage.
|
|
6523
|
-
*/
|
|
6524
|
-
export declare type StartUnionTaskPayload = UnionTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6525
|
-
/**
|
|
6526
|
-
* Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
|
|
6527
|
-
*/
|
|
6528
|
-
export declare type StartOverlayTaskPayload = OverlayTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6529
|
-
/**
|
|
6530
|
-
* Server task that copies the objects from the source storage that satisfy the filter conditions to the target layer.
|
|
6531
|
-
*/
|
|
6532
|
-
export declare type StartFilterCopyTaskPayload = FilterCopyTaskParametersDc | FeatureTaskParametersDc | TaskParametersDc;
|
|
6533
|
-
/**
|
|
6534
|
-
* Pipeline of server tasks. The tasks given in the InnerTasks property are executed one after another inside one server task.
|
|
6535
|
-
*/
|
|
6536
|
-
export declare type StartPipelineTaskPayload = PipelineTaskParametersDc | TaskParametersDc;
|
|
6537
|
-
export declare type StartEditAttributesBatchPayload = EditAttributesTaskParametersDc | TaskParametersDc;
|
|
6538
5528
|
export interface FindUserByNameByRolesParams {
|
|
6539
5529
|
/** Roles. */
|
|
6540
5530
|
roles?: string[];
|
|
@@ -6585,7 +5575,6 @@ export interface RemovePolicyParams {
|
|
|
6585
5575
|
/** Use role the policy is applied to. */
|
|
6586
5576
|
role?: string;
|
|
6587
5577
|
}
|
|
6588
|
-
export declare type SetPolicyPayload = PolicyDc;
|
|
6589
5578
|
export interface DownloadFileParams {
|
|
6590
5579
|
/** Id of the file in the temporary static storage. */
|
|
6591
5580
|
fileName?: string;
|
|
@@ -6616,7 +5605,7 @@ export interface StatisticsDbParams {
|
|
|
6616
5605
|
/** Type of required statistic function. */
|
|
6617
5606
|
types?: AggregationFunction[];
|
|
6618
5607
|
}
|
|
6619
|
-
export interface
|
|
5608
|
+
export interface ClassifyParams2 {
|
|
6620
5609
|
/** Layer name. */
|
|
6621
5610
|
name?: string;
|
|
6622
5611
|
/** Attribute name. */
|
|
@@ -6666,14 +5655,6 @@ export interface SumOfProductParams {
|
|
|
6666
5655
|
/** Layer condition. */
|
|
6667
5656
|
condition?: string;
|
|
6668
5657
|
}
|
|
6669
|
-
/**
|
|
6670
|
-
* Feature layer rendering style.
|
|
6671
|
-
*/
|
|
6672
|
-
export declare type UpdateStylePayload = StyleDc;
|
|
6673
|
-
/**
|
|
6674
|
-
* Feature layer rendering style.
|
|
6675
|
-
*/
|
|
6676
|
-
export declare type CreateStylePayload = StyleDc;
|
|
6677
5658
|
export interface AddFontPayload {
|
|
6678
5659
|
/** @format binary */
|
|
6679
5660
|
formFile?: File;
|
|
@@ -6713,22 +5694,16 @@ export interface GetTableListParams {
|
|
|
6713
5694
|
orderByFields?: string[];
|
|
6714
5695
|
/** Filters layers by geometry types. */
|
|
6715
5696
|
geometryFilter?: string[];
|
|
5697
|
+
/** Filter layers by set of tags. */
|
|
5698
|
+
tags?: string[];
|
|
6716
5699
|
/** All available permissions list. */
|
|
6717
5700
|
acl?: string;
|
|
6718
5701
|
}
|
|
6719
|
-
/**
|
|
6720
|
-
* Table description with columns and access control list.
|
|
6721
|
-
*/
|
|
6722
|
-
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
6723
5702
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6724
|
-
export interface
|
|
5703
|
+
export interface DeleteResourcesParams3 {
|
|
6725
5704
|
/** Resource names. */
|
|
6726
5705
|
names?: string[];
|
|
6727
5706
|
}
|
|
6728
|
-
/**
|
|
6729
|
-
* Table description with columns what must be added and deleted.
|
|
6730
|
-
*/
|
|
6731
|
-
export declare type UpdateTablePayload = UpdateTableDc | ResourceInfoDc | TableInfoDc;
|
|
6732
5707
|
export interface GetTableDataParams {
|
|
6733
5708
|
/** String filter for the all text column (uses % and _ wild cards like SQL). */
|
|
6734
5709
|
filter?: string;
|
|
@@ -6783,23 +5758,15 @@ export interface GetUniqueDataRowsParams {
|
|
|
6783
5758
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
|
|
6784
5759
|
<br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
|
|
6785
5760
|
*/
|
|
6786
|
-
export declare type MapTablePayload = MapTableInfoDc;
|
|
5761
|
+
export declare type MapTablePayload = MapTableInfoDc | MapRemoteTableInfoDc | MapViewInfoDc;
|
|
6787
5762
|
export interface MapTableParams {
|
|
6788
5763
|
/** Type of data source. */
|
|
6789
5764
|
type?: string;
|
|
6790
5765
|
}
|
|
6791
|
-
/**
|
|
6792
|
-
* SPCore.Connectors.Connectors.Base.Models.Data.MapViewInfoDc provides map view data source data contract.
|
|
6793
|
-
*/
|
|
6794
|
-
export declare type MapViewPayload = MapViewInfoDc | MapTableInfoDc;
|
|
6795
5766
|
export interface MapViewParams {
|
|
6796
5767
|
/** Type of data source. */
|
|
6797
5768
|
type?: string;
|
|
6798
5769
|
}
|
|
6799
|
-
/**
|
|
6800
|
-
* SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
|
|
6801
|
-
*/
|
|
6802
|
-
export declare type MapRemoteTablePayload = MapRemoteTableInfoDc | MapTableInfoDc;
|
|
6803
5770
|
export interface MapRemoteTableParams {
|
|
6804
5771
|
/** Type of data source. */
|
|
6805
5772
|
type?: string;
|
|
@@ -6808,14 +5775,20 @@ export interface SetPreviewInput {
|
|
|
6808
5775
|
/** @format binary */
|
|
6809
5776
|
file?: File;
|
|
6810
5777
|
}
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
5778
|
+
export interface GetAllParams {
|
|
5779
|
+
/** Text filter. */
|
|
5780
|
+
filter?: string;
|
|
5781
|
+
/**
|
|
5782
|
+
* Skip objects amount.
|
|
5783
|
+
* @format int32
|
|
5784
|
+
*/
|
|
5785
|
+
offset?: number;
|
|
5786
|
+
/**
|
|
5787
|
+
* Limit objects in response.
|
|
5788
|
+
* @format int32
|
|
5789
|
+
*/
|
|
5790
|
+
limit?: number;
|
|
5791
|
+
}
|
|
6819
5792
|
export interface GetCapabilitiesParams {
|
|
6820
5793
|
/** Name of the service. */
|
|
6821
5794
|
Service?: string;
|
|
@@ -6826,7 +5799,27 @@ export interface GetCapabilitiesParams {
|
|
|
6826
5799
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6827
5800
|
AcceptFormats?: string[];
|
|
6828
5801
|
}
|
|
6829
|
-
export interface
|
|
5802
|
+
export interface GetSharedCapabilitiesParams {
|
|
5803
|
+
/** Name of the service. */
|
|
5804
|
+
Service?: string;
|
|
5805
|
+
/** When omitted, server shall return latest supported version. */
|
|
5806
|
+
AcceptVersions?: string[];
|
|
5807
|
+
/** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
|
|
5808
|
+
Sections?: string[];
|
|
5809
|
+
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
5810
|
+
AcceptFormats?: string[];
|
|
5811
|
+
}
|
|
5812
|
+
export interface GetPublicCapabilitiesParams {
|
|
5813
|
+
/** Name of the service. */
|
|
5814
|
+
Service?: string;
|
|
5815
|
+
/** When omitted, server shall return latest supported version. */
|
|
5816
|
+
AcceptVersions?: string[];
|
|
5817
|
+
/** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
|
|
5818
|
+
Sections?: string[];
|
|
5819
|
+
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
5820
|
+
AcceptFormats?: string[];
|
|
5821
|
+
}
|
|
5822
|
+
export interface GetCapabilitiesParams3 {
|
|
6830
5823
|
/** Output format of service metadata. */
|
|
6831
5824
|
Format?: string;
|
|
6832
5825
|
/** Must be WMS. */
|