@evergis/api 3.0.93 → 3.0.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -50,6 +50,8 @@ export interface AggregationDataResultDc {
50
50
  *
51
51
  * Count
52
52
  *
53
+ * TotalCount
54
+ *
53
55
  * DistinctCount
54
56
  *
55
57
  * First
@@ -78,43 +80,45 @@ export interface AggregationDataResultDc {
78
80
  }
79
81
  /**
80
82
  *
81
-
83
+
82
84
  None
83
-
85
+
84
86
  Array
85
-
87
+
86
88
  Min
87
-
89
+
88
90
  Max
89
-
91
+
90
92
  Avg
91
-
93
+
92
94
  Sum
93
-
95
+
94
96
  Extent
95
-
97
+
96
98
  Count
97
-
99
+
100
+ TotalCount
101
+
98
102
  DistinctCount
99
-
103
+
100
104
  First
101
-
105
+
102
106
  Last
103
-
107
+
104
108
  Median
105
-
109
+
106
110
  Mod
107
-
111
+
108
112
  StdDeviation
109
-
113
+
110
114
  SumOfProduct
111
-
115
+
112
116
  OnlyValue
113
-
117
+
114
118
  WeightedAvg
115
-
119
+
116
120
  DensityIndicators
117
-
121
+
118
122
  DividedSum
119
123
  */
120
124
  export declare enum AggregationFunction {
@@ -126,6 +130,7 @@ export declare enum AggregationFunction {
126
130
  Sum = "Sum",
127
131
  Extent = "Extent",
128
132
  Count = "Count",
133
+ TotalCount = "TotalCount",
129
134
  DistinctCount = "DistinctCount",
130
135
  First = "First",
131
136
  Last = "Last",
@@ -167,6 +172,8 @@ export interface AggregationSettingDc {
167
172
  *
168
173
  * Count
169
174
  *
175
+ * TotalCount
176
+ *
170
177
  * DistinctCount
171
178
  *
172
179
  * First
@@ -234,6 +241,8 @@ export interface AttributeConfigurationDc {
234
241
  *
235
242
  * Count
236
243
  *
244
+ * TotalCount
245
+ *
237
246
  * DistinctCount
238
247
  *
239
248
  * First
@@ -418,27 +427,27 @@ export interface AttributeFormatDefinitionDc {
418
427
  }
419
428
  /**
420
429
  * Types of the attributes that are supported by the system.
421
-
430
+
422
431
  Unknown
423
-
432
+
424
433
  String
425
-
434
+
426
435
  Int32
427
-
436
+
428
437
  Int64
429
-
438
+
430
439
  Double
431
-
440
+
432
441
  DateTime
433
-
442
+
434
443
  Boolean
435
-
444
+
436
445
  Point
437
-
446
+
438
447
  Polyline
439
-
448
+
440
449
  Polygon
441
-
450
+
442
451
  Multipoint
443
452
  */
444
453
  export declare enum AttributeType {
@@ -463,7 +472,7 @@ export interface AttributesConfigurationDc {
463
472
  /** The name of the attribute that is used for setting feature name (optional). */
464
473
  titleAttribute?: string;
465
474
  /** The name of the attribute that contains the feature geometry. */
466
- geometryAttribute: string;
475
+ geometryAttribute?: string;
467
476
  /** The name of the table in data source service, that contains the data for this layer. */
468
477
  tableName: string;
469
478
  /** Configuration of the attributes of the layer. */
@@ -602,15 +611,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
602
611
  };
603
612
  /**
604
613
  * Describes classification methods.
605
-
614
+
606
615
  none
607
-
616
+
608
617
  naturalBreaks
609
-
618
+
610
619
  equalInterval
611
-
620
+
612
621
  quantile
613
-
622
+
614
623
  unique
615
624
  */
616
625
  export declare enum ClassificationType {
@@ -622,11 +631,11 @@ export declare enum ClassificationType {
622
631
  }
623
632
  /**
624
633
  * Type of attribute.
625
-
634
+
626
635
  decimal
627
-
636
+
628
637
  dateTime
629
-
638
+
630
639
  text
631
640
  */
632
641
  export declare enum ClassifyAttributeType {
@@ -827,7 +836,7 @@ export interface CompositeServiceInfoDc {
827
836
  /** The category of the service. */
828
837
  categories?: string[];
829
838
  /** Configuration of the service. */
830
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
839
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
831
840
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
832
841
  name: string;
833
842
  /** Resource alias. */
@@ -870,6 +879,8 @@ export interface CompositeServiceInfoDc {
870
879
  acl?: AccessControlListDc;
871
880
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
872
881
  icon?: string;
882
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
883
+ invisibleInCatalog?: boolean;
873
884
  }
874
885
  /**
875
886
  * Composite symbol.
@@ -889,47 +900,47 @@ export interface ConfigDc {
889
900
  }
890
901
  /**
891
902
  * Types of errors that can occur during layer initialize.
892
-
903
+
893
904
  Unknown
894
-
905
+
895
906
  SerializeError
896
-
907
+
897
908
  InvalidDataService
898
-
909
+
899
910
  InvalidConfiguration
900
-
911
+
901
912
  InvalidDataServiceName
902
-
913
+
903
914
  InvalidTableName
904
-
915
+
905
916
  ResourceNotFound
906
-
917
+
907
918
  InvalidCondition
908
-
919
+
909
920
  InvalidAttributes
910
-
921
+
911
922
  InvalidIdAttribute
912
-
923
+
913
924
  InvalidGeometryAttribute
914
-
925
+
915
926
  InvalidGeometryAttributeType
916
-
927
+
917
928
  InvalidColumnName
918
-
929
+
919
930
  InvalidIdColumnSettings
920
-
931
+
921
932
  ColumnNotExistsInTable
922
-
933
+
923
934
  InvalidStyle
924
-
935
+
925
936
  InvalidLayerType
926
-
937
+
927
938
  ColumnLoadingError
928
-
939
+
929
940
  InvalidAttributeFormat
930
-
941
+
931
942
  DataSourceNotFound
932
-
943
+
933
944
  DuplicateColumns
934
945
  */
935
946
  export declare enum ConfigurationErrorEnum {
@@ -1175,15 +1186,15 @@ export interface ErrorDetailsDc {
1175
1186
  }
1176
1187
  /**
1177
1188
  * Type of the error.
1178
-
1189
+
1179
1190
  ResourceLimitExceeded
1180
-
1191
+
1181
1192
  ResourceNotFound
1182
-
1193
+
1183
1194
  InternalError
1184
-
1195
+
1185
1196
  BadRequest
1186
-
1197
+
1187
1198
  DuplicateContent
1188
1199
  */
1189
1200
  export declare enum ErrorDetailsType {
@@ -1455,7 +1466,7 @@ export interface FailedServiceInfoDc {
1455
1466
  /** The category of the service. */
1456
1467
  categories?: string[];
1457
1468
  /** Configuration of the service. */
1458
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
1469
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
1459
1470
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
1460
1471
  name: string;
1461
1472
  /** Resource alias. */
@@ -1498,13 +1509,15 @@ export interface FailedServiceInfoDc {
1498
1509
  acl?: AccessControlListDc;
1499
1510
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
1500
1511
  icon?: string;
1512
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
1513
+ invisibleInCatalog?: boolean;
1501
1514
  }
1502
1515
  /**
1503
1516
  * Feature object definition.
1504
1517
  */
1505
1518
  export interface FeatureDc {
1506
1519
  /** Feature geometry definition. */
1507
- geometry: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
1520
+ geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
1508
1521
  /** Feature attributes collection. */
1509
1522
  attributes: Record<string, any>;
1510
1523
  /** Feature unique identifier. */
@@ -1566,7 +1579,7 @@ export interface FeatureLayerServiceInfoDc {
1566
1579
  /** The category of the service. */
1567
1580
  categories?: string[];
1568
1581
  /** Configuration of the service. */
1569
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
1582
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
1570
1583
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
1571
1584
  name: string;
1572
1585
  /** Resource alias. */
@@ -1609,6 +1622,8 @@ export interface FeatureLayerServiceInfoDc {
1609
1622
  acl?: AccessControlListDc;
1610
1623
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
1611
1624
  icon?: string;
1625
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
1626
+ invisibleInCatalog?: boolean;
1612
1627
  }
1613
1628
  export interface FeatureSelectionDc {
1614
1629
  layerName: string;
@@ -1648,9 +1663,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1648
1663
  };
1649
1664
  /**
1650
1665
  * Type of the feature.
1651
-
1666
+
1652
1667
  Unknown
1653
-
1668
+
1654
1669
  GeometricFeature
1655
1670
  */
1656
1671
  export declare enum FeatureType {
@@ -1710,11 +1725,11 @@ export interface FilterDc {
1710
1725
  }
1711
1726
  /**
1712
1727
  * Sets whether font should be styled.
1713
-
1728
+
1714
1729
  normal
1715
-
1730
+
1716
1731
  oblique
1717
-
1732
+
1718
1733
  italic
1719
1734
  */
1720
1735
  export declare enum FontStyle {
@@ -1724,27 +1739,27 @@ export declare enum FontStyle {
1724
1739
  }
1725
1740
  /**
1726
1741
  * Specifies the weight (or boldness) of the font.
1727
-
1742
+
1728
1743
  Thin
1729
-
1744
+
1730
1745
  ExtraLight
1731
-
1746
+
1732
1747
  Light
1733
-
1748
+
1734
1749
  SemiLight
1735
-
1750
+
1736
1751
  Normal
1737
-
1752
+
1738
1753
  Medium
1739
-
1754
+
1740
1755
  DemiBold
1741
-
1756
+
1742
1757
  Bold
1743
-
1758
+
1744
1759
  ExtraBold
1745
-
1760
+
1746
1761
  Black
1747
-
1762
+
1748
1763
  ExtraBlack
1749
1764
  */
1750
1765
  export declare enum FontWeight {
@@ -1839,17 +1854,17 @@ export interface GeometryDc {
1839
1854
  }
1840
1855
  /**
1841
1856
  *
1842
-
1857
+
1843
1858
  unknown
1844
-
1859
+
1845
1860
  point
1846
-
1861
+
1847
1862
  polyline
1848
-
1863
+
1849
1864
  polygon
1850
-
1865
+
1851
1866
  envelope
1852
-
1867
+
1853
1868
  multipoint
1854
1869
  */
1855
1870
  export declare enum GeometryType {
@@ -1869,13 +1884,13 @@ export declare type GridElementDc = ModelElementDc & {
1869
1884
  };
1870
1885
  /**
1871
1886
  * Resource group.
1872
-
1887
+
1873
1888
  my
1874
-
1889
+
1875
1890
  role
1876
-
1891
+
1877
1892
  public
1878
-
1893
+
1879
1894
  all
1880
1895
  */
1881
1896
  export declare enum Group {
@@ -2331,9 +2346,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2331
2346
  /**
2332
2347
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2333
2348
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
2334
-
2349
+
2335
2350
  small
2336
-
2351
+
2337
2352
  large
2338
2353
  */
2339
2354
  export declare enum LineEndingSize {
@@ -2342,19 +2357,19 @@ export declare enum LineEndingSize {
2342
2357
  }
2343
2358
  /**
2344
2359
  * Type of the line ending.
2345
-
2360
+
2346
2361
  none
2347
-
2362
+
2348
2363
  arrow
2349
-
2364
+
2350
2365
  filledArrow
2351
-
2366
+
2352
2367
  square
2353
-
2368
+
2354
2369
  filledSquare
2355
-
2370
+
2356
2371
  circle
2357
-
2372
+
2358
2373
  filledCircle
2359
2374
  */
2360
2375
  export declare enum LineEndingType {
@@ -2366,6 +2381,16 @@ export declare enum LineEndingType {
2366
2381
  Circle = "circle",
2367
2382
  FilledCircle = "filledCircle"
2368
2383
  }
2384
+ /**
2385
+ * Linear service configuration Dc.
2386
+ */
2387
+ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
2388
+ attributesConfiguration: AttributesConfigurationDc;
2389
+ style?: StyleDc;
2390
+ condition?: string;
2391
+ featuresLimit?: number;
2392
+ extentOffset?: number;
2393
+ };
2369
2394
  /**
2370
2395
  * The response that contains a paged list of items.
2371
2396
  */
@@ -2488,6 +2513,8 @@ export interface ListResponseUserInfoDc {
2488
2513
  */
2489
2514
  export declare type LocalTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
2490
2515
  tileInfo?: TileInfoDc;
2516
+ useRedisCache?: boolean;
2517
+ cacheExpire?: number;
2491
2518
  };
2492
2519
  /**
2493
2520
  * Tile LOD structure.
@@ -2607,15 +2634,15 @@ export interface NamespaceInfoDc {
2607
2634
  export declare type ObjectId = object;
2608
2635
  /**
2609
2636
  *
2610
-
2637
+
2611
2638
  Unknown
2612
-
2639
+
2613
2640
  union
2614
-
2641
+
2615
2642
  intersection
2616
-
2643
+
2617
2644
  subtraction
2618
-
2645
+
2619
2646
  symDifference
2620
2647
  */
2621
2648
  export declare enum Operation {
@@ -2709,19 +2736,19 @@ export declare type PatternBrushDc = FillBrushDc & {
2709
2736
  };
2710
2737
  /**
2711
2738
  * User permissions for server security objects (services, projects etc.)
2712
-
2739
+
2713
2740
  none
2714
-
2741
+
2715
2742
  configure
2716
-
2743
+
2717
2744
  write
2718
-
2745
+
2719
2746
  read
2720
-
2747
+
2721
2748
  read,configure
2722
-
2749
+
2723
2750
  read,write
2724
-
2751
+
2725
2752
  read,write,configure
2726
2753
  */
2727
2754
  export declare enum Permissions {
@@ -2776,17 +2803,17 @@ export interface PolicyDc {
2776
2803
  }
2777
2804
  /**
2778
2805
  * Type of the authorization policy.
2779
-
2806
+
2780
2807
  Unknown
2781
-
2808
+
2782
2809
  CreateTable
2783
-
2810
+
2784
2811
  CreateLayer
2785
-
2812
+
2786
2813
  CreateProject
2787
-
2814
+
2788
2815
  MaxFeaturesInOneTable
2789
-
2816
+
2790
2817
  MaxObjectsToExport
2791
2818
  */
2792
2819
  export declare enum PolicyType {
@@ -2962,6 +2989,8 @@ export interface ProjectContentItemDc {
2962
2989
  * @format double
2963
2990
  */
2964
2991
  maxScale?: number;
2992
+ /** If set true, item is basemap. */
2993
+ isBasemap?: boolean;
2965
2994
  /** Children items. */
2966
2995
  children?: ProjectContentItemDc[];
2967
2996
  }
@@ -2969,7 +2998,6 @@ export interface ProjectContentItemDc {
2969
2998
  * A project configuration data contract.
2970
2999
  */
2971
3000
  export declare type ProjectInfoDc = ResourceInfoDc & {
2972
- isShared?: boolean;
2973
3001
  layersCount?: number;
2974
3002
  };
2975
3003
  /**
@@ -3069,7 +3097,7 @@ export interface ProxyServiceInfoDc {
3069
3097
  /** The category of the service. */
3070
3098
  categories?: string[];
3071
3099
  /** Configuration of the service. */
3072
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
3100
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
3073
3101
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
3074
3102
  name: string;
3075
3103
  /** Resource alias. */
@@ -3112,6 +3140,8 @@ export interface ProxyServiceInfoDc {
3112
3140
  acl?: AccessControlListDc;
3113
3141
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
3114
3142
  icon?: string;
3143
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3144
+ invisibleInCatalog?: boolean;
3115
3145
  }
3116
3146
  /**
3117
3147
  * The symbol that draws a raster.
@@ -3166,6 +3196,8 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
3166
3196
  tileInfo?: TileInfoDc;
3167
3197
  urlFormat: string;
3168
3198
  tileCacheLimit?: number;
3199
+ useRedisCache?: boolean;
3200
+ cacheExpire?: number;
3169
3201
  subDomains?: string[];
3170
3202
  allowDirectAccess?: boolean;
3171
3203
  RequestTimeout?: number;
@@ -3256,22 +3288,24 @@ export interface ResourceInfoDc {
3256
3288
  acl?: AccessControlListDc;
3257
3289
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
3258
3290
  icon?: string;
3291
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3292
+ invisibleInCatalog?: boolean;
3259
3293
  }
3260
3294
  /**
3261
3295
  * The `ResourceType` represents resource manager supports types.
3262
-
3296
+
3263
3297
  Unknown
3264
-
3298
+
3265
3299
  table
3266
-
3300
+
3267
3301
  layer
3268
-
3302
+
3269
3303
  project
3270
-
3304
+
3271
3305
  file
3272
-
3306
+
3273
3307
  feature
3274
-
3308
+
3275
3309
  tag
3276
3310
  */
3277
3311
  export declare enum ResourceType {
@@ -3441,21 +3475,21 @@ export interface ServerInfoDc {
3441
3475
  }
3442
3476
  /**
3443
3477
  * Status of the server task.
3444
-
3478
+
3445
3479
  None
3446
-
3480
+
3447
3481
  Scheduled
3448
-
3482
+
3449
3483
  Planning
3450
-
3484
+
3451
3485
  Executing
3452
-
3486
+
3453
3487
  Completed
3454
-
3488
+
3455
3489
  Failed
3456
-
3490
+
3457
3491
  Canceled
3458
-
3492
+
3459
3493
  Timeout
3460
3494
  */
3461
3495
  export declare enum ServerTaskStatus {
@@ -3561,6 +3595,8 @@ export interface ServiceInfo {
3561
3595
  icon?: string;
3562
3596
  /** A set of tags. */
3563
3597
  tags?: string[];
3598
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3599
+ inVisible?: boolean;
3564
3600
  /** Preview of the resource. */
3565
3601
  preview?: string;
3566
3602
  }
@@ -3575,7 +3611,7 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
3575
3611
  geometryType: GeometryType;
3576
3612
  objectCount?: number;
3577
3613
  categories?: string[];
3578
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
3614
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
3579
3615
  };
3580
3616
  /**
3581
3617
  * List of the services in service manager.
@@ -3745,6 +3781,8 @@ export interface StatisticsResultObject {
3745
3781
  *
3746
3782
  * Count
3747
3783
  *
3784
+ * TotalCount
3785
+ *
3748
3786
  * DistinctCount
3749
3787
  *
3750
3788
  * First
@@ -3789,11 +3827,11 @@ export declare type StepResultDc = BaseStepResultDc & {
3789
3827
  };
3790
3828
  /**
3791
3829
  * The `StringSubType` provides information about string attribute subtype.
3792
-
3830
+
3793
3831
  None
3794
-
3832
+
3795
3833
  Image
3796
-
3834
+
3797
3835
  PkkCode
3798
3836
  */
3799
3837
  export declare enum StringSubType {
@@ -4117,13 +4155,13 @@ export interface TemplateModelDc {
4117
4155
  }
4118
4156
  /**
4119
4157
  * Sets the horizontal alignment of text.
4120
-
4158
+
4121
4159
  right
4122
-
4160
+
4123
4161
  left
4124
-
4162
+
4125
4163
  center
4126
-
4164
+
4127
4165
  justified
4128
4166
  */
4129
4167
  export declare enum TextAlignment {
@@ -4143,11 +4181,11 @@ export interface TextBackgroundDc {
4143
4181
  }
4144
4182
  /**
4145
4183
  * Sets the vertical alignment of text.
4146
-
4184
+
4147
4185
  top
4148
-
4186
+
4149
4187
  bottom
4150
-
4188
+
4151
4189
  middle
4152
4190
  */
4153
4191
  export declare enum TextVerticalAlignment {
@@ -4211,7 +4249,7 @@ export interface TileCatalogServiceInfoDc {
4211
4249
  /** The category of the service. */
4212
4250
  categories?: string[];
4213
4251
  /** Configuration of the service. */
4214
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
4252
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
4215
4253
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4216
4254
  name: string;
4217
4255
  /** Resource alias. */
@@ -4254,6 +4292,8 @@ export interface TileCatalogServiceInfoDc {
4254
4292
  acl?: AccessControlListDc;
4255
4293
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4256
4294
  icon?: string;
4295
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4296
+ invisibleInCatalog?: boolean;
4257
4297
  }
4258
4298
  /**
4259
4299
  * Configuration of a table for tile catalog layer.
@@ -4386,7 +4426,7 @@ export interface TileServiceInfoDc {
4386
4426
  /** The category of the service. */
4387
4427
  categories?: string[];
4388
4428
  /** Configuration of the service. */
4389
- configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
4429
+ configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
4390
4430
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4391
4431
  name: string;
4392
4432
  /** Resource alias. */
@@ -4429,6 +4469,8 @@ export interface TileServiceInfoDc {
4429
4469
  acl?: AccessControlListDc;
4430
4470
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4431
4471
  icon?: string;
4472
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4473
+ invisibleInCatalog?: boolean;
4432
4474
  }
4433
4475
  /**
4434
4476
  * The description of the tile feature layer service as a server task data storage.
@@ -5259,6 +5301,8 @@ export interface AggregateAttributeParams {
5259
5301
  *
5260
5302
  * Count
5261
5303
  *
5304
+ * TotalCount
5305
+ *
5262
5306
  * DistinctCount
5263
5307
  *
5264
5308
  * First
@@ -5561,7 +5605,7 @@ export interface StatisticsDbParams {
5561
5605
  /** Type of required statistic function. */
5562
5606
  types?: AggregationFunction[];
5563
5607
  }
5564
- export interface ClassifyParams8 {
5608
+ export interface ClassifyParams2 {
5565
5609
  /** Layer name. */
5566
5610
  name?: string;
5567
5611
  /** Attribute name. */
@@ -5656,7 +5700,7 @@ export interface GetTableListParams {
5656
5700
  acl?: string;
5657
5701
  }
5658
5702
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
5659
- export interface DeleteResourcesParams6 {
5703
+ export interface DeleteResourcesParams3 {
5660
5704
  /** Resource names. */
5661
5705
  names?: string[];
5662
5706
  }
@@ -5755,7 +5799,27 @@ export interface GetCapabilitiesParams {
5755
5799
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
5756
5800
  AcceptFormats?: string[];
5757
5801
  }
5758
- export interface GetCapabilitiesParams1 {
5802
+ export interface GetSharedCapabilitiesParams {
5803
+ /** Name of the service. */
5804
+ Service?: string;
5805
+ /** When omitted, server shall return latest supported version. */
5806
+ AcceptVersions?: string[];
5807
+ /** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
5808
+ Sections?: string[];
5809
+ /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
5810
+ AcceptFormats?: string[];
5811
+ }
5812
+ export interface GetPublicCapabilitiesParams {
5813
+ /** Name of the service. */
5814
+ Service?: string;
5815
+ /** When omitted, server shall return latest supported version. */
5816
+ AcceptVersions?: string[];
5817
+ /** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
5818
+ Sections?: string[];
5819
+ /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
5820
+ AcceptFormats?: string[];
5821
+ }
5822
+ export interface GetCapabilitiesParams3 {
5759
5823
  /** Output format of service metadata. */
5760
5824
  Format?: string;
5761
5825
  /** Must be WMS. */