@evergis/api 3.0.91 → 3.0.93

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.
@@ -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 interface AggregateTaskParametersDc {
14
+ export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
15
15
  type?: string;
16
- /** Storage that is to be used as a data source for the task. */
17
- geometry: BaseTaskDataStorageDc;
18
- /** Storage that is to be used as a data source for the task. */
16
+ geometry: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
19
17
  aggregationSettings: AggregationSettingDc[];
20
- /** Storage that is to be used as a data source for the task. */
21
- source: BaseTaskDataStorageDc;
22
- /** Storage that is to be used as a target for writing the task result. */
23
- target: BaseTaskDataStorageDc;
24
- }
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,8 @@ export interface AggregationDataResultDc {
49
50
  *
50
51
  * Count
51
52
  *
53
+ * DistinctCount
54
+ *
52
55
  * First
53
56
  *
54
57
  * Last
@@ -75,41 +78,43 @@ export interface AggregationDataResultDc {
75
78
  }
76
79
  /**
77
80
  *
78
-
81
+
79
82
  None
80
-
83
+
81
84
  Array
82
-
85
+
83
86
  Min
84
-
87
+
85
88
  Max
86
-
89
+
87
90
  Avg
88
-
91
+
89
92
  Sum
90
-
93
+
91
94
  Extent
92
-
95
+
93
96
  Count
94
-
97
+
98
+ DistinctCount
99
+
95
100
  First
96
-
101
+
97
102
  Last
98
-
103
+
99
104
  Median
100
-
105
+
101
106
  Mod
102
-
107
+
103
108
  StdDeviation
104
-
109
+
105
110
  SumOfProduct
106
-
111
+
107
112
  OnlyValue
108
-
113
+
109
114
  WeightedAvg
110
-
115
+
111
116
  DensityIndicators
112
-
117
+
113
118
  DividedSum
114
119
  */
115
120
  export declare enum AggregationFunction {
@@ -121,6 +126,7 @@ export declare enum AggregationFunction {
121
126
  Sum = "Sum",
122
127
  Extent = "Extent",
123
128
  Count = "Count",
129
+ DistinctCount = "DistinctCount",
124
130
  First = "First",
125
131
  Last = "Last",
126
132
  Median = "Median",
@@ -161,6 +167,8 @@ export interface AggregationSettingDc {
161
167
  *
162
168
  * Count
163
169
  *
170
+ * DistinctCount
171
+ *
164
172
  * First
165
173
  *
166
174
  * Last
@@ -226,6 +234,8 @@ export interface AttributeConfigurationDc {
226
234
  *
227
235
  * Count
228
236
  *
237
+ * DistinctCount
238
+ *
229
239
  * First
230
240
  *
231
241
  * Last
@@ -249,7 +259,7 @@ export interface AttributeConfigurationDc {
249
259
  aggregation?: AggregationFunction;
250
260
  /** Eql expression. Provides dynamic calculated value of the attribute. */
251
261
  expression?: string;
252
- /** Allows to set format to attribute value. */
262
+ /** Sets attribute format settings. */
253
263
  stringFormat?: AttributeFormatDc;
254
264
  }
255
265
  /**
@@ -304,7 +314,7 @@ export interface AttributeDefinitionDc {
304
314
  isUnique?: boolean;
305
315
  /** Sets true if attribute calculate on the fly. */
306
316
  isCalculated?: boolean;
307
- /** Provides attribute value format settings. */
317
+ /** Provides attributes format definition settings. */
308
318
  stringFormat?: AttributeFormatDefinitionDc;
309
319
  }
310
320
  /**
@@ -408,27 +418,27 @@ export interface AttributeFormatDefinitionDc {
408
418
  }
409
419
  /**
410
420
  * Types of the attributes that are supported by the system.
411
-
421
+
412
422
  Unknown
413
-
423
+
414
424
  String
415
-
425
+
416
426
  Int32
417
-
427
+
418
428
  Int64
419
-
429
+
420
430
  Double
421
-
431
+
422
432
  DateTime
423
-
433
+
424
434
  Boolean
425
-
435
+
426
436
  Point
427
-
437
+
428
438
  Polyline
429
-
439
+
430
440
  Polygon
431
-
441
+
432
442
  Multipoint
433
443
  */
434
444
  export declare enum AttributeType {
@@ -465,29 +475,17 @@ export interface AttributesConfigurationDc {
465
475
  * Availability area builder operation considers the nearest availability zones around the input geometries and writes them
466
476
  into the target storage.
467
477
  */
468
- export interface AvailabilityAreaTaskDc {
478
+ export declare type AvailabilityAreaTaskDc = FeatureTaskParametersDc & {
469
479
  type?: string;
470
- /** Duration from start point in seconds or expression. */
471
480
  duration: string;
472
- /** Provider name. */
473
481
  providerType: string;
474
- /** Name of attribute of the duration. Default name is 'duration'. */
475
482
  durationAttributeName?: string;
476
- /** Name of attribute of the route x center. Default name is 'center_x'. */
477
483
  routeCenterXAttributeName?: string;
478
- /** Name of attribute of the route y center. Default name is 'center_y'. */
479
484
  routeCenterYAttributeName?: string;
480
- /** Name of attribute of the base object id. Default name is 'base_object'. */
481
485
  baseObjectIdAttributeName?: string;
482
- /** Name of attribute of the id attribute. */
483
486
  idAttributeName?: string;
484
- /** Name of attribute of the radius. */
485
487
  geometryAttributeName?: string;
486
- /** Storage that is to be used as a data source for the task. */
487
- source: BaseTaskDataStorageDc;
488
- /** Storage that is to be used as a target for writing the task result. */
489
- target: BaseTaskDataStorageDc;
490
- }
488
+ };
491
489
  /**
492
490
  * Simply Base64 string.
493
491
  */
@@ -534,7 +532,7 @@ export interface BatchResourcesCatalogDc {
534
532
  export interface BookmarkDc {
535
533
  /** The title of the bookmark. */
536
534
  title?: string;
537
- /** The position at the map. */
535
+ /** The position at the map in [X, Y] format. */
538
536
  position?: PositionDc;
539
537
  /**
540
538
  * Resolution of the map.
@@ -555,24 +553,16 @@ export interface BrushDc {
555
553
  * Buffer operation calculates the buffer geometries around the input geometries and writes them
556
554
  into the target storage.
557
555
  */
558
- export interface BufferTaskParametersDc {
556
+ export declare type BufferTaskParametersDc = FeatureTaskParametersDc & {
559
557
  type?: string;
560
558
  radii: string[];
561
559
  excludeInnerBuffers?: boolean;
562
560
  excludeSourcePolygon?: boolean;
563
- /** Name of attribute of the base object id. Default name is 'base_object'. */
564
561
  baseObjectIdAttributeName?: string;
565
- /** Name of attribute of the radius. Default name is 'buffer_radius'. */
566
562
  radiusAttributeName?: string;
567
- /** Name of attribute of the id attribute. */
568
563
  idAttributeName?: string;
569
- /** Name of attribute of the radius. */
570
564
  geometryAttributeName?: string;
571
- /** Storage that is to be used as a data source for the task. */
572
- source: BaseTaskDataStorageDc;
573
- /** Storage that is to be used as a target for writing the task result. */
574
- target: BaseTaskDataStorageDc;
575
- }
565
+ };
576
566
  /**
577
567
  * Provides set resources bulk operation status.
578
568
  */
@@ -584,12 +574,11 @@ export interface BulkOperationResultDc {
584
574
  /** Sets true. */
585
575
  isSuccess?: boolean;
586
576
  }
587
- export interface CalculatedParameterDc {
577
+ export declare type CalculatedParameterDc = ParameterDcDouble & {
588
578
  type?: string;
589
579
  expression?: string;
590
- /** @format double */
591
580
  defaultValue?: number;
592
- }
581
+ };
593
582
  /**
594
583
  * Provides catalog resources with users.
595
584
  */
@@ -602,49 +591,26 @@ export interface CatalogResourceDc {
602
591
  /**
603
592
  * The symbol that draws a feature as a circle.
604
593
  */
605
- export interface CirclePointSymbolDc {
594
+ export declare type CirclePointSymbolDc = SymbolDc & {
606
595
  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
- */
596
+ size?: CalculatedParameterDc;
616
597
  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
598
  strokeColor?: ParameterDcColor;
622
- /**
623
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
624
- * as an object with a "type" parameter specified.
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
- }
599
+ strokeWidth?: CalculatedParameterDc;
600
+ offset?: CalculatedParameterDc[];
601
+ angle?: CalculatedParameterDc;
602
+ };
637
603
  /**
638
604
  * Describes classification methods.
639
-
605
+
640
606
  none
641
-
607
+
642
608
  naturalBreaks
643
-
609
+
644
610
  equalInterval
645
-
611
+
646
612
  quantile
647
-
613
+
648
614
  unique
649
615
  */
650
616
  export declare enum ClassificationType {
@@ -652,15 +618,15 @@ export declare enum ClassificationType {
652
618
  NaturalBreaks = "naturalBreaks",
653
619
  EqualInterval = "equalInterval",
654
620
  Quantile = "quantile",
655
- Distinct = "unique"
621
+ Unique = "unique"
656
622
  }
657
623
  /**
658
624
  * Type of attribute.
659
-
625
+
660
626
  decimal
661
-
627
+
662
628
  dateTime
663
-
629
+
664
630
  text
665
631
  */
666
632
  export declare enum ClassifyAttributeType {
@@ -683,12 +649,21 @@ export interface ClassifyDc {
683
649
  export interface ClassifyResultObject {
684
650
  /** Value. */
685
651
  value?: any;
686
- /**
687
- * Count.
688
- * @format int64
689
- */
690
- count?: number;
652
+ /** Count. */
653
+ count?: any;
691
654
  }
655
+ export declare type ClusterSymbolDc = SymbolDc & {
656
+ type?: string;
657
+ labelSymbol?: PointLabelSymbolDc;
658
+ 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;
659
+ fillColor?: ParameterDcColor;
660
+ strokeColor?: ParameterDcColor;
661
+ strokeWidth?: CalculatedParameterDc;
662
+ maxClusterSize?: number;
663
+ minClusterSize?: number;
664
+ maxObjectCount?: number;
665
+ gridSize?: number;
666
+ };
692
667
  /**
693
668
  * Description of a table column.
694
669
  */
@@ -799,29 +774,9 @@ export interface CompositeLayerInfoDc {
799
774
  /**
800
775
  * Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
801
776
  */
802
- export interface CompositeServiceConfigurationDc {
803
- /** Composite service layers list. */
777
+ export declare type CompositeServiceConfigurationDc = ServiceConfigurationBaseDc & {
804
778
  layers: CompositeLayerConfigurationDc[];
805
- /** Name of the service. */
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
- }
779
+ };
825
780
  /**
826
781
  * Information about composite service.
827
782
  */
@@ -872,7 +827,7 @@ export interface CompositeServiceInfoDc {
872
827
  /** The category of the service. */
873
828
  categories?: string[];
874
829
  /** Configuration of the service. */
875
- configuration?: ServiceConfigurationBaseDc;
830
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
876
831
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
877
832
  name: string;
878
833
  /** Resource alias. */
@@ -911,7 +866,7 @@ export interface CompositeServiceInfoDc {
911
866
  * read,write,configure
912
867
  */
913
868
  permissions?: Permissions;
914
- /** Access control list. */
869
+ /** Access control list for a security object. */
915
870
  acl?: AccessControlListDc;
916
871
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
917
872
  icon?: string;
@@ -919,13 +874,10 @@ export interface CompositeServiceInfoDc {
919
874
  /**
920
875
  * Composite symbol.
921
876
  */
922
- export interface CompositeSymbolDc {
877
+ export declare type CompositeSymbolDc = SymbolDc & {
923
878
  type?: string;
924
- /** Child symbols list. */
925
- childSymbols?: SymbolDc[];
926
- /** If set true symbol will not be rendered. */
927
- disabled?: boolean;
928
- }
879
+ 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)[];
880
+ };
929
881
  /**
930
882
  * Get configuration information.
931
883
  */
@@ -936,8 +888,50 @@ export interface ConfigDc {
936
888
  urlPath?: string;
937
889
  }
938
890
  /**
939
- * Types of errors that can occur during layer initialize.
940
- */
891
+ * Types of errors that can occur during layer initialize.
892
+
893
+ Unknown
894
+
895
+ SerializeError
896
+
897
+ InvalidDataService
898
+
899
+ InvalidConfiguration
900
+
901
+ InvalidDataServiceName
902
+
903
+ InvalidTableName
904
+
905
+ ResourceNotFound
906
+
907
+ InvalidCondition
908
+
909
+ InvalidAttributes
910
+
911
+ InvalidIdAttribute
912
+
913
+ InvalidGeometryAttribute
914
+
915
+ InvalidGeometryAttributeType
916
+
917
+ InvalidColumnName
918
+
919
+ InvalidIdColumnSettings
920
+
921
+ ColumnNotExistsInTable
922
+
923
+ InvalidStyle
924
+
925
+ InvalidLayerType
926
+
927
+ ColumnLoadingError
928
+
929
+ InvalidAttributeFormat
930
+
931
+ DataSourceNotFound
932
+
933
+ DuplicateColumns
934
+ */
941
935
  export declare enum ConfigurationErrorEnum {
942
936
  Unknown = "Unknown",
943
937
  SerializeError = "SerializeError",
@@ -958,8 +952,17 @@ export declare enum ConfigurationErrorEnum {
958
952
  InvalidLayerType = "InvalidLayerType",
959
953
  ColumnLoadingError = "ColumnLoadingError",
960
954
  InvalidAttributeFormat = "InvalidAttributeFormat",
961
- DataSourceNotFound = "DataSourceNotFound"
955
+ DataSourceNotFound = "DataSourceNotFound",
956
+ DuplicateColumns = "DuplicateColumns"
962
957
  }
958
+ /**
959
+ * SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
960
+ */
961
+ export declare type ConfiguredLayerDataStorageDc = BaseTaskDataStorageDc & {
962
+ type?: string;
963
+ serviceName: string;
964
+ attributesConfiguration?: AttributesConfigurationDc;
965
+ };
963
966
  /**
964
967
  * Describes resource to copy.
965
968
  */
@@ -980,6 +983,8 @@ export interface CopyResourceDc {
980
983
  * file
981
984
  *
982
985
  * feature
986
+ *
987
+ * tag
983
988
  */
984
989
  type: ResourceType;
985
990
  /** Resource copy name. */
@@ -1011,6 +1016,8 @@ export interface CopyResourceResultDc {
1011
1016
  * file
1012
1017
  *
1013
1018
  * feature
1019
+ *
1020
+ * tag
1014
1021
  */
1015
1022
  type: ResourceType;
1016
1023
  /** Name of resource to copy. */
@@ -1019,22 +1026,17 @@ export interface CopyResourceResultDc {
1019
1026
  isSuccess?: boolean;
1020
1027
  /** Copied resources. */
1021
1028
  copiedResources?: string[];
1022
- /** Type of error. */
1029
+ /** Resource error details. */
1023
1030
  errorDetails?: ErrorDetailsDc;
1024
1031
  }
1025
1032
  /**
1026
1033
  * Server task that copies the objects from one storage to another.
1027
1034
  */
1028
- export interface CopyTaskParametersDc {
1035
+ export declare type CopyTaskParametersDc = FeatureTaskParametersDc & {
1029
1036
  type?: string;
1030
1037
  condition?: string;
1031
- /** Mapping of source attribute fields and target attribute fields. */
1032
1038
  attributeMapping?: Record<string, string | null>;
1033
- /** Storage that is to be used as a data source for the task. */
1034
- source: BaseTaskDataStorageDc;
1035
- /** Storage that is to be used as a target for writing the task result. */
1036
- target: BaseTaskDataStorageDc;
1037
- }
1039
+ };
1038
1040
  /**
1039
1041
  * Data contract for create new role.
1040
1042
  */
@@ -1079,68 +1081,30 @@ export interface CreateUserDc {
1079
1081
  /**
1080
1082
  * Description of the temp file as a task data storage.
1081
1083
  */
1082
- export interface CsvStaticTaskDataStorageDc {
1083
- /**
1084
- * Attribute name row number.
1085
- * @format int32
1086
- */
1084
+ export declare type CsvStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
1087
1085
  attributeNameRowNumber?: number;
1088
- /** If set true - second row will be read as alias row. */
1089
1086
  containsAliasRow?: boolean;
1090
- /**
1091
- * First data row number.
1092
- * @format int32
1093
- */
1094
1087
  firstDataRowNumber?: number;
1095
- /** Coord source fields. */
1096
1088
  coordSourceFields: string[];
1097
- /** CSV column delimiter. */
1098
1089
  columnDelimiter?: string;
1099
- /**
1100
- * Spatial reference.
1101
- * @format int32
1102
- */
1103
1090
  spatialReference?: number;
1104
- /** Export geometry as Wkt. */
1105
1091
  isWkt?: boolean;
1106
1092
  type?: string;
1107
- /** The id of the file in the temporary session static storage. */
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
- }
1093
+ };
1112
1094
  /**
1113
1095
  * Describes stroked dashed brush.
1114
1096
  */
1115
- export interface DashedBrushDc {
1097
+ export declare type DashedBrushDc = StrokeBrushDc & {
1116
1098
  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
1099
  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
1100
  phase?: number;
1133
- /**
1134
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
1135
- * as an object with a "type" parameter specified.
1136
- */
1137
- color?: ParameterDcColor;
1138
- /**
1139
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
1140
- * as an object with a "type" parameter specified.
1141
- */
1142
- width?: ParameterDcDouble;
1143
- }
1101
+ };
1102
+ /**
1103
+ * Configuration of a table for feature layer.
1104
+ */
1105
+ export declare type DefaultTableConfigurationDc = TableConfigurationBaseDc & {
1106
+ type?: string;
1107
+ };
1144
1108
  /**
1145
1109
  * Dependent resource description.
1146
1110
  */
@@ -1153,63 +1117,9 @@ export interface DependentResourceDc {
1153
1117
  /**
1154
1118
  * Table description with columns and access control list.
1155
1119
  */
1156
- export interface DetailedTableInfoDc {
1157
- /** Description of table columns. */
1120
+ export declare type DetailedTableInfoDc = TableInfoDc & {
1158
1121
  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
- }
1122
+ };
1213
1123
  /**
1214
1124
  * Provides attributes edit info.
1215
1125
  */
@@ -1221,69 +1131,22 @@ export interface EditAttributesInfoDc {
1221
1131
  /** Expression to edit. */
1222
1132
  editExpression: string;
1223
1133
  }
1224
- export interface EditAttributesTaskParametersDc {
1134
+ export declare type EditAttributesTaskParametersDc = TaskParametersDc & {
1225
1135
  type?: string;
1226
1136
  condition?: string;
1227
1137
  attribute: string;
1228
1138
  editExpression: string;
1229
1139
  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
1140
  attributeType: AttributeType;
1256
- /** Base dc of task data storage. */
1257
- target: BaseTaskDataStorageDc;
1258
- }
1141
+ target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
1142
+ };
1259
1143
  /**
1260
1144
  * Envelope geometry.
1261
1145
  */
1262
- export interface EnvelopeDc {
1263
- /** Coordinates of the envelope. Always has exactly 2 points: left bottom and right top. */
1146
+ export declare type EnvelopeDc = GeometryDc & {
1264
1147
  coordinates: PositionDc[];
1265
- /**
1266
- *
1267
- *
1268
- * unknown
1269
- *
1270
- * point
1271
- *
1272
- * polyline
1273
- *
1274
- * polygon
1275
- *
1276
- * envelope
1277
- *
1278
- * multipoint
1279
- */
1280
1148
  type?: GeometryType;
1281
- /**
1282
- * Spatial reference id.
1283
- * @format int32
1284
- */
1285
- sr?: number;
1286
- }
1149
+ };
1287
1150
  /**
1288
1151
  * Resource error details.
1289
1152
  */
@@ -1312,15 +1175,15 @@ export interface ErrorDetailsDc {
1312
1175
  }
1313
1176
  /**
1314
1177
  * Type of the error.
1315
-
1178
+
1316
1179
  ResourceLimitExceeded
1317
-
1180
+
1318
1181
  ResourceNotFound
1319
-
1182
+
1320
1183
  InternalError
1321
-
1184
+
1322
1185
  BadRequest
1323
-
1186
+
1324
1187
  DuplicateContent
1325
1188
  */
1326
1189
  export declare enum ErrorDetailsType {
@@ -1368,37 +1231,15 @@ export declare enum ErrorType {
1368
1231
  /**
1369
1232
  * Description of the temp file as a task data storage.
1370
1233
  */
1371
- export interface ExcelStaticTaskDataStorageDc {
1372
- /**
1373
- * Attribute name row number.
1374
- * @format int32
1375
- */
1234
+ export declare type ExcelStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
1376
1235
  attributeNameRowNumber?: number;
1377
- /**
1378
- * Alias row number.
1379
- * @format int32
1380
- */
1381
1236
  aliasRowNumber?: number;
1382
- /**
1383
- * First data row number.
1384
- * @format int32
1385
- */
1386
1237
  firstDataRowNumber?: number;
1387
- /** Coord source fields. */
1388
1238
  coordSourceFields: string[];
1389
- /**
1390
- * Spatial reference.
1391
- * @format int32
1392
- */
1393
1239
  spatialReference: number;
1394
- /** Export geometry as Wkt. */
1395
1240
  isWkt?: boolean;
1396
1241
  type?: string;
1397
- /** The id of the file in the temporary session static storage. */
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
- }
1242
+ };
1402
1243
  /**
1403
1244
  * Result of the eql expression validation.
1404
1245
  */
@@ -1439,68 +1280,25 @@ export interface ExpressionValidationResultDc {
1439
1280
  /**
1440
1281
  * Project extended configuration data contract.
1441
1282
  */
1442
- export interface ExtendedProjectInfoDc {
1443
- /** Project content configuration. */
1283
+ export declare type ExtendedProjectInfoDc = ProjectInfoDc & {
1444
1284
  content: ProjectConfigurationDc;
1445
- /** Sets true if project is shared. */
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
- }
1285
+ };
1495
1286
  /**
1496
1287
  * SPCore.Connectors.Connectors.Base.Models.Projects.ExtendedProjectLayersInfo provides extended project info with included layers info.
1497
1288
  */
1498
1289
  export interface ExtendedProjectLayersInfo {
1499
- /** Extended project info. */
1500
- projectInfo?: ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
1290
+ /** Project extended configuration data contract. */
1291
+ projectInfo?: ExtendedProjectInfoDc;
1501
1292
  /** A collection of layers info. */
1502
1293
  layersInfo?: ServiceListItemDc[];
1503
1294
  }
1295
+ /**
1296
+ * Extended resource info data contract.
1297
+ */
1298
+ export declare type ExtendedResourceInfoDc = ResourceInfoDc & {
1299
+ publishedDate?: string;
1300
+ usedByUsers?: string[];
1301
+ };
1504
1302
  /**
1505
1303
  * Extended user information.
1506
1304
  */
@@ -1567,13 +1365,57 @@ export interface ExtendedUserInfoDc {
1567
1365
  * The `FailedServiceInfoDc` describes SPCore.Security.Base.Services.FailedServiceInfo data contact.
1568
1366
  */
1569
1367
  export interface FailedServiceInfoDc {
1570
- /** Types of errors that can occur during layer initialize. */
1571
- errorType?: ConfigurationErrorEnum;
1572
- /** The type of the resource. */
1573
- type: string;
1574
1368
  /**
1575
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
1576
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
1369
+ * Types of errors that can occur during layer initialize.
1370
+ *
1371
+ * Unknown
1372
+ *
1373
+ * SerializeError
1374
+ *
1375
+ * InvalidDataService
1376
+ *
1377
+ * InvalidConfiguration
1378
+ *
1379
+ * InvalidDataServiceName
1380
+ *
1381
+ * InvalidTableName
1382
+ *
1383
+ * ResourceNotFound
1384
+ *
1385
+ * InvalidCondition
1386
+ *
1387
+ * InvalidAttributes
1388
+ *
1389
+ * InvalidIdAttribute
1390
+ *
1391
+ * InvalidGeometryAttribute
1392
+ *
1393
+ * InvalidGeometryAttributeType
1394
+ *
1395
+ * InvalidColumnName
1396
+ *
1397
+ * InvalidIdColumnSettings
1398
+ *
1399
+ * ColumnNotExistsInTable
1400
+ *
1401
+ * InvalidStyle
1402
+ *
1403
+ * InvalidLayerType
1404
+ *
1405
+ * ColumnLoadingError
1406
+ *
1407
+ * InvalidAttributeFormat
1408
+ *
1409
+ * DataSourceNotFound
1410
+ *
1411
+ * DuplicateColumns
1412
+ */
1413
+ errorType?: ConfigurationErrorEnum;
1414
+ /** The type of the resource. */
1415
+ type: string;
1416
+ /**
1417
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
1418
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
1577
1419
  * @format double
1578
1420
  */
1579
1421
  minResolution?: number;
@@ -1613,7 +1455,7 @@ export interface FailedServiceInfoDc {
1613
1455
  /** The category of the service. */
1614
1456
  categories?: string[];
1615
1457
  /** Configuration of the service. */
1616
- configuration?: ServiceConfigurationBaseDc;
1458
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
1617
1459
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
1618
1460
  name: string;
1619
1461
  /** Resource alias. */
@@ -1652,7 +1494,7 @@ export interface FailedServiceInfoDc {
1652
1494
  * read,write,configure
1653
1495
  */
1654
1496
  permissions?: Permissions;
1655
- /** Access control list. */
1497
+ /** Access control list for a security object. */
1656
1498
  acl?: AccessControlListDc;
1657
1499
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
1658
1500
  icon?: string;
@@ -1662,7 +1504,7 @@ export interface FailedServiceInfoDc {
1662
1504
  */
1663
1505
  export interface FeatureDc {
1664
1506
  /** Feature geometry definition. */
1665
- geometry: GeometryDc;
1507
+ geometry: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
1666
1508
  /** Feature attributes collection. */
1667
1509
  attributes: Record<string, any>;
1668
1510
  /** Feature unique identifier. */
@@ -1672,9 +1514,9 @@ export interface FeatureDc {
1672
1514
  * Service info for a feature layer service.
1673
1515
  */
1674
1516
  export interface FeatureLayerServiceInfoDc {
1675
- /** Layer attributes definition. */
1517
+ /** Information about the layer attributes and their configuration. */
1676
1518
  layerDefinition: LayerDefinitionDc;
1677
- /** Layer default style. */
1519
+ /** Feature layer rendering style. */
1678
1520
  style?: StyleDc;
1679
1521
  /** Provides data source type. */
1680
1522
  dataSourceType?: string;
@@ -1724,7 +1566,7 @@ export interface FeatureLayerServiceInfoDc {
1724
1566
  /** The category of the service. */
1725
1567
  categories?: string[];
1726
1568
  /** Configuration of the service. */
1727
- configuration?: ServiceConfigurationBaseDc;
1569
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
1728
1570
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
1729
1571
  name: string;
1730
1572
  /** Resource alias. */
@@ -1763,7 +1605,7 @@ export interface FeatureLayerServiceInfoDc {
1763
1605
  * read,write,configure
1764
1606
  */
1765
1607
  permissions?: Permissions;
1766
- /** Access control list. */
1608
+ /** Access control list for a security object. */
1767
1609
  acl?: AccessControlListDc;
1768
1610
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
1769
1611
  icon?: string;
@@ -1794,25 +1636,21 @@ export interface FeatureSymbolDc {
1794
1636
  /** @format int32 */
1795
1637
  id: number;
1796
1638
  /** Feature symbol. */
1797
- definition?: SymbolDc;
1639
+ 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
1640
  image?: string;
1799
1641
  }
1800
1642
  /**
1801
1643
  * Task parameters for tasks that operate on features.
1802
1644
  */
1803
- export interface FeatureTaskParametersDc {
1804
- /** Storage that is to be used as a data source for the task. */
1805
- source: BaseTaskDataStorageDc;
1806
- /** Storage that is to be used as a target for writing the task result. */
1807
- target: BaseTaskDataStorageDc;
1808
- /** Type of the task. */
1809
- type?: string;
1810
- }
1645
+ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1646
+ source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
1647
+ target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
1648
+ };
1811
1649
  /**
1812
1650
  * Type of the feature.
1813
-
1651
+
1814
1652
  Unknown
1815
-
1653
+
1816
1654
  GeometricFeature
1817
1655
  */
1818
1656
  export declare enum FeatureType {
@@ -1843,36 +1681,19 @@ export interface FileUploadResponse {
1843
1681
  /**
1844
1682
  * Defines the brush for the fill.
1845
1683
  */
1846
- export interface FillBrushDc {
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
- */
1684
+ export declare type FillBrushDc = BrushDc & {
1851
1685
  color?: ParameterDcColor;
1852
- /** Type of the brush. */
1853
- type?: string;
1854
- }
1686
+ };
1855
1687
  /**
1856
1688
  * Server task that copies the objects from the source storage that satisfy the filter conditions to the target layer.
1857
1689
  */
1858
- export interface FilterCopyTaskParametersDc {
1690
+ export declare type FilterCopyTaskParametersDc = FeatureTaskParametersDc & {
1859
1691
  type?: string;
1860
- /** Mapping of source attribute fields and target attribute fields. */
1861
1692
  attributeMapping?: Record<string, string | null>;
1862
- /** Attribute filter string that must be satisfied. */
1863
1693
  condition?: string;
1864
- /** If set true, copy objects that do not intersect objects from GeometryFilterStorage. */
1865
1694
  reverseGeometryFilter?: boolean;
1866
- /**
1867
- * The service that contains geometries for filtering objects by geometry. If set, only the features that intersect with the
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
- }
1695
+ geometryFilterStorage?: LayerTaskDataStorageDc;
1696
+ };
1876
1697
  /**
1877
1698
  * Server response for the creation of a filter in filter service.
1878
1699
  */
@@ -1888,16 +1709,44 @@ export interface FilterDc {
1888
1709
  filterString: string;
1889
1710
  }
1890
1711
  /**
1891
- * Sets whether font should be styled.
1892
- */
1712
+ * Sets whether font should be styled.
1713
+
1714
+ normal
1715
+
1716
+ oblique
1717
+
1718
+ italic
1719
+ */
1893
1720
  export declare enum FontStyle {
1894
1721
  Normal = "normal",
1895
1722
  Oblique = "oblique",
1896
1723
  Italic = "italic"
1897
1724
  }
1898
1725
  /**
1899
- * Specifies the weight (or boldness) of the font.
1900
- */
1726
+ * Specifies the weight (or boldness) of the font.
1727
+
1728
+ Thin
1729
+
1730
+ ExtraLight
1731
+
1732
+ Light
1733
+
1734
+ SemiLight
1735
+
1736
+ Normal
1737
+
1738
+ Medium
1739
+
1740
+ DemiBold
1741
+
1742
+ Bold
1743
+
1744
+ ExtraBold
1745
+
1746
+ Black
1747
+
1748
+ ExtraBlack
1749
+ */
1901
1750
  export declare enum FontWeight {
1902
1751
  Thin = "Thin",
1903
1752
  ExtraLight = "ExtraLight",
@@ -1929,6 +1778,12 @@ export interface FunctionInfoDc {
1929
1778
  /** List of function arguments. */
1930
1779
  arguments?: FunctionArgumentInfoDc[];
1931
1780
  }
1781
+ /**
1782
+ * Description of the temp file as a task data storage.
1783
+ */
1784
+ export declare type GdbStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
1785
+ type?: string;
1786
+ };
1932
1787
  /**
1933
1788
  * Geocode result.
1934
1789
  */
@@ -1942,10 +1797,10 @@ export interface GeocodeResultDc {
1942
1797
  * @format double
1943
1798
  */
1944
1799
  score?: number;
1945
- /** Result geometry. */
1800
+ /** The position at the map in [X, Y] format. */
1946
1801
  center?: PositionDc;
1947
1802
  /** Result geometry. */
1948
- geometry?: GeometryDc;
1803
+ geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
1949
1804
  }
1950
1805
  /**
1951
1806
  * Geocode suggest result.
@@ -1984,17 +1839,17 @@ export interface GeometryDc {
1984
1839
  }
1985
1840
  /**
1986
1841
  *
1987
-
1842
+
1988
1843
  unknown
1989
-
1844
+
1990
1845
  point
1991
-
1846
+
1992
1847
  polyline
1993
-
1848
+
1994
1849
  polygon
1995
-
1850
+
1996
1851
  envelope
1997
-
1852
+
1998
1853
  multipoint
1999
1854
  */
2000
1855
  export declare enum GeometryType {
@@ -2008,26 +1863,19 @@ export declare enum GeometryType {
2008
1863
  /**
2009
1864
  * Map element data contract.
2010
1865
  */
2011
- export interface GridElementDc {
2012
- /** Grid color. */
1866
+ export declare type GridElementDc = ModelElementDc & {
2013
1867
  color?: string;
2014
- /**
2015
- * Grid width.
2016
- * @format int32
2017
- */
2018
1868
  gridThickness?: number;
2019
- /** Check what this model element enabled. */
2020
- enabled?: boolean;
2021
- }
1869
+ };
2022
1870
  /**
2023
1871
  * Resource group.
2024
-
1872
+
2025
1873
  my
2026
-
1874
+
2027
1875
  role
2028
-
1876
+
2029
1877
  public
2030
-
1878
+
2031
1879
  all
2032
1880
  */
2033
1881
  export declare enum Group {
@@ -2039,41 +1887,25 @@ export declare enum Group {
2039
1887
  /**
2040
1888
  * Defines the brush for the hatch fill.
2041
1889
  */
2042
- export interface HatchBrushDc {
1890
+ export declare type HatchBrushDc = FillBrushDc & {
2043
1891
  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
1892
  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
- */
1893
+ hatchAngle?: CalculatedParameterDc;
2058
1894
  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
1895
  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
- }
1896
+ };
2073
1897
  /**
2074
- * Defines the brush.
1898
+ * <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.HexGridSymbol" />
2075
1899
  */
2076
- export declare type IBrushDc = object;
1900
+ export declare type HexGridSymbolDc = SymbolDc & {
1901
+ type?: string;
1902
+ gridHeight?: number;
1903
+ gridWidth?: number;
1904
+ hexagonOrientation?: number;
1905
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
1906
+ fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
1907
+ aggregations?: Record<string, AggregationFunction>;
1908
+ };
2077
1909
  export interface IDatum {
2078
1910
  /** @format double */
2079
1911
  semimajor?: number;
@@ -2121,30 +1953,24 @@ export interface IEnvelopeGeometry {
2121
1953
  envelope?: IEnvelopeGeometry;
2122
1954
  }
2123
1955
  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
- /**
2139
- * The index of the first item in the list that is returned in the response.
2140
- * @format int64
2141
- */
2142
- offset?: number;
2143
1956
  /**
2144
- * The max number of items that can be on one page in this response.
2145
- * @format int64
1957
+ * Type of the line ending.
1958
+ *
1959
+ * none
1960
+ *
1961
+ * arrow
1962
+ *
1963
+ * filledArrow
1964
+ *
1965
+ * square
1966
+ *
1967
+ * filledSquare
1968
+ *
1969
+ * circle
1970
+ *
1971
+ * filledCircle
2146
1972
  */
2147
- limit?: number;
1973
+ type?: LineEndingType;
2148
1974
  }
2149
1975
  /**
2150
1976
  * Configuration of an SP service.
@@ -2237,30 +2063,24 @@ export interface IceRouterResultDc {
2237
2063
  /**
2238
2064
  * A single image point symbol with an outer stroke.
2239
2065
  */
2240
- export interface ImagePointSymbolDc {
2066
+ export declare type ImagePointSymbolDc = SymbolDc & {
2241
2067
  type?: string;
2242
- /** Image in base64 string. */
2243
2068
  image?: string;
2244
- /**
2245
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
2246
- * as an object with a "type" parameter specified.
2247
- */
2248
- width?: ParameterDcDouble;
2249
- /**
2250
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
2251
- * as an object with a "type" parameter specified.
2252
- */
2253
- height?: ParameterDcDouble;
2254
- /** Offset of the image center from the geographic point. */
2255
- offset?: ParameterDcDouble[];
2256
- /**
2257
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
2258
- * as an object with a "type" parameter specified.
2259
- */
2260
- angle?: ParameterDcDouble;
2261
- /** If set true symbol will not be rendered. */
2262
- disabled?: boolean;
2263
- }
2069
+ width?: CalculatedParameterDc;
2070
+ height?: CalculatedParameterDc;
2071
+ offset?: CalculatedParameterDc[];
2072
+ angle?: CalculatedParameterDc;
2073
+ };
2074
+ /**
2075
+ * Image polygon symbol.
2076
+ */
2077
+ export declare type ImagePolygonSymbolDc = SymbolDc & {
2078
+ type?: string;
2079
+ image?: string;
2080
+ fillColor?: ParameterDcColor;
2081
+ strokeColor?: ParameterDcColor;
2082
+ strokeWidth?: CalculatedParameterDc;
2083
+ };
2264
2084
  /**
2265
2085
  * Data schema of a file for import.
2266
2086
  */
@@ -2294,7 +2114,7 @@ export interface ImportLayerDataSchema {
2294
2114
  * @format int64
2295
2115
  */
2296
2116
  objectCount?: number;
2297
- /** Information about the attributes of the layer. */
2117
+ /** Information about the layer attributes and their configuration. */
2298
2118
  layerDefinition?: LayerDefinitionDc;
2299
2119
  /** Schema of a inner layers. */
2300
2120
  children?: ImportLayerDataSchema[];
@@ -2302,91 +2122,41 @@ export interface ImportLayerDataSchema {
2302
2122
  /**
2303
2123
  * The description of the temporary features list as a server task data storage.
2304
2124
  */
2305
- export interface InMemoryTaskDataStorageDc {
2125
+ export declare type InMemoryTaskDataStorageDc = BaseTaskDataStorageDc & {
2306
2126
  type?: string;
2307
- /** List of features to save in storage. */
2308
2127
  features: FeatureDc[];
2309
- /** The name of the attribute that is used to uniquely identify a feature in the layer. */
2310
2128
  idAttribute: string;
2311
- /** The name of the attribute that is used for assigning geometry value for the feature. */
2312
2129
  geometryAttribute: string;
2313
- /**
2314
- *
2315
- *
2316
- * unknown
2317
- *
2318
- * point
2319
- *
2320
- * polyline
2321
- *
2322
- * polygon
2323
- *
2324
- * envelope
2325
- *
2326
- * multipoint
2327
- */
2328
2130
  geometryType: GeometryType;
2329
- /**
2330
- * The spatial reference of the layer.
2331
- * @format int32
2332
- */
2333
2131
  spatialReference?: number;
2334
- }
2132
+ };
2335
2133
  /**
2336
2134
  * Description of the temp file as a task data storage.
2337
2135
  */
2338
- export interface KmlStaticTaskDataStorageDc {
2136
+ export declare type KmlStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
2339
2137
  type?: string;
2340
- /** The id of the file in the temporary session static storage. */
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
- }
2138
+ };
2345
2139
  /**
2346
2140
  * Base class for labels.
2347
2141
  */
2348
- export interface LabelSymbolDc {
2349
- /** Label text format. */
2142
+ export declare type LabelSymbolDc = SymbolDc & {
2350
2143
  fieldFormat?: string;
2351
- /** Label text font family. */
2352
2144
  fontFamily?: string;
2353
- /** Sets whether font should be styled. */
2354
2145
  fontStyle?: FontStyle;
2355
- /** Specifies the weight (or boldness) of the font. */
2356
2146
  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
2147
  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. */
2148
+ fontSize?: CalculatedParameterDc;
2368
2149
  horizontalAlignment?: TextAlignment;
2369
- /** Sets the vertical alignment of text. */
2370
2150
  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
2151
  haloColor?: ParameterDcColor;
2376
- /**
2377
- * Width of label stroke (halo).
2378
- * @format float
2379
- */
2380
2152
  haloWidth?: number;
2381
- /** Offset of the label center from the geographic point. */
2382
- offset?: ParameterDcDouble[];
2383
- /** Specifies text background. */
2153
+ offset?: CalculatedParameterDc[];
2384
2154
  textBackground?: TextBackgroundDc;
2385
- /** Type of the symbol. */
2155
+ };
2156
+ export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2386
2157
  type?: string;
2387
- /** If set true symbol will not be rendered. */
2388
- disabled?: boolean;
2389
- }
2158
+ 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;
2159
+ };
2390
2160
  /**
2391
2161
  * Information about the layer attributes and their configuration.
2392
2162
  */
@@ -2421,42 +2191,21 @@ export interface LayerDefinitionDc {
2421
2191
  /** Sets false if the layer is readonly. */
2422
2192
  isEditable?: boolean;
2423
2193
  /** The description of the attributes of the layer. */
2424
- attributes: Record<string, AttributeDefinitionDc | null>;
2194
+ attributes: Record<string, AttributeDefinitionDc>;
2425
2195
  }
2426
2196
  /**
2427
2197
  * Map element data contract.
2428
2198
  */
2429
- export interface LayerMapElementDc {
2430
- /** Gets or sets layers for printing. */
2199
+ export declare type LayerMapElementDc = ModelElementDc & {
2431
2200
  layers?: LayerModelDc[];
2432
2201
  mapCenter?: Vector2;
2433
- /**
2434
- * Gets or sets map width.
2435
- * @format int32
2436
- */
2437
2202
  paperWidth?: number;
2438
- /**
2439
- * Gets or sets map height.
2440
- * @format int32
2441
- */
2442
2203
  paperHeight?: number;
2443
- /**
2444
- * Gets or sets spatial reference.
2445
- * @format int32
2446
- */
2447
2204
  spatialReference?: number;
2448
- /**
2449
- * Gets or sets map resolution.
2450
- * @format double
2451
- */
2452
2205
  resolution?: number;
2453
- /** Gets or sets grid map element. */
2454
- gridElement?: GridElementDc | ModelElementDc;
2455
- /** Gets or sets ScaleBar element settings for printing. */
2456
- scaleBar?: ScaleBarElementDc | ModelElementDc;
2457
- /** Check what this model element enabled. */
2458
- enabled?: boolean;
2459
- }
2206
+ gridElement?: GridElementDc;
2207
+ scaleBar?: ScaleBarElementDc;
2208
+ };
2460
2209
  /**
2461
2210
  * Layer model data contract.
2462
2211
  */
@@ -2478,62 +2227,51 @@ export interface LayerModelDc {
2478
2227
  /**
2479
2228
  * The description of the layer service as a server task data storage.
2480
2229
  */
2481
- export interface LayerTaskDataStorageDc {
2482
- /** The name of the layer service. If 'temp' namespace. */
2230
+ export declare type LayerTaskDataStorageDc = BaseTaskDataStorageDc & {
2483
2231
  serviceName: string;
2484
- /** Condition. */
2485
2232
  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
2233
  createNewService?: boolean;
2492
2234
  type?: string;
2493
- }
2235
+ };
2494
2236
  /**
2495
2237
  * Layer template model data contract.
2496
2238
  */
2497
- export interface LayerTemplateModelDc {
2239
+ export declare type LayerTemplateModelDc = TemplateModelDc & {
2498
2240
  type?: string;
2499
- /** Gets or sets map element settings and layers for printing. */
2500
- map?: LayerMapElementDc | ModelElementDc;
2501
- /** Check if legend enabled. */
2241
+ map?: LayerMapElementDc;
2502
2242
  legendEnabled?: boolean;
2503
- /**
2504
- * Legend layers from client.
2505
- * Set null for using serverSide generated legend.
2506
- */
2507
2243
  legendLayers?: LegendLayerDc[];
2508
- /** The name of the result file. */
2509
- fileName?: string;
2510
- /** File Format. */
2511
- fileFormat?: string;
2512
- /** Gets or sets template name. */
2513
- templateName?: string;
2514
- /** Gets or sets template title. */
2515
- title?: string;
2516
- /**
2517
- * Gets or sets paper width.
2518
- * @format int32
2519
- */
2520
- paperWidth?: number;
2244
+ };
2245
+ /**
2246
+ * Information about layer update.
2247
+ Includes ids of modified features and their bbox.
2248
+ */
2249
+ export interface LayerUpdateInfo {
2250
+ /** Updated layer service name. */
2251
+ layerServiceName?: string;
2252
+ boundingBox?: IEnvelopeGeometry;
2253
+ /** Array of created ids. */
2254
+ createdIds?: ObjectId[];
2255
+ /** Array of updated ids. */
2256
+ updatedIds?: ObjectId[];
2257
+ /** Array of deleted ids. */
2258
+ deletedIds?: ObjectId[];
2259
+ /** Array of failed ids. */
2260
+ failedIds?: number[];
2521
2261
  /**
2522
- * Gets or sets paper height.
2523
- * @format int32
2262
+ * Total objects count.
2263
+ * @format int64
2524
2264
  */
2525
- paperHeight?: number;
2265
+ totalCount?: number;
2266
+ /** Is layer deleted flag. */
2267
+ isLayerDeleted?: boolean;
2268
+ /** Layer update exceptions. */
2269
+ exceptions?: ValueTupleStringString[];
2526
2270
  /**
2527
- * Gets or sets dpi.
2271
+ * Failed features count.
2528
2272
  * @format int32
2529
2273
  */
2530
- dpi?: number;
2531
- /** Gets or sets paper margin. */
2532
- margin?: number[];
2533
- /** Localization of map. */
2534
- localization?: TemplateLocalizationDc;
2535
- /** Checks if title enabled. */
2536
- titleEnabled?: boolean;
2274
+ failedCount?: number;
2537
2275
  }
2538
2276
  /**
2539
2277
  * Information about layer update.
@@ -2584,58 +2322,41 @@ export interface LegendLayerDc {
2584
2322
  /**
2585
2323
  * Legend template model data contract.
2586
2324
  */
2587
- export interface LegendTemplateModelDc {
2588
- /** Gets or sets layers for printing. */
2325
+ export declare type LegendTemplateModelDc = TemplateModelDc & {
2589
2326
  layers?: LayerModelDc[];
2590
- /** Check if legend enabled. */
2591
2327
  legendEnabled?: boolean;
2592
- /**
2593
- * Legend layers from client.
2594
- * Set null for using serverSide generated legend.
2595
- */
2596
2328
  legendLayers?: LegendLayerDc[];
2597
2329
  type?: string;
2598
- /** The name of the result file. */
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
- }
2330
+ };
2628
2331
  /**
2629
2332
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2630
2333
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
2334
+
2335
+ small
2336
+
2337
+ large
2631
2338
  */
2632
2339
  export declare enum LineEndingSize {
2633
2340
  Small = "small",
2634
2341
  Large = "large"
2635
2342
  }
2636
2343
  /**
2637
- * Type of the line ending.
2638
- */
2344
+ * Type of the line ending.
2345
+
2346
+ none
2347
+
2348
+ arrow
2349
+
2350
+ filledArrow
2351
+
2352
+ square
2353
+
2354
+ filledSquare
2355
+
2356
+ circle
2357
+
2358
+ filledCircle
2359
+ */
2639
2360
  export declare enum LineEndingType {
2640
2361
  None = "none",
2641
2362
  Arrow = "arrow",
@@ -2661,9 +2382,9 @@ export interface ListResponseExtendedUserInfoDc {
2661
2382
  /**
2662
2383
  * The response that contains a paged list of items.
2663
2384
  */
2664
- export interface ListResponseIEnumerable1 {
2385
+ export interface ListResponseFeatureDc {
2665
2386
  /** The items of the response. */
2666
- items?: Record<string, any>[][];
2387
+ items?: FeatureDc[];
2667
2388
  /** @format int64 */
2668
2389
  totalCount?: number;
2669
2390
  /** @format int64 */
@@ -2674,9 +2395,9 @@ export interface ListResponseIEnumerable1 {
2674
2395
  /**
2675
2396
  * The response that contains a paged list of items.
2676
2397
  */
2677
- export interface ListResponseNamespaceInfoDc {
2398
+ export interface ListResponseIEnumerable1 {
2678
2399
  /** The items of the response. */
2679
- items?: NamespaceInfoDc[];
2400
+ items?: Record<string, any>[][];
2680
2401
  /** @format int64 */
2681
2402
  totalCount?: number;
2682
2403
  /** @format int64 */
@@ -2687,9 +2408,9 @@ export interface ListResponseNamespaceInfoDc {
2687
2408
  /**
2688
2409
  * The response that contains a paged list of items.
2689
2410
  */
2690
- export interface ListResponseProjectInfoDc {
2411
+ export interface ListResponseNamespaceInfoDc {
2691
2412
  /** The items of the response. */
2692
- items?: (ProjectInfoDc | ResourceInfoDc)[];
2413
+ items?: NamespaceInfoDc[];
2693
2414
  /** @format int64 */
2694
2415
  totalCount?: number;
2695
2416
  /** @format int64 */
@@ -2700,7 +2421,20 @@ export interface ListResponseProjectInfoDc {
2700
2421
  /**
2701
2422
  * The response that contains a paged list of items.
2702
2423
  */
2703
- export interface ListResponseRoleInfoDc {
2424
+ export interface ListResponseProjectInfoDc {
2425
+ /** The items of the response. */
2426
+ items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
2427
+ /** @format int64 */
2428
+ totalCount?: number;
2429
+ /** @format int64 */
2430
+ offset?: number;
2431
+ /** @format int64 */
2432
+ limit?: number;
2433
+ }
2434
+ /**
2435
+ * The response that contains a paged list of items.
2436
+ */
2437
+ export interface ListResponseRoleInfoDc {
2704
2438
  /** The items of the response. */
2705
2439
  items?: RoleInfoDc[];
2706
2440
  /** @format int64 */
@@ -2710,6 +2444,32 @@ export interface ListResponseRoleInfoDc {
2710
2444
  /** @format int64 */
2711
2445
  limit?: number;
2712
2446
  }
2447
+ /**
2448
+ * The response that contains a paged list of items.
2449
+ */
2450
+ export interface ListResponseServiceListItemDc {
2451
+ /** The items of the response. */
2452
+ items?: ServiceListItemDc[];
2453
+ /** @format int64 */
2454
+ totalCount?: number;
2455
+ /** @format int64 */
2456
+ offset?: number;
2457
+ /** @format int64 */
2458
+ limit?: number;
2459
+ }
2460
+ /**
2461
+ * The response that contains a paged list of items.
2462
+ */
2463
+ export interface ListResponseTableInfoDc {
2464
+ /** The items of the response. */
2465
+ items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
2466
+ /** @format int64 */
2467
+ totalCount?: number;
2468
+ /** @format int64 */
2469
+ offset?: number;
2470
+ /** @format int64 */
2471
+ limit?: number;
2472
+ }
2713
2473
  /**
2714
2474
  * The response that contains a paged list of items.
2715
2475
  */
@@ -2726,29 +2486,9 @@ export interface ListResponseUserInfoDc {
2726
2486
  /**
2727
2487
  * Configuration for the local tile service.
2728
2488
  */
2729
- export interface LocalTileServiceConfigurationDc {
2730
- /** Tile schema of the service. */
2489
+ export declare type LocalTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
2731
2490
  tileInfo?: TileInfoDc;
2732
- /** Name of the service. */
2733
- name: string;
2734
- /** Human friendly name of the service. */
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
- }
2491
+ };
2752
2492
  /**
2753
2493
  * Tile LOD structure.
2754
2494
  */
@@ -2776,18 +2516,9 @@ export interface LoginDc {
2776
2516
  /**
2777
2517
  * SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
2778
2518
  */
2779
- export interface MapRemoteTableInfoDc {
2780
- /** Remote data provider name. */
2519
+ export declare type MapRemoteTableInfoDc = MapTableInfoDc & {
2781
2520
  dataProvider: string;
2782
- /** Name of the table, materialized view or view. */
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
- }
2521
+ };
2791
2522
  /**
2792
2523
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
2793
2524
  <br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
@@ -2805,50 +2536,32 @@ export interface MapTableInfoDc {
2805
2536
  /**
2806
2537
  * SPCore.Connectors.Connectors.Base.Models.Data.MapViewInfoDc provides map view data source data contract.
2807
2538
  */
2808
- export interface MapViewInfoDc {
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
- }
2539
+ export declare type MapViewInfoDc = MapTableInfoDc;
2818
2540
  /**
2819
2541
  * The point symbol drawing as image with the mask.
2820
2542
  */
2821
- export interface MaskedImagePointSymbolDc {
2543
+ export declare type MaskedImagePointSymbolDc = SymbolDc & {
2822
2544
  type?: string;
2823
- /**
2824
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
2825
- * as an object with a "type" parameter specified.
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. */
2545
+ width?: CalculatedParameterDc;
2546
+ height?: CalculatedParameterDc;
2547
+ offset?: CalculatedParameterDc[];
2836
2548
  image?: string;
2837
- /** Image mask in base64 string. */
2838
2549
  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
2550
  maskedColor?: ParameterDcColor;
2844
- /**
2845
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
2846
- * as an object with a "type" parameter specified.
2847
- */
2848
- angle?: ParameterDcDouble;
2849
- /** If set true symbol will not be rendered. */
2850
- disabled?: boolean;
2851
- }
2551
+ angle?: CalculatedParameterDc;
2552
+ };
2553
+ /**
2554
+ * Polygon symbol drawing as image with the mask.
2555
+ */
2556
+ export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
2557
+ type?: string;
2558
+ fillColor?: ParameterDcColor;
2559
+ strokeColor?: ParameterDcColor;
2560
+ strokeWidth?: CalculatedParameterDc;
2561
+ image?: string;
2562
+ imageMask?: string;
2563
+ maskedColor?: ParameterDcColor;
2564
+ };
2852
2565
  /**
2853
2566
  * Base template model data contract.
2854
2567
  */
@@ -2856,16 +2569,20 @@ export interface ModelElementDc {
2856
2569
  /** Check what this model element enabled. */
2857
2570
  enabled?: boolean;
2858
2571
  }
2572
+ /**
2573
+ * Multipoint geometry object definition.
2574
+ */
2575
+ export declare type MultiPointDc = GeometryDc & {
2576
+ coordinates: PositionDc[];
2577
+ type?: GeometryType;
2578
+ };
2859
2579
  /**
2860
2580
  * A multipoint symbol.
2861
2581
  */
2862
- export interface MultipointSymbolDc {
2582
+ export declare type MultipointSymbolDc = SymbolDc & {
2863
2583
  type?: string;
2864
- /** Point symbol that will be used to draw all the points. */
2865
- pointSymbol?: SymbolDc;
2866
- /** If set true symbol will not be rendered. */
2867
- disabled?: boolean;
2868
- }
2584
+ 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;
2585
+ };
2869
2586
  /**
2870
2587
  * Information about a namespace .
2871
2588
  */
@@ -2890,15 +2607,15 @@ export interface NamespaceInfoDc {
2890
2607
  export declare type ObjectId = object;
2891
2608
  /**
2892
2609
  *
2893
-
2610
+
2894
2611
  Unknown
2895
-
2612
+
2896
2613
  union
2897
-
2614
+
2898
2615
  intersection
2899
-
2616
+
2900
2617
  subtraction
2901
-
2618
+
2902
2619
  symDifference
2903
2620
  */
2904
2621
  export declare enum Operation {
@@ -2911,46 +2628,41 @@ export declare enum Operation {
2911
2628
  /**
2912
2629
  * Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
2913
2630
  */
2914
- export interface OverlayTaskParametersDc {
2631
+ export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
2915
2632
  type?: string;
2916
- /**
2917
- *
2918
- *
2919
- * Unknown
2920
- *
2921
- * union
2922
- *
2923
- * intersection
2924
- *
2925
- * subtraction
2926
- *
2927
- * symDifference
2928
- */
2929
2633
  operation: Operation;
2930
- /** Feature storage to use as a tool for subtraction. */
2931
- toolLayer?: LayerTaskDataStorageDc | BaseTaskDataStorageDc;
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
- }
2634
+ toolLayer?: LayerTaskDataStorageDc;
2635
+ };
2937
2636
  /**
2938
2637
  * Features list definition.
2939
2638
  */
2940
- export interface PagedFeaturesListDc {
2941
- /** The items of the response. */
2942
- items?: FeatureDc[];
2943
- /** @format int64 */
2639
+ export declare type PagedFeaturesListDc = ListResponseFeatureDc;
2640
+ /**
2641
+ * A list of items that is returned for filtered paged requests.
2642
+ */
2643
+ export interface PagedListConfigDc {
2644
+ /**
2645
+ * Total number of items that the list contains, e.g. if the paging is not applied.
2646
+ * @format int64
2647
+ */
2944
2648
  totalCount?: number;
2945
- /** @format int64 */
2649
+ /**
2650
+ * The first index of the item in the list that is returned in the Items parameter.
2651
+ * @format int32
2652
+ */
2946
2653
  offset?: number;
2947
- /** @format int64 */
2654
+ /**
2655
+ * Maximum number of the items that the Items parameter may contain.
2656
+ * @format int32
2657
+ */
2948
2658
  limit?: number;
2659
+ /** The retrieved items in the list. */
2660
+ items?: ConfigDc[];
2949
2661
  }
2950
2662
  /**
2951
2663
  * A list of items that is returned for filtered paged requests.
2952
2664
  */
2953
- export interface PagedListConfigDc {
2665
+ export interface PagedListTagInfoDc {
2954
2666
  /**
2955
2667
  * Total number of items that the list contains, e.g. if the paging is not applied.
2956
2668
  * @format int64
@@ -2967,7 +2679,7 @@ export interface PagedListConfigDc {
2967
2679
  */
2968
2680
  limit?: number;
2969
2681
  /** The retrieved items in the list. */
2970
- items?: ConfigDc[];
2682
+ items?: TagInfoDc[];
2971
2683
  }
2972
2684
  /**
2973
2685
  * Number parameter of a symbol. The parameter can be represented as a simple number, or
@@ -2988,43 +2700,28 @@ export interface ParameterDcDouble extends BrandedType<'ParameterDcDouble'> {
2988
2700
  /**
2989
2701
  * Provides image pattern brush properties.
2990
2702
  */
2991
- export interface PatternBrushDc {
2703
+ export declare type PatternBrushDc = FillBrushDc & {
2992
2704
  type: string;
2993
- /** Specifies image in base64. */
2994
2705
  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
2706
  patternColor?: ParameterDcColor;
3000
- /**
3001
- * Specifies pattern rotation angle in radians.
3002
- * @format float
3003
- */
3004
2707
  angle?: number;
3005
- /** Specifies pattern size scaling. */
3006
2708
  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
- }
2709
+ };
3013
2710
  /**
3014
2711
  * User permissions for server security objects (services, projects etc.)
3015
-
2712
+
3016
2713
  none
3017
-
2714
+
3018
2715
  configure
3019
-
2716
+
3020
2717
  write
3021
-
2718
+
3022
2719
  read
3023
-
2720
+
3024
2721
  read,configure
3025
-
2722
+
3026
2723
  read,write
3027
-
2724
+
3028
2725
  read,write,configure
3029
2726
  */
3030
2727
  export declare enum Permissions {
@@ -3039,83 +2736,23 @@ export declare enum Permissions {
3039
2736
  /**
3040
2737
  * Pipeline of server tasks. The tasks given in the InnerTasks property are executed one after another inside one server task.
3041
2738
  */
3042
- export interface PipelineTaskParametersDc {
2739
+ export declare type PipelineTaskParametersDc = TaskParametersDc & {
3043
2740
  type?: string;
3044
- /** The tasks to execute in the pipeline. */
3045
- innerTasks: TaskParametersDc[];
3046
- }
2741
+ innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc)[];
2742
+ };
3047
2743
  /**
3048
2744
  * Spatial point geometry object representation.
3049
2745
  */
3050
- export interface PointDc {
3051
- /** Point coordinates. */
2746
+ export declare type PointDc = GeometryDc & {
3052
2747
  coordinates: PositionDc;
3053
- /**
3054
- *
3055
- *
3056
- * unknown
3057
- *
3058
- * point
3059
- *
3060
- * polyline
3061
- *
3062
- * polygon
3063
- *
3064
- * envelope
3065
- *
3066
- * multipoint
3067
- */
3068
2748
  type?: GeometryType;
3069
- /**
3070
- * Spatial reference id.
3071
- * @format int32
3072
- */
3073
- sr?: number;
3074
- }
2749
+ };
3075
2750
  /**
3076
2751
  * Label of a point object.
3077
2752
  */
3078
- export interface PointLabelSymbolDc {
2753
+ export declare type PointLabelSymbolDc = LabelSymbolDc & {
3079
2754
  type?: string;
3080
- /** Label text format. */
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
- }
2755
+ };
3119
2756
  export interface PolicyDc {
3120
2757
  /**
3121
2758
  * Type of the authorization policy.
@@ -3139,17 +2776,17 @@ export interface PolicyDc {
3139
2776
  }
3140
2777
  /**
3141
2778
  * Type of the authorization policy.
3142
-
2779
+
3143
2780
  Unknown
3144
-
2781
+
3145
2782
  CreateTable
3146
-
2783
+
3147
2784
  CreateLayer
3148
-
2785
+
3149
2786
  CreateProject
3150
-
2787
+
3151
2788
  MaxFeaturesInOneTable
3152
-
2789
+
3153
2790
  MaxObjectsToExport
3154
2791
  */
3155
2792
  export declare enum PolicyType {
@@ -3163,264 +2800,73 @@ export declare enum PolicyType {
3163
2800
  /**
3164
2801
  * Polyline and Polygon base geometry object definition.
3165
2802
  */
3166
- export interface PolyDc {
3167
- /** Poly coordinates. */
2803
+ export declare type PolyDc = GeometryDc & {
3168
2804
  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
- }
2805
+ };
3191
2806
  /**
3192
2807
  * Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
3193
2808
  */
3194
- export interface PolygonCenterLabelSymbolDc {
3195
- /** Is sets true label center fixed and not accept envelope. */
2809
+ export declare type PolygonCenterLabelSymbolDc = LabelSymbolDc & {
3196
2810
  fixCenter?: boolean;
3197
2811
  type?: string;
3198
- /** Label text format. */
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
- }
2812
+ };
3237
2813
  /**
3238
2814
  * Polygon geometry object definition.
3239
2815
  */
3240
- export interface PolygonDc {
3241
- /**
3242
- *
3243
- *
3244
- * unknown
3245
- *
3246
- * point
3247
- *
3248
- * polyline
3249
- *
3250
- * polygon
3251
- *
3252
- * envelope
3253
- *
3254
- * multipoint
3255
- */
2816
+ export declare type PolygonDc = PolyDc & {
3256
2817
  type?: GeometryType;
3257
- /** Poly coordinates. */
3258
- coordinates: PositionDc[][];
3259
- /**
3260
- * Spatial reference id.
3261
- * @format int32
3262
- */
3263
- sr?: number;
3264
- }
2818
+ };
2819
+ /**
2820
+ * <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.PolygonGridSymbol" />
2821
+ */
2822
+ export declare type PolygonGridSymbolDc = SymbolDc & {
2823
+ type?: string;
2824
+ gridSize?: number;
2825
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
2826
+ fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
2827
+ aggregations?: Record<string, AggregationFunction>;
2828
+ };
3265
2829
  /**
3266
2830
  * Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
3267
2831
  */
3268
- export interface PolygonLabelSymbolDc {
2832
+ export declare type PolygonLabelSymbolDc = LabelSymbolDc & {
3269
2833
  type?: string;
3270
- /** Label text format. */
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
- }
2834
+ };
3309
2835
  /**
3310
2836
  * A simple polygon symbol.
3311
2837
  */
3312
- export interface PolygonSymbolDc {
2838
+ export declare type PolygonSymbolDc = SymbolDc & {
3313
2839
  type?: string;
3314
- /** Specifies stroke style. */
3315
- stroke?: BrushDc | IBrushDc | StrokeBrushDc;
3316
- /** Specifies stroke style. */
3317
- fill?: BrushDc | FillBrushDc | IBrushDc;
3318
- /** If set true symbol will not be rendered. */
3319
- disabled?: boolean;
3320
- }
2840
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
2841
+ fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
2842
+ };
3321
2843
  /**
3322
2844
  * Polyline geometry object definition.
3323
2845
  */
3324
- export interface PolylineDc {
3325
- /**
3326
- *
3327
- *
3328
- * unknown
3329
- *
3330
- * point
3331
- *
3332
- * polyline
3333
- *
3334
- * polygon
3335
- *
3336
- * envelope
3337
- *
3338
- * multipoint
3339
- */
2846
+ export declare type PolylineDc = PolyDc & {
3340
2847
  type?: GeometryType;
3341
- /** Poly coordinates. */
3342
- coordinates: PositionDc[][];
3343
- /**
3344
- * Spatial reference id.
3345
- * @format int32
3346
- */
3347
- sr?: number;
3348
- }
2848
+ };
3349
2849
  /**
3350
2850
  * Label for polyline objects. It is drawn repeatedly along a line.
3351
2851
  */
3352
- export interface PolylineLabelSymbolDc {
2852
+ export declare type PolylineLabelSymbolDc = LabelSymbolDc & {
3353
2853
  type?: string;
3354
- /**
3355
- * Distance in pixels after which the label will be repeated along the line.
3356
- * @format float
3357
- */
3358
2854
  labelRepeatDistance?: number;
3359
- /**
3360
- * Maximum angle of the line in one point the label can bend for.
3361
- * @format int32
3362
- */
3363
2855
  criticalAngle?: number;
3364
- /** If set to true, the label will be drawn in the direction opposite to the default one. */
3365
2856
  invertLabelDirection?: boolean;
3366
- /** If set to true, the label will be drawn in the direction opposite to the default one. */
3367
2857
  offsetFromSymbol?: boolean;
3368
- /** Distance from the line to offset the symbol. */
3369
2858
  offset?: number[];
3370
- /**
3371
- * Maximum with of the label in pixels.
3372
- * @format float
3373
- */
3374
2859
  maxWidth?: number;
3375
- /** Label text format. */
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
- }
2860
+ };
3412
2861
  /**
3413
2862
  * The symbol that draws a feature as a square.
3414
2863
  */
3415
- export interface PolylineSymbolDc {
2864
+ export declare type PolylineSymbolDc = SymbolDc & {
3416
2865
  type?: string;
3417
- /** Specifies stroke style. */
3418
- stroke?: BrushDc | IBrushDc | StrokeBrushDc;
2866
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
3419
2867
  beginning?: ILineEndingDc;
3420
2868
  ending?: ILineEndingDc;
3421
- /** If set true symbol will not be rendered. */
3422
- disabled?: boolean;
3423
- }
2869
+ };
3424
2870
  /**
3425
2871
  * The position at the map in [X, Y] format.
3426
2872
  */
@@ -3428,100 +2874,33 @@ export declare type PositionDc = number[];
3428
2874
  /**
3429
2875
  * Configuration of a postgres feature layer service.
3430
2876
  */
3431
- export interface PostgresLayerServiceConfigurationDc {
3432
- /** Configuration of the attributes of the layer. */
2877
+ export declare type PostgresLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
3433
2878
  attributesConfiguration: AttributesConfigurationDc;
3434
- /** Style of the layer. */
3435
2879
  style?: StyleDc;
3436
- /** Condition to filter returned features. */
3437
2880
  condition?: string;
3438
- /**
3439
- * Maximum number of features, that the service can return in a single request.
3440
- * @format int32
3441
- */
3442
2881
  featuresLimit?: number;
3443
- /**
3444
- * Adds additional extent offset in pixels to feature selection.
3445
- * @format int32
3446
- */
3447
2882
  extentOffset?: number;
3448
- /** Name of the service. */
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
- }
2883
+ };
3468
2884
  /**
3469
2885
  * Configuration of a postgres tile catalog service.
3470
2886
  */
3471
- export interface PostgresTileCatalogServiceConfigurationDc {
3472
- /** Configuration of the attributes of the layer. */
2887
+ export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBaseDc & {
3473
2888
  attributesConfiguration: AttributesConfigurationDc;
3474
- /** Style of the layer. */
3475
2889
  style?: StyleDc;
3476
- /** Condition to filter returned features. */
3477
2890
  condition?: string;
3478
- /**
3479
- * Maximum number of features, that the service can return in a single request.
3480
- * @format int32
3481
- */
3482
2891
  featuresLimit?: number;
3483
- /**
3484
- * Min lod level.
3485
- * @format int32
3486
- */
3487
2892
  minLodLevel?: number;
3488
- /**
3489
- * Max lod level.
3490
- * @format int32
3491
- */
3492
2893
  maxLodLevel?: number;
3493
- /** IsCogLayer. */
3494
2894
  isCogLayer?: boolean;
3495
- /** Name of the service. */
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
- }
2895
+ };
3515
2896
  /**
3516
2897
  * Print operation print map and map elements to png files.
3517
2898
  */
3518
- export interface PrintTaskParametersDc {
2899
+ export declare type PrintTaskParametersDc = TaskParametersDc & {
3519
2900
  taskType?: string;
3520
- /** Task data storage that works with import and export provider to give access to data stored in static files. */
3521
2901
  targetStorageDescription: SessionStaticTaskDataStorageDescription;
3522
- /** Input template models for printing. */
3523
- templates?: TemplateModelDc[];
3524
- }
2902
+ templates?: (LayerTemplateModelDc | LegendTemplateModelDc)[];
2903
+ };
3525
2904
  export interface ProblemDetails {
3526
2905
  type?: string;
3527
2906
  title?: string;
@@ -3540,7 +2919,7 @@ export interface ProjectConfigurationDc {
3540
2919
  * @format double
3541
2920
  */
3542
2921
  resolution?: number;
3543
- /** Map position coordinates. */
2922
+ /** The position at the map in [X, Y] format. */
3544
2923
  position?: PositionDc;
3545
2924
  /**
3546
2925
  * Map spatial reference code.
@@ -3589,332 +2968,61 @@ export interface ProjectContentItemDc {
3589
2968
  /**
3590
2969
  * A project configuration data contract.
3591
2970
  */
3592
- export interface ProjectInfoDc {
3593
- /** Sets true if project is shared. */
2971
+ export declare type ProjectInfoDc = ResourceInfoDc & {
3594
2972
  isShared?: boolean;
3595
- /**
3596
- * Count of the layers in project.
3597
- * @format int32
3598
- */
3599
2973
  layersCount?: number;
3600
- /** Name of the resource including its namespaces (names of the service managers that contain this service). */
3601
- name: string;
3602
- /** Resource alias. */
3603
- alias?: string;
3604
- /** Resource owner. */
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
- }
3643
- /**
3644
- * Data contract for inner layer Legend.
3645
- */
3646
- export interface ProxyInnerLayerLegendDc {
3647
- /** Layer id. */
3648
- layerId: string;
3649
- /** Layer name. */
3650
- layerName: string;
3651
- /** Legend items. */
3652
- items: ProxyLayerLegendItemDc[];
3653
- }
3654
- /**
3655
- * Data contract for layer legend.
3656
- */
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
- }
2974
+ };
3802
2975
  /**
3803
- * The symbol that draws a raster.
2976
+ * List of the projects in projects manager service.
3804
2977
  */
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
- }
2978
+ export declare type ProjectsListDc = ListResponseProjectInfoDc;
3831
2979
  /**
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.
2980
+ * Data contract for inner layer Legend.
3849
2981
  */
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;
2982
+ export interface ProxyInnerLayerLegendDc {
2983
+ /** Layer id. */
2984
+ layerId: string;
2985
+ /** Layer name. */
2986
+ layerName: string;
2987
+ /** Legend items. */
2988
+ items: ProxyLayerLegendItemDc[];
3891
2989
  }
3892
- export interface RemoteTileServiceInfo {
3893
- /** Description of a service in the Spatial Processor. */
3894
- layerInfo?: ServiceInfo;
3895
- /** Tile info structure. */
3896
- tileInfo?: TileInfo;
3897
- /** SourceBatch server address. */
3898
- sourceUrl?: string;
3899
- /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
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;
2990
+ /**
2991
+ * Data contract for layer legend.
2992
+ */
2993
+ export interface ProxyLayerLegendDc {
2994
+ /** Inner layers legends. */
2995
+ layers: ProxyInnerLayerLegendDc[];
3905
2996
  }
3906
2997
  /**
3907
- * Service info for a tile service.
2998
+ * Data contract for legend item.
3908
2999
  */
3909
- export interface RemoteTileServiceInfoDc {
3910
- /** SourceBatch server address. */
3911
- sourceUrl?: string;
3912
- /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
3913
- sourceUrlMask?: string;
3914
- /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3915
- sourceServers?: string[];
3916
- /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
3917
- tileInfo: TileInfoDc;
3000
+ export interface ProxyLayerLegendItemDc {
3001
+ /** Text label of legend item. */
3002
+ label: string;
3003
+ /** Image of item encoded in Base64 string. */
3004
+ image: string;
3005
+ }
3006
+ /**
3007
+ * Configuration for the proxy service.
3008
+ */
3009
+ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3010
+ sourceType: string;
3011
+ sourceUrl: string;
3012
+ layers: string[];
3013
+ };
3014
+ /**
3015
+ * Service info for a Proxy service.
3016
+ */
3017
+ export interface ProxyServiceInfoDc {
3018
+ /** Source system type, e.g. "ArcGIS". */
3019
+ sourceType: string;
3020
+ /** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
3021
+ sourceUrl: string;
3022
+ /** Names of layers to include in proxy layer (can be numbers). */
3023
+ layers: string[];
3024
+ /** Data contract for layer legend. */
3025
+ legend?: ProxyLayerLegendDc;
3918
3026
  /** Copyright text. */
3919
3027
  copyrightText?: string;
3920
3028
  /** The type of the resource. */
@@ -3961,7 +3069,7 @@ export interface RemoteTileServiceInfoDc {
3961
3069
  /** The category of the service. */
3962
3070
  categories?: string[];
3963
3071
  /** Configuration of the service. */
3964
- configuration?: ServiceConfigurationBaseDc;
3072
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
3965
3073
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
3966
3074
  name: string;
3967
3075
  /** Resource alias. */
@@ -4000,11 +3108,90 @@ export interface RemoteTileServiceInfoDc {
4000
3108
  * read,write,configure
4001
3109
  */
4002
3110
  permissions?: Permissions;
4003
- /** Access control list. */
3111
+ /** Access control list for a security object. */
4004
3112
  acl?: AccessControlListDc;
4005
3113
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4006
3114
  icon?: string;
4007
3115
  }
3116
+ /**
3117
+ * The symbol that draws a raster.
3118
+ */
3119
+ export declare type RasterSymbolDc = SymbolDc & {
3120
+ type?: string;
3121
+ opacity?: CalculatedParameterDc;
3122
+ };
3123
+ export interface Rectangle2 {
3124
+ /** @format double */
3125
+ x1?: number;
3126
+ /** @format double */
3127
+ y1?: number;
3128
+ /** @format double */
3129
+ x2?: number;
3130
+ /** @format double */
3131
+ y2?: number;
3132
+ /** @format double */
3133
+ width?: number;
3134
+ /** @format double */
3135
+ height?: number;
3136
+ center?: IVector;
3137
+ halfSize?: IVector;
3138
+ }
3139
+ /**
3140
+ * Data contract for register new user.
3141
+ */
3142
+ export interface RegisterUserDc {
3143
+ /** Username. */
3144
+ username: string;
3145
+ /**
3146
+ * Email.
3147
+ * @format email
3148
+ */
3149
+ email?: string;
3150
+ /** Phone number. */
3151
+ phone?: string;
3152
+ /** Password. */
3153
+ password: string;
3154
+ }
3155
+ /**
3156
+ * SPCore.Connectors.Connectors.Base.Models.Data.Configurations.RemoteTableConfigurationDc provides remote table configuration data contract.
3157
+ */
3158
+ export declare type RemoteTableConfigurationDc = TableConfigurationBaseDc & {
3159
+ type?: string;
3160
+ dataProvider?: string;
3161
+ };
3162
+ /**
3163
+ * Configuration for the remote tile service.
3164
+ */
3165
+ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
3166
+ tileInfo?: TileInfoDc;
3167
+ urlFormat: string;
3168
+ tileCacheLimit?: number;
3169
+ subDomains?: string[];
3170
+ allowDirectAccess?: boolean;
3171
+ RequestTimeout?: number;
3172
+ };
3173
+ export interface RemoteTileServiceInfo {
3174
+ /** Description of a service in the Spatial Processor. */
3175
+ layerInfo?: ServiceInfo;
3176
+ /** Tile info structure. */
3177
+ tileInfo?: TileInfo;
3178
+ /** SourceBatch server address. */
3179
+ sourceUrl?: string;
3180
+ /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
3181
+ sourceUrlMask?: string;
3182
+ /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3183
+ sourceServers?: string[];
3184
+ /** Copyright text. */
3185
+ copyrightText?: string;
3186
+ }
3187
+ /**
3188
+ * Service info for a tile service.
3189
+ */
3190
+ export declare type RemoteTileServiceInfoDc = TileServiceInfoDc & {
3191
+ sourceUrl?: string;
3192
+ sourceUrlMask?: string;
3193
+ sourceServers?: string[];
3194
+ };
4008
3195
  /**
4009
3196
  * Provides resource and its acl.
4010
3197
  */
@@ -4065,25 +3252,27 @@ export interface ResourceInfoDc {
4065
3252
  * read,write,configure
4066
3253
  */
4067
3254
  permissions?: Permissions;
4068
- /** Access control list. */
3255
+ /** Access control list for a security object. */
4069
3256
  acl?: AccessControlListDc;
4070
3257
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4071
3258
  icon?: string;
4072
3259
  }
4073
3260
  /**
4074
3261
  * The `ResourceType` represents resource manager supports types.
4075
-
3262
+
4076
3263
  Unknown
4077
-
3264
+
4078
3265
  table
4079
-
3266
+
4080
3267
  layer
4081
-
3268
+
4082
3269
  project
4083
-
3270
+
4084
3271
  file
4085
-
3272
+
4086
3273
  feature
3274
+
3275
+ tag
4087
3276
  */
4088
3277
  export declare enum ResourceType {
4089
3278
  Unknown = "Unknown",
@@ -4091,7 +3280,8 @@ export declare enum ResourceType {
4091
3280
  Layer = "layer",
4092
3281
  Project = "project",
4093
3282
  File = "file",
4094
- Feature = "feature"
3283
+ Feature = "feature",
3284
+ Tag = "tag"
4095
3285
  }
4096
3286
  export declare enum ResourceTypeLink {
4097
3287
  Table = "tables",
@@ -4147,6 +3337,43 @@ export interface RolePermissionDc {
4147
3337
  */
4148
3338
  permissions: Permissions;
4149
3339
  }
3340
+ /**
3341
+ * Route feature dc.
3342
+ */
3343
+ export interface RouteFeatureDc {
3344
+ /** Source features links. */
3345
+ sourceFeatures: RouteSourceFeatureDc[];
3346
+ /** Route feature attributes.. */
3347
+ attributes: Record<string, any>;
3348
+ }
3349
+ /**
3350
+ * Route service configuration Dc.
3351
+ */
3352
+ export declare type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
3353
+ attributesConfiguration: AttributesConfigurationDc;
3354
+ style?: StyleDc;
3355
+ condition?: string;
3356
+ featuresLimit?: number;
3357
+ extentOffset?: number;
3358
+ };
3359
+ /**
3360
+ * Describe source feature for route.
3361
+ */
3362
+ export interface RouteSourceFeatureDc {
3363
+ /** Source layer name. */
3364
+ sourceLayer: string;
3365
+ /**
3366
+ * Source featureId.
3367
+ * @format int64
3368
+ */
3369
+ featureId: number;
3370
+ }
3371
+ /**
3372
+ * RouteTableConfigurationDc.
3373
+ */
3374
+ export declare type RouteTableConfigurationDc = TableConfigurationBaseDc & {
3375
+ type?: string;
3376
+ };
4150
3377
  /**
4151
3378
  * Information about a routing provider.
4152
3379
  */
@@ -4174,32 +3401,13 @@ export interface RoutingProviderInfoDc {
4174
3401
  /**
4175
3402
  * ScaleBar element data contract.
4176
3403
  */
4177
- export interface ScaleBarElementDc {
4178
- /**
4179
- * ScaleBar width.
4180
- * @format int32
4181
- */
3404
+ export declare type ScaleBarElementDc = ModelElementDc & {
4182
3405
  width?: number;
4183
- /**
4184
- * ScaleBar height.
4185
- * @format int32
4186
- */
4187
3406
  height?: number;
4188
- /**
4189
- * ScaleBar thickness.
4190
- * @format int32
4191
- */
4192
3407
  thickness?: number;
4193
- /** Font for scaleBar. */
4194
3408
  font?: string;
4195
- /**
4196
- * Font size for scaleBar.
4197
- * @format float
4198
- */
4199
3409
  fontSize?: number;
4200
- /** Check what this model element enabled. */
4201
- enabled?: boolean;
4202
- }
3410
+ };
4203
3411
  /**
4204
3412
  * Suggest user information.
4205
3413
  */
@@ -4233,21 +3441,21 @@ export interface ServerInfoDc {
4233
3441
  }
4234
3442
  /**
4235
3443
  * Status of the server task.
4236
-
3444
+
4237
3445
  None
4238
-
3446
+
4239
3447
  Scheduled
4240
-
3448
+
4241
3449
  Planning
4242
-
3450
+
4243
3451
  Executing
4244
-
3452
+
4245
3453
  Completed
4246
-
3454
+
4247
3455
  Failed
4248
-
3456
+
4249
3457
  Canceled
4250
-
3458
+
4251
3459
  Timeout
4252
3460
  */
4253
3461
  export declare enum ServerTaskStatus {
@@ -4270,7 +3478,7 @@ export interface ServiceConfigurationBaseDc {
4270
3478
  alias?: string;
4271
3479
  /** Description of the service. */
4272
3480
  description?: string;
4273
- /** Service access control list. */
3481
+ /** Access control list for a security object. */
4274
3482
  acl?: AccessControlListDc;
4275
3483
  /** Base64 encoded image - icon of the resource. */
4276
3484
  icon?: string;
@@ -4283,6 +3491,8 @@ export interface ServiceConfigurationBaseDc {
4283
3491
  owner?: string;
4284
3492
  /** Copyright text. */
4285
3493
  copyrightText?: string;
3494
+ /** A set of layer tags. */
3495
+ tags?: string[];
4286
3496
  }
4287
3497
  /**
4288
3498
  * Description of a service in the Spatial Processor.
@@ -4306,6 +3516,8 @@ export interface ServiceInfo {
4306
3516
  * file
4307
3517
  *
4308
3518
  * feature
3519
+ *
3520
+ * tag
4309
3521
  */
4310
3522
  resourceType?: ResourceType;
4311
3523
  /** Categories of the service. */
@@ -4338,122 +3550,37 @@ export interface ServiceInfo {
4338
3550
  AttributesFilter?: string[];
4339
3551
  ObjectsCount?: string[];
4340
3552
  DataSourceType?: string[];
3553
+ Extent?: string[];
4341
3554
  };
4342
3555
  /**
4343
3556
  * Given a security object (like a service or a project) this class provides the list of permissions the different
4344
3557
  * user roles have for this object.
4345
3558
  */
4346
3559
  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
4437
- */
4438
- permissions?: Permissions;
4439
- /** Access control list. */
4440
- acl?: AccessControlListDc;
4441
- /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
3560
+ /** Base-64 preview image for the resource. */
4442
3561
  icon?: string;
3562
+ /** A set of tags. */
3563
+ tags?: string[];
3564
+ /** Preview of the resource. */
3565
+ preview?: string;
4443
3566
  }
3567
+ /**
3568
+ * The `ServiceInfoDc` provides information about the service.
3569
+ */
3570
+ export declare type ServiceInfoDc = ResourceInfoDc & {
3571
+ type: string;
3572
+ minResolution?: number;
3573
+ maxResolution?: number;
3574
+ condition?: string;
3575
+ geometryType: GeometryType;
3576
+ objectCount?: number;
3577
+ categories?: string[];
3578
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
3579
+ };
4444
3580
  /**
4445
3581
  * List of the services in service manager.
4446
3582
  */
4447
- export interface ServiceListDc {
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
- }
3583
+ export declare type ServiceListDc = ListResponseServiceListItemDc;
4457
3584
  export interface ServiceListItemDc {
4458
3585
  name?: string;
4459
3586
  type?: string;
@@ -4528,6 +3655,10 @@ export interface ServiceListItemDc {
4528
3655
  objectCount?: number;
4529
3656
  /** Provides data source type info. */
4530
3657
  dataSourceType?: string;
3658
+ /** A set of tags. */
3659
+ tags?: string[];
3660
+ /** Envelope geometry. */
3661
+ envelope?: EnvelopeDc;
4531
3662
  }
4532
3663
  /**
4533
3664
  * Task data storage that works with import and export provider to give access to data stored in static files.
@@ -4536,27 +3667,14 @@ export interface SessionStaticTaskDataStorageDescription {
4536
3667
  /** The name of the folder. */
4537
3668
  folderName?: string;
4538
3669
  }
4539
- export interface SimplePolylineSymbolDc {
3670
+ export declare type SimplePolylineSymbolDc = SymbolDc & {
4540
3671
  type?: string;
4541
- /** Defines the brush for the stroke. */
4542
- stroke?: BrushDc | IBrushDc | StrokeBrushDc;
4543
- /** Type of the line ending. */
3672
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
4544
3673
  beginning?: LineEndingType;
4545
- /** Type of the line ending. */
4546
3674
  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
3675
  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
3676
  endingSize?: LineEndingSize;
4557
- /** If set true symbol will not be rendered. */
4558
- disabled?: boolean;
4559
- }
3677
+ };
4560
3678
  /**
4561
3679
  * User social network information.
4562
3680
  */
@@ -4569,70 +3687,34 @@ export interface SocialNetworkInfoDc {
4569
3687
  /**
4570
3688
  * Defines the brush for the solid fill.
4571
3689
  */
4572
- export interface SolidFillBrushDc {
3690
+ export declare type SolidFillBrushDc = FillBrushDc & {
4573
3691
  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
- }
3692
+ };
4580
3693
  /**
4581
3694
  * Defines the brush for the solid stroke.
4582
3695
  */
4583
- export interface SolidStrokeBrushDc {
3696
+ export declare type SolidStrokeBrushDc = StrokeBrushDc & {
4584
3697
  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
- }
3698
+ };
4596
3699
  /**
4597
3700
  * The symbol that draws a feature as a square.
4598
3701
  */
4599
- export interface SquarePointSymbolDc {
3702
+ export declare type SquarePointSymbolDc = SymbolDc & {
4600
3703
  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
- */
3704
+ size?: CalculatedParameterDc;
4610
3705
  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
3706
  strokeColor?: ParameterDcColor;
4616
- /**
4617
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
4618
- * as an object with a "type" parameter specified.
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
- }
3707
+ strokeWidth?: CalculatedParameterDc;
3708
+ offset?: CalculatedParameterDc[];
3709
+ };
4626
3710
  /**
4627
3711
  * Description of the temp file as a task data storage.
4628
3712
  */
4629
- export interface StaticTaskDataStorageDc {
4630
- /** The id of the file in the temporary session static storage. */
3713
+ export declare type StaticTaskDataStorageDc = BaseTaskDataStorageDc & {
4631
3714
  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
3715
  layerName?: string;
4634
3716
  type?: string;
4635
- }
3717
+ };
4636
3718
  /**
4637
3719
  * Statistics result.
4638
3720
  */
@@ -4663,6 +3745,8 @@ export interface StatisticsResultObject {
4663
3745
  *
4664
3746
  * Count
4665
3747
  *
3748
+ * DistinctCount
3749
+ *
4666
3750
  * First
4667
3751
  *
4668
3752
  * Last
@@ -4690,36 +3774,26 @@ export interface StatisticsResultObject {
4690
3774
  /**
4691
3775
  * The result of a server task step execution.
4692
3776
  */
4693
- export interface StepResultDc {
3777
+ export declare type StepResultDc = BaseStepResultDc & {
4694
3778
  stepName?: string;
4695
3779
  inputSource?: string;
4696
3780
  outSource?: string;
4697
- /** @format date-time */
4698
3781
  startedTime?: string;
4699
- /** @format date-time */
4700
3782
  endedTime?: string;
4701
3783
  batchErrors?: string[];
4702
- /** @format int32 */
4703
3784
  batchCount?: number;
4704
- /** @format int64 */
4705
3785
  inputObjectCount?: number;
4706
- /** @format int64 */
4707
3786
  errorCount?: number;
4708
- /** @format int64 */
4709
3787
  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
3788
  resultDetails?: Record<string, number | null>;
4715
- }
3789
+ };
4716
3790
  /**
4717
3791
  * The `StringSubType` provides information about string attribute subtype.
4718
-
3792
+
4719
3793
  None
4720
-
3794
+
4721
3795
  Image
4722
-
3796
+
4723
3797
  PkkCode
4724
3798
  */
4725
3799
  export declare enum StringSubType {
@@ -4730,20 +3804,10 @@ export declare enum StringSubType {
4730
3804
  /**
4731
3805
  * Defines the brush for the stroke.
4732
3806
  */
4733
- export interface StrokeBrushDc {
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
- */
3807
+ export declare type StrokeBrushDc = BrushDc & {
4738
3808
  color?: ParameterDcColor;
4739
- /**
4740
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
4741
- * as an object with a "type" parameter specified.
4742
- */
4743
- width?: ParameterDcDouble;
4744
- /** Type of the brush. */
4745
- type?: string;
4746
- }
3809
+ width?: CalculatedParameterDc;
3810
+ };
4747
3811
  /**
4748
3812
  * Server response for the creation of a style in style service.
4749
3813
  */
@@ -4763,7 +3827,7 @@ export interface StyleDc {
4763
3827
  */
4764
3828
  condition?: string;
4765
3829
  /** Symbol that is used to draw the features of the layer. */
4766
- symbol?: SymbolDc;
3830
+ 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
3831
  /**
4768
3832
  * Child styles. Before rendering a feature, the children style conditions are checked. If none
4769
3833
  * of the child styles were applied, then the paren style is used to draw the feature.
@@ -4786,31 +3850,10 @@ export interface StyleDc {
4786
3850
  * Configuration of a styled layer service. This service type is a visual feature layer,
4787
3851
  that overrides the base layer styling with its' own style.
4788
3852
  */
4789
- export interface StyledLayerServiceConfigurationDc {
4790
- /** Style of the service. */
3853
+ export declare type StyledLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
4791
3854
  style: StyleDc;
4792
- /** The name of the base service. */
4793
3855
  baseServiceName: string;
4794
- /** Name of the service. */
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
- }
3856
+ };
4814
3857
  /**
4815
3858
  * Feature symbol.
4816
3859
  */
@@ -4830,74 +3873,16 @@ export interface TableConfigurationBaseDc {
4830
3873
  /**
4831
3874
  * Table description.
4832
3875
  */
4833
- export interface TableInfoDc {
4834
- /**
4835
- * Row count.
4836
- * @format int64
4837
- */
3876
+ export declare type TableInfoDc = ResourceInfoDc & {
4838
3877
  rowCount?: number;
4839
- /** The geometry of the table. */
4840
3878
  geometries?: GeometryType[];
4841
- /** The type of the table. */
4842
3879
  type?: string;
4843
- /** Configuration of the table. */
4844
- configuration?: TableConfigurationBaseDc;
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
- }
3880
+ configuration?: DefaultTableConfigurationDc | RemoteTableConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
3881
+ };
4888
3882
  /**
4889
3883
  * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
4890
3884
  */
4891
- export interface TableListDc {
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
- }
3885
+ export declare type TableListDc = ListResponseTableInfoDc;
4901
3886
  /**
4902
3887
  * Configuration of a related table for feature layer.
4903
3888
  */
@@ -4916,10 +3901,18 @@ export interface TableReferenceConfigurationDc {
4916
3901
  /**
4917
3902
  * Data storage that allows accessing features directly from the tables.
4918
3903
  */
4919
- export interface TableTaskDataStorageDc {
4920
- /** Full name of the table (including namespace if any). */
3904
+ export declare type TableTaskDataStorageDc = BaseTaskDataStorageDc & {
4921
3905
  tableName: string;
4922
3906
  type?: string;
3907
+ };
3908
+ /**
3909
+ * Provides data contract of SPCore.Security.Base.TagInfo.
3910
+ */
3911
+ export interface TagInfoDc {
3912
+ /** Name of the tag. */
3913
+ name?: string;
3914
+ /** If sets true. */
3915
+ isSystem?: boolean;
4923
3916
  }
4924
3917
  /**
4925
3918
  * Detailed information about a server task.
@@ -4953,7 +3946,7 @@ export interface TaskInfoDc {
4953
3946
  */
4954
3947
  status?: ServerTaskStatus;
4955
3948
  /** Parameters of the task. */
4956
- parameters?: TaskParametersDc;
3949
+ parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc;
4957
3950
  /**
4958
3951
  * Date and time when the task was created.
4959
3952
  * @format date-time
@@ -5006,7 +3999,7 @@ export interface TaskProgressDc {
5006
3999
  * Timeout
5007
4000
  */
5008
4001
  status?: ServerTaskStatus;
5009
- /** Information about the task execution process and result. */
4002
+ /** The result of the server task execution. */
5010
4003
  taskResult?: TaskResultDc;
5011
4004
  /**
5012
4005
  * Count of task steps.
@@ -5039,7 +4032,7 @@ export interface TaskProgressDc {
5039
4032
  */
5040
4033
  export interface TaskResultDc {
5041
4034
  message?: string;
5042
- stepResults?: BaseStepResultDc[];
4035
+ stepResults?: StepResultDc[];
5043
4036
  /** @format int64 */
5044
4037
  inputObjectCount?: number;
5045
4038
  /** @format int64 */
@@ -5076,7 +4069,7 @@ export interface TaskStatusDataDc {
5076
4069
  * Timeout
5077
4070
  */
5078
4071
  status?: ServerTaskStatus;
5079
- /** Information about the task execution process or result. */
4072
+ /** The result of the server task execution. */
5080
4073
  taskResult?: TaskResultDc;
5081
4074
  }
5082
4075
  /**
@@ -5114,40 +4107,160 @@ export interface TemplateModelDc {
5114
4107
  * Gets or sets dpi.
5115
4108
  * @format int32
5116
4109
  */
5117
- dpi?: number;
5118
- /** Gets or sets paper margin. */
5119
- margin?: number[];
5120
- /** Localization of map. */
5121
- localization?: TemplateLocalizationDc;
5122
- /** Checks if title enabled. */
5123
- titleEnabled?: boolean;
5124
- }
5125
- /**
5126
- * Sets the horizontal alignment of text.
5127
- */
5128
- export declare enum TextAlignment {
5129
- Right = "right",
5130
- Left = "left",
5131
- Center = "center",
5132
- Justified = "justified"
5133
- }
5134
- export interface TextBackgroundDc {
5135
- /** Defines the brush for the fill. */
5136
- fill?: BrushDc | FillBrushDc | IBrushDc;
5137
- /** Defines the brush for the stroke. */
5138
- stroke?: BrushDc | IBrushDc | StrokeBrushDc;
5139
- offset?: number[];
5140
- /** @format float */
5141
- rounding?: number;
4110
+ dpi?: number;
4111
+ /** Gets or sets paper margin. */
4112
+ margin?: number[];
4113
+ /** Localization contains fields that should be localized on printing template. */
4114
+ localization?: TemplateLocalizationDc;
4115
+ /** Checks if title enabled. */
4116
+ titleEnabled?: boolean;
4117
+ }
4118
+ /**
4119
+ * Sets the horizontal alignment of text.
4120
+
4121
+ right
4122
+
4123
+ left
4124
+
4125
+ center
4126
+
4127
+ justified
4128
+ */
4129
+ export declare enum TextAlignment {
4130
+ Right = "right",
4131
+ Left = "left",
4132
+ Center = "center",
4133
+ Justified = "justified"
4134
+ }
4135
+ export interface TextBackgroundDc {
4136
+ /** Defines the brush for the fill. */
4137
+ fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
4138
+ /** Defines the brush for the stroke. */
4139
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
4140
+ offset?: number[];
4141
+ /** @format float */
4142
+ rounding?: number;
4143
+ }
4144
+ /**
4145
+ * Sets the vertical alignment of text.
4146
+
4147
+ top
4148
+
4149
+ bottom
4150
+
4151
+ middle
4152
+ */
4153
+ export declare enum TextVerticalAlignment {
4154
+ Top = "top",
4155
+ Bottom = "bottom",
4156
+ Middle = "middle"
4157
+ }
4158
+ /**
4159
+ * Service info for a tile catalog layer service.
4160
+ */
4161
+ export interface TileCatalogServiceInfoDc {
4162
+ /** Information about the layer attributes and their configuration. */
4163
+ layerDefinition: LayerDefinitionDc;
4164
+ /** Feature layer rendering style. */
4165
+ style?: StyleDc;
4166
+ /** Tile info structure. */
4167
+ tileInfo: TileInfoDc;
4168
+ /** Copyright text. */
4169
+ copyrightText?: string;
4170
+ /** The type of the resource. */
4171
+ type: string;
4172
+ /**
4173
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4174
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
4175
+ * @format double
4176
+ */
4177
+ minResolution?: number;
4178
+ /**
4179
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4180
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
4181
+ * @format double
4182
+ */
4183
+ maxResolution?: number;
4184
+ /**
4185
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
4186
+ * for the given service type, null is returned.
4187
+ */
4188
+ condition?: string;
4189
+ /**
4190
+ *
4191
+ *
4192
+ * unknown
4193
+ *
4194
+ * point
4195
+ *
4196
+ * polyline
4197
+ *
4198
+ * polygon
4199
+ *
4200
+ * envelope
4201
+ *
4202
+ * multipoint
4203
+ */
4204
+ geometryType: GeometryType;
4205
+ /**
4206
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
4207
+ * 0 is returned.
4208
+ * @format int32
4209
+ */
4210
+ objectCount?: number;
4211
+ /** The category of the service. */
4212
+ categories?: string[];
4213
+ /** Configuration of the service. */
4214
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
4215
+ /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4216
+ name: string;
4217
+ /** Resource alias. */
4218
+ alias?: string;
4219
+ /** Resource owner. */
4220
+ owner?: string;
4221
+ /** Resource description. */
4222
+ description?: string;
4223
+ /** Resource preview. */
4224
+ preview?: string;
4225
+ /**
4226
+ * The date when resource was created.
4227
+ * @format date-time
4228
+ */
4229
+ createdDate?: string;
4230
+ /**
4231
+ * The date when resource was last modified.
4232
+ * @format date-time
4233
+ */
4234
+ changedDate?: string;
4235
+ /**
4236
+ * User permissions for server security objects (services, projects etc.)
4237
+ *
4238
+ * none
4239
+ *
4240
+ * configure
4241
+ *
4242
+ * write
4243
+ *
4244
+ * read
4245
+ *
4246
+ * read,configure
4247
+ *
4248
+ * read,write
4249
+ *
4250
+ * read,write,configure
4251
+ */
4252
+ permissions?: Permissions;
4253
+ /** Access control list for a security object. */
4254
+ acl?: AccessControlListDc;
4255
+ /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4256
+ icon?: string;
5142
4257
  }
5143
4258
  /**
5144
- * Sets the vertical alignment of text.
4259
+ * Configuration of a table for tile catalog layer.
5145
4260
  */
5146
- export declare enum TextVerticalAlignment {
5147
- Top = "top",
5148
- Bottom = "bottom",
5149
- Middle = "middle"
5150
- }
4261
+ export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc & {
4262
+ type?: string;
4263
+ };
5151
4264
  /**
5152
4265
  * Tile info structure.
5153
4266
  */
@@ -5225,7 +4338,7 @@ export interface TileInfoDc {
5225
4338
  * Service info for a tile service.
5226
4339
  */
5227
4340
  export interface TileServiceInfoDc {
5228
- /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
4341
+ /** Tile info structure. */
5229
4342
  tileInfo: TileInfoDc;
5230
4343
  /** Copyright text. */
5231
4344
  copyrightText?: string;
@@ -5273,7 +4386,7 @@ export interface TileServiceInfoDc {
5273
4386
  /** The category of the service. */
5274
4387
  categories?: string[];
5275
4388
  /** Configuration of the service. */
5276
- configuration?: ServiceConfigurationBaseDc;
4389
+ configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
5277
4390
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
5278
4391
  name: string;
5279
4392
  /** Resource alias. */
@@ -5312,7 +4425,7 @@ export interface TileServiceInfoDc {
5312
4425
  * read,write,configure
5313
4426
  */
5314
4427
  permissions?: Permissions;
5315
- /** Access control list. */
4428
+ /** Access control list for a security object. */
5316
4429
  acl?: AccessControlListDc;
5317
4430
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
5318
4431
  icon?: string;
@@ -5320,22 +4433,37 @@ export interface TileServiceInfoDc {
5320
4433
  /**
5321
4434
  * The description of the tile feature layer service as a server task data storage.
5322
4435
  */
5323
- export interface TilingTaskDataStorageDc {
5324
- /** The name of the tile feature layer service. */
4436
+ export declare type TilingTaskDataStorageDc = BaseTaskDataStorageDc & {
5325
4437
  serviceName: string;
5326
- /** If set to true, a new service with the given LayerServiceName will be created before the task is executed. */
5327
4438
  createNewService?: boolean;
5328
4439
  type?: string;
5329
- }
4440
+ };
4441
+ export declare type TrackSymbolBaseDc = SymbolDc & {
4442
+ groupAttribute?: string;
4443
+ sourceAttribute?: string;
4444
+ maxSelectionSize?: number;
4445
+ };
4446
+ export declare type TracksSymbolDc = TrackSymbolBaseDc & {
4447
+ type?: string;
4448
+ pointSymbol?: CirclePointSymbolDc;
4449
+ lineSymbol?: PolylineSymbolDc;
4450
+ };
5330
4451
  /**
5331
4452
  * The operation that unites the features in the storage.
5332
4453
  */
5333
- export interface UnionTaskParametersDc {
4454
+ export declare type UnionTaskParametersDc = FeatureTaskParametersDc & {
5334
4455
  type?: string;
5335
- /** Storage that is to be used as a data source for the task. */
5336
- source: BaseTaskDataStorageDc;
5337
- /** Storage that is to be used as a target for writing the task result. */
5338
- target: BaseTaskDataStorageDc;
4456
+ };
4457
+ /**
4458
+ * Feature object definition for updating.
4459
+ */
4460
+ export interface UpdateFeatureDc {
4461
+ /** Feature geometry definition. */
4462
+ geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
4463
+ /** Feature attributes collection. */
4464
+ attributes?: Record<string, any>;
4465
+ /** Feature unique identifier. */
4466
+ id?: string;
5339
4467
  }
5340
4468
  /**
5341
4469
  * Update role data contract.
@@ -5351,65 +4479,10 @@ export interface UpdateRoleDc {
5351
4479
  /**
5352
4480
  * Table description with columns what must be added and deleted.
5353
4481
  */
5354
- export interface UpdateTableDc {
5355
- /** Description of table columns what must be added. */
4482
+ export declare type UpdateTableDc = TableInfoDc & {
5356
4483
  columnsAdd?: ColumnDescriptionDc[];
5357
- /** Table columns what must be deleted. */
5358
4484
  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
- }
4485
+ };
5413
4486
  /**
5414
4487
  * Update user data contract.
5415
4488
  */
@@ -5451,24 +4524,15 @@ export interface UpdateUserDc {
5451
4524
  /**
5452
4525
  * Upload raster task parameters data contract.
5453
4526
  */
5454
- export interface UploadRasterTaskParametersDc {
5455
- /** Storage that is to be used as a target for writing the task result. */
5456
- target: BaseTaskDataStorageDc;
5457
- /** Names of the image files to tile. */
4527
+ export declare type UploadRasterTaskParametersDc = TaskParametersDc & {
4528
+ target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
5458
4529
  files: string[];
5459
- /** Feature attributes collection. */
5460
4530
  attributes?: Record<string, any>;
5461
- /**
5462
- * Max zoom level to read.
5463
- * @format int32
5464
- */
5465
4531
  maxZoomLevel: number;
5466
- /** Get geometry from bbox or polygonize. */
5467
4532
  polygonize?: boolean;
5468
- /** Import as COG. */
5469
4533
  useCog?: boolean;
5470
4534
  type?: string;
5471
- }
4535
+ };
5472
4536
  /**
5473
4537
  * Set used project.
5474
4538
  */
@@ -5519,12 +4583,22 @@ export interface UserOrRoleDc {
5519
4583
  /** User own role. */
5520
4584
  aclRole?: string;
5521
4585
  }
4586
+ export interface ValueTupleStringString {
4587
+ item1?: string;
4588
+ item2?: string;
4589
+ }
5522
4590
  export interface Vector2 {
5523
4591
  /** @format double */
5524
4592
  x?: number;
5525
4593
  /** @format double */
5526
4594
  y?: number;
5527
4595
  }
4596
+ /**
4597
+ * Configuration of a table for feature layer.
4598
+ */
4599
+ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
4600
+ type?: string;
4601
+ };
5528
4602
  /**
5529
4603
  * Workspace limits data contract.
5530
4604
  */
@@ -5694,10 +4768,6 @@ export interface UploadPreviewPayload {
5694
4768
  /** @format binary */
5695
4769
  file?: File;
5696
4770
  }
5697
- /**
5698
- * Provides resources with their acl.
5699
- */
5700
- export declare type BatchResourcesPermissionsSetPayload = BatchResourcesAclDc;
5701
4771
  export interface GetConfigurationsListParams {
5702
4772
  /**
5703
4773
  * Offset.
@@ -5766,14 +4836,14 @@ export interface FeedbackParams {
5766
4836
  /** Message text. */
5767
4837
  Message?: string;
5768
4838
  }
5769
- /**
5770
- * Provides filter data contract.
5771
- */
5772
- export declare type UpdatePayload = FilterDc;
5773
- /**
5774
- * Provides filter data contract.
5775
- */
5776
- export declare type CreatePayload = FilterDc;
4839
+ export interface FaviconParams {
4840
+ /** Bucket name. */
4841
+ bucketName?: string;
4842
+ }
4843
+ export interface LogoParams {
4844
+ /** Bucket name. */
4845
+ bucketName?: string;
4846
+ }
5777
4847
  export interface GeocodeParams {
5778
4848
  /** Input address. */
5779
4849
  address?: string;
@@ -5817,10 +4887,6 @@ export interface GetDataSchemaParams {
5817
4887
  /** File id. */
5818
4888
  fileId?: string;
5819
4889
  }
5820
- /**
5821
- * Data schema of a file for import.
5822
- */
5823
- export declare type GetFeaturesCountPayload = ImportFileFeaturesCountDc;
5824
4890
  export interface GetExternalWmsLayersParams {
5825
4891
  /** WMS service url. */
5826
4892
  wmsUrl?: string;
@@ -5867,6 +4933,8 @@ export interface GetLayersListParams {
5867
4933
  orderByFields?: string[];
5868
4934
  /** Filters layers by geometry types. */
5869
4935
  geometryFilter?: string[];
4936
+ /** Filter layers by set of tags. */
4937
+ tags?: string[];
5870
4938
  /** ACL in string format `role:permissions;role:permissions`. */
5871
4939
  acl?: string;
5872
4940
  }
@@ -5875,59 +4943,6 @@ export interface DeleteResourcesParams {
5875
4943
  /** Resource names. */
5876
4944
  names?: string[];
5877
4945
  }
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
4946
  export interface GetFeaturesParams {
5932
4947
  /** Sets features filtering query. */
5933
4948
  query?: string;
@@ -5968,7 +4983,7 @@ export interface DeleteFeatureParams {
5968
4983
  name: string;
5969
4984
  }
5970
4985
  export declare type CreateFeaturesPayload = FeatureDc[];
5971
- export declare type UpdateFeaturePayload = FeatureDc[];
4986
+ export declare type UpdateFeaturePayload = UpdateFeatureDc[];
5972
4987
  export interface FeaturesContainsParams {
5973
4988
  /** Contains filter within a given filterAttributes. */
5974
4989
  filter?: string;
@@ -6016,7 +5031,7 @@ export interface GetByIdParams {
6016
5031
  /**
6017
5032
  * Geometry object.
6018
5033
  */
6019
- export declare type UnitePayload = GeometryDc;
5034
+ export declare type UnitePayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
6020
5035
  export interface UniteParams {
6021
5036
  /**
6022
5037
  * Spatial reference of result feature.
@@ -6031,7 +5046,7 @@ export interface UniteParams {
6031
5046
  /**
6032
5047
  * Geometry object.
6033
5048
  */
6034
- export declare type SubtractPayload = GeometryDc;
5049
+ export declare type SubtractPayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
6035
5050
  export interface SubtractParams {
6036
5051
  /**
6037
5052
  * Spatial reference id of result features.
@@ -6122,7 +5137,7 @@ export interface GetByGeometryParams {
6122
5137
  /**
6123
5138
  * Geometry object.
6124
5139
  */
6125
- export declare type GetByGeometryPostPayload = GeometryDc;
5140
+ export declare type GetByGeometryPostPayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
6126
5141
  export interface GetByGeometryPostParams {
6127
5142
  /**
6128
5143
  * Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
@@ -6172,8 +5187,6 @@ export interface GetByGeometryGetParams {
6172
5187
  query?: string;
6173
5188
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
6174
5189
  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
5190
  /** The name of the layer. */
6178
5191
  name: string;
6179
5192
  }
@@ -6246,6 +5259,8 @@ export interface AggregateAttributeParams {
6246
5259
  *
6247
5260
  * Count
6248
5261
  *
5262
+ * DistinctCount
5263
+ *
6249
5264
  * First
6250
5265
  *
6251
5266
  * Last
@@ -6286,10 +5301,6 @@ export interface GetFilteredFeaturesCountParams {
6286
5301
  /** Layer name. */
6287
5302
  name: string;
6288
5303
  }
6289
- /**
6290
- * Provides attributes edit info.
6291
- */
6292
- export declare type EditAttributesPayload = EditAttributesInfoDc;
6293
5304
  export interface SelectFeaturesParams {
6294
5305
  /** Comma separated list of layer names. */
6295
5306
  layers?: string[];
@@ -6325,14 +5336,6 @@ export interface SetPreviewPayload {
6325
5336
  /** @format binary */
6326
5337
  file?: File;
6327
5338
  }
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
5339
  export interface GetNamespacesParams {
6337
5340
  /** String filter for the namespace (uses % and _ wild cards like SQL). */
6338
5341
  filter?: string;
@@ -6370,11 +5373,11 @@ export declare type UnsubscribeListOperationPayload = string[];
6370
5373
  /**
6371
5374
  * Base template model data contract.
6372
5375
  */
6373
- export declare type PrintPayload = TemplateModelDc;
5376
+ export declare type PrintPayload = LayerTemplateModelDc | LegendTemplateModelDc;
6374
5377
  /**
6375
5378
  * Base template model data contract.
6376
5379
  */
6377
- export declare type PrintToHtmlPayload = TemplateModelDc;
5380
+ export declare type PrintToHtmlPayload = LayerTemplateModelDc | LegendTemplateModelDc;
6378
5381
  export interface UploadTemplatePayload {
6379
5382
  /** @format binary */
6380
5383
  template?: File;
@@ -6414,32 +5417,18 @@ export interface GetProjectsListParams {
6414
5417
  orderByFields?: string[];
6415
5418
  /** All available permissions list. */
6416
5419
  acl?: string;
5420
+ /** Filter layers by set of tags. */
5421
+ tags?: string[];
6417
5422
  }
6418
- /**
6419
- * Project extended configuration data contract.
6420
- */
6421
- export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6422
5423
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6423
- export interface DeleteResourcesParams3 {
5424
+ export interface DeleteResourcesParams5 {
6424
5425
  /** Resource names. */
6425
5426
  names?: string[];
6426
5427
  }
6427
- /**
6428
- * Project extended configuration data contract.
6429
- */
6430
- export declare type UpdateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6431
5428
  export interface SetPreviewBody {
6432
5429
  /** @format binary */
6433
5430
  file?: File;
6434
5431
  }
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
5432
  export interface CheckLimitsParams {
6444
5433
  /** Workspace. */
6445
5434
  userName?: string;
@@ -6492,49 +5481,6 @@ export interface GetTaskListParams {
6492
5481
  */
6493
5482
  limit?: number;
6494
5483
  }
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
5484
  export interface FindUserByNameByRolesParams {
6539
5485
  /** Roles. */
6540
5486
  roles?: string[];
@@ -6585,7 +5531,6 @@ export interface RemovePolicyParams {
6585
5531
  /** Use role the policy is applied to. */
6586
5532
  role?: string;
6587
5533
  }
6588
- export declare type SetPolicyPayload = PolicyDc;
6589
5534
  export interface DownloadFileParams {
6590
5535
  /** Id of the file in the temporary static storage. */
6591
5536
  fileName?: string;
@@ -6616,7 +5561,7 @@ export interface StatisticsDbParams {
6616
5561
  /** Type of required statistic function. */
6617
5562
  types?: AggregationFunction[];
6618
5563
  }
6619
- export interface ClassifyParams1 {
5564
+ export interface ClassifyParams8 {
6620
5565
  /** Layer name. */
6621
5566
  name?: string;
6622
5567
  /** Attribute name. */
@@ -6666,14 +5611,6 @@ export interface SumOfProductParams {
6666
5611
  /** Layer condition. */
6667
5612
  condition?: string;
6668
5613
  }
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
5614
  export interface AddFontPayload {
6678
5615
  /** @format binary */
6679
5616
  formFile?: File;
@@ -6713,22 +5650,16 @@ export interface GetTableListParams {
6713
5650
  orderByFields?: string[];
6714
5651
  /** Filters layers by geometry types. */
6715
5652
  geometryFilter?: string[];
5653
+ /** Filter layers by set of tags. */
5654
+ tags?: string[];
6716
5655
  /** All available permissions list. */
6717
5656
  acl?: string;
6718
5657
  }
6719
- /**
6720
- * Table description with columns and access control list.
6721
- */
6722
- export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6723
5658
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6724
- export interface DeleteResourcesParams5 {
5659
+ export interface DeleteResourcesParams6 {
6725
5660
  /** Resource names. */
6726
5661
  names?: string[];
6727
5662
  }
6728
- /**
6729
- * Table description with columns what must be added and deleted.
6730
- */
6731
- export declare type UpdateTablePayload = UpdateTableDc | ResourceInfoDc | TableInfoDc;
6732
5663
  export interface GetTableDataParams {
6733
5664
  /** String filter for the all text column (uses % and _ wild cards like SQL). */
6734
5665
  filter?: string;
@@ -6783,23 +5714,15 @@ export interface GetUniqueDataRowsParams {
6783
5714
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
6784
5715
  <br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
6785
5716
  */
6786
- export declare type MapTablePayload = MapTableInfoDc;
5717
+ export declare type MapTablePayload = MapTableInfoDc | MapRemoteTableInfoDc | MapViewInfoDc;
6787
5718
  export interface MapTableParams {
6788
5719
  /** Type of data source. */
6789
5720
  type?: string;
6790
5721
  }
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
5722
  export interface MapViewParams {
6796
5723
  /** Type of data source. */
6797
5724
  type?: string;
6798
5725
  }
6799
- /**
6800
- * SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
6801
- */
6802
- export declare type MapRemoteTablePayload = MapRemoteTableInfoDc | MapTableInfoDc;
6803
5726
  export interface MapRemoteTableParams {
6804
5727
  /** Type of data source. */
6805
5728
  type?: string;
@@ -6808,14 +5731,20 @@ export interface SetPreviewInput {
6808
5731
  /** @format binary */
6809
5732
  file?: File;
6810
5733
  }
6811
- /**
6812
- * Access control list for a security object.
6813
- */
6814
- export declare type AddPermissionsInput = AccessControlListDc;
6815
- /**
6816
- * Access control list for a security object.
6817
- */
6818
- export declare type SetPermissionsInput = AccessControlListDc;
5734
+ export interface GetAllParams {
5735
+ /** Text filter. */
5736
+ filter?: string;
5737
+ /**
5738
+ * Skip objects amount.
5739
+ * @format int32
5740
+ */
5741
+ offset?: number;
5742
+ /**
5743
+ * Limit objects in response.
5744
+ * @format int32
5745
+ */
5746
+ limit?: number;
5747
+ }
6819
5748
  export interface GetCapabilitiesParams {
6820
5749
  /** Name of the service. */
6821
5750
  Service?: string;
@@ -6826,7 +5755,7 @@ export interface GetCapabilitiesParams {
6826
5755
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6827
5756
  AcceptFormats?: string[];
6828
5757
  }
6829
- export interface GetCapabilitiesParams9 {
5758
+ export interface GetCapabilitiesParams1 {
6830
5759
  /** Output format of service metadata. */
6831
5760
  Format?: string;
6832
5761
  /** Must be WMS. */