@evergis/api 3.0.71 → 3.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/Api.d.ts +3 -1
- package/dist/__generated__/FeedbackService.d.ts +12 -1
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +7 -7
- package/dist/__generated__/StyleService.d.ts +23 -1
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +340 -175
- package/dist/api.cjs.development.js +235 -27
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +335 -131
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Feedback.d.ts +5 -0
- package/dist/services/Statistic.d.ts +6 -0
- package/dist/services/index.d.ts +2 -0
- package/package.json +2 -2
|
@@ -49,6 +49,18 @@ export interface AggregationDataResultDc {
|
|
|
49
49
|
*
|
|
50
50
|
* Count
|
|
51
51
|
*
|
|
52
|
+
* First
|
|
53
|
+
*
|
|
54
|
+
* Last
|
|
55
|
+
*
|
|
56
|
+
* Median
|
|
57
|
+
*
|
|
58
|
+
* Mod
|
|
59
|
+
*
|
|
60
|
+
* StdDeviation
|
|
61
|
+
*
|
|
62
|
+
* SumOfProduct
|
|
63
|
+
*
|
|
52
64
|
* OnlyValue
|
|
53
65
|
*
|
|
54
66
|
* WeightedAvg
|
|
@@ -63,29 +75,41 @@ export interface AggregationDataResultDc {
|
|
|
63
75
|
}
|
|
64
76
|
/**
|
|
65
77
|
*
|
|
66
|
-
|
|
78
|
+
|
|
67
79
|
None
|
|
68
|
-
|
|
80
|
+
|
|
69
81
|
Array
|
|
70
|
-
|
|
82
|
+
|
|
71
83
|
Min
|
|
72
|
-
|
|
84
|
+
|
|
73
85
|
Max
|
|
74
|
-
|
|
86
|
+
|
|
75
87
|
Avg
|
|
76
|
-
|
|
88
|
+
|
|
77
89
|
Sum
|
|
78
|
-
|
|
90
|
+
|
|
79
91
|
Extent
|
|
80
|
-
|
|
92
|
+
|
|
81
93
|
Count
|
|
82
|
-
|
|
94
|
+
|
|
95
|
+
First
|
|
96
|
+
|
|
97
|
+
Last
|
|
98
|
+
|
|
99
|
+
Median
|
|
100
|
+
|
|
101
|
+
Mod
|
|
102
|
+
|
|
103
|
+
StdDeviation
|
|
104
|
+
|
|
105
|
+
SumOfProduct
|
|
106
|
+
|
|
83
107
|
OnlyValue
|
|
84
|
-
|
|
108
|
+
|
|
85
109
|
WeightedAvg
|
|
86
|
-
|
|
110
|
+
|
|
87
111
|
DensityIndicators
|
|
88
|
-
|
|
112
|
+
|
|
89
113
|
DividedSum
|
|
90
114
|
*/
|
|
91
115
|
export declare enum AggregationFunction {
|
|
@@ -97,6 +121,12 @@ export declare enum AggregationFunction {
|
|
|
97
121
|
Sum = "Sum",
|
|
98
122
|
Extent = "Extent",
|
|
99
123
|
Count = "Count",
|
|
124
|
+
First = "First",
|
|
125
|
+
Last = "Last",
|
|
126
|
+
Median = "Median",
|
|
127
|
+
Mod = "Mod",
|
|
128
|
+
StdDeviation = "StdDeviation",
|
|
129
|
+
SumOfProduct = "SumOfProduct",
|
|
100
130
|
OnlyValue = "OnlyValue",
|
|
101
131
|
WeightedAvg = "WeightedAvg",
|
|
102
132
|
DensityIndicators = "DensityIndicators",
|
|
@@ -131,6 +161,18 @@ export interface AggregationSettingDc {
|
|
|
131
161
|
*
|
|
132
162
|
* Count
|
|
133
163
|
*
|
|
164
|
+
* First
|
|
165
|
+
*
|
|
166
|
+
* Last
|
|
167
|
+
*
|
|
168
|
+
* Median
|
|
169
|
+
*
|
|
170
|
+
* Mod
|
|
171
|
+
*
|
|
172
|
+
* StdDeviation
|
|
173
|
+
*
|
|
174
|
+
* SumOfProduct
|
|
175
|
+
*
|
|
134
176
|
* OnlyValue
|
|
135
177
|
*
|
|
136
178
|
* WeightedAvg
|
|
@@ -184,6 +226,18 @@ export interface AttributeConfigurationDc {
|
|
|
184
226
|
*
|
|
185
227
|
* Count
|
|
186
228
|
*
|
|
229
|
+
* First
|
|
230
|
+
*
|
|
231
|
+
* Last
|
|
232
|
+
*
|
|
233
|
+
* Median
|
|
234
|
+
*
|
|
235
|
+
* Mod
|
|
236
|
+
*
|
|
237
|
+
* StdDeviation
|
|
238
|
+
*
|
|
239
|
+
* SumOfProduct
|
|
240
|
+
*
|
|
187
241
|
* OnlyValue
|
|
188
242
|
*
|
|
189
243
|
* WeightedAvg
|
|
@@ -258,7 +312,7 @@ export interface AttributeDefinitionDc {
|
|
|
258
312
|
*/
|
|
259
313
|
export interface AttributeDistinctDc {
|
|
260
314
|
/** Attribute value. */
|
|
261
|
-
|
|
315
|
+
value: string;
|
|
262
316
|
/**
|
|
263
317
|
* Count of this attribute value at table.
|
|
264
318
|
* @format int64
|
|
@@ -354,27 +408,27 @@ export interface AttributeFormatDefinitionDc {
|
|
|
354
408
|
}
|
|
355
409
|
/**
|
|
356
410
|
* Types of the attributes that are supported by the system.
|
|
357
|
-
|
|
411
|
+
|
|
358
412
|
Unknown
|
|
359
|
-
|
|
413
|
+
|
|
360
414
|
String
|
|
361
|
-
|
|
415
|
+
|
|
362
416
|
Int32
|
|
363
|
-
|
|
417
|
+
|
|
364
418
|
Int64
|
|
365
|
-
|
|
419
|
+
|
|
366
420
|
Double
|
|
367
|
-
|
|
421
|
+
|
|
368
422
|
DateTime
|
|
369
|
-
|
|
423
|
+
|
|
370
424
|
Boolean
|
|
371
|
-
|
|
425
|
+
|
|
372
426
|
Point
|
|
373
|
-
|
|
427
|
+
|
|
374
428
|
Polyline
|
|
375
|
-
|
|
429
|
+
|
|
376
430
|
Polygon
|
|
377
|
-
|
|
431
|
+
|
|
378
432
|
Multipoint
|
|
379
433
|
*/
|
|
380
434
|
export declare enum AttributeType {
|
|
@@ -580,18 +634,32 @@ export interface CirclePointSymbolDc {
|
|
|
580
634
|
}
|
|
581
635
|
/**
|
|
582
636
|
* Describes classification methods.
|
|
583
|
-
|
|
637
|
+
|
|
638
|
+
none
|
|
639
|
+
|
|
584
640
|
naturalBreaks
|
|
585
|
-
|
|
641
|
+
|
|
586
642
|
equalInterval
|
|
587
|
-
|
|
643
|
+
|
|
588
644
|
quantile
|
|
589
645
|
*/
|
|
590
646
|
export declare enum ClassificationType {
|
|
647
|
+
None = "none",
|
|
591
648
|
NaturalBreaks = "naturalBreaks",
|
|
592
649
|
EqualInterval = "equalInterval",
|
|
593
650
|
Quantile = "quantile"
|
|
594
651
|
}
|
|
652
|
+
/**
|
|
653
|
+
* Type of attribute.
|
|
654
|
+
|
|
655
|
+
decimal
|
|
656
|
+
|
|
657
|
+
dateTime
|
|
658
|
+
*/
|
|
659
|
+
export declare enum ClassifyAttributeType {
|
|
660
|
+
Decimal = "decimal",
|
|
661
|
+
DateTime = "dateTime"
|
|
662
|
+
}
|
|
595
663
|
/**
|
|
596
664
|
* Classification result.
|
|
597
665
|
*/
|
|
@@ -609,7 +677,7 @@ export interface ClassifyResultObject {
|
|
|
609
677
|
value?: any;
|
|
610
678
|
/**
|
|
611
679
|
* Count.
|
|
612
|
-
* @format
|
|
680
|
+
* @format int64
|
|
613
681
|
*/
|
|
614
682
|
count?: number;
|
|
615
683
|
}
|
|
@@ -743,6 +811,8 @@ export interface CompositeServiceConfigurationDc {
|
|
|
743
811
|
*
|
|
744
812
|
*/
|
|
745
813
|
owner?: string;
|
|
814
|
+
/** Copyright text. */
|
|
815
|
+
copyrightText?: string;
|
|
746
816
|
}
|
|
747
817
|
/**
|
|
748
818
|
* Information about composite service.
|
|
@@ -1192,15 +1262,15 @@ export interface ErrorDetailsDc {
|
|
|
1192
1262
|
}
|
|
1193
1263
|
/**
|
|
1194
1264
|
* Type of the error.
|
|
1195
|
-
|
|
1265
|
+
|
|
1196
1266
|
ResourceLimitExceeded
|
|
1197
|
-
|
|
1267
|
+
|
|
1198
1268
|
ResourceNotFound
|
|
1199
|
-
|
|
1269
|
+
|
|
1200
1270
|
InternalError
|
|
1201
|
-
|
|
1271
|
+
|
|
1202
1272
|
BadRequest
|
|
1203
|
-
|
|
1273
|
+
|
|
1204
1274
|
DuplicateContent
|
|
1205
1275
|
*/
|
|
1206
1276
|
export declare enum ErrorDetailsType {
|
|
@@ -1536,6 +1606,8 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1536
1606
|
objectCount?: number;
|
|
1537
1607
|
/** Provides data source type. */
|
|
1538
1608
|
dataSourceType?: string;
|
|
1609
|
+
/** Copyright text. */
|
|
1610
|
+
copyrightText?: string;
|
|
1539
1611
|
/** The type of the resource. */
|
|
1540
1612
|
type: string;
|
|
1541
1613
|
/** The category of the service. */
|
|
@@ -1627,9 +1699,9 @@ export interface FeatureTaskParametersDc {
|
|
|
1627
1699
|
}
|
|
1628
1700
|
/**
|
|
1629
1701
|
* Type of the feature.
|
|
1630
|
-
|
|
1702
|
+
|
|
1631
1703
|
Unknown
|
|
1632
|
-
|
|
1704
|
+
|
|
1633
1705
|
GeometricFeature
|
|
1634
1706
|
*/
|
|
1635
1707
|
export declare enum FeatureType {
|
|
@@ -1704,21 +1776,15 @@ export declare enum FontStyle {
|
|
|
1704
1776
|
export declare enum FontWeight {
|
|
1705
1777
|
Thin = "Thin",
|
|
1706
1778
|
ExtraLight = "ExtraLight",
|
|
1707
|
-
UltraLight = "UltraLight",
|
|
1708
1779
|
Light = "Light",
|
|
1709
1780
|
SemiLight = "SemiLight",
|
|
1710
1781
|
Normal = "Normal",
|
|
1711
|
-
Regular = "Regular",
|
|
1712
1782
|
Medium = "Medium",
|
|
1713
1783
|
DemiBold = "DemiBold",
|
|
1714
|
-
SemiBold = "SemiBold",
|
|
1715
1784
|
Bold = "Bold",
|
|
1716
1785
|
ExtraBold = "ExtraBold",
|
|
1717
|
-
UltraBold = "UltraBold",
|
|
1718
1786
|
Black = "Black",
|
|
1719
|
-
|
|
1720
|
-
ExtraBlack = "ExtraBlack",
|
|
1721
|
-
UltraBlack = "UltraBlack"
|
|
1787
|
+
ExtraBlack = "ExtraBlack"
|
|
1722
1788
|
}
|
|
1723
1789
|
/**
|
|
1724
1790
|
* Information about function argument.
|
|
@@ -1790,17 +1856,17 @@ export interface GeometryDc {
|
|
|
1790
1856
|
}
|
|
1791
1857
|
/**
|
|
1792
1858
|
*
|
|
1793
|
-
|
|
1859
|
+
|
|
1794
1860
|
unknown
|
|
1795
|
-
|
|
1861
|
+
|
|
1796
1862
|
point
|
|
1797
|
-
|
|
1863
|
+
|
|
1798
1864
|
polyline
|
|
1799
|
-
|
|
1865
|
+
|
|
1800
1866
|
polygon
|
|
1801
|
-
|
|
1867
|
+
|
|
1802
1868
|
envelope
|
|
1803
|
-
|
|
1869
|
+
|
|
1804
1870
|
multipoint
|
|
1805
1871
|
*/
|
|
1806
1872
|
export declare enum GeometryType {
|
|
@@ -1827,13 +1893,13 @@ export interface GridElementDc {
|
|
|
1827
1893
|
}
|
|
1828
1894
|
/**
|
|
1829
1895
|
* Resource group.
|
|
1830
|
-
|
|
1896
|
+
|
|
1831
1897
|
my
|
|
1832
|
-
|
|
1898
|
+
|
|
1833
1899
|
role
|
|
1834
|
-
|
|
1900
|
+
|
|
1835
1901
|
public
|
|
1836
|
-
|
|
1902
|
+
|
|
1837
1903
|
all
|
|
1838
1904
|
*/
|
|
1839
1905
|
export declare enum Group {
|
|
@@ -2550,6 +2616,8 @@ export interface LocalTileServiceConfigurationDc {
|
|
|
2550
2616
|
*
|
|
2551
2617
|
*/
|
|
2552
2618
|
owner?: string;
|
|
2619
|
+
/** Copyright text. */
|
|
2620
|
+
copyrightText?: string;
|
|
2553
2621
|
}
|
|
2554
2622
|
/**
|
|
2555
2623
|
* Tile LOD structure.
|
|
@@ -2682,15 +2750,15 @@ export interface NamespaceInfoDc {
|
|
|
2682
2750
|
export declare type ObjectId = object;
|
|
2683
2751
|
/**
|
|
2684
2752
|
*
|
|
2685
|
-
|
|
2753
|
+
|
|
2686
2754
|
Unknown
|
|
2687
|
-
|
|
2755
|
+
|
|
2688
2756
|
union
|
|
2689
|
-
|
|
2757
|
+
|
|
2690
2758
|
intersection
|
|
2691
|
-
|
|
2759
|
+
|
|
2692
2760
|
subtraction
|
|
2693
|
-
|
|
2761
|
+
|
|
2694
2762
|
symDifference
|
|
2695
2763
|
*/
|
|
2696
2764
|
export declare enum Operation {
|
|
@@ -2804,19 +2872,19 @@ export interface PatternBrushDc {
|
|
|
2804
2872
|
}
|
|
2805
2873
|
/**
|
|
2806
2874
|
* User permissions for server security objects (services, projects etc.)
|
|
2807
|
-
|
|
2875
|
+
|
|
2808
2876
|
none
|
|
2809
|
-
|
|
2877
|
+
|
|
2810
2878
|
configure
|
|
2811
|
-
|
|
2879
|
+
|
|
2812
2880
|
write
|
|
2813
|
-
|
|
2881
|
+
|
|
2814
2882
|
read
|
|
2815
|
-
|
|
2883
|
+
|
|
2816
2884
|
read,configure
|
|
2817
|
-
|
|
2885
|
+
|
|
2818
2886
|
read,write
|
|
2819
|
-
|
|
2887
|
+
|
|
2820
2888
|
read,write,configure
|
|
2821
2889
|
*/
|
|
2822
2890
|
export declare enum Permissions {
|
|
@@ -2927,15 +2995,15 @@ export interface PolicyDc {
|
|
|
2927
2995
|
}
|
|
2928
2996
|
/**
|
|
2929
2997
|
* Type of the authorization policy.
|
|
2930
|
-
|
|
2998
|
+
|
|
2931
2999
|
Unknown
|
|
2932
|
-
|
|
3000
|
+
|
|
2933
3001
|
CreateTable
|
|
2934
|
-
|
|
3002
|
+
|
|
2935
3003
|
CreateLayer
|
|
2936
|
-
|
|
3004
|
+
|
|
2937
3005
|
CreateProject
|
|
2938
|
-
|
|
3006
|
+
|
|
2939
3007
|
MaxFeaturesInOneTable
|
|
2940
3008
|
*/
|
|
2941
3009
|
export declare enum PolicyType {
|
|
@@ -2973,6 +3041,50 @@ export interface PolyDc {
|
|
|
2973
3041
|
*/
|
|
2974
3042
|
sr?: number;
|
|
2975
3043
|
}
|
|
3044
|
+
/**
|
|
3045
|
+
* Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
|
|
3046
|
+
*/
|
|
3047
|
+
export interface PolygonCenterLabelSymbolDc {
|
|
3048
|
+
/** Is sets true label center fixed and not accept envelope. */
|
|
3049
|
+
fixCenter?: boolean;
|
|
3050
|
+
type?: string;
|
|
3051
|
+
/** Label text format. */
|
|
3052
|
+
fieldFormat?: string;
|
|
3053
|
+
/** Label text font family. */
|
|
3054
|
+
fontFamily?: string;
|
|
3055
|
+
/** Sets whether font should be styled. */
|
|
3056
|
+
fontStyle?: FontStyle;
|
|
3057
|
+
/** Specifies the weight (or boldness) of the font. */
|
|
3058
|
+
fontWeight?: FontWeight;
|
|
3059
|
+
/**
|
|
3060
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3061
|
+
* as an object with a "type" parameter specified.
|
|
3062
|
+
*/
|
|
3063
|
+
fontColor?: ParameterDcColor;
|
|
3064
|
+
/**
|
|
3065
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3066
|
+
* as an object with a "type" parameter specified.
|
|
3067
|
+
*/
|
|
3068
|
+
fontSize?: ParameterDcDouble;
|
|
3069
|
+
/** Sets the horizontal alignment of text. */
|
|
3070
|
+
horizontalAlignment?: TextAlignment;
|
|
3071
|
+
/** Sets the vertical alignment of text. */
|
|
3072
|
+
verticalAlignment?: TextVerticalAlignment;
|
|
3073
|
+
/**
|
|
3074
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3075
|
+
* as an object with a "type" parameter specified.
|
|
3076
|
+
*/
|
|
3077
|
+
haloColor?: ParameterDcColor;
|
|
3078
|
+
/**
|
|
3079
|
+
* Width of label stroke (halo).
|
|
3080
|
+
* @format float
|
|
3081
|
+
*/
|
|
3082
|
+
haloWidth?: number;
|
|
3083
|
+
/** Offset of the label center from the geographic point. */
|
|
3084
|
+
offset?: ParameterDcDouble[];
|
|
3085
|
+
/** Specifies text background. */
|
|
3086
|
+
textBackground?: TextBackgroundDc;
|
|
3087
|
+
}
|
|
2976
3088
|
/**
|
|
2977
3089
|
* Polygon geometry object definition.
|
|
2978
3090
|
*/
|
|
@@ -3193,6 +3305,8 @@ export interface PostgresLayerServiceConfigurationDc {
|
|
|
3193
3305
|
*
|
|
3194
3306
|
*/
|
|
3195
3307
|
owner?: string;
|
|
3308
|
+
/** Copyright text. */
|
|
3309
|
+
copyrightText?: string;
|
|
3196
3310
|
}
|
|
3197
3311
|
/**
|
|
3198
3312
|
* Configuration of a postgres tile catalog service.
|
|
@@ -3219,6 +3333,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
|
|
|
3219
3333
|
* @format int32
|
|
3220
3334
|
*/
|
|
3221
3335
|
maxLodLevel?: number;
|
|
3336
|
+
/** IsCogLayer. */
|
|
3337
|
+
isCogLayer?: boolean;
|
|
3222
3338
|
/** Name of the service. */
|
|
3223
3339
|
name: string;
|
|
3224
3340
|
/** Human friendly name of the service. */
|
|
@@ -3236,6 +3352,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
|
|
|
3236
3352
|
*
|
|
3237
3353
|
*/
|
|
3238
3354
|
owner?: string;
|
|
3355
|
+
/** Copyright text. */
|
|
3356
|
+
copyrightText?: string;
|
|
3239
3357
|
}
|
|
3240
3358
|
/**
|
|
3241
3359
|
* Print operation print map and map elements to png files.
|
|
@@ -3395,8 +3513,6 @@ export interface ProxyServiceConfigurationDc {
|
|
|
3395
3513
|
sourceUrl: string;
|
|
3396
3514
|
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3397
3515
|
layers: string[];
|
|
3398
|
-
/** Copyright text. */
|
|
3399
|
-
copyrightText?: string;
|
|
3400
3516
|
/** Name of the service. */
|
|
3401
3517
|
name: string;
|
|
3402
3518
|
/** Human friendly name of the service. */
|
|
@@ -3414,6 +3530,8 @@ export interface ProxyServiceConfigurationDc {
|
|
|
3414
3530
|
*
|
|
3415
3531
|
*/
|
|
3416
3532
|
owner?: string;
|
|
3533
|
+
/** Copyright text. */
|
|
3534
|
+
copyrightText?: string;
|
|
3417
3535
|
}
|
|
3418
3536
|
/**
|
|
3419
3537
|
* Service info for a Proxy service.
|
|
@@ -3425,10 +3543,10 @@ export interface ProxyServiceInfoDc {
|
|
|
3425
3543
|
sourceUrl: string;
|
|
3426
3544
|
/** Names of layers to include in proxy layer (can be numbers). */
|
|
3427
3545
|
layers: string[];
|
|
3428
|
-
/** Copyright text. */
|
|
3429
|
-
copyrightText?: string;
|
|
3430
3546
|
/** Layer legend. */
|
|
3431
3547
|
legend?: ProxyLayerLegendDc;
|
|
3548
|
+
/** Copyright text. */
|
|
3549
|
+
copyrightText?: string;
|
|
3432
3550
|
/** The type of the resource. */
|
|
3433
3551
|
type: string;
|
|
3434
3552
|
/** The category of the service. */
|
|
@@ -3542,8 +3660,6 @@ export interface RemoteTileServiceConfigurationDc {
|
|
|
3542
3660
|
* Will be inserted into the UrlFormat {0}.
|
|
3543
3661
|
*/
|
|
3544
3662
|
subDomains?: string[];
|
|
3545
|
-
/** Copyright text. */
|
|
3546
|
-
copyrightText?: string;
|
|
3547
3663
|
/** Allows the client to receive tiles directly from the source server. */
|
|
3548
3664
|
allowDirectAccess?: boolean;
|
|
3549
3665
|
/** @format int32 */
|
|
@@ -3565,6 +3681,8 @@ export interface RemoteTileServiceConfigurationDc {
|
|
|
3565
3681
|
*
|
|
3566
3682
|
*/
|
|
3567
3683
|
owner?: string;
|
|
3684
|
+
/** Copyright text. */
|
|
3685
|
+
copyrightText?: string;
|
|
3568
3686
|
}
|
|
3569
3687
|
export interface RemoteTileServiceInfo {
|
|
3570
3688
|
/** Description of a service in the Spatial Processor. */
|
|
@@ -3590,10 +3708,10 @@ export interface RemoteTileServiceInfoDc {
|
|
|
3590
3708
|
sourceUrlMask?: string;
|
|
3591
3709
|
/** SourceBatch servers, what can be placed at source url mask, instead {s}. */
|
|
3592
3710
|
sourceServers?: string[];
|
|
3593
|
-
/** Copyright text. */
|
|
3594
|
-
copyrightText?: string;
|
|
3595
3711
|
/** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
|
|
3596
3712
|
tileInfo: TileInfoDc;
|
|
3713
|
+
/** Copyright text. */
|
|
3714
|
+
copyrightText?: string;
|
|
3597
3715
|
/** The type of the resource. */
|
|
3598
3716
|
type: string;
|
|
3599
3717
|
/** The category of the service. */
|
|
@@ -3710,17 +3828,17 @@ export interface ResourceInfoDc {
|
|
|
3710
3828
|
}
|
|
3711
3829
|
/**
|
|
3712
3830
|
* The `ResourceType` represents resource manager supports types.
|
|
3713
|
-
|
|
3831
|
+
|
|
3714
3832
|
Unknown
|
|
3715
|
-
|
|
3833
|
+
|
|
3716
3834
|
table
|
|
3717
|
-
|
|
3835
|
+
|
|
3718
3836
|
layer
|
|
3719
|
-
|
|
3837
|
+
|
|
3720
3838
|
project
|
|
3721
|
-
|
|
3839
|
+
|
|
3722
3840
|
file
|
|
3723
|
-
|
|
3841
|
+
|
|
3724
3842
|
feature
|
|
3725
3843
|
*/
|
|
3726
3844
|
export declare enum ResourceType {
|
|
@@ -3798,6 +3916,16 @@ export interface RoutingProviderInfoDc {
|
|
|
3798
3916
|
type?: string;
|
|
3799
3917
|
/** Routing profile (e.g. car, walking, bicycle etc.) */
|
|
3800
3918
|
profile?: string;
|
|
3919
|
+
/**
|
|
3920
|
+
* Timeout in seconds.
|
|
3921
|
+
* @format int32
|
|
3922
|
+
*/
|
|
3923
|
+
timeout?: number;
|
|
3924
|
+
/**
|
|
3925
|
+
* Max points in single batch.
|
|
3926
|
+
* @format int32
|
|
3927
|
+
*/
|
|
3928
|
+
maxPointsInBatch?: number;
|
|
3801
3929
|
}
|
|
3802
3930
|
/**
|
|
3803
3931
|
* ScaleBar element data contract.
|
|
@@ -3861,21 +3989,21 @@ export interface ServerInfoDc {
|
|
|
3861
3989
|
}
|
|
3862
3990
|
/**
|
|
3863
3991
|
* Status of the server task.
|
|
3864
|
-
|
|
3992
|
+
|
|
3865
3993
|
None
|
|
3866
|
-
|
|
3994
|
+
|
|
3867
3995
|
Scheduled
|
|
3868
|
-
|
|
3996
|
+
|
|
3869
3997
|
Planning
|
|
3870
|
-
|
|
3998
|
+
|
|
3871
3999
|
Executing
|
|
3872
|
-
|
|
4000
|
+
|
|
3873
4001
|
Completed
|
|
3874
|
-
|
|
4002
|
+
|
|
3875
4003
|
Failed
|
|
3876
|
-
|
|
4004
|
+
|
|
3877
4005
|
Canceled
|
|
3878
|
-
|
|
4006
|
+
|
|
3879
4007
|
Timeout
|
|
3880
4008
|
*/
|
|
3881
4009
|
export declare enum ServerTaskStatus {
|
|
@@ -3909,6 +4037,8 @@ export interface ServiceConfigurationBaseDc {
|
|
|
3909
4037
|
*
|
|
3910
4038
|
*/
|
|
3911
4039
|
owner?: string;
|
|
4040
|
+
/** Copyright text. */
|
|
4041
|
+
copyrightText?: string;
|
|
3912
4042
|
}
|
|
3913
4043
|
/**
|
|
3914
4044
|
* Description of a service in the Spatial Processor.
|
|
@@ -4263,6 +4393,8 @@ export interface SharedProjectConfigurationDc {
|
|
|
4263
4393
|
*
|
|
4264
4394
|
*/
|
|
4265
4395
|
owner?: string;
|
|
4396
|
+
/** Copyright text. */
|
|
4397
|
+
copyrightText?: string;
|
|
4266
4398
|
}
|
|
4267
4399
|
/**
|
|
4268
4400
|
* The `SharedProjectInfoDc` describes shared project info data contract.
|
|
@@ -4452,39 +4584,58 @@ export interface StaticTaskDataStorageDc {
|
|
|
4452
4584
|
type?: string;
|
|
4453
4585
|
}
|
|
4454
4586
|
/**
|
|
4455
|
-
*
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4587
|
+
* Statistics result.
|
|
4588
|
+
*/
|
|
4589
|
+
export interface StatisticsDc {
|
|
4590
|
+
/** Statistics result. */
|
|
4591
|
+
statisticsResult: StatisticsResultObject[];
|
|
4592
|
+
}
|
|
4593
|
+
/**
|
|
4594
|
+
* Statistics result.
|
|
4595
|
+
*/
|
|
4596
|
+
export interface StatisticsResultObject {
|
|
4597
|
+
/**
|
|
4598
|
+
*
|
|
4599
|
+
*
|
|
4600
|
+
* None
|
|
4601
|
+
*
|
|
4602
|
+
* Array
|
|
4603
|
+
*
|
|
4604
|
+
* Min
|
|
4605
|
+
*
|
|
4606
|
+
* Max
|
|
4607
|
+
*
|
|
4608
|
+
* Avg
|
|
4609
|
+
*
|
|
4610
|
+
* Sum
|
|
4611
|
+
*
|
|
4612
|
+
* Extent
|
|
4613
|
+
*
|
|
4614
|
+
* Count
|
|
4615
|
+
*
|
|
4616
|
+
* First
|
|
4617
|
+
*
|
|
4618
|
+
* Last
|
|
4619
|
+
*
|
|
4620
|
+
* Median
|
|
4621
|
+
*
|
|
4622
|
+
* Mod
|
|
4623
|
+
*
|
|
4624
|
+
* StdDeviation
|
|
4625
|
+
*
|
|
4626
|
+
* SumOfProduct
|
|
4627
|
+
*
|
|
4628
|
+
* OnlyValue
|
|
4629
|
+
*
|
|
4630
|
+
* WeightedAvg
|
|
4631
|
+
*
|
|
4632
|
+
* DensityIndicators
|
|
4633
|
+
*
|
|
4634
|
+
* DividedSum
|
|
4635
|
+
*/
|
|
4636
|
+
type?: AggregationFunction;
|
|
4637
|
+
/** Value. */
|
|
4638
|
+
value?: any;
|
|
4488
4639
|
}
|
|
4489
4640
|
/**
|
|
4490
4641
|
* The result of a server task step execution.
|
|
@@ -4514,11 +4665,11 @@ export interface StepResultDc {
|
|
|
4514
4665
|
}
|
|
4515
4666
|
/**
|
|
4516
4667
|
* The `StringSubType` provides information about string attribute subtype.
|
|
4517
|
-
|
|
4668
|
+
|
|
4518
4669
|
None
|
|
4519
|
-
|
|
4670
|
+
|
|
4520
4671
|
Image
|
|
4521
|
-
|
|
4672
|
+
|
|
4522
4673
|
PkkCode
|
|
4523
4674
|
*/
|
|
4524
4675
|
export declare enum StringSubType {
|
|
@@ -4605,6 +4756,8 @@ export interface StyledLayerServiceConfigurationDc {
|
|
|
4605
4756
|
*
|
|
4606
4757
|
*/
|
|
4607
4758
|
owner?: string;
|
|
4759
|
+
/** Copyright text. */
|
|
4760
|
+
copyrightText?: string;
|
|
4608
4761
|
}
|
|
4609
4762
|
/**
|
|
4610
4763
|
* Feature symbol.
|
|
@@ -5020,6 +5173,8 @@ export interface TileInfoDc {
|
|
|
5020
5173
|
export interface TileServiceInfoDc {
|
|
5021
5174
|
/** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
|
|
5022
5175
|
tileInfo: TileInfoDc;
|
|
5176
|
+
/** Copyright text. */
|
|
5177
|
+
copyrightText?: string;
|
|
5023
5178
|
/** The type of the resource. */
|
|
5024
5179
|
type: string;
|
|
5025
5180
|
/** The category of the service. */
|
|
@@ -5217,6 +5372,8 @@ export interface UploadRasterTaskParametersDc {
|
|
|
5217
5372
|
maxZoomLevel: number;
|
|
5218
5373
|
/** Get geometry from bbox or polygonize. */
|
|
5219
5374
|
polygonize?: boolean;
|
|
5375
|
+
/** Import as COG. */
|
|
5376
|
+
useCog?: boolean;
|
|
5220
5377
|
type?: string;
|
|
5221
5378
|
}
|
|
5222
5379
|
/**
|
|
@@ -5497,6 +5654,20 @@ export interface MoreSymbolsParams {
|
|
|
5497
5654
|
/** Request justification. */
|
|
5498
5655
|
Justification?: string;
|
|
5499
5656
|
}
|
|
5657
|
+
export interface FeedbackPayload {
|
|
5658
|
+
/** Attachments. */
|
|
5659
|
+
Attachments?: File[];
|
|
5660
|
+
}
|
|
5661
|
+
export interface FeedbackParams {
|
|
5662
|
+
/** Name. */
|
|
5663
|
+
Name?: string;
|
|
5664
|
+
/** Phone number. */
|
|
5665
|
+
Phone?: string;
|
|
5666
|
+
/** Email address. */
|
|
5667
|
+
Email?: string;
|
|
5668
|
+
/** Message text. */
|
|
5669
|
+
Message?: string;
|
|
5670
|
+
}
|
|
5500
5671
|
export interface GeocodeParams {
|
|
5501
5672
|
/** Input address. */
|
|
5502
5673
|
address?: string;
|
|
@@ -5543,26 +5714,10 @@ export interface GetDataSchemaParams {
|
|
|
5543
5714
|
export interface GetExcelDataSchemaParams {
|
|
5544
5715
|
/** Id of the excel file in the temporary static storage. */
|
|
5545
5716
|
fileId?: string;
|
|
5546
|
-
/**
|
|
5547
|
-
* Attribute name row number.
|
|
5548
|
-
* @format int32
|
|
5549
|
-
*/
|
|
5550
|
-
attributeNameRowNumber?: number;
|
|
5551
|
-
/** Coord source fields. */
|
|
5552
|
-
coordSourceFields?: string[];
|
|
5553
|
-
/**
|
|
5554
|
-
* Alias row number.
|
|
5555
|
-
* @format int32
|
|
5556
|
-
*/
|
|
5557
|
-
aliasRowNumber?: number;
|
|
5558
5717
|
}
|
|
5559
5718
|
export interface GetCsvDataSchemaParams {
|
|
5560
5719
|
/** Id of the csv file in the temporary static storage. */
|
|
5561
5720
|
fileId?: string;
|
|
5562
|
-
/** If set true - second row will be read as alias row. */
|
|
5563
|
-
containsAliasRow?: boolean;
|
|
5564
|
-
/** Coord source fields. */
|
|
5565
|
-
coordSourceFields?: string[];
|
|
5566
5721
|
}
|
|
5567
5722
|
export interface GetKmlDataSchemaParams {
|
|
5568
5723
|
/** Id of the kml file in the temporary static storage. */
|
|
@@ -5932,6 +6087,8 @@ export interface ClassifyParams {
|
|
|
5932
6087
|
/**
|
|
5933
6088
|
* Classification method.
|
|
5934
6089
|
*
|
|
6090
|
+
* none
|
|
6091
|
+
*
|
|
5935
6092
|
* naturalBreaks
|
|
5936
6093
|
*
|
|
5937
6094
|
* equalInterval
|
|
@@ -5981,6 +6138,18 @@ export interface AggregateAttributeParams {
|
|
|
5981
6138
|
*
|
|
5982
6139
|
* Count
|
|
5983
6140
|
*
|
|
6141
|
+
* First
|
|
6142
|
+
*
|
|
6143
|
+
* Last
|
|
6144
|
+
*
|
|
6145
|
+
* Median
|
|
6146
|
+
*
|
|
6147
|
+
* Mod
|
|
6148
|
+
*
|
|
6149
|
+
* StdDeviation
|
|
6150
|
+
*
|
|
6151
|
+
* SumOfProduct
|
|
6152
|
+
*
|
|
5984
6153
|
* OnlyValue
|
|
5985
6154
|
*
|
|
5986
6155
|
* WeightedAvg
|
|
@@ -6138,14 +6307,14 @@ export interface GetProjectsListParams {
|
|
|
6138
6307
|
/** A list of `ProjectInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
|
|
6139
6308
|
orderByFields?: string[];
|
|
6140
6309
|
/** All available permissions list. */
|
|
6141
|
-
acl?:
|
|
6310
|
+
acl?: string;
|
|
6142
6311
|
}
|
|
6143
6312
|
/**
|
|
6144
6313
|
* Project extended configuration data contract.
|
|
6145
6314
|
*/
|
|
6146
6315
|
export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
6147
6316
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
6148
|
-
export interface
|
|
6317
|
+
export interface DeleteResourcesParams3 {
|
|
6149
6318
|
/** Resource names. */
|
|
6150
6319
|
names?: string[];
|
|
6151
6320
|
}
|
|
@@ -6327,41 +6496,19 @@ export interface DeleteFileParams {
|
|
|
6327
6496
|
/** File id to delete. */
|
|
6328
6497
|
fileid?: string;
|
|
6329
6498
|
}
|
|
6330
|
-
export interface
|
|
6499
|
+
export interface StatisticsDbParams {
|
|
6331
6500
|
/** Layer name. */
|
|
6332
|
-
|
|
6501
|
+
name?: string;
|
|
6333
6502
|
/** Attribute name. */
|
|
6334
6503
|
attribute?: string;
|
|
6335
6504
|
/** Condition. */
|
|
6336
6505
|
condition?: string;
|
|
6337
|
-
/**
|
|
6338
|
-
|
|
6339
|
-
*
|
|
6340
|
-
* min
|
|
6341
|
-
*
|
|
6342
|
-
* max
|
|
6343
|
-
*
|
|
6344
|
-
* avg
|
|
6345
|
-
*
|
|
6346
|
-
* med
|
|
6347
|
-
*
|
|
6348
|
-
* mod
|
|
6349
|
-
*
|
|
6350
|
-
* sum
|
|
6351
|
-
*
|
|
6352
|
-
* sumOfProduct
|
|
6353
|
-
*
|
|
6354
|
-
* count
|
|
6355
|
-
*
|
|
6356
|
-
* firstLast
|
|
6357
|
-
*
|
|
6358
|
-
* standardDeviation
|
|
6359
|
-
*/
|
|
6360
|
-
type?: StatisticsType;
|
|
6506
|
+
/** Type of required statistic function. */
|
|
6507
|
+
types?: AggregationFunction[];
|
|
6361
6508
|
}
|
|
6362
|
-
export interface
|
|
6509
|
+
export interface ClassifyParams6 {
|
|
6363
6510
|
/** Layer name. */
|
|
6364
|
-
|
|
6511
|
+
name?: string;
|
|
6365
6512
|
/** Attribute name. */
|
|
6366
6513
|
attribute?: string;
|
|
6367
6514
|
/** Layer condition. */
|
|
@@ -6379,6 +6526,8 @@ export interface ClassifyParams4 {
|
|
|
6379
6526
|
/**
|
|
6380
6527
|
* Classification method.
|
|
6381
6528
|
*
|
|
6529
|
+
* none
|
|
6530
|
+
*
|
|
6382
6531
|
* naturalBreaks
|
|
6383
6532
|
*
|
|
6384
6533
|
* equalInterval
|
|
@@ -6386,6 +6535,14 @@ export interface ClassifyParams4 {
|
|
|
6386
6535
|
* quantile
|
|
6387
6536
|
*/
|
|
6388
6537
|
type?: ClassificationType;
|
|
6538
|
+
/**
|
|
6539
|
+
* Type of given attribute.
|
|
6540
|
+
*
|
|
6541
|
+
* decimal
|
|
6542
|
+
*
|
|
6543
|
+
* dateTime
|
|
6544
|
+
*/
|
|
6545
|
+
attributeType?: ClassifyAttributeType;
|
|
6389
6546
|
}
|
|
6390
6547
|
/**
|
|
6391
6548
|
* Feature layer rendering style.
|
|
@@ -6395,6 +6552,14 @@ export declare type UpdateStylePayload = StyleDc;
|
|
|
6395
6552
|
* Feature layer rendering style.
|
|
6396
6553
|
*/
|
|
6397
6554
|
export declare type CreateStylePayload = StyleDc;
|
|
6555
|
+
export interface AddFontPayload {
|
|
6556
|
+
/** @format binary */
|
|
6557
|
+
formFile?: File;
|
|
6558
|
+
}
|
|
6559
|
+
export interface RemoveFontParams {
|
|
6560
|
+
/** Font name. */
|
|
6561
|
+
fontName?: string;
|
|
6562
|
+
}
|
|
6398
6563
|
export interface GetTableListParams {
|
|
6399
6564
|
/** Table name filter (support % and _ wildcards). */
|
|
6400
6565
|
filter?: string;
|
|
@@ -6427,14 +6592,14 @@ export interface GetTableListParams {
|
|
|
6427
6592
|
/** Filters layers by geometry types. */
|
|
6428
6593
|
geometryFilter?: string[];
|
|
6429
6594
|
/** All available permissions list. */
|
|
6430
|
-
acl?:
|
|
6595
|
+
acl?: string;
|
|
6431
6596
|
}
|
|
6432
6597
|
/**
|
|
6433
6598
|
* Table description with columns and access control list.
|
|
6434
6599
|
*/
|
|
6435
6600
|
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
6436
6601
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6437
|
-
export interface
|
|
6602
|
+
export interface DeleteResourcesParams9 {
|
|
6438
6603
|
/** Resource names. */
|
|
6439
6604
|
names?: string[];
|
|
6440
6605
|
}
|