@evergis/api 4.0.20 → 4.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Api.d.ts +1 -6
- package/dist/__generated__/AccountService.d.ts +13 -1
- package/dist/__generated__/LayersService.d.ts +2 -98
- package/dist/__generated__/StatisticService.d.ts +4 -40
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +60 -677
- package/dist/api.cjs.development.js +134 -1181
- 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 +128 -1184
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -4
- package/dist/services/index.d.ts +0 -5
- package/package.json +3 -3
- package/dist/__generated__/CamerasService.d.ts +0 -105
- package/dist/__generated__/ExternalProvidersService.d.ts +0 -140
- package/dist/__generated__/IceRouterService.d.ts +0 -33
- package/dist/__generated__/PrintService.d.ts +0 -81
- package/dist/__generated__/StyleService.d.ts +0 -81
- package/dist/services/Cameras.d.ts +0 -3
- package/dist/services/External.d.ts +0 -7
- package/dist/services/IceRouter.d.ts +0 -3
- package/dist/services/Print.d.ts +0 -3
- package/dist/services/Styles.d.ts +0 -3
|
@@ -254,51 +254,6 @@ export declare type ArcGisDataSourceDc = DataSourceDc & {
|
|
|
254
254
|
export declare type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
|
|
255
255
|
serviceUrl?: string | null;
|
|
256
256
|
};
|
|
257
|
-
/**
|
|
258
|
-
* Archive calendar response.
|
|
259
|
-
*/
|
|
260
|
-
export interface ArchiveCalendarDc {
|
|
261
|
-
/** Each value represents the percentage of time covered by archive records within the corresponding day. */
|
|
262
|
-
calendar?: ArchiveCalendarItemDc[];
|
|
263
|
-
/** Check if request success. */
|
|
264
|
-
success?: boolean;
|
|
265
|
-
}
|
|
266
|
-
/**
|
|
267
|
-
* Archive calendar item.
|
|
268
|
-
*/
|
|
269
|
-
export interface ArchiveCalendarItemDc {
|
|
270
|
-
/** Date. */
|
|
271
|
-
date?: string;
|
|
272
|
-
/**
|
|
273
|
-
* Daily coverage values.
|
|
274
|
-
* @format int32
|
|
275
|
-
*/
|
|
276
|
-
coverage?: number;
|
|
277
|
-
}
|
|
278
|
-
/**
|
|
279
|
-
* Archive timeline request.
|
|
280
|
-
*/
|
|
281
|
-
export interface ArchiveTimelineDc {
|
|
282
|
-
/** A list of daily coverage values. */
|
|
283
|
-
timeline?: ArchiveTimelineItemDc[];
|
|
284
|
-
/** Check if request success. */
|
|
285
|
-
success?: boolean;
|
|
286
|
-
}
|
|
287
|
-
/**
|
|
288
|
-
* Represents the percentage of time covered by archive records within the corresponding day.
|
|
289
|
-
*/
|
|
290
|
-
export interface ArchiveTimelineItemDc {
|
|
291
|
-
/**
|
|
292
|
-
* Corresponding day.
|
|
293
|
-
* @format date-time
|
|
294
|
-
*/
|
|
295
|
-
startTime?: string;
|
|
296
|
-
/**
|
|
297
|
-
* Percentage of time covered by archive record.
|
|
298
|
-
* @format int32
|
|
299
|
-
*/
|
|
300
|
-
duration?: number;
|
|
301
|
-
}
|
|
302
257
|
/**
|
|
303
258
|
* Simple not filled arrow.
|
|
304
259
|
*/
|
|
@@ -480,7 +435,7 @@ export interface AttributeDefinitionDc {
|
|
|
480
435
|
* Spatial reference identifier type in geometry type column.
|
|
481
436
|
* @format int32
|
|
482
437
|
*/
|
|
483
|
-
|
|
438
|
+
srId?: number;
|
|
484
439
|
/** Information about an attribute icon. */
|
|
485
440
|
icon?: AttributeIconDc;
|
|
486
441
|
}
|
|
@@ -740,9 +695,6 @@ export interface AvailiableValuesDc {
|
|
|
740
695
|
/** Dictionary of availiable parameters values. */
|
|
741
696
|
values?: Record<string, ValueDc[] | null>;
|
|
742
697
|
}
|
|
743
|
-
export interface Base64String {
|
|
744
|
-
value?: string;
|
|
745
|
-
}
|
|
746
698
|
/**
|
|
747
699
|
* Provides resources with their acl.
|
|
748
700
|
*/
|
|
@@ -804,26 +756,6 @@ export interface BulkOperationResultDc {
|
|
|
804
756
|
/** Sets true. */
|
|
805
757
|
isSuccess?: boolean;
|
|
806
758
|
}
|
|
807
|
-
/**
|
|
808
|
-
* Camera item.
|
|
809
|
-
*/
|
|
810
|
-
export interface CameraDc {
|
|
811
|
-
/** Id of the camera. */
|
|
812
|
-
id?: string;
|
|
813
|
-
/** Name of the camera. */
|
|
814
|
-
name?: string;
|
|
815
|
-
/** Checks if camera online. */
|
|
816
|
-
online?: boolean;
|
|
817
|
-
}
|
|
818
|
-
/**
|
|
819
|
-
* Cameras list response.
|
|
820
|
-
*/
|
|
821
|
-
export interface CameraListDc {
|
|
822
|
-
/** The retrieved items in the list. */
|
|
823
|
-
items?: CameraDc[];
|
|
824
|
-
/** Check if request success. */
|
|
825
|
-
success?: boolean;
|
|
826
|
-
}
|
|
827
759
|
/**
|
|
828
760
|
* Resource catalog item.
|
|
829
761
|
*/
|
|
@@ -987,20 +919,17 @@ equalInterval
|
|
|
987
919
|
|
|
988
920
|
quantile
|
|
989
921
|
|
|
990
|
-
|
|
922
|
+
unique
|
|
991
923
|
|
|
992
924
|
step
|
|
993
|
-
|
|
994
|
-
unique
|
|
995
925
|
*/
|
|
996
926
|
export declare enum ClassificationType {
|
|
997
927
|
None = "none",
|
|
998
928
|
NaturalBreaks = "naturalBreaks",
|
|
999
929
|
EqualInterval = "equalInterval",
|
|
1000
930
|
Quantile = "quantile",
|
|
1001
|
-
|
|
1002
|
-
Step = "step"
|
|
1003
|
-
Unique = "unique"
|
|
931
|
+
Unique = "unique",
|
|
932
|
+
Step = "step"
|
|
1004
933
|
}
|
|
1005
934
|
/**
|
|
1006
935
|
*
|
|
@@ -1102,7 +1031,7 @@ export interface ColumnDescriptionDc {
|
|
|
1102
1031
|
* Spatial reference identifier type in geometry type column.
|
|
1103
1032
|
* @format int32
|
|
1104
1033
|
*/
|
|
1105
|
-
|
|
1034
|
+
srId?: number;
|
|
1106
1035
|
/** Ensures that the data in the column is unique across all rows in a table. */
|
|
1107
1036
|
isUnique?: boolean;
|
|
1108
1037
|
/** If sets true, index will be configured. */
|
|
@@ -2320,7 +2249,7 @@ export interface GeometryDc {
|
|
|
2320
2249
|
* Spatial reference id.
|
|
2321
2250
|
* @format int32
|
|
2322
2251
|
*/
|
|
2323
|
-
|
|
2252
|
+
srId?: number;
|
|
2324
2253
|
}
|
|
2325
2254
|
/**
|
|
2326
2255
|
*
|
|
@@ -2392,7 +2321,7 @@ export interface GetBulkFeaturesParametersDc {
|
|
|
2392
2321
|
* Spatial reference of returned features.
|
|
2393
2322
|
* @format int32
|
|
2394
2323
|
*/
|
|
2395
|
-
|
|
2324
|
+
srId?: number;
|
|
2396
2325
|
/** If set to true, the geometry will not be returned for features. */
|
|
2397
2326
|
withGeom?: boolean;
|
|
2398
2327
|
/**
|
|
@@ -2458,11 +2387,9 @@ export interface GetClassifyDc {
|
|
|
2458
2387
|
*
|
|
2459
2388
|
* quantile
|
|
2460
2389
|
*
|
|
2461
|
-
*
|
|
2390
|
+
* unique
|
|
2462
2391
|
*
|
|
2463
2392
|
* step
|
|
2464
|
-
*
|
|
2465
|
-
* unique
|
|
2466
2393
|
*/
|
|
2467
2394
|
type?: ClassificationType;
|
|
2468
2395
|
/**
|
|
@@ -2506,7 +2433,7 @@ export interface GetFeaturesParametersDc {
|
|
|
2506
2433
|
* Spatial reference of returned features.
|
|
2507
2434
|
* @format int32
|
|
2508
2435
|
*/
|
|
2509
|
-
|
|
2436
|
+
srId?: number;
|
|
2510
2437
|
/** If set to true, the geometry will not be returned for features. */
|
|
2511
2438
|
withGeom?: boolean;
|
|
2512
2439
|
/**
|
|
@@ -2569,13 +2496,6 @@ export interface GetSumOfProductDc {
|
|
|
2569
2496
|
/** Filter query geometries. */
|
|
2570
2497
|
geometries?: QueryGeometryDc[];
|
|
2571
2498
|
}
|
|
2572
|
-
/**
|
|
2573
|
-
* Map element data contract.
|
|
2574
|
-
*/
|
|
2575
|
-
export declare type GridElementDc = ModelElementDc & {
|
|
2576
|
-
color?: string;
|
|
2577
|
-
gridThickness?: number;
|
|
2578
|
-
};
|
|
2579
2499
|
/**
|
|
2580
2500
|
* Resource group.
|
|
2581
2501
|
|
|
@@ -2625,75 +2545,6 @@ export declare type HexGridSymbolDc = SymbolDc & {
|
|
|
2625
2545
|
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
|
|
2626
2546
|
aggregations?: Record<string, AggregationFunction>;
|
|
2627
2547
|
};
|
|
2628
|
-
export declare type IAsyncEnumerableLivePreviewDc = object;
|
|
2629
|
-
/**
|
|
2630
|
-
* Attributes provides by router to describe route.
|
|
2631
|
-
*/
|
|
2632
|
-
export interface IceRouteAttributesDc {
|
|
2633
|
-
/** Gets route builder mode. */
|
|
2634
|
-
type?: string;
|
|
2635
|
-
/** Gets route title. */
|
|
2636
|
-
title?: string;
|
|
2637
|
-
/**
|
|
2638
|
-
* Gets route build time.
|
|
2639
|
-
* @format double
|
|
2640
|
-
*/
|
|
2641
|
-
time?: number;
|
|
2642
|
-
/**
|
|
2643
|
-
* Gets route distance.
|
|
2644
|
-
* @format double
|
|
2645
|
-
*/
|
|
2646
|
-
distance?: number;
|
|
2647
|
-
}
|
|
2648
|
-
/**
|
|
2649
|
-
* Provides description of result of ice router.
|
|
2650
|
-
*/
|
|
2651
|
-
export interface IceRouteDc {
|
|
2652
|
-
/** Attributes provides by router to describe route. */
|
|
2653
|
-
attributes?: IceRouteAttributesDc;
|
|
2654
|
-
/** Route geometry. */
|
|
2655
|
-
geometry?: IceRouteGeometryDc;
|
|
2656
|
-
/** Gets false if route build process failed. */
|
|
2657
|
-
isSuccess?: boolean;
|
|
2658
|
-
/** Gets error message if route build process failed. */
|
|
2659
|
-
error?: string;
|
|
2660
|
-
}
|
|
2661
|
-
/**
|
|
2662
|
-
* Route geometry.
|
|
2663
|
-
*/
|
|
2664
|
-
export interface IceRouteGeometryDc {
|
|
2665
|
-
/** Gets type of geometry. */
|
|
2666
|
-
type?: string;
|
|
2667
|
-
/** Gets polyline coordinates. */
|
|
2668
|
-
coordinates?: number[][];
|
|
2669
|
-
}
|
|
2670
|
-
/**
|
|
2671
|
-
* Data contract to start ice routing task.
|
|
2672
|
-
*/
|
|
2673
|
-
export interface IceRouteTaskDc {
|
|
2674
|
-
/** Gets or sets start point. */
|
|
2675
|
-
start: number[];
|
|
2676
|
-
/** Gets or sets end point. */
|
|
2677
|
-
end: number[];
|
|
2678
|
-
}
|
|
2679
|
-
/**
|
|
2680
|
-
* Provides result of ice route builder.
|
|
2681
|
-
*/
|
|
2682
|
-
export interface IceRouterResultDc {
|
|
2683
|
-
/** Gets status the task is done. */
|
|
2684
|
-
isDone?: boolean;
|
|
2685
|
-
/**
|
|
2686
|
-
* Gets list of the result tasks. Provides with status "completed".
|
|
2687
|
-
*
|
|
2688
|
-
*
|
|
2689
|
-
* Routes array contains three routes of types.
|
|
2690
|
-
* 1. Economic.
|
|
2691
|
-
* 2. Optimum.
|
|
2692
|
-
* 3. Fast.
|
|
2693
|
-
*
|
|
2694
|
-
*/
|
|
2695
|
-
routes?: IceRouteDc[];
|
|
2696
|
-
}
|
|
2697
2548
|
/**
|
|
2698
2549
|
* A single image point symbol with an outer stroke.
|
|
2699
2550
|
*/
|
|
@@ -2818,47 +2669,12 @@ export interface LayerDefinitionDc {
|
|
|
2818
2669
|
* The spatial reference of the layer.
|
|
2819
2670
|
* @format int32
|
|
2820
2671
|
*/
|
|
2821
|
-
|
|
2672
|
+
srId?: number;
|
|
2822
2673
|
/** Sets false if the layer is readonly. */
|
|
2823
2674
|
isEditable?: boolean;
|
|
2824
2675
|
/** The description of the attributes of the layer. */
|
|
2825
2676
|
attributes: Record<string, AttributeDefinitionDc>;
|
|
2826
2677
|
}
|
|
2827
|
-
/**
|
|
2828
|
-
* Map element data contract.
|
|
2829
|
-
*/
|
|
2830
|
-
export declare type LayerMapElementDc = ModelElementDc & {
|
|
2831
|
-
layers?: LayerModelDc[] | null;
|
|
2832
|
-
mapCenter?: PositionDc;
|
|
2833
|
-
paperWidth?: number;
|
|
2834
|
-
paperHeight?: number;
|
|
2835
|
-
spatialReference?: number;
|
|
2836
|
-
resolution?: number;
|
|
2837
|
-
gridElement?: GridElementDc;
|
|
2838
|
-
scaleBar?: ScaleBarElementDc;
|
|
2839
|
-
};
|
|
2840
|
-
/**
|
|
2841
|
-
* Layer model data contract.
|
|
2842
|
-
*/
|
|
2843
|
-
export interface LayerModelDc {
|
|
2844
|
-
/** Gets or sets name of layer service. */
|
|
2845
|
-
layerServiceName?: string;
|
|
2846
|
-
/**
|
|
2847
|
-
* Gets or sets layer opacity.
|
|
2848
|
-
* @format float
|
|
2849
|
-
*/
|
|
2850
|
-
layerOpacity?: number;
|
|
2851
|
-
/** Condition to apply to the layer to filter the features. */
|
|
2852
|
-
conditions?: string[];
|
|
2853
|
-
/** Query parameters. */
|
|
2854
|
-
parameters?: Record<string, any>;
|
|
2855
|
-
/** Filter query geometries. */
|
|
2856
|
-
geometries?: QueryGeometryDc[];
|
|
2857
|
-
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
2858
|
-
styleId?: string;
|
|
2859
|
-
/** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
|
|
2860
|
-
dataFilterId?: string;
|
|
2861
|
-
}
|
|
2862
2678
|
/**
|
|
2863
2679
|
* Layer reference configuration.
|
|
2864
2680
|
*/
|
|
@@ -2874,15 +2690,6 @@ export interface LayerReferenceConfigurationDc {
|
|
|
2874
2690
|
/** Id of the reference. */
|
|
2875
2691
|
referenceId?: string;
|
|
2876
2692
|
}
|
|
2877
|
-
/**
|
|
2878
|
-
* Layer template model data contract.
|
|
2879
|
-
*/
|
|
2880
|
-
export declare type LayerTemplateModelDc = TemplateModelDc & {
|
|
2881
|
-
type?: string | null;
|
|
2882
|
-
map?: LayerMapElementDc;
|
|
2883
|
-
legendEnabled?: boolean;
|
|
2884
|
-
legendLayers?: LegendLayerDc[] | null;
|
|
2885
|
-
};
|
|
2886
2693
|
/**
|
|
2887
2694
|
* Information about layer update.
|
|
2888
2695
|
Includes ids of modified features and their bbox.
|
|
@@ -2899,48 +2706,6 @@ export interface LayerUpdateInfoDc {
|
|
|
2899
2706
|
/** Array of deleted ids. */
|
|
2900
2707
|
deletedIds?: ObjectId[];
|
|
2901
2708
|
}
|
|
2902
|
-
/**
|
|
2903
|
-
* Legend layer attribute condition data contract.
|
|
2904
|
-
*/
|
|
2905
|
-
export interface LegendLayerAttributeConditionDc {
|
|
2906
|
-
symbol?: Base64String;
|
|
2907
|
-
/** Legend layer attribute condition string. */
|
|
2908
|
-
value?: string;
|
|
2909
|
-
}
|
|
2910
|
-
/**
|
|
2911
|
-
* Legend layer attribute data contract.
|
|
2912
|
-
*/
|
|
2913
|
-
export interface LegendLayerAttributeDc {
|
|
2914
|
-
/** Legend layer attribute name. */
|
|
2915
|
-
name?: string;
|
|
2916
|
-
/** Legend layer attribute conditions. */
|
|
2917
|
-
conditions?: LegendLayerAttributeConditionDc[];
|
|
2918
|
-
/** Query parameters. */
|
|
2919
|
-
parameters?: Record<string, any>;
|
|
2920
|
-
/** Filter query geometries. */
|
|
2921
|
-
geometries?: QueryGeometryDc[];
|
|
2922
|
-
}
|
|
2923
|
-
/**
|
|
2924
|
-
* Legend layer data contract.
|
|
2925
|
-
*/
|
|
2926
|
-
export interface LegendLayerDc {
|
|
2927
|
-
symbol?: Base64String;
|
|
2928
|
-
/** Legend layer name. */
|
|
2929
|
-
name?: string;
|
|
2930
|
-
/** Layer service name. */
|
|
2931
|
-
layerServiceName?: string;
|
|
2932
|
-
/** Legend layer attributes. */
|
|
2933
|
-
attributes?: LegendLayerAttributeDc[];
|
|
2934
|
-
}
|
|
2935
|
-
/**
|
|
2936
|
-
* Legend template model data contract.
|
|
2937
|
-
*/
|
|
2938
|
-
export declare type LegendTemplateModelDc = TemplateModelDc & {
|
|
2939
|
-
layers?: LayerModelDc[] | null;
|
|
2940
|
-
legendEnabled?: boolean;
|
|
2941
|
-
legendLayers?: LegendLayerDc[] | null;
|
|
2942
|
-
type?: string | null;
|
|
2943
|
-
};
|
|
2944
2709
|
/**
|
|
2945
2710
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
2946
2711
|
|
|
@@ -3191,13 +2956,6 @@ export declare type Model3DSymbolDc = SymbolDc & {
|
|
|
3191
2956
|
size?: ParameterDcDouble;
|
|
3192
2957
|
angle?: ParameterDcDouble;
|
|
3193
2958
|
};
|
|
3194
|
-
/**
|
|
3195
|
-
* Base template model data contract.
|
|
3196
|
-
*/
|
|
3197
|
-
export interface ModelElementDc {
|
|
3198
|
-
/** Check what this model element enabled. */
|
|
3199
|
-
enabled?: boolean;
|
|
3200
|
-
}
|
|
3201
2959
|
/**
|
|
3202
2960
|
* MosRu data source.
|
|
3203
2961
|
*/
|
|
@@ -3236,6 +2994,24 @@ export declare type MultipointSymbolDc = SymbolDc & {
|
|
|
3236
2994
|
type?: string | null;
|
|
3237
2995
|
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
|
|
3238
2996
|
};
|
|
2997
|
+
/**
|
|
2998
|
+
* Information about a namespace .
|
|
2999
|
+
*/
|
|
3000
|
+
export interface NamespaceInfoDc {
|
|
3001
|
+
/** Name of the namespace. */
|
|
3002
|
+
name?: string;
|
|
3003
|
+
/** Owner of the namespace. */
|
|
3004
|
+
owner?: string;
|
|
3005
|
+
/** Db schema for the namespace. */
|
|
3006
|
+
schema?: string;
|
|
3007
|
+
/**
|
|
3008
|
+
* Date when the namespace was created.
|
|
3009
|
+
* @format date-time
|
|
3010
|
+
*/
|
|
3011
|
+
created?: string;
|
|
3012
|
+
/** Access control list. */
|
|
3013
|
+
acl?: Record<string, Permissions>;
|
|
3014
|
+
}
|
|
3239
3015
|
/**
|
|
3240
3016
|
* RasterMetaDc.
|
|
3241
3017
|
*/
|
|
@@ -3740,7 +3516,7 @@ export interface ProjectConfigurationDc {
|
|
|
3740
3516
|
* Map spatial reference code.
|
|
3741
3517
|
* @format int32
|
|
3742
3518
|
*/
|
|
3743
|
-
|
|
3519
|
+
srId?: number;
|
|
3744
3520
|
/** Base map service name. */
|
|
3745
3521
|
baseMapName?: string;
|
|
3746
3522
|
/** Client data storage. Expecting not used by server. */
|
|
@@ -4010,20 +3786,6 @@ export declare type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc
|
|
|
4010
3786
|
fileName?: string | null;
|
|
4011
3787
|
methodName?: string | null;
|
|
4012
3788
|
};
|
|
4013
|
-
/**
|
|
4014
|
-
* Stream quality.
|
|
4015
|
-
|
|
4016
|
-
Low
|
|
4017
|
-
|
|
4018
|
-
Medium
|
|
4019
|
-
|
|
4020
|
-
High
|
|
4021
|
-
*/
|
|
4022
|
-
export declare enum Quality {
|
|
4023
|
-
Low = "Low",
|
|
4024
|
-
Medium = "Medium",
|
|
4025
|
-
High = "High"
|
|
4026
|
-
}
|
|
4027
3789
|
/**
|
|
4028
3790
|
* Query geometry data contract.
|
|
4029
3791
|
*/
|
|
@@ -4054,7 +3816,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
|
|
|
4054
3816
|
ds?: string | null;
|
|
4055
3817
|
eql?: string | null;
|
|
4056
3818
|
eqlParameters?: Record<string, QueryLayerServiceEqlParameterConfigurationDc>;
|
|
4057
|
-
|
|
3819
|
+
srId?: number | null;
|
|
4058
3820
|
geometryType?: AttributeType;
|
|
4059
3821
|
attributesConfiguration?: EqlAttributesConfigurationDc;
|
|
4060
3822
|
style?: StyleDc;
|
|
@@ -4372,8 +4134,11 @@ export interface RasterMetaDc {
|
|
|
4372
4134
|
rasterSizeInBytes?: number;
|
|
4373
4135
|
/** BoundingBox. */
|
|
4374
4136
|
boundingBox?: number[];
|
|
4375
|
-
/**
|
|
4376
|
-
|
|
4137
|
+
/**
|
|
4138
|
+
* Spatial reference.
|
|
4139
|
+
* @format int32
|
|
4140
|
+
*/
|
|
4141
|
+
srId?: number;
|
|
4377
4142
|
/** Bands. */
|
|
4378
4143
|
bands?: RasterBandMetaDc[];
|
|
4379
4144
|
}
|
|
@@ -4850,15 +4615,6 @@ export declare type RoundSquareEndingDc = LineEndingBaseDc & {
|
|
|
4850
4615
|
hOffset?: ParameterDcDouble;
|
|
4851
4616
|
cornersRadius?: number;
|
|
4852
4617
|
};
|
|
4853
|
-
/**
|
|
4854
|
-
* Route feature dc.
|
|
4855
|
-
*/
|
|
4856
|
-
export interface RouteFeatureDc {
|
|
4857
|
-
/** Source features links. */
|
|
4858
|
-
sourceFeatures: RouteSourceFeatureDc[];
|
|
4859
|
-
/** Route feature attributes.. */
|
|
4860
|
-
attributes: Record<string, any>;
|
|
4861
|
-
}
|
|
4862
4618
|
/**
|
|
4863
4619
|
* Route service configuration Dc.
|
|
4864
4620
|
*/
|
|
@@ -4870,18 +4626,6 @@ export declare type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
4870
4626
|
featuresLimit?: number;
|
|
4871
4627
|
extentOffset?: number;
|
|
4872
4628
|
};
|
|
4873
|
-
/**
|
|
4874
|
-
* Describe source feature for route.
|
|
4875
|
-
*/
|
|
4876
|
-
export interface RouteSourceFeatureDc {
|
|
4877
|
-
/** Source layer name. */
|
|
4878
|
-
sourceLayer: string;
|
|
4879
|
-
/**
|
|
4880
|
-
* Source featureId.
|
|
4881
|
-
* @format int64
|
|
4882
|
-
*/
|
|
4883
|
-
featureId: number;
|
|
4884
|
-
}
|
|
4885
4629
|
/**
|
|
4886
4630
|
* RouteTableConfigurationDc.
|
|
4887
4631
|
*/
|
|
@@ -4908,16 +4652,6 @@ export declare type S3DataSourceInfoDc = DataSourceInfoDc & {
|
|
|
4908
4652
|
accessKey?: string | null;
|
|
4909
4653
|
region?: string | null;
|
|
4910
4654
|
};
|
|
4911
|
-
/**
|
|
4912
|
-
* ScaleBar element data contract.
|
|
4913
|
-
*/
|
|
4914
|
-
export declare type ScaleBarElementDc = ModelElementDc & {
|
|
4915
|
-
width?: number;
|
|
4916
|
-
height?: number;
|
|
4917
|
-
thickness?: number;
|
|
4918
|
-
font?: string | null;
|
|
4919
|
-
fontSize?: number;
|
|
4920
|
-
};
|
|
4921
4655
|
/**
|
|
4922
4656
|
* SearchResults.
|
|
4923
4657
|
*/
|
|
@@ -5161,27 +4895,6 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
|
|
|
5161
4895
|
outlinedOnSingleSide?: boolean;
|
|
5162
4896
|
quadrantSegments?: number;
|
|
5163
4897
|
};
|
|
5164
|
-
/**
|
|
5165
|
-
* Simple symbol.
|
|
5166
|
-
*/
|
|
5167
|
-
export interface SimpleSymbolDc {
|
|
5168
|
-
/** Icon name. */
|
|
5169
|
-
id?: string;
|
|
5170
|
-
/** Symbol filter condition. */
|
|
5171
|
-
condition?: string;
|
|
5172
|
-
/** Offset of the image center from the geographic point. */
|
|
5173
|
-
offset?: ParameterDcDouble[];
|
|
5174
|
-
/**
|
|
5175
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
5176
|
-
* as an object with a "type" parameter specified.
|
|
5177
|
-
*/
|
|
5178
|
-
angle?: ParameterDcDouble;
|
|
5179
|
-
/**
|
|
5180
|
-
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
5181
|
-
* as an object with a "type" parameter specified.
|
|
5182
|
-
*/
|
|
5183
|
-
size?: ParameterDcDouble;
|
|
5184
|
-
}
|
|
5185
4898
|
/**
|
|
5186
4899
|
* Simplify configuration information.
|
|
5187
4900
|
*/
|
|
@@ -5390,13 +5103,6 @@ export declare type StrokeBrushDc = BrushDc & {
|
|
|
5390
5103
|
color?: ParameterDcColor;
|
|
5391
5104
|
width?: ParameterDcDouble;
|
|
5392
5105
|
};
|
|
5393
|
-
/**
|
|
5394
|
-
* Server response for the creation of a style in style service.
|
|
5395
|
-
*/
|
|
5396
|
-
export interface StyleCreationResponseDc {
|
|
5397
|
-
/** Id of the style. */
|
|
5398
|
-
id?: string;
|
|
5399
|
-
}
|
|
5400
5106
|
/**
|
|
5401
5107
|
* Feature layer rendering style.
|
|
5402
5108
|
*/
|
|
@@ -6086,49 +5792,6 @@ export interface TaskSpResourceUpdateDto {
|
|
|
6086
5792
|
/** User ui configuration. */
|
|
6087
5793
|
uiConfiguration?: any;
|
|
6088
5794
|
}
|
|
6089
|
-
/**
|
|
6090
|
-
* Localization contains fields that should be localized on printing template.
|
|
6091
|
-
*/
|
|
6092
|
-
export interface TemplateLocalizationDc {
|
|
6093
|
-
/** Flag of english localization. */
|
|
6094
|
-
isEng?: boolean;
|
|
6095
|
-
}
|
|
6096
|
-
/**
|
|
6097
|
-
* Base template model data contract.
|
|
6098
|
-
*/
|
|
6099
|
-
export interface TemplateModelDc {
|
|
6100
|
-
/** Type of the data storage. */
|
|
6101
|
-
type?: string;
|
|
6102
|
-
/** The name of the result file. */
|
|
6103
|
-
fileName?: string;
|
|
6104
|
-
/** File Format. */
|
|
6105
|
-
fileFormat?: string;
|
|
6106
|
-
/** Gets or sets template name. */
|
|
6107
|
-
templateName?: string;
|
|
6108
|
-
/** Gets or sets template title. */
|
|
6109
|
-
title?: string;
|
|
6110
|
-
/**
|
|
6111
|
-
* Gets or sets paper width.
|
|
6112
|
-
* @format int32
|
|
6113
|
-
*/
|
|
6114
|
-
paperWidth?: number;
|
|
6115
|
-
/**
|
|
6116
|
-
* Gets or sets paper height.
|
|
6117
|
-
* @format int32
|
|
6118
|
-
*/
|
|
6119
|
-
paperHeight?: number;
|
|
6120
|
-
/**
|
|
6121
|
-
* Gets or sets dpi.
|
|
6122
|
-
* @format int32
|
|
6123
|
-
*/
|
|
6124
|
-
dpi?: number;
|
|
6125
|
-
/** Gets or sets paper margin. */
|
|
6126
|
-
margin?: number[];
|
|
6127
|
-
/** Localization contains fields that should be localized on printing template. */
|
|
6128
|
-
localization?: TemplateLocalizationDc;
|
|
6129
|
-
/** Checks if title enabled. */
|
|
6130
|
-
titleEnabled?: boolean;
|
|
6131
|
-
}
|
|
6132
5795
|
/**
|
|
6133
5796
|
* Test connection data contract.
|
|
6134
5797
|
*/
|
|
@@ -6326,7 +5989,7 @@ export interface TileInfoDc {
|
|
|
6326
5989
|
* Spatial reference.
|
|
6327
5990
|
* @format int32
|
|
6328
5991
|
*/
|
|
6329
|
-
|
|
5992
|
+
srId?: number;
|
|
6330
5993
|
/** List of levels of detail that define the tiling schema. */
|
|
6331
5994
|
lods: LodInfo[];
|
|
6332
5995
|
}
|
|
@@ -6853,6 +6516,8 @@ export interface IsEmailExistsParams {
|
|
|
6853
6516
|
export interface CreateUserParams {
|
|
6854
6517
|
/** Is need to send confirm email message. */
|
|
6855
6518
|
sendConfirmEmail?: boolean;
|
|
6519
|
+
/** Create user namespace if true. */
|
|
6520
|
+
createNamespace?: boolean;
|
|
6856
6521
|
}
|
|
6857
6522
|
export interface SetEmailPayload {
|
|
6858
6523
|
email: string;
|
|
@@ -6891,6 +6556,16 @@ export interface ResetPasswordCallbackPayload {
|
|
|
6891
6556
|
code: string;
|
|
6892
6557
|
newPassword: string;
|
|
6893
6558
|
}
|
|
6559
|
+
export interface CreateNamespaceParams {
|
|
6560
|
+
/** Name of the user to create the namespace for. This user will be the owner of the namespace. */
|
|
6561
|
+
userName: string;
|
|
6562
|
+
/**
|
|
6563
|
+
* If false, the name of the created namespace will be exactly the name of the user. If set to true,
|
|
6564
|
+
* the server will try to use the username as the namespace name, but if the name is occupied, it will
|
|
6565
|
+
* find a close free name for the namespace, create it and return it as the result of the operation.
|
|
6566
|
+
*/
|
|
6567
|
+
adjustName?: boolean;
|
|
6568
|
+
}
|
|
6894
6569
|
export interface AuthenticateParams {
|
|
6895
6570
|
/**
|
|
6896
6571
|
* Client id.
|
|
@@ -6936,102 +6611,6 @@ export interface UploadPreview1Payload {
|
|
|
6936
6611
|
/** @format binary */
|
|
6937
6612
|
file?: File;
|
|
6938
6613
|
}
|
|
6939
|
-
export interface GetCamerasParams {
|
|
6940
|
-
/**
|
|
6941
|
-
* Page objects limit.
|
|
6942
|
-
* @format int32
|
|
6943
|
-
*/
|
|
6944
|
-
limit?: number;
|
|
6945
|
-
/**
|
|
6946
|
-
* Objects skip.
|
|
6947
|
-
* @format int32
|
|
6948
|
-
*/
|
|
6949
|
-
offset?: number;
|
|
6950
|
-
}
|
|
6951
|
-
export interface GetArchiveFeedParams {
|
|
6952
|
-
/**
|
|
6953
|
-
* Timestamp from which to start the archive playback.
|
|
6954
|
-
* UNIX time (both seconds and milliseconds are supported).
|
|
6955
|
-
* @format date-time
|
|
6956
|
-
*/
|
|
6957
|
-
startTime?: string;
|
|
6958
|
-
/**
|
|
6959
|
-
* Timestamp at which to stop the playback.
|
|
6960
|
-
* UNIX time (both seconds and milliseconds are supported).
|
|
6961
|
-
* @format date-time
|
|
6962
|
-
*/
|
|
6963
|
-
endTime?: string;
|
|
6964
|
-
/**
|
|
6965
|
-
* Playback speed factor.
|
|
6966
|
-
* Possible values: 1 2 4 8 16 32 64.
|
|
6967
|
-
* @format int32
|
|
6968
|
-
*/
|
|
6969
|
-
speed?: number;
|
|
6970
|
-
/** Camera id. */
|
|
6971
|
-
cameraId: string;
|
|
6972
|
-
}
|
|
6973
|
-
export interface GetArchiveTimelineParams {
|
|
6974
|
-
/**
|
|
6975
|
-
* Start of the timeframe UNIX time (seconds).
|
|
6976
|
-
* @format date-time
|
|
6977
|
-
*/
|
|
6978
|
-
startTime?: string;
|
|
6979
|
-
/**
|
|
6980
|
-
* End of the timeframe UNIX time (seconds).
|
|
6981
|
-
* @format date-time
|
|
6982
|
-
*/
|
|
6983
|
-
endTime?: string;
|
|
6984
|
-
/** Camera id. */
|
|
6985
|
-
cameraId: string;
|
|
6986
|
-
}
|
|
6987
|
-
export interface GetArchiveCalendarParams {
|
|
6988
|
-
/** Start of the timeframe UNIX time (seconds). */
|
|
6989
|
-
startTime?: string;
|
|
6990
|
-
/** End of the timeframe UNIX time (seconds). */
|
|
6991
|
-
endTime?: string;
|
|
6992
|
-
/** Timezone. */
|
|
6993
|
-
tz?: string;
|
|
6994
|
-
/** Camera id. */
|
|
6995
|
-
cameraId: string;
|
|
6996
|
-
}
|
|
6997
|
-
export interface GetArchiveSnapshotParams {
|
|
6998
|
-
/**
|
|
6999
|
-
* Timestamp of the moment at which to take the snapshot.
|
|
7000
|
-
* UNIX timestamp (in seconds).
|
|
7001
|
-
* @format date-time
|
|
7002
|
-
*/
|
|
7003
|
-
time?: string;
|
|
7004
|
-
/** Camera id. */
|
|
7005
|
-
cameraId: string;
|
|
7006
|
-
}
|
|
7007
|
-
export interface GetLiveFeedParams {
|
|
7008
|
-
/**
|
|
7009
|
-
* Duration.
|
|
7010
|
-
* @format int64
|
|
7011
|
-
*/
|
|
7012
|
-
duration?: number;
|
|
7013
|
-
/** Camera id. */
|
|
7014
|
-
cameraId: string;
|
|
7015
|
-
}
|
|
7016
|
-
export interface GetLivePreviewStreamParams {
|
|
7017
|
-
/**
|
|
7018
|
-
* Frame per second.
|
|
7019
|
-
* @format float
|
|
7020
|
-
*/
|
|
7021
|
-
fps?: number;
|
|
7022
|
-
/**
|
|
7023
|
-
* Quality.
|
|
7024
|
-
*
|
|
7025
|
-
* Low
|
|
7026
|
-
*
|
|
7027
|
-
* Medium
|
|
7028
|
-
*
|
|
7029
|
-
* High
|
|
7030
|
-
*/
|
|
7031
|
-
quality?: Quality;
|
|
7032
|
-
/** Id of the camera. */
|
|
7033
|
-
cameraId: string;
|
|
7034
|
-
}
|
|
7035
6614
|
export interface GetTagsParams {
|
|
7036
6615
|
/** Text filter. */
|
|
7037
6616
|
filter?: string;
|
|
@@ -7234,7 +6813,7 @@ export interface GeocodeParams {
|
|
|
7234
6813
|
* Spatial reference.
|
|
7235
6814
|
* @format int32
|
|
7236
6815
|
*/
|
|
7237
|
-
|
|
6816
|
+
srId?: number;
|
|
7238
6817
|
/** Bounging box from left top corner to right bottom corner. */
|
|
7239
6818
|
bboxPoints?: number[];
|
|
7240
6819
|
/** Geocode provider name to use. */
|
|
@@ -7247,7 +6826,7 @@ export interface GeocodeByPointParams {
|
|
|
7247
6826
|
* Input point and bounging box sr.
|
|
7248
6827
|
* @format int32
|
|
7249
6828
|
*/
|
|
7250
|
-
|
|
6829
|
+
srId?: number;
|
|
7251
6830
|
/** Bounging box from left top corner to right bottom corner. */
|
|
7252
6831
|
bboxPoints?: number[];
|
|
7253
6832
|
/** Geocode provider name to use. */
|
|
@@ -7260,7 +6839,7 @@ export interface SuggestParams {
|
|
|
7260
6839
|
* Bounging box spatial reference.
|
|
7261
6840
|
* @format int32
|
|
7262
6841
|
*/
|
|
7263
|
-
|
|
6842
|
+
srId?: number;
|
|
7264
6843
|
/** Bounging box from left top corner to right bottom corner. */
|
|
7265
6844
|
bboxPoints?: number[];
|
|
7266
6845
|
/** Geocode provider name to use. */
|
|
@@ -7305,7 +6884,7 @@ export interface GetExternalPbfFeaturesParams {
|
|
|
7305
6884
|
* Output geometry srid.
|
|
7306
6885
|
* @format int32
|
|
7307
6886
|
*/
|
|
7308
|
-
|
|
6887
|
+
srId?: number;
|
|
7309
6888
|
/**
|
|
7310
6889
|
* Features count have to skip.
|
|
7311
6890
|
* @format int32
|
|
@@ -7344,7 +6923,7 @@ export interface GetBulkExtentsParams {
|
|
|
7344
6923
|
* Spatial reference to return the extent in.
|
|
7345
6924
|
* @format int32
|
|
7346
6925
|
*/
|
|
7347
|
-
|
|
6926
|
+
srId?: number;
|
|
7348
6927
|
}
|
|
7349
6928
|
export declare type GetFilteredFeaturesCountPayload = GetBulkFilteredFeaturesCountDc[];
|
|
7350
6929
|
export interface GetLayersListParams {
|
|
@@ -7431,7 +7010,7 @@ export interface GetFeatures1Params {
|
|
|
7431
7010
|
* Spatial reference of returned features.
|
|
7432
7011
|
* @format int32
|
|
7433
7012
|
*/
|
|
7434
|
-
|
|
7013
|
+
srId?: number;
|
|
7435
7014
|
/**
|
|
7436
7015
|
* Comma separated list of attributes by which to sort the resulting feature list.
|
|
7437
7016
|
* If the attribute name is preceded with the "-" sign, sorting by this attribute will be
|
|
@@ -7460,42 +7039,12 @@ export interface GetByIdParams {
|
|
|
7460
7039
|
* Spatial reference of returned features.
|
|
7461
7040
|
* @format int32
|
|
7462
7041
|
*/
|
|
7463
|
-
|
|
7042
|
+
srId?: number;
|
|
7464
7043
|
/** Full name of the layer. */
|
|
7465
7044
|
name: string;
|
|
7466
7045
|
/** Feature id. */
|
|
7467
7046
|
id: string;
|
|
7468
7047
|
}
|
|
7469
|
-
/**
|
|
7470
|
-
* Geometry data contract.
|
|
7471
|
-
*/
|
|
7472
|
-
export declare type UnitePayload = EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
7473
|
-
export interface UniteParams {
|
|
7474
|
-
/**
|
|
7475
|
-
* Spatial reference of result feature.
|
|
7476
|
-
* @format int32
|
|
7477
|
-
*/
|
|
7478
|
-
wkid?: number;
|
|
7479
|
-
/** Name of the layer. */
|
|
7480
|
-
name: string;
|
|
7481
|
-
/** Id of the feature of geometry to union with. */
|
|
7482
|
-
id: string;
|
|
7483
|
-
}
|
|
7484
|
-
/**
|
|
7485
|
-
* Geometry data contract.
|
|
7486
|
-
*/
|
|
7487
|
-
export declare type SubtractPayload = EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
7488
|
-
export interface SubtractParams {
|
|
7489
|
-
/**
|
|
7490
|
-
* Spatial reference id of result features.
|
|
7491
|
-
* @format int32
|
|
7492
|
-
*/
|
|
7493
|
-
wkid?: number;
|
|
7494
|
-
/** Name of the layer. */
|
|
7495
|
-
name: string;
|
|
7496
|
-
/** Id of the feature. */
|
|
7497
|
-
id: string;
|
|
7498
|
-
}
|
|
7499
7048
|
export interface GetTilesLayerImageParams {
|
|
7500
7049
|
/** Tile sets to render. */
|
|
7501
7050
|
ids?: number[];
|
|
@@ -7574,32 +7123,6 @@ export interface GetTilesLayerImageWithFormatAndDpiParams {
|
|
|
7574
7123
|
/** Specifies the format of the returned tile. */
|
|
7575
7124
|
format: string;
|
|
7576
7125
|
}
|
|
7577
|
-
export interface GetLayerImageParams {
|
|
7578
|
-
/** Extent to render. */
|
|
7579
|
-
extent?: number[];
|
|
7580
|
-
/** Image size. */
|
|
7581
|
-
size?: number[];
|
|
7582
|
-
/** Specifies the format of the returned tile. */
|
|
7583
|
-
format?: string;
|
|
7584
|
-
/**
|
|
7585
|
-
* Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
|
|
7586
|
-
* @format int32
|
|
7587
|
-
*/
|
|
7588
|
-
extentSr?: number;
|
|
7589
|
-
/** Condition to apply to the layer to filter the features. */
|
|
7590
|
-
condition?: string;
|
|
7591
|
-
/**
|
|
7592
|
-
* Opacity to apply to the layer image.
|
|
7593
|
-
* @format float
|
|
7594
|
-
*/
|
|
7595
|
-
opacity?: number;
|
|
7596
|
-
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
7597
|
-
styleId?: string;
|
|
7598
|
-
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
7599
|
-
dataFilterId?: string;
|
|
7600
|
-
/** Full name of the layer. */
|
|
7601
|
-
name: string;
|
|
7602
|
-
}
|
|
7603
7126
|
export interface GetLayerExtentParams {
|
|
7604
7127
|
/** If set, only the features that satisfy the condition will be considered when calculating the extent. */
|
|
7605
7128
|
condition?: string;
|
|
@@ -7607,7 +7130,7 @@ export interface GetLayerExtentParams {
|
|
|
7607
7130
|
* Spatial reference to return the extent in.
|
|
7608
7131
|
* @format int32
|
|
7609
7132
|
*/
|
|
7610
|
-
|
|
7133
|
+
srId?: number;
|
|
7611
7134
|
/** Full name of the layer. */
|
|
7612
7135
|
name: string;
|
|
7613
7136
|
}
|
|
@@ -7647,11 +7170,9 @@ export interface ClassifyParams {
|
|
|
7647
7170
|
*
|
|
7648
7171
|
* quantile
|
|
7649
7172
|
*
|
|
7650
|
-
*
|
|
7173
|
+
* unique
|
|
7651
7174
|
*
|
|
7652
7175
|
* step
|
|
7653
|
-
*
|
|
7654
|
-
* unique
|
|
7655
7176
|
*/
|
|
7656
7177
|
type?: ClassificationType;
|
|
7657
7178
|
/** The name of the layer. */
|
|
@@ -7748,7 +7269,7 @@ export interface ValidateExpressionParams {
|
|
|
7748
7269
|
/** Layer name. */
|
|
7749
7270
|
layerName: string;
|
|
7750
7271
|
}
|
|
7751
|
-
export interface
|
|
7272
|
+
export interface GetRasterMetaParams3 {
|
|
7752
7273
|
/**
|
|
7753
7274
|
* Min value for build histogram.
|
|
7754
7275
|
* @format double
|
|
@@ -7777,24 +7298,6 @@ export interface UnsubscribeOperationParams {
|
|
|
7777
7298
|
}
|
|
7778
7299
|
export declare type SubscribeListOperationPayload = string[];
|
|
7779
7300
|
export declare type UnsubscribeListOperationPayload = string[];
|
|
7780
|
-
/**
|
|
7781
|
-
* Base template model data contract.
|
|
7782
|
-
*/
|
|
7783
|
-
export declare type PrintPayload = LayerTemplateModelDc | LegendTemplateModelDc;
|
|
7784
|
-
/**
|
|
7785
|
-
* Base template model data contract.
|
|
7786
|
-
*/
|
|
7787
|
-
export declare type PrintToHtmlPayload = LayerTemplateModelDc | LegendTemplateModelDc;
|
|
7788
|
-
export interface UploadTemplatePayload {
|
|
7789
|
-
/** @format binary */
|
|
7790
|
-
template?: File;
|
|
7791
|
-
}
|
|
7792
|
-
export interface UploadTemplateParams {
|
|
7793
|
-
/** Template name. */
|
|
7794
|
-
name?: string;
|
|
7795
|
-
/** Rewrite if exits. */
|
|
7796
|
-
rewrite?: boolean;
|
|
7797
|
-
}
|
|
7798
7301
|
export interface GetProjectsListParams {
|
|
7799
7302
|
/** Project name filter (support % and _ wildcards). */
|
|
7800
7303
|
filter?: string;
|
|
@@ -7841,7 +7344,7 @@ export interface GetProjectEnvelopeParams {
|
|
|
7841
7344
|
* Spatial reference to return the extent in.
|
|
7842
7345
|
* @format int32
|
|
7843
7346
|
*/
|
|
7844
|
-
|
|
7347
|
+
srId?: number;
|
|
7845
7348
|
/** The name of the project. */
|
|
7846
7349
|
name: string;
|
|
7847
7350
|
}
|
|
@@ -7972,122 +7475,6 @@ export interface RemovePolicyParams {
|
|
|
7972
7475
|
/** Use role the policy is applied to. */
|
|
7973
7476
|
role?: string;
|
|
7974
7477
|
}
|
|
7975
|
-
export interface StatisticsDbParams {
|
|
7976
|
-
/** Layer name. */
|
|
7977
|
-
name: string;
|
|
7978
|
-
/** Attribute name. */
|
|
7979
|
-
attribute: string;
|
|
7980
|
-
/** Condition. */
|
|
7981
|
-
condition?: string;
|
|
7982
|
-
/**
|
|
7983
|
-
* Type of required statistic function.
|
|
7984
|
-
*
|
|
7985
|
-
* None
|
|
7986
|
-
*
|
|
7987
|
-
* Array
|
|
7988
|
-
*
|
|
7989
|
-
* Min
|
|
7990
|
-
*
|
|
7991
|
-
* Max
|
|
7992
|
-
*
|
|
7993
|
-
* Avg
|
|
7994
|
-
*
|
|
7995
|
-
* Sum
|
|
7996
|
-
*
|
|
7997
|
-
* Extent
|
|
7998
|
-
*
|
|
7999
|
-
* H3
|
|
8000
|
-
*
|
|
8001
|
-
* Count
|
|
8002
|
-
*
|
|
8003
|
-
* TotalCount
|
|
8004
|
-
*
|
|
8005
|
-
* DistinctCount
|
|
8006
|
-
*
|
|
8007
|
-
* First
|
|
8008
|
-
*
|
|
8009
|
-
* Last
|
|
8010
|
-
*
|
|
8011
|
-
* Median
|
|
8012
|
-
*
|
|
8013
|
-
* Mod
|
|
8014
|
-
*
|
|
8015
|
-
* StdDeviation
|
|
8016
|
-
*
|
|
8017
|
-
* SumOfProduct
|
|
8018
|
-
*
|
|
8019
|
-
* OnlyValue
|
|
8020
|
-
*
|
|
8021
|
-
* WeightedAvg
|
|
8022
|
-
*
|
|
8023
|
-
* DensityIndicators
|
|
8024
|
-
*
|
|
8025
|
-
* DividedSum
|
|
8026
|
-
*/
|
|
8027
|
-
types?: AggregationFunction[];
|
|
8028
|
-
}
|
|
8029
|
-
export interface ClassifyParams4 {
|
|
8030
|
-
/** Layer name. */
|
|
8031
|
-
name: string;
|
|
8032
|
-
/** Attribute name. */
|
|
8033
|
-
attribute: string;
|
|
8034
|
-
/** Layer condition. */
|
|
8035
|
-
condition?: string;
|
|
8036
|
-
/**
|
|
8037
|
-
* The number of classes.
|
|
8038
|
-
* @format int32
|
|
8039
|
-
*/
|
|
8040
|
-
classes?: number;
|
|
8041
|
-
/**
|
|
8042
|
-
* Sets required values precision.
|
|
8043
|
-
* @format int32
|
|
8044
|
-
*/
|
|
8045
|
-
precision?: number;
|
|
8046
|
-
/**
|
|
8047
|
-
* Classification method.
|
|
8048
|
-
*
|
|
8049
|
-
* none
|
|
8050
|
-
*
|
|
8051
|
-
* naturalBreaks
|
|
8052
|
-
*
|
|
8053
|
-
* equalInterval
|
|
8054
|
-
*
|
|
8055
|
-
* quantile
|
|
8056
|
-
*
|
|
8057
|
-
* distinct
|
|
8058
|
-
*
|
|
8059
|
-
* step
|
|
8060
|
-
*
|
|
8061
|
-
* unique
|
|
8062
|
-
*/
|
|
8063
|
-
type?: ClassificationType;
|
|
8064
|
-
/**
|
|
8065
|
-
* Type of given attribute.
|
|
8066
|
-
*
|
|
8067
|
-
* decimal
|
|
8068
|
-
*
|
|
8069
|
-
* dateTime
|
|
8070
|
-
*
|
|
8071
|
-
* text
|
|
8072
|
-
*/
|
|
8073
|
-
attributeType?: ClassifyAttributeType;
|
|
8074
|
-
}
|
|
8075
|
-
export interface SumOfProductParams {
|
|
8076
|
-
/** Layer name. */
|
|
8077
|
-
name: string;
|
|
8078
|
-
/** Attributes to aggregate. */
|
|
8079
|
-
attributes?: string[];
|
|
8080
|
-
/** Layer condition. */
|
|
8081
|
-
condition?: string;
|
|
8082
|
-
}
|
|
8083
|
-
export interface AddFontPayload {
|
|
8084
|
-
/** @format binary */
|
|
8085
|
-
formFile?: File;
|
|
8086
|
-
}
|
|
8087
|
-
export interface RemoveFontParams {
|
|
8088
|
-
/** Font name. */
|
|
8089
|
-
fontName?: string;
|
|
8090
|
-
}
|
|
8091
7478
|
export interface RemoveSymbolCategoryParams {
|
|
8092
7479
|
/** Remove symbols in category. */
|
|
8093
7480
|
cascade?: boolean;
|
|
@@ -8162,10 +7549,6 @@ export interface GetTableListParams {
|
|
|
8162
7549
|
/** All available permissions list. */
|
|
8163
7550
|
acl?: string;
|
|
8164
7551
|
}
|
|
8165
|
-
export interface DeleteResourcesParams5 {
|
|
8166
|
-
/** Resource names. */
|
|
8167
|
-
names?: string[];
|
|
8168
|
-
}
|
|
8169
7552
|
export interface GetTablesInfoParams {
|
|
8170
7553
|
/** Table names. */
|
|
8171
7554
|
tableNames?: string[];
|
|
@@ -8277,7 +7660,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8277
7660
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8278
7661
|
AcceptFormats?: string[];
|
|
8279
7662
|
}
|
|
8280
|
-
export interface
|
|
7663
|
+
export interface GetCapabilitiesParams10 {
|
|
8281
7664
|
/** Output format of service metadata. */
|
|
8282
7665
|
Format?: string;
|
|
8283
7666
|
/** Must be WMS. */
|