@evergis/api 3.0.143 → 3.0.144
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 +2 -0
- package/dist/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +12 -1
- package/dist/__generated__/NavigationService.d.ts +20 -0
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/SchedulerService.d.ts +23 -1
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/UniversalSearchService.d.ts +31 -0
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +340 -42
- package/dist/api.cjs.development.js +159 -22
- 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 +161 -24
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -18,7 +18,7 @@ export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
|
|
|
18
18
|
};
|
|
19
19
|
export declare type AggregatedClusterSymbolDc = SymbolDc & {
|
|
20
20
|
type?: string;
|
|
21
|
-
pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
21
|
+
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
22
22
|
gridSize?: number;
|
|
23
23
|
fixedCenter?: boolean;
|
|
24
24
|
aggregations?: Record<string, AggregationFunction>;
|
|
@@ -540,7 +540,7 @@ export declare enum AttributeType {
|
|
|
540
540
|
Boolean = "Boolean",
|
|
541
541
|
Point = "Point",
|
|
542
542
|
Polyline = "Polyline",
|
|
543
|
-
|
|
543
|
+
MultiPolygon = "Polygon",
|
|
544
544
|
Multipoint = "Multipoint",
|
|
545
545
|
H3Index = "H3Index"
|
|
546
546
|
}
|
|
@@ -561,6 +561,19 @@ export interface AttributesConfigurationDc {
|
|
|
561
561
|
/** Configurations of the related tables. */
|
|
562
562
|
tableReferences?: TableReferenceConfigurationDc[];
|
|
563
563
|
}
|
|
564
|
+
/**
|
|
565
|
+
* The symbol that draws a raster with classification.
|
|
566
|
+
*/
|
|
567
|
+
export declare type AutoClassificationRasterSymbolDc = RasterSymbolDc & {
|
|
568
|
+
type?: string;
|
|
569
|
+
band?: CalculatedParameterDc;
|
|
570
|
+
autoClassify?: ParameterDcBoolean;
|
|
571
|
+
ignoreEmptyValues?: ParameterDcBoolean;
|
|
572
|
+
startIndex?: CalculatedParameterDc;
|
|
573
|
+
endIndex?: CalculatedParameterDc;
|
|
574
|
+
startColor?: ParameterDcColor;
|
|
575
|
+
endColor?: ParameterDcColor;
|
|
576
|
+
};
|
|
564
577
|
/**
|
|
565
578
|
* Availability area builder operation considers the nearest availability zones around the input geometries and writes them
|
|
566
579
|
into the target storage.
|
|
@@ -690,6 +703,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
|
|
|
690
703
|
offset?: CalculatedParameterDc[];
|
|
691
704
|
angle?: CalculatedParameterDc;
|
|
692
705
|
};
|
|
706
|
+
/**
|
|
707
|
+
* The symbol that draws a raster with classification.
|
|
708
|
+
*/
|
|
709
|
+
export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
|
|
710
|
+
type?: string;
|
|
711
|
+
rasterClassifications?: RasterClassificationCfg[];
|
|
712
|
+
defaultColor?: ParameterDcColor;
|
|
713
|
+
band?: CalculatedParameterDc;
|
|
714
|
+
};
|
|
693
715
|
/**
|
|
694
716
|
* Describes classification methods.
|
|
695
717
|
|
|
@@ -745,7 +767,7 @@ export interface ClassifyResultObject {
|
|
|
745
767
|
export declare type ClusterSymbolDc = SymbolDc & {
|
|
746
768
|
type?: string;
|
|
747
769
|
labelSymbol?: PointLabelSymbolDc;
|
|
748
|
-
singleObjectSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
770
|
+
singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
749
771
|
fillColor?: ParameterDcColor;
|
|
750
772
|
strokeColor?: ParameterDcColor;
|
|
751
773
|
strokeWidth?: CalculatedParameterDc;
|
|
@@ -764,7 +786,7 @@ export declare type ClusterSymbolDc = SymbolDc & {
|
|
|
764
786
|
export interface ColumnDescriptionDc {
|
|
765
787
|
/** Column name. */
|
|
766
788
|
name: string;
|
|
767
|
-
/** Default value, if column is not nullable
|
|
789
|
+
/** Default value, if column is not nullable. */
|
|
768
790
|
defaultValue?: any;
|
|
769
791
|
/**
|
|
770
792
|
* Types of the attributes that are supported by the system.
|
|
@@ -974,7 +996,7 @@ export interface CompositeServiceInfoDc {
|
|
|
974
996
|
*/
|
|
975
997
|
export declare type CompositeSymbolDc = SymbolDc & {
|
|
976
998
|
type?: string;
|
|
977
|
-
childSymbols?: (CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
|
|
999
|
+
childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
|
|
978
1000
|
};
|
|
979
1001
|
/**
|
|
980
1002
|
* Get configuration information.
|
|
@@ -1807,7 +1829,7 @@ export interface FeatureSymbolDc {
|
|
|
1807
1829
|
/** @format int32 */
|
|
1808
1830
|
id: number;
|
|
1809
1831
|
/** Feature symbol. */
|
|
1810
|
-
definition?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
1832
|
+
definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
1811
1833
|
image?: string;
|
|
1812
1834
|
}
|
|
1813
1835
|
/**
|
|
@@ -2074,7 +2096,7 @@ export declare enum Group {
|
|
|
2074
2096
|
*/
|
|
2075
2097
|
export declare type H3GridSymbolDc = SymbolDc & {
|
|
2076
2098
|
type?: string;
|
|
2077
|
-
cellSize?:
|
|
2099
|
+
cellSize?: CalculatedParameterDc;
|
|
2078
2100
|
stroke?: DashedBrushDc | SolidStrokeBrushDc;
|
|
2079
2101
|
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
2080
2102
|
aggregations?: AggregationMappingDc[];
|
|
@@ -2101,6 +2123,7 @@ export declare type HexGridSymbolDc = SymbolDc & {
|
|
|
2101
2123
|
fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
|
|
2102
2124
|
aggregations?: Record<string, AggregationFunction>;
|
|
2103
2125
|
};
|
|
2126
|
+
export declare type IAsyncEnumerableRouteDataDc = object;
|
|
2104
2127
|
export interface IDatum {
|
|
2105
2128
|
/** @format double */
|
|
2106
2129
|
semimajor?: number;
|
|
@@ -2362,7 +2385,7 @@ export declare type LabelSymbolDc = SymbolDc & {
|
|
|
2362
2385
|
};
|
|
2363
2386
|
export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
|
|
2364
2387
|
type?: string;
|
|
2365
|
-
symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2388
|
+
symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2366
2389
|
};
|
|
2367
2390
|
/**
|
|
2368
2391
|
* Information about the layer attributes and their configuration.
|
|
@@ -2675,7 +2698,7 @@ export declare type MultiPointDc = GeometryDc & {
|
|
|
2675
2698
|
*/
|
|
2676
2699
|
export declare type MultipointSymbolDc = SymbolDc & {
|
|
2677
2700
|
type?: string;
|
|
2678
|
-
pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2701
|
+
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2679
2702
|
};
|
|
2680
2703
|
/**
|
|
2681
2704
|
* Information about a namespace .
|
|
@@ -2695,6 +2718,12 @@ export interface NamespaceInfoDc {
|
|
|
2695
2718
|
/** Access control list. */
|
|
2696
2719
|
acl?: Record<string, Permissions>;
|
|
2697
2720
|
}
|
|
2721
|
+
/**
|
|
2722
|
+
* RasterMetaDc.
|
|
2723
|
+
*/
|
|
2724
|
+
export declare type NetCdfMetaDc = RasterMetaDc & {
|
|
2725
|
+
dimExtraValues?: Record<string, string[]>;
|
|
2726
|
+
};
|
|
2698
2727
|
/**
|
|
2699
2728
|
* Id of any geographical or abstract object.
|
|
2700
2729
|
*/
|
|
@@ -2885,6 +2914,28 @@ export interface PagedListRoleInfoDc {
|
|
|
2885
2914
|
/** The retrieved items in the list. */
|
|
2886
2915
|
items?: RoleInfoDc[];
|
|
2887
2916
|
}
|
|
2917
|
+
/**
|
|
2918
|
+
* A list of items that is returned for filtered paged requests.
|
|
2919
|
+
*/
|
|
2920
|
+
export interface PagedListSearchResultDc {
|
|
2921
|
+
/**
|
|
2922
|
+
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2923
|
+
* @format int64
|
|
2924
|
+
*/
|
|
2925
|
+
totalCount?: number;
|
|
2926
|
+
/**
|
|
2927
|
+
* The first index of the item in the list that is returned in the Items parameter.
|
|
2928
|
+
* @format int32
|
|
2929
|
+
*/
|
|
2930
|
+
offset?: number;
|
|
2931
|
+
/**
|
|
2932
|
+
* Maximum number of the items that the Items parameter may contain.
|
|
2933
|
+
* @format int32
|
|
2934
|
+
*/
|
|
2935
|
+
limit?: number;
|
|
2936
|
+
/** The retrieved items in the list. */
|
|
2937
|
+
items?: SearchResultDc[];
|
|
2938
|
+
}
|
|
2888
2939
|
/**
|
|
2889
2940
|
* A list of items that is returned for filtered paged requests.
|
|
2890
2941
|
*/
|
|
@@ -3021,6 +3072,14 @@ export interface PagedListUserInfoDc {
|
|
|
3021
3072
|
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3022
3073
|
as an object with a "type" parameter specified.
|
|
3023
3074
|
*/
|
|
3075
|
+
export interface ParameterDcBoolean {
|
|
3076
|
+
/** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
|
|
3077
|
+
type?: string;
|
|
3078
|
+
}
|
|
3079
|
+
/**
|
|
3080
|
+
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3081
|
+
as an object with a "type" parameter specified.
|
|
3082
|
+
*/
|
|
3024
3083
|
export interface ParameterDcColor extends BrandedType<'ParameterDcColor'> {
|
|
3025
3084
|
/** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
|
|
3026
3085
|
type?: string;
|
|
@@ -3075,7 +3134,7 @@ export declare enum Permissions {
|
|
|
3075
3134
|
export declare type PipelineTaskParametersDc = TaskParametersDc & {
|
|
3076
3135
|
type?: string;
|
|
3077
3136
|
continueOnFail?: boolean;
|
|
3078
|
-
innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc)[];
|
|
3137
|
+
innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | SearchTaskParametersDc | UnionTaskParametersDc | UploadNetCdfTaskParametersDc | UploadRasterTaskParametersDc)[];
|
|
3079
3138
|
};
|
|
3080
3139
|
/**
|
|
3081
3140
|
* Spatial point geometry object representation.
|
|
@@ -3358,9 +3417,9 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3358
3417
|
maxResolution?: number;
|
|
3359
3418
|
layers?: string[];
|
|
3360
3419
|
styles?: Record<string, {
|
|
3361
|
-
point?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3362
|
-
polyline?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3363
|
-
polygon?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3420
|
+
point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3421
|
+
polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3422
|
+
polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3364
3423
|
}>;
|
|
3365
3424
|
};
|
|
3366
3425
|
/**
|
|
@@ -3467,12 +3526,141 @@ export interface ProxyServiceInfoDc {
|
|
|
3467
3526
|
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3468
3527
|
invisibleInCatalog?: boolean;
|
|
3469
3528
|
}
|
|
3529
|
+
/**
|
|
3530
|
+
* RasterBandMetaDc.
|
|
3531
|
+
*/
|
|
3532
|
+
export interface RasterBandMetaDc {
|
|
3533
|
+
/** BandType. */
|
|
3534
|
+
bandType?: string;
|
|
3535
|
+
/**
|
|
3536
|
+
* ColorMin.
|
|
3537
|
+
* @format double
|
|
3538
|
+
*/
|
|
3539
|
+
colorMin?: number;
|
|
3540
|
+
/**
|
|
3541
|
+
* ColorMax.
|
|
3542
|
+
* @format double
|
|
3543
|
+
*/
|
|
3544
|
+
colorMax?: number;
|
|
3545
|
+
/**
|
|
3546
|
+
* Statistic mean.
|
|
3547
|
+
* @format double
|
|
3548
|
+
*/
|
|
3549
|
+
mean?: number;
|
|
3550
|
+
/**
|
|
3551
|
+
* Statistic STDDEV.
|
|
3552
|
+
* @format double
|
|
3553
|
+
*/
|
|
3554
|
+
stddev?: number;
|
|
3555
|
+
/**
|
|
3556
|
+
* Data step size converted to range 0-255.
|
|
3557
|
+
* @format double
|
|
3558
|
+
*/
|
|
3559
|
+
dataSterSize?: number;
|
|
3560
|
+
/**
|
|
3561
|
+
* BucketCount.
|
|
3562
|
+
* @format int32
|
|
3563
|
+
*/
|
|
3564
|
+
bucketCount?: number;
|
|
3565
|
+
/**
|
|
3566
|
+
* HistValueMin.
|
|
3567
|
+
* @format double
|
|
3568
|
+
*/
|
|
3569
|
+
histValueMin?: number;
|
|
3570
|
+
/**
|
|
3571
|
+
* HistValueMax.
|
|
3572
|
+
* @format double
|
|
3573
|
+
*/
|
|
3574
|
+
histValueMax?: number;
|
|
3575
|
+
/** Histogram. */
|
|
3576
|
+
histogram?: number[];
|
|
3577
|
+
/** Data histogram. */
|
|
3578
|
+
dataHistogram?: Record<string, number | null>;
|
|
3579
|
+
}
|
|
3580
|
+
/**
|
|
3581
|
+
* Raster classification cfg.
|
|
3582
|
+
*/
|
|
3583
|
+
export interface RasterClassificationCfg {
|
|
3584
|
+
/**
|
|
3585
|
+
* Min value.
|
|
3586
|
+
* @format double
|
|
3587
|
+
*/
|
|
3588
|
+
minValue?: number;
|
|
3589
|
+
/**
|
|
3590
|
+
* Max value.
|
|
3591
|
+
* @format double
|
|
3592
|
+
*/
|
|
3593
|
+
maxValue?: number;
|
|
3594
|
+
/** Color. */
|
|
3595
|
+
color?: string;
|
|
3596
|
+
}
|
|
3597
|
+
/**
|
|
3598
|
+
* The result of a server task step execution.
|
|
3599
|
+
*/
|
|
3600
|
+
export declare type RasterCogCreatorStepResultDc = StepResultDc & {
|
|
3601
|
+
cogStepInProgress?: string;
|
|
3602
|
+
cogStepProgress?: number;
|
|
3603
|
+
};
|
|
3604
|
+
/**
|
|
3605
|
+
* RasterMetaDc.
|
|
3606
|
+
*/
|
|
3607
|
+
export interface RasterMetaDc {
|
|
3608
|
+
/** Layer name. */
|
|
3609
|
+
layerName?: string;
|
|
3610
|
+
/**
|
|
3611
|
+
* Width.
|
|
3612
|
+
* @format int32
|
|
3613
|
+
*/
|
|
3614
|
+
width?: number;
|
|
3615
|
+
/**
|
|
3616
|
+
* Height.
|
|
3617
|
+
* @format int32
|
|
3618
|
+
*/
|
|
3619
|
+
height?: number;
|
|
3620
|
+
/**
|
|
3621
|
+
* BandCount.
|
|
3622
|
+
* @format int32
|
|
3623
|
+
*/
|
|
3624
|
+
bandCount?: number;
|
|
3625
|
+
/**
|
|
3626
|
+
* Raster size in bytes.
|
|
3627
|
+
* @format int64
|
|
3628
|
+
*/
|
|
3629
|
+
rasterSizeInBytes?: number;
|
|
3630
|
+
/** BoundingBox. */
|
|
3631
|
+
boundingBox?: number[];
|
|
3632
|
+
/** Spatial reference. */
|
|
3633
|
+
sr?: string;
|
|
3634
|
+
/** Bands. */
|
|
3635
|
+
bands?: RasterBandMetaDc[];
|
|
3636
|
+
}
|
|
3637
|
+
/**
|
|
3638
|
+
* Raster render cfg.
|
|
3639
|
+
*/
|
|
3640
|
+
export interface RasterRenderCfg {
|
|
3641
|
+
/**
|
|
3642
|
+
* Min value.
|
|
3643
|
+
* @format double
|
|
3644
|
+
*/
|
|
3645
|
+
scaleMinValue?: number;
|
|
3646
|
+
/**
|
|
3647
|
+
* Max value.
|
|
3648
|
+
* @format double
|
|
3649
|
+
*/
|
|
3650
|
+
scaleMaxValue?: number;
|
|
3651
|
+
/**
|
|
3652
|
+
* No data value.
|
|
3653
|
+
* @format double
|
|
3654
|
+
*/
|
|
3655
|
+
noDataValue?: number;
|
|
3656
|
+
}
|
|
3470
3657
|
/**
|
|
3471
3658
|
* The symbol that draws a raster.
|
|
3472
3659
|
*/
|
|
3473
3660
|
export declare type RasterSymbolDc = SymbolDc & {
|
|
3474
3661
|
type?: string;
|
|
3475
3662
|
opacity?: CalculatedParameterDc;
|
|
3663
|
+
rasterRenderConfiguration?: RasterRenderCfg;
|
|
3476
3664
|
};
|
|
3477
3665
|
/**
|
|
3478
3666
|
* Types of table reference.
|
|
@@ -3762,6 +3950,49 @@ export declare type ScaleBarElementDc = ModelElementDc & {
|
|
|
3762
3950
|
font?: string;
|
|
3763
3951
|
fontSize?: number;
|
|
3764
3952
|
};
|
|
3953
|
+
/**
|
|
3954
|
+
* Result data.
|
|
3955
|
+
*/
|
|
3956
|
+
export interface SearchResultDataDc {
|
|
3957
|
+
/** Name of the attribute. */
|
|
3958
|
+
attributeName?: string;
|
|
3959
|
+
/** Attribute value. */
|
|
3960
|
+
value?: string;
|
|
3961
|
+
/** Row id. */
|
|
3962
|
+
id?: string;
|
|
3963
|
+
}
|
|
3964
|
+
/**
|
|
3965
|
+
* Universal search result.
|
|
3966
|
+
*/
|
|
3967
|
+
export interface SearchResultDc {
|
|
3968
|
+
/** Name of the layer. */
|
|
3969
|
+
name?: string;
|
|
3970
|
+
/** Id of the task. */
|
|
3971
|
+
taskId?: string;
|
|
3972
|
+
/** Found results. */
|
|
3973
|
+
results?: SearchResultDataDc[];
|
|
3974
|
+
/**
|
|
3975
|
+
* Count results.
|
|
3976
|
+
* @format int32
|
|
3977
|
+
*/
|
|
3978
|
+
count?: number;
|
|
3979
|
+
}
|
|
3980
|
+
/**
|
|
3981
|
+
* The result of a server task step execution.
|
|
3982
|
+
*/
|
|
3983
|
+
export declare type SearchStepResultDc = BaseStepResultDc & {
|
|
3984
|
+
layerName?: string;
|
|
3985
|
+
foundObjects?: number;
|
|
3986
|
+
};
|
|
3987
|
+
/**
|
|
3988
|
+
* Universal search task parameters.
|
|
3989
|
+
*/
|
|
3990
|
+
export declare type SearchTaskParametersDc = TaskParametersDc & {
|
|
3991
|
+
type?: string;
|
|
3992
|
+
sources: (ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc)[];
|
|
3993
|
+
filter?: string;
|
|
3994
|
+
attributes?: string[];
|
|
3995
|
+
};
|
|
3765
3996
|
/**
|
|
3766
3997
|
* Suggest user information.
|
|
3767
3998
|
*/
|
|
@@ -4040,6 +4271,13 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
|
|
|
4040
4271
|
* Simplify configuration information.
|
|
4041
4272
|
*/
|
|
4042
4273
|
export interface SimplifyInfoDc {
|
|
4274
|
+
/** Snap grid cell size by scale. */
|
|
4275
|
+
scaleItems?: Record<string, SimplifyInfoItemDc>;
|
|
4276
|
+
}
|
|
4277
|
+
/**
|
|
4278
|
+
* Simplify configuration information.
|
|
4279
|
+
*/
|
|
4280
|
+
export interface SimplifyInfoItemDc {
|
|
4043
4281
|
/**
|
|
4044
4282
|
* Simplify type.
|
|
4045
4283
|
*
|
|
@@ -4057,8 +4295,11 @@ export interface SimplifyInfoDc {
|
|
|
4057
4295
|
simplifyTolerance?: number;
|
|
4058
4296
|
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
4059
4297
|
simplifyPreserveCollapsed?: boolean;
|
|
4060
|
-
/**
|
|
4061
|
-
|
|
4298
|
+
/**
|
|
4299
|
+
* Snap grid cell size.
|
|
4300
|
+
* @format double
|
|
4301
|
+
*/
|
|
4302
|
+
snapCellSize?: number;
|
|
4062
4303
|
}
|
|
4063
4304
|
/**
|
|
4064
4305
|
* Simplify type.
|
|
@@ -4230,7 +4471,7 @@ export interface StyleDc {
|
|
|
4230
4471
|
*/
|
|
4231
4472
|
condition?: string;
|
|
4232
4473
|
/** Symbol that is used to draw the features of the layer. */
|
|
4233
|
-
symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
4474
|
+
symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
4234
4475
|
/**
|
|
4235
4476
|
* Child styles. Before rendering a feature, the children style conditions are checked. If none
|
|
4236
4477
|
* of the child styles were applied, then the paren style is used to draw the feature.
|
|
@@ -4455,7 +4696,7 @@ export interface TaskInfoDc {
|
|
|
4455
4696
|
*/
|
|
4456
4697
|
status?: ServerTaskStatus;
|
|
4457
4698
|
/** Parameters of the task. */
|
|
4458
|
-
parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc;
|
|
4699
|
+
parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | SearchTaskParametersDc | UnionTaskParametersDc | UploadNetCdfTaskParametersDc | UploadRasterTaskParametersDc;
|
|
4459
4700
|
/**
|
|
4460
4701
|
* Date and time when the task was created.
|
|
4461
4702
|
* @format date-time
|
|
@@ -4541,7 +4782,7 @@ export interface TaskProgressDc {
|
|
|
4541
4782
|
*/
|
|
4542
4783
|
export interface TaskResultDc {
|
|
4543
4784
|
message?: string;
|
|
4544
|
-
stepResults?: StepResultDc[];
|
|
4785
|
+
stepResults?: (RasterCogCreatorStepResultDc | SearchStepResultDc | StepResultDc)[];
|
|
4545
4786
|
/** @format int64 */
|
|
4546
4787
|
inputObjectCount?: number;
|
|
4547
4788
|
/** @format int64 */
|
|
@@ -5070,6 +5311,20 @@ export interface UpdateUserDc {
|
|
|
5070
5311
|
/** Phone number. */
|
|
5071
5312
|
phone?: string;
|
|
5072
5313
|
}
|
|
5314
|
+
/**
|
|
5315
|
+
* Upload raster task parameters data contract.
|
|
5316
|
+
*/
|
|
5317
|
+
export declare type UploadNetCdfTaskParametersDc = TaskParametersDc & {
|
|
5318
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
5319
|
+
file: string;
|
|
5320
|
+
dimName?: string;
|
|
5321
|
+
dimExtraName?: string;
|
|
5322
|
+
dimExtraValues?: string[];
|
|
5323
|
+
attributes?: Record<string, any>;
|
|
5324
|
+
maxZoomLevel: number;
|
|
5325
|
+
polygonize?: boolean;
|
|
5326
|
+
type?: string;
|
|
5327
|
+
};
|
|
5073
5328
|
/**
|
|
5074
5329
|
* Upload raster task parameters data contract.
|
|
5075
5330
|
*/
|
|
@@ -5484,6 +5739,10 @@ export interface GetRasterAttributesParams {
|
|
|
5484
5739
|
/** File name in the temporary static storage. */
|
|
5485
5740
|
fileName?: string;
|
|
5486
5741
|
}
|
|
5742
|
+
export interface GetRasterMetaParams {
|
|
5743
|
+
/** Raster filename. */
|
|
5744
|
+
fileName?: string;
|
|
5745
|
+
}
|
|
5487
5746
|
export interface GetLayersListParams {
|
|
5488
5747
|
/**
|
|
5489
5748
|
* Full text query filter that allow to query in alias and name fields.
|
|
@@ -5938,6 +6197,25 @@ export interface ValidateExpressionParams {
|
|
|
5938
6197
|
/** Layer name. */
|
|
5939
6198
|
layerName: string;
|
|
5940
6199
|
}
|
|
6200
|
+
export interface GetRasterMetaParams7 {
|
|
6201
|
+
/**
|
|
6202
|
+
* Min value for build histogram.
|
|
6203
|
+
* @format double
|
|
6204
|
+
*/
|
|
6205
|
+
min?: number;
|
|
6206
|
+
/**
|
|
6207
|
+
* Max value for build histogram.
|
|
6208
|
+
* @format double
|
|
6209
|
+
*/
|
|
6210
|
+
max?: number;
|
|
6211
|
+
/** Layer name. */
|
|
6212
|
+
name: string;
|
|
6213
|
+
/**
|
|
6214
|
+
* Id of raster.
|
|
6215
|
+
* @format int64
|
|
6216
|
+
*/
|
|
6217
|
+
id: number;
|
|
6218
|
+
}
|
|
5941
6219
|
export interface SetPreviewPayload {
|
|
5942
6220
|
/** @format binary */
|
|
5943
6221
|
file?: File;
|
|
@@ -5966,6 +6244,25 @@ export interface CreateNamespaceParams {
|
|
|
5966
6244
|
*/
|
|
5967
6245
|
adjustName?: boolean;
|
|
5968
6246
|
}
|
|
6247
|
+
export interface GetRoutesParams {
|
|
6248
|
+
/** if true, the response will contain the geometry of the route. */
|
|
6249
|
+
getGeometry?: boolean;
|
|
6250
|
+
/**
|
|
6251
|
+
* if true, the response will contain the detailed description of the route segments
|
|
6252
|
+
* .
|
|
6253
|
+
*/
|
|
6254
|
+
getSegments?: boolean;
|
|
6255
|
+
/**
|
|
6256
|
+
* Max distance in meters from the input point to a road on the graph.
|
|
6257
|
+
* If there is no road close enough to the input point, a route will not be build.
|
|
6258
|
+
* @format float
|
|
6259
|
+
*/
|
|
6260
|
+
snappingDistance?: number;
|
|
6261
|
+
/** Profile. */
|
|
6262
|
+
profile: string;
|
|
6263
|
+
/** Coordinates of the points to build the routes between. */
|
|
6264
|
+
coordinates: string;
|
|
6265
|
+
}
|
|
5969
6266
|
export interface SubscribeOperationParams {
|
|
5970
6267
|
/** Notification tag. */
|
|
5971
6268
|
tag?: string;
|
|
@@ -6027,7 +6324,7 @@ export interface GetProjectsListParams {
|
|
|
6027
6324
|
tags?: string[];
|
|
6028
6325
|
}
|
|
6029
6326
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
6030
|
-
export interface
|
|
6327
|
+
export interface DeleteResourcesParams7 {
|
|
6031
6328
|
/** Resource names. */
|
|
6032
6329
|
names?: string[];
|
|
6033
6330
|
}
|
|
@@ -6265,7 +6562,7 @@ export interface StatisticsDbParams {
|
|
|
6265
6562
|
*/
|
|
6266
6563
|
types?: AggregationFunction[];
|
|
6267
6564
|
}
|
|
6268
|
-
export interface
|
|
6565
|
+
export interface ClassifyParams9 {
|
|
6269
6566
|
/** Layer name. */
|
|
6270
6567
|
name?: string;
|
|
6271
6568
|
/** Attribute name. */
|
|
@@ -6389,6 +6686,10 @@ export interface GetTableListParams {
|
|
|
6389
6686
|
acl?: string;
|
|
6390
6687
|
}
|
|
6391
6688
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6689
|
+
export interface DeleteResourcesParams5 {
|
|
6690
|
+
/** Resource names. */
|
|
6691
|
+
names?: string[];
|
|
6692
|
+
}
|
|
6392
6693
|
export interface GetTablesInfoParams {
|
|
6393
6694
|
/** Table names. */
|
|
6394
6695
|
tableNames?: string[];
|
|
@@ -6467,6 +6768,24 @@ export interface GetAllParams {
|
|
|
6467
6768
|
*/
|
|
6468
6769
|
limit?: number;
|
|
6469
6770
|
}
|
|
6771
|
+
export interface GetSearchResultParams {
|
|
6772
|
+
/** Results filter. */
|
|
6773
|
+
filter?: string;
|
|
6774
|
+
/**
|
|
6775
|
+
* Offset result objects.
|
|
6776
|
+
* @format int32
|
|
6777
|
+
*/
|
|
6778
|
+
offset?: number;
|
|
6779
|
+
/**
|
|
6780
|
+
* Limit of result objects.
|
|
6781
|
+
* @format int32
|
|
6782
|
+
*/
|
|
6783
|
+
limit?: number;
|
|
6784
|
+
/** Id of the task. */
|
|
6785
|
+
taskId: string;
|
|
6786
|
+
/** Name of the layer. */
|
|
6787
|
+
layerName: string;
|
|
6788
|
+
}
|
|
6470
6789
|
export interface GetVectorTileParams {
|
|
6471
6790
|
/** Include all feature attributes. */
|
|
6472
6791
|
withAttributes?: boolean;
|
|
@@ -6474,27 +6793,6 @@ export interface GetVectorTileParams {
|
|
|
6474
6793
|
condition?: string;
|
|
6475
6794
|
/** True if name is project name, otherwise false. */
|
|
6476
6795
|
isProject?: boolean;
|
|
6477
|
-
/** True if compress GZIP result pbf tile. */
|
|
6478
|
-
compress?: boolean;
|
|
6479
|
-
/**
|
|
6480
|
-
* Simplify type.
|
|
6481
|
-
*
|
|
6482
|
-
* Basic
|
|
6483
|
-
*
|
|
6484
|
-
* PreserveTopology
|
|
6485
|
-
*
|
|
6486
|
-
* VW
|
|
6487
|
-
*/
|
|
6488
|
-
SimplifyType?: SimplifyType;
|
|
6489
|
-
/**
|
|
6490
|
-
* Tolerance.
|
|
6491
|
-
* @format float
|
|
6492
|
-
*/
|
|
6493
|
-
SimplifyTolerance?: number;
|
|
6494
|
-
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
6495
|
-
SimplifyPreserveCollapsed?: boolean;
|
|
6496
|
-
/** Snap grid cell size by scale. */
|
|
6497
|
-
SnapCellSizes?: Record<string, number | null>;
|
|
6498
6796
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
6499
6797
|
dataFilterId?: string;
|
|
6500
6798
|
/** Project or layer name. */
|
|
@@ -6545,7 +6843,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
6545
6843
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6546
6844
|
AcceptFormats?: string[];
|
|
6547
6845
|
}
|
|
6548
|
-
export interface
|
|
6846
|
+
export interface GetCapabilitiesParams3 {
|
|
6549
6847
|
/** Output format of service metadata. */
|
|
6550
6848
|
Format?: string;
|
|
6551
6849
|
/** Must be WMS. */
|